-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorganizations.ts
94 lines (88 loc) · 2.31 KB
/
organizations.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import { organizationsCreate } from "../funcs/organizationsCreate.js";
import { organizationsCreateFreeTrial } from "../funcs/organizationsCreateFreeTrial.js";
import { organizationsGet } from "../funcs/organizationsGet.js";
import { organizationsGetAll } from "../funcs/organizationsGetAll.js";
import { organizationsGetUsage } from "../funcs/organizationsGetUsage.js";
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
import * as operations from "./models/operations/index.js";
import * as shared from "./models/shared/index.js";
import { unwrapAsync } from "./types/fp.js";
export class Organizations extends ClientSDK {
/**
* Create an organization
*
* @remarks
* Creates an organization
*/
async create(
request: shared.Organization,
options?: RequestOptions,
): Promise<operations.CreateOrganizationResponse> {
return unwrapAsync(organizationsCreate(
this,
request,
options,
));
}
/**
* Create a free trial for an organization
*
* @remarks
* Creates a free trial for an organization
*/
async createFreeTrial(
options?: RequestOptions,
): Promise<shared.ErrorT | undefined> {
return unwrapAsync(organizationsCreateFreeTrial(
this,
options,
));
}
/**
* Get organization
*
* @remarks
* Get information about a particular organization.
*/
async get(
request: operations.GetOrganizationRequest,
options?: RequestOptions,
): Promise<operations.GetOrganizationResponse> {
return unwrapAsync(organizationsGet(
this,
request,
options,
));
}
/**
* Get organizations for a user
*
* @remarks
* Returns a list of organizations a user has access too
*/
async getAll(
options?: RequestOptions,
): Promise<operations.GetOrganizationsResponse> {
return unwrapAsync(organizationsGetAll(
this,
options,
));
}
/**
* Get billing usage summary for a particular organization
*
* @remarks
* Returns a billing usage summary by target languages for a particular organization
*/
async getUsage(
options?: RequestOptions,
): Promise<operations.GetOrganizationUsageResponse> {
return unwrapAsync(organizationsGetUsage(
this,
options,
));
}
}