@daytonaio/api-client 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -0
- package/api/api-keys-api.ts +16 -0
- package/api/docker-registry-api.ts +28 -0
- package/api/images-api.ts +20 -0
- package/api/nodes-api.ts +12 -0
- package/api/organizations-api.ts +301 -0
- package/api/preview-api.ts +4 -0
- package/api/toolbox-api.ts +144 -0
- package/api/workspace-api.ts +62 -8
- package/dist/api/api-keys-api.js +12 -0
- package/dist/api/docker-registry-api.js +21 -0
- package/dist/api/images-api.js +15 -0
- package/dist/api/nodes-api.js +9 -0
- package/dist/api/organizations-api.d.ts +71 -0
- package/dist/api/organizations-api.js +219 -0
- package/dist/api/preview-api.js +3 -0
- package/dist/api/toolbox-api.js +108 -0
- package/dist/api/workspace-api.d.ts +9 -8
- package/dist/api/workspace-api.js +43 -4
- package/dist/esm/api/api-keys-api.js +13 -1
- package/dist/esm/api/docker-registry-api.js +22 -1
- package/dist/esm/api/images-api.js +16 -1
- package/dist/esm/api/nodes-api.js +10 -1
- package/dist/esm/api/organizations-api.d.ts +71 -0
- package/dist/esm/api/organizations-api.js +220 -1
- package/dist/esm/api/preview-api.js +4 -1
- package/dist/esm/api/toolbox-api.js +109 -1
- package/dist/esm/api/workspace-api.d.ts +9 -8
- package/dist/esm/api/workspace-api.js +44 -5
- package/dist/esm/models/create-image.d.ts +2 -2
- package/dist/esm/models/create-organization.d.ts +0 -66
- package/dist/esm/models/create-workspace.d.ts +0 -12
- package/dist/esm/models/image-dto.d.ts +2 -2
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/list-workspaces-labels-parameter.d.ts +26 -0
- package/dist/esm/models/list-workspaces-labels-parameter.js +14 -0
- package/dist/esm/models/organization-suspension.d.ts +30 -0
- package/dist/esm/models/organization-suspension.js +14 -0
- package/dist/esm/models/organization.d.ts +24 -0
- package/dist/esm/models/workspace-info.d.ts +2 -1
- package/dist/esm/models/workspace-state.d.ts +1 -1
- package/dist/esm/models/workspace-state.js +1 -1
- package/dist/esm/models/workspace.d.ts +7 -0
- package/dist/models/create-image.d.ts +2 -2
- package/dist/models/create-organization.d.ts +0 -66
- package/dist/models/create-workspace.d.ts +0 -12
- package/dist/models/image-dto.d.ts +2 -2
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/list-workspaces-labels-parameter.d.ts +26 -0
- package/dist/models/list-workspaces-labels-parameter.js +15 -0
- package/dist/models/organization-suspension.d.ts +30 -0
- package/dist/models/organization-suspension.js +15 -0
- package/dist/models/organization.d.ts +24 -0
- package/dist/models/workspace-info.d.ts +2 -1
- package/dist/models/workspace-state.d.ts +1 -1
- package/dist/models/workspace-state.js +1 -1
- package/dist/models/workspace.d.ts +7 -0
- package/models/create-image.ts +2 -2
- package/models/create-organization.ts +0 -66
- package/models/create-workspace.ts +0 -12
- package/models/image-dto.ts +2 -2
- package/models/index.ts +2 -0
- package/models/list-workspaces-labels-parameter.ts +27 -0
- package/models/organization-suspension.ts +33 -0
- package/models/organization.ts +24 -0
- package/models/workspace-info.ts +2 -1
- package/models/workspace-state.ts +1 -1
- package/models/workspace.ts +7 -0
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
15
|
// Some imports not used depending on template conditions
|
|
16
16
|
// @ts-ignore
|
|
17
|
-
import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
17
|
+
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
18
18
|
// @ts-ignore
|
|
19
19
|
import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
20
20
|
/**
|
|
@@ -44,6 +44,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
44
44
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
45
45
|
const localVarHeaderParameter = {};
|
|
46
46
|
const localVarQueryParameter = {};
|
|
47
|
+
// authentication bearer required
|
|
48
|
+
// http bearer authentication required
|
|
49
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
47
50
|
// authentication oauth2 required
|
|
48
51
|
// oauth required
|
|
49
52
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -81,6 +84,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
81
84
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
82
85
|
const localVarHeaderParameter = {};
|
|
83
86
|
const localVarQueryParameter = {};
|
|
87
|
+
// authentication bearer required
|
|
88
|
+
// http bearer authentication required
|
|
89
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
84
90
|
// authentication oauth2 required
|
|
85
91
|
// oauth required
|
|
86
92
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -116,6 +122,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
116
122
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
117
123
|
const localVarHeaderParameter = {};
|
|
118
124
|
const localVarQueryParameter = {};
|
|
125
|
+
// authentication bearer required
|
|
126
|
+
// http bearer authentication required
|
|
127
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
119
128
|
// authentication oauth2 required
|
|
120
129
|
// oauth required
|
|
121
130
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -148,6 +157,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
148
157
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
149
158
|
const localVarHeaderParameter = {};
|
|
150
159
|
const localVarQueryParameter = {};
|
|
160
|
+
// authentication bearer required
|
|
161
|
+
// http bearer authentication required
|
|
162
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
151
163
|
// authentication oauth2 required
|
|
152
164
|
// oauth required
|
|
153
165
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -180,6 +192,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
180
192
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
181
193
|
const localVarHeaderParameter = {};
|
|
182
194
|
const localVarQueryParameter = {};
|
|
195
|
+
// authentication bearer required
|
|
196
|
+
// http bearer authentication required
|
|
197
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
183
198
|
// authentication oauth2 required
|
|
184
199
|
// oauth required
|
|
185
200
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -215,6 +230,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
215
230
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
216
231
|
const localVarHeaderParameter = {};
|
|
217
232
|
const localVarQueryParameter = {};
|
|
233
|
+
// authentication bearer required
|
|
234
|
+
// http bearer authentication required
|
|
235
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
218
236
|
// authentication oauth2 required
|
|
219
237
|
// oauth required
|
|
220
238
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -253,6 +271,9 @@ export const DockerRegistryApiAxiosParamCreator = function (configuration) {
|
|
|
253
271
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
254
272
|
const localVarHeaderParameter = {};
|
|
255
273
|
const localVarQueryParameter = {};
|
|
274
|
+
// authentication bearer required
|
|
275
|
+
// http bearer authentication required
|
|
276
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
256
277
|
// authentication oauth2 required
|
|
257
278
|
// oauth required
|
|
258
279
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
15
|
// Some imports not used depending on template conditions
|
|
16
16
|
// @ts-ignore
|
|
17
|
-
import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
17
|
+
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
18
18
|
// @ts-ignore
|
|
19
19
|
import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
20
20
|
/**
|
|
@@ -44,6 +44,9 @@ export const ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
44
44
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
45
45
|
const localVarHeaderParameter = {};
|
|
46
46
|
const localVarQueryParameter = {};
|
|
47
|
+
// authentication bearer required
|
|
48
|
+
// http bearer authentication required
|
|
49
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
47
50
|
// authentication oauth2 required
|
|
48
51
|
// oauth required
|
|
49
52
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -80,6 +83,9 @@ export const ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
80
83
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
81
84
|
const localVarHeaderParameter = {};
|
|
82
85
|
const localVarQueryParameter = {};
|
|
86
|
+
// authentication bearer required
|
|
87
|
+
// http bearer authentication required
|
|
88
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
83
89
|
// authentication oauth2 required
|
|
84
90
|
// oauth required
|
|
85
91
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -121,6 +127,9 @@ export const ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
121
127
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
122
128
|
const localVarHeaderParameter = {};
|
|
123
129
|
const localVarQueryParameter = {};
|
|
130
|
+
// authentication bearer required
|
|
131
|
+
// http bearer authentication required
|
|
132
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
124
133
|
// authentication oauth2 required
|
|
125
134
|
// oauth required
|
|
126
135
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -159,6 +168,9 @@ export const ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
159
168
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
160
169
|
const localVarHeaderParameter = {};
|
|
161
170
|
const localVarQueryParameter = {};
|
|
171
|
+
// authentication bearer required
|
|
172
|
+
// http bearer authentication required
|
|
173
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
162
174
|
// authentication oauth2 required
|
|
163
175
|
// oauth required
|
|
164
176
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -199,6 +211,9 @@ export const ImagesApiAxiosParamCreator = function (configuration) {
|
|
|
199
211
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
200
212
|
const localVarHeaderParameter = {};
|
|
201
213
|
const localVarQueryParameter = {};
|
|
214
|
+
// authentication bearer required
|
|
215
|
+
// http bearer authentication required
|
|
216
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
202
217
|
// authentication oauth2 required
|
|
203
218
|
// oauth required
|
|
204
219
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
15
|
// Some imports not used depending on template conditions
|
|
16
16
|
// @ts-ignore
|
|
17
|
-
import { DUMMY_BASE_URL, assertParamExists, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
17
|
+
import { DUMMY_BASE_URL, assertParamExists, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from '../common';
|
|
18
18
|
// @ts-ignore
|
|
19
19
|
import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
20
20
|
/**
|
|
@@ -43,6 +43,9 @@ export const NodesApiAxiosParamCreator = function (configuration) {
|
|
|
43
43
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
44
44
|
const localVarHeaderParameter = {};
|
|
45
45
|
const localVarQueryParameter = {};
|
|
46
|
+
// authentication bearer required
|
|
47
|
+
// http bearer authentication required
|
|
48
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
46
49
|
// authentication oauth2 required
|
|
47
50
|
// oauth required
|
|
48
51
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -73,6 +76,9 @@ export const NodesApiAxiosParamCreator = function (configuration) {
|
|
|
73
76
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
74
77
|
const localVarHeaderParameter = {};
|
|
75
78
|
const localVarQueryParameter = {};
|
|
79
|
+
// authentication bearer required
|
|
80
|
+
// http bearer authentication required
|
|
81
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
76
82
|
// authentication oauth2 required
|
|
77
83
|
// oauth required
|
|
78
84
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -104,6 +110,9 @@ export const NodesApiAxiosParamCreator = function (configuration) {
|
|
|
104
110
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
105
111
|
const localVarHeaderParameter = {};
|
|
106
112
|
const localVarQueryParameter = {};
|
|
113
|
+
// authentication bearer required
|
|
114
|
+
// http bearer authentication required
|
|
115
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
107
116
|
// authentication oauth2 required
|
|
108
117
|
// oauth required
|
|
109
118
|
await setOAuthToObject(localVarHeaderParameter, 'oauth2', ['openid', 'profile', 'email'], configuration);
|
|
@@ -18,6 +18,7 @@ import type { CreateOrganizationRole } from '../models';
|
|
|
18
18
|
import type { Organization } from '../models';
|
|
19
19
|
import type { OrganizationInvitation } from '../models';
|
|
20
20
|
import type { OrganizationRole } from '../models';
|
|
21
|
+
import type { OrganizationSuspension } from '../models';
|
|
21
22
|
import type { OrganizationUser } from '../models';
|
|
22
23
|
import type { UpdateAssignedOrganizationRoles } from '../models';
|
|
23
24
|
import type { UpdateOrganizationInvitation } from '../models';
|
|
@@ -176,6 +177,23 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
176
177
|
* @throws {RequiredError}
|
|
177
178
|
*/
|
|
178
179
|
listOrganizations: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @summary Suspend organization
|
|
183
|
+
* @param {string} organizationId Organization ID
|
|
184
|
+
* @param {OrganizationSuspension} [organizationSuspension]
|
|
185
|
+
* @param {*} [options] Override http request option.
|
|
186
|
+
* @throws {RequiredError}
|
|
187
|
+
*/
|
|
188
|
+
suspendOrganization: (organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
189
|
+
/**
|
|
190
|
+
*
|
|
191
|
+
* @summary Unsuspend organization
|
|
192
|
+
* @param {string} organizationId Organization ID
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
unsuspendOrganization: (organizationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
179
197
|
/**
|
|
180
198
|
*
|
|
181
199
|
* @summary Update assigned roles to organization member
|
|
@@ -377,6 +395,23 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
377
395
|
* @throws {RequiredError}
|
|
378
396
|
*/
|
|
379
397
|
listOrganizations(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Organization>>>;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @summary Suspend organization
|
|
401
|
+
* @param {string} organizationId Organization ID
|
|
402
|
+
* @param {OrganizationSuspension} [organizationSuspension]
|
|
403
|
+
* @param {*} [options] Override http request option.
|
|
404
|
+
* @throws {RequiredError}
|
|
405
|
+
*/
|
|
406
|
+
suspendOrganization(organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
407
|
+
/**
|
|
408
|
+
*
|
|
409
|
+
* @summary Unsuspend organization
|
|
410
|
+
* @param {string} organizationId Organization ID
|
|
411
|
+
* @param {*} [options] Override http request option.
|
|
412
|
+
* @throws {RequiredError}
|
|
413
|
+
*/
|
|
414
|
+
unsuspendOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
380
415
|
/**
|
|
381
416
|
*
|
|
382
417
|
* @summary Update assigned roles to organization member
|
|
@@ -578,6 +613,23 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
578
613
|
* @throws {RequiredError}
|
|
579
614
|
*/
|
|
580
615
|
listOrganizations(options?: RawAxiosRequestConfig): AxiosPromise<Array<Organization>>;
|
|
616
|
+
/**
|
|
617
|
+
*
|
|
618
|
+
* @summary Suspend organization
|
|
619
|
+
* @param {string} organizationId Organization ID
|
|
620
|
+
* @param {OrganizationSuspension} [organizationSuspension]
|
|
621
|
+
* @param {*} [options] Override http request option.
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
*/
|
|
624
|
+
suspendOrganization(organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
625
|
+
/**
|
|
626
|
+
*
|
|
627
|
+
* @summary Unsuspend organization
|
|
628
|
+
* @param {string} organizationId Organization ID
|
|
629
|
+
* @param {*} [options] Override http request option.
|
|
630
|
+
* @throws {RequiredError}
|
|
631
|
+
*/
|
|
632
|
+
unsuspendOrganization(organizationId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
581
633
|
/**
|
|
582
634
|
*
|
|
583
635
|
* @summary Update assigned roles to organization member
|
|
@@ -799,6 +851,25 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
799
851
|
* @memberof OrganizationsApi
|
|
800
852
|
*/
|
|
801
853
|
listOrganizations(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization[], any>>;
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @summary Suspend organization
|
|
857
|
+
* @param {string} organizationId Organization ID
|
|
858
|
+
* @param {OrganizationSuspension} [organizationSuspension]
|
|
859
|
+
* @param {*} [options] Override http request option.
|
|
860
|
+
* @throws {RequiredError}
|
|
861
|
+
* @memberof OrganizationsApi
|
|
862
|
+
*/
|
|
863
|
+
suspendOrganization(organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @summary Unsuspend organization
|
|
867
|
+
* @param {string} organizationId Organization ID
|
|
868
|
+
* @param {*} [options] Override http request option.
|
|
869
|
+
* @throws {RequiredError}
|
|
870
|
+
* @memberof OrganizationsApi
|
|
871
|
+
*/
|
|
872
|
+
unsuspendOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
802
873
|
/**
|
|
803
874
|
*
|
|
804
875
|
* @summary Update assigned roles to organization member
|