@daytonaio/api-client 0.111.0 → 0.111.1
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/package.json +1 -1
- package/src/api/api-keys-api.d.ts +6 -6
- package/src/api/audit-api.d.ts +2 -2
- package/src/api/config-api.d.ts +1 -1
- package/src/api/default-api.d.ts +7 -7
- package/src/api/docker-registry-api.d.ts +7 -7
- package/src/api/health-api.d.ts +1 -1
- package/src/api/object-storage-api.d.ts +1 -1
- package/src/api/organizations-api.d.ts +26 -26
- package/src/api/preview-api.d.ts +3 -3
- package/src/api/runners-api.d.ts +34 -5
- package/src/api/runners-api.js +62 -0
- package/src/api/runners-api.js.map +1 -1
- package/src/api/sandbox-api.d.ts +22 -22
- package/src/api/snapshots-api.d.ts +9 -9
- package/src/api/toolbox-api.d.ts +68 -68
- package/src/api/users-api.d.ts +9 -9
- package/src/api/volumes-api.d.ts +5 -5
- package/src/api/webhooks-api.d.ts +6 -6
- package/src/api/workspace-api.d.ts +14 -14
package/package.json
CHANGED
|
@@ -208,7 +208,7 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
208
208
|
* @throws {RequiredError}
|
|
209
209
|
* @memberof ApiKeysApi
|
|
210
210
|
*/
|
|
211
|
-
createApiKey(createApiKey: CreateApiKey, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyResponse, any
|
|
211
|
+
createApiKey(createApiKey: CreateApiKey, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyResponse, any>>;
|
|
212
212
|
/**
|
|
213
213
|
*
|
|
214
214
|
* @summary Delete API key
|
|
@@ -218,7 +218,7 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
218
218
|
* @throws {RequiredError}
|
|
219
219
|
* @memberof ApiKeysApi
|
|
220
220
|
*/
|
|
221
|
-
deleteApiKey(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
221
|
+
deleteApiKey(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
222
222
|
/**
|
|
223
223
|
*
|
|
224
224
|
* @summary Delete API key for user
|
|
@@ -229,7 +229,7 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
229
229
|
* @throws {RequiredError}
|
|
230
230
|
* @memberof ApiKeysApi
|
|
231
231
|
*/
|
|
232
|
-
deleteApiKeyForUser(userId: string, name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
232
|
+
deleteApiKeyForUser(userId: string, name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
233
233
|
/**
|
|
234
234
|
*
|
|
235
235
|
* @summary Get API key
|
|
@@ -239,7 +239,7 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
239
239
|
* @throws {RequiredError}
|
|
240
240
|
* @memberof ApiKeysApi
|
|
241
241
|
*/
|
|
242
|
-
getApiKey(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList, any
|
|
242
|
+
getApiKey(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList, any>>;
|
|
243
243
|
/**
|
|
244
244
|
*
|
|
245
245
|
* @summary Get current API key\'s details
|
|
@@ -248,7 +248,7 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
248
248
|
* @throws {RequiredError}
|
|
249
249
|
* @memberof ApiKeysApi
|
|
250
250
|
*/
|
|
251
|
-
getCurrentApiKey(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList, any
|
|
251
|
+
getCurrentApiKey(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList, any>>;
|
|
252
252
|
/**
|
|
253
253
|
*
|
|
254
254
|
* @summary List API keys
|
|
@@ -257,5 +257,5 @@ export declare class ApiKeysApi extends BaseAPI {
|
|
|
257
257
|
* @throws {RequiredError}
|
|
258
258
|
* @memberof ApiKeysApi
|
|
259
259
|
*/
|
|
260
|
-
listApiKeys(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList[], any
|
|
260
|
+
listApiKeys(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiKeyList[], any>>;
|
|
261
261
|
}
|
package/src/api/audit-api.d.ts
CHANGED
|
@@ -125,7 +125,7 @@ export declare class AuditApi extends BaseAPI {
|
|
|
125
125
|
* @throws {RequiredError}
|
|
126
126
|
* @memberof AuditApi
|
|
127
127
|
*/
|
|
128
|
-
getAllAuditLogs(page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any
|
|
128
|
+
getAllAuditLogs(page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
|
|
129
129
|
/**
|
|
130
130
|
*
|
|
131
131
|
* @summary Get audit logs for organization
|
|
@@ -139,5 +139,5 @@ export declare class AuditApi extends BaseAPI {
|
|
|
139
139
|
* @throws {RequiredError}
|
|
140
140
|
* @memberof AuditApi
|
|
141
141
|
*/
|
|
142
|
-
getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any
|
|
142
|
+
getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
|
|
143
143
|
}
|
package/src/api/config-api.d.ts
CHANGED
|
@@ -66,5 +66,5 @@ export declare class ConfigApi extends BaseAPI {
|
|
|
66
66
|
* @throws {RequiredError}
|
|
67
67
|
* @memberof ConfigApi
|
|
68
68
|
*/
|
|
69
|
-
configControllerGetConfig(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DaytonaConfiguration, any
|
|
69
|
+
configControllerGetConfig(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DaytonaConfiguration, any>>;
|
|
70
70
|
}
|
package/src/api/default-api.d.ts
CHANGED
|
@@ -198,7 +198,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
198
198
|
* @throws {RequiredError}
|
|
199
199
|
* @memberof DefaultApi
|
|
200
200
|
*/
|
|
201
|
-
sandboxCreatedPost(sandboxCreatedPostRequest?: SandboxCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
201
|
+
sandboxCreatedPost(sandboxCreatedPostRequest?: SandboxCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
202
202
|
/**
|
|
203
203
|
*
|
|
204
204
|
* @param {SandboxStateUpdatedPostRequest} [sandboxStateUpdatedPostRequest] Sandbox state updated event
|
|
@@ -206,7 +206,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
206
206
|
* @throws {RequiredError}
|
|
207
207
|
* @memberof DefaultApi
|
|
208
208
|
*/
|
|
209
|
-
sandboxStateUpdatedPost(sandboxStateUpdatedPostRequest?: SandboxStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
209
|
+
sandboxStateUpdatedPost(sandboxStateUpdatedPostRequest?: SandboxStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
210
210
|
/**
|
|
211
211
|
*
|
|
212
212
|
* @param {SnapshotCreatedPostRequest} [snapshotCreatedPostRequest] Snapshot created event
|
|
@@ -214,7 +214,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
214
214
|
* @throws {RequiredError}
|
|
215
215
|
* @memberof DefaultApi
|
|
216
216
|
*/
|
|
217
|
-
snapshotCreatedPost(snapshotCreatedPostRequest?: SnapshotCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
217
|
+
snapshotCreatedPost(snapshotCreatedPostRequest?: SnapshotCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
218
218
|
/**
|
|
219
219
|
*
|
|
220
220
|
* @param {SnapshotRemovedPostRequest} [snapshotRemovedPostRequest] Snapshot removed event
|
|
@@ -222,7 +222,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
222
222
|
* @throws {RequiredError}
|
|
223
223
|
* @memberof DefaultApi
|
|
224
224
|
*/
|
|
225
|
-
snapshotRemovedPost(snapshotRemovedPostRequest?: SnapshotRemovedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
225
|
+
snapshotRemovedPost(snapshotRemovedPostRequest?: SnapshotRemovedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
226
226
|
/**
|
|
227
227
|
*
|
|
228
228
|
* @param {SnapshotStateUpdatedPostRequest} [snapshotStateUpdatedPostRequest] Snapshot state updated event
|
|
@@ -230,7 +230,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
230
230
|
* @throws {RequiredError}
|
|
231
231
|
* @memberof DefaultApi
|
|
232
232
|
*/
|
|
233
|
-
snapshotStateUpdatedPost(snapshotStateUpdatedPostRequest?: SnapshotStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
233
|
+
snapshotStateUpdatedPost(snapshotStateUpdatedPostRequest?: SnapshotStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
234
234
|
/**
|
|
235
235
|
*
|
|
236
236
|
* @param {VolumeCreatedPostRequest} [volumeCreatedPostRequest] Volume created event
|
|
@@ -238,7 +238,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
238
238
|
* @throws {RequiredError}
|
|
239
239
|
* @memberof DefaultApi
|
|
240
240
|
*/
|
|
241
|
-
volumeCreatedPost(volumeCreatedPostRequest?: VolumeCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
241
|
+
volumeCreatedPost(volumeCreatedPostRequest?: VolumeCreatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
242
242
|
/**
|
|
243
243
|
*
|
|
244
244
|
* @param {VolumeStateUpdatedPostRequest} [volumeStateUpdatedPostRequest] Volume state updated event
|
|
@@ -246,5 +246,5 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
246
246
|
* @throws {RequiredError}
|
|
247
247
|
* @memberof DefaultApi
|
|
248
248
|
*/
|
|
249
|
-
volumeStateUpdatedPost(volumeStateUpdatedPostRequest?: VolumeStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
249
|
+
volumeStateUpdatedPost(volumeStateUpdatedPostRequest?: VolumeStateUpdatedPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
250
250
|
}
|
|
@@ -236,7 +236,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
236
236
|
* @throws {RequiredError}
|
|
237
237
|
* @memberof DockerRegistryApi
|
|
238
238
|
*/
|
|
239
|
-
createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any
|
|
239
|
+
createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
242
|
* @summary Delete registry
|
|
@@ -246,7 +246,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
246
246
|
* @throws {RequiredError}
|
|
247
247
|
* @memberof DockerRegistryApi
|
|
248
248
|
*/
|
|
249
|
-
deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
249
|
+
deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
250
250
|
/**
|
|
251
251
|
*
|
|
252
252
|
* @summary Get registry
|
|
@@ -256,7 +256,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
256
256
|
* @throws {RequiredError}
|
|
257
257
|
* @memberof DockerRegistryApi
|
|
258
258
|
*/
|
|
259
|
-
getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any
|
|
259
|
+
getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
260
260
|
/**
|
|
261
261
|
*
|
|
262
262
|
* @summary Get temporary registry access for pushing snapshots
|
|
@@ -265,7 +265,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
265
265
|
* @throws {RequiredError}
|
|
266
266
|
* @memberof DockerRegistryApi
|
|
267
267
|
*/
|
|
268
|
-
getTransientPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any
|
|
268
|
+
getTransientPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any>>;
|
|
269
269
|
/**
|
|
270
270
|
*
|
|
271
271
|
* @summary List registries
|
|
@@ -274,7 +274,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
274
274
|
* @throws {RequiredError}
|
|
275
275
|
* @memberof DockerRegistryApi
|
|
276
276
|
*/
|
|
277
|
-
listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any
|
|
277
|
+
listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any>>;
|
|
278
278
|
/**
|
|
279
279
|
*
|
|
280
280
|
* @summary Set default registry
|
|
@@ -284,7 +284,7 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
284
284
|
* @throws {RequiredError}
|
|
285
285
|
* @memberof DockerRegistryApi
|
|
286
286
|
*/
|
|
287
|
-
setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any
|
|
287
|
+
setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
288
288
|
/**
|
|
289
289
|
*
|
|
290
290
|
* @summary Update registry
|
|
@@ -295,5 +295,5 @@ export declare class DockerRegistryApi extends BaseAPI {
|
|
|
295
295
|
* @throws {RequiredError}
|
|
296
296
|
* @memberof DockerRegistryApi
|
|
297
297
|
*/
|
|
298
|
-
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any
|
|
298
|
+
updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
|
|
299
299
|
}
|
package/src/api/health-api.d.ts
CHANGED
|
@@ -62,5 +62,5 @@ export declare class HealthApi extends BaseAPI {
|
|
|
62
62
|
* @throws {RequiredError}
|
|
63
63
|
* @memberof HealthApi
|
|
64
64
|
*/
|
|
65
|
-
healthControllerCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthControllerCheck200Response, any
|
|
65
|
+
healthControllerCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthControllerCheck200Response, any>>;
|
|
66
66
|
}
|
|
@@ -70,5 +70,5 @@ export declare class ObjectStorageApi extends BaseAPI {
|
|
|
70
70
|
* @throws {RequiredError}
|
|
71
71
|
* @memberof ObjectStorageApi
|
|
72
72
|
*/
|
|
73
|
-
getPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageAccessDto, any
|
|
73
|
+
getPushAccess(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageAccessDto, any>>;
|
|
74
74
|
}
|
|
@@ -716,7 +716,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
716
716
|
* @throws {RequiredError}
|
|
717
717
|
* @memberof OrganizationsApi
|
|
718
718
|
*/
|
|
719
|
-
acceptOrganizationInvitation(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any
|
|
719
|
+
acceptOrganizationInvitation(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any>>;
|
|
720
720
|
/**
|
|
721
721
|
*
|
|
722
722
|
* @summary Cancel organization invitation
|
|
@@ -726,7 +726,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
726
726
|
* @throws {RequiredError}
|
|
727
727
|
* @memberof OrganizationsApi
|
|
728
728
|
*/
|
|
729
|
-
cancelOrganizationInvitation(organizationId: string, invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
729
|
+
cancelOrganizationInvitation(organizationId: string, invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
730
730
|
/**
|
|
731
731
|
*
|
|
732
732
|
* @summary Create organization
|
|
@@ -735,7 +735,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
735
735
|
* @throws {RequiredError}
|
|
736
736
|
* @memberof OrganizationsApi
|
|
737
737
|
*/
|
|
738
|
-
createOrganization(createOrganization: CreateOrganization, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any
|
|
738
|
+
createOrganization(createOrganization: CreateOrganization, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any>>;
|
|
739
739
|
/**
|
|
740
740
|
*
|
|
741
741
|
* @summary Create organization invitation
|
|
@@ -745,7 +745,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
745
745
|
* @throws {RequiredError}
|
|
746
746
|
* @memberof OrganizationsApi
|
|
747
747
|
*/
|
|
748
|
-
createOrganizationInvitation(organizationId: string, createOrganizationInvitation: CreateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any
|
|
748
|
+
createOrganizationInvitation(organizationId: string, createOrganizationInvitation: CreateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any>>;
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
751
751
|
* @summary Create organization role
|
|
@@ -755,7 +755,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
755
755
|
* @throws {RequiredError}
|
|
756
756
|
* @memberof OrganizationsApi
|
|
757
757
|
*/
|
|
758
|
-
createOrganizationRole(organizationId: string, createOrganizationRole: CreateOrganizationRole, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole, any
|
|
758
|
+
createOrganizationRole(organizationId: string, createOrganizationRole: CreateOrganizationRole, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole, any>>;
|
|
759
759
|
/**
|
|
760
760
|
*
|
|
761
761
|
* @summary Decline organization invitation
|
|
@@ -764,7 +764,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
764
764
|
* @throws {RequiredError}
|
|
765
765
|
* @memberof OrganizationsApi
|
|
766
766
|
*/
|
|
767
|
-
declineOrganizationInvitation(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
767
|
+
declineOrganizationInvitation(invitationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
768
768
|
/**
|
|
769
769
|
*
|
|
770
770
|
* @summary Delete organization
|
|
@@ -773,7 +773,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
773
773
|
* @throws {RequiredError}
|
|
774
774
|
* @memberof OrganizationsApi
|
|
775
775
|
*/
|
|
776
|
-
deleteOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
776
|
+
deleteOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
777
777
|
/**
|
|
778
778
|
*
|
|
779
779
|
* @summary Delete organization member
|
|
@@ -783,7 +783,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
783
783
|
* @throws {RequiredError}
|
|
784
784
|
* @memberof OrganizationsApi
|
|
785
785
|
*/
|
|
786
|
-
deleteOrganizationMember(organizationId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
786
|
+
deleteOrganizationMember(organizationId: string, userId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
787
787
|
/**
|
|
788
788
|
*
|
|
789
789
|
* @summary Delete organization role
|
|
@@ -793,7 +793,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
793
793
|
* @throws {RequiredError}
|
|
794
794
|
* @memberof OrganizationsApi
|
|
795
795
|
*/
|
|
796
|
-
deleteOrganizationRole(organizationId: string, roleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
796
|
+
deleteOrganizationRole(organizationId: string, roleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
797
797
|
/**
|
|
798
798
|
*
|
|
799
799
|
* @summary Get organization by ID
|
|
@@ -802,7 +802,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
802
802
|
* @throws {RequiredError}
|
|
803
803
|
* @memberof OrganizationsApi
|
|
804
804
|
*/
|
|
805
|
-
getOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any
|
|
805
|
+
getOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any>>;
|
|
806
806
|
/**
|
|
807
807
|
*
|
|
808
808
|
* @summary Get organization by sandbox ID
|
|
@@ -811,7 +811,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
811
811
|
* @throws {RequiredError}
|
|
812
812
|
* @memberof OrganizationsApi
|
|
813
813
|
*/
|
|
814
|
-
getOrganizationBySandboxId(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any
|
|
814
|
+
getOrganizationBySandboxId(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any>>;
|
|
815
815
|
/**
|
|
816
816
|
*
|
|
817
817
|
* @summary Get count of organization invitations for authenticated user
|
|
@@ -819,7 +819,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
819
819
|
* @throws {RequiredError}
|
|
820
820
|
* @memberof OrganizationsApi
|
|
821
821
|
*/
|
|
822
|
-
getOrganizationInvitationsCountForAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any
|
|
822
|
+
getOrganizationInvitationsCountForAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any>>;
|
|
823
823
|
/**
|
|
824
824
|
*
|
|
825
825
|
* @summary Get organization current usage overview
|
|
@@ -828,7 +828,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
828
828
|
* @throws {RequiredError}
|
|
829
829
|
* @memberof OrganizationsApi
|
|
830
830
|
*/
|
|
831
|
-
getOrganizationUsageOverview(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUsageOverview, any
|
|
831
|
+
getOrganizationUsageOverview(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUsageOverview, any>>;
|
|
832
832
|
/**
|
|
833
833
|
*
|
|
834
834
|
* @summary Leave organization
|
|
@@ -837,7 +837,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
837
837
|
* @throws {RequiredError}
|
|
838
838
|
* @memberof OrganizationsApi
|
|
839
839
|
*/
|
|
840
|
-
leaveOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
840
|
+
leaveOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
841
841
|
/**
|
|
842
842
|
*
|
|
843
843
|
* @summary List pending organization invitations
|
|
@@ -846,7 +846,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
846
846
|
* @throws {RequiredError}
|
|
847
847
|
* @memberof OrganizationsApi
|
|
848
848
|
*/
|
|
849
|
-
listOrganizationInvitations(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation[], any
|
|
849
|
+
listOrganizationInvitations(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation[], any>>;
|
|
850
850
|
/**
|
|
851
851
|
*
|
|
852
852
|
* @summary List organization invitations for authenticated user
|
|
@@ -854,7 +854,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
854
854
|
* @throws {RequiredError}
|
|
855
855
|
* @memberof OrganizationsApi
|
|
856
856
|
*/
|
|
857
|
-
listOrganizationInvitationsForAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation[], any
|
|
857
|
+
listOrganizationInvitationsForAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation[], any>>;
|
|
858
858
|
/**
|
|
859
859
|
*
|
|
860
860
|
* @summary List organization members
|
|
@@ -863,7 +863,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
863
863
|
* @throws {RequiredError}
|
|
864
864
|
* @memberof OrganizationsApi
|
|
865
865
|
*/
|
|
866
|
-
listOrganizationMembers(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUser[], any
|
|
866
|
+
listOrganizationMembers(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUser[], any>>;
|
|
867
867
|
/**
|
|
868
868
|
*
|
|
869
869
|
* @summary List organization roles
|
|
@@ -872,7 +872,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
872
872
|
* @throws {RequiredError}
|
|
873
873
|
* @memberof OrganizationsApi
|
|
874
874
|
*/
|
|
875
|
-
listOrganizationRoles(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole[], any
|
|
875
|
+
listOrganizationRoles(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole[], any>>;
|
|
876
876
|
/**
|
|
877
877
|
*
|
|
878
878
|
* @summary List organizations
|
|
@@ -880,7 +880,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
880
880
|
* @throws {RequiredError}
|
|
881
881
|
* @memberof OrganizationsApi
|
|
882
882
|
*/
|
|
883
|
-
listOrganizations(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization[], any
|
|
883
|
+
listOrganizations(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization[], any>>;
|
|
884
884
|
/**
|
|
885
885
|
*
|
|
886
886
|
* @summary Suspend organization
|
|
@@ -890,7 +890,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
890
890
|
* @throws {RequiredError}
|
|
891
891
|
* @memberof OrganizationsApi
|
|
892
892
|
*/
|
|
893
|
-
suspendOrganization(organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
893
|
+
suspendOrganization(organizationId: string, organizationSuspension?: OrganizationSuspension, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
894
894
|
/**
|
|
895
895
|
*
|
|
896
896
|
* @summary Unsuspend organization
|
|
@@ -899,7 +899,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
899
899
|
* @throws {RequiredError}
|
|
900
900
|
* @memberof OrganizationsApi
|
|
901
901
|
*/
|
|
902
|
-
unsuspendOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
902
|
+
unsuspendOrganization(organizationId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
903
903
|
/**
|
|
904
904
|
*
|
|
905
905
|
* @summary Update access for organization member
|
|
@@ -910,7 +910,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
910
910
|
* @throws {RequiredError}
|
|
911
911
|
* @memberof OrganizationsApi
|
|
912
912
|
*/
|
|
913
|
-
updateAccessForOrganizationMember(organizationId: string, userId: string, updateOrganizationMemberAccess: UpdateOrganizationMemberAccess, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUser, any
|
|
913
|
+
updateAccessForOrganizationMember(organizationId: string, userId: string, updateOrganizationMemberAccess: UpdateOrganizationMemberAccess, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationUser, any>>;
|
|
914
914
|
/**
|
|
915
915
|
*
|
|
916
916
|
* @summary Update organization invitation
|
|
@@ -921,7 +921,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
921
921
|
* @throws {RequiredError}
|
|
922
922
|
* @memberof OrganizationsApi
|
|
923
923
|
*/
|
|
924
|
-
updateOrganizationInvitation(organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any
|
|
924
|
+
updateOrganizationInvitation(organizationId: string, invitationId: string, updateOrganizationInvitation: UpdateOrganizationInvitation, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationInvitation, any>>;
|
|
925
925
|
/**
|
|
926
926
|
*
|
|
927
927
|
* @summary Update organization quota
|
|
@@ -931,7 +931,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
931
931
|
* @throws {RequiredError}
|
|
932
932
|
* @memberof OrganizationsApi
|
|
933
933
|
*/
|
|
934
|
-
updateOrganizationQuota(organizationId: string, updateOrganizationQuota: UpdateOrganizationQuota, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any
|
|
934
|
+
updateOrganizationQuota(organizationId: string, updateOrganizationQuota: UpdateOrganizationQuota, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Organization, any>>;
|
|
935
935
|
/**
|
|
936
936
|
*
|
|
937
937
|
* @summary Update organization role
|
|
@@ -942,7 +942,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
942
942
|
* @throws {RequiredError}
|
|
943
943
|
* @memberof OrganizationsApi
|
|
944
944
|
*/
|
|
945
|
-
updateOrganizationRole(organizationId: string, roleId: string, updateOrganizationRole: UpdateOrganizationRole, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole, any
|
|
945
|
+
updateOrganizationRole(organizationId: string, roleId: string, updateOrganizationRole: UpdateOrganizationRole, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrganizationRole, any>>;
|
|
946
946
|
/**
|
|
947
947
|
*
|
|
948
948
|
* @summary Update sandbox default limited network egress
|
|
@@ -952,5 +952,5 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
952
952
|
* @throws {RequiredError}
|
|
953
953
|
* @memberof OrganizationsApi
|
|
954
954
|
*/
|
|
955
|
-
updateSandboxDefaultLimitedNetworkEgress(organizationId: string, organizationSandboxDefaultLimitedNetworkEgress: OrganizationSandboxDefaultLimitedNetworkEgress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
955
|
+
updateSandboxDefaultLimitedNetworkEgress(organizationId: string, organizationSandboxDefaultLimitedNetworkEgress: OrganizationSandboxDefaultLimitedNetworkEgress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
956
956
|
}
|
package/src/api/preview-api.d.ts
CHANGED
|
@@ -120,7 +120,7 @@ export declare class PreviewApi extends BaseAPI {
|
|
|
120
120
|
* @throws {RequiredError}
|
|
121
121
|
* @memberof PreviewApi
|
|
122
122
|
*/
|
|
123
|
-
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
123
|
+
hasSandboxAccess(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
124
124
|
/**
|
|
125
125
|
*
|
|
126
126
|
* @summary Check if sandbox is public
|
|
@@ -129,7 +129,7 @@ export declare class PreviewApi extends BaseAPI {
|
|
|
129
129
|
* @throws {RequiredError}
|
|
130
130
|
* @memberof PreviewApi
|
|
131
131
|
*/
|
|
132
|
-
isSandboxPublic(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any
|
|
132
|
+
isSandboxPublic(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
133
133
|
/**
|
|
134
134
|
*
|
|
135
135
|
* @summary Check if sandbox auth token is valid
|
|
@@ -139,5 +139,5 @@ export declare class PreviewApi extends BaseAPI {
|
|
|
139
139
|
* @throws {RequiredError}
|
|
140
140
|
* @memberof PreviewApi
|
|
141
141
|
*/
|
|
142
|
-
isValidAuthToken(sandboxId: string, authToken: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any
|
|
142
|
+
isValidAuthToken(sandboxId: string, authToken: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
143
143
|
}
|
package/src/api/runners-api.d.ts
CHANGED
|
@@ -28,6 +28,13 @@ export declare const RunnersApiAxiosParamCreator: (configuration?: Configuration
|
|
|
28
28
|
* @throws {RequiredError}
|
|
29
29
|
*/
|
|
30
30
|
createRunner: (createRunner: CreateRunner, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @summary Get info for authenticated runner
|
|
34
|
+
* @param {*} [options] Override http request option.
|
|
35
|
+
* @throws {RequiredError}
|
|
36
|
+
*/
|
|
37
|
+
getInfoForAuthenticatedRunner: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
38
|
/**
|
|
32
39
|
*
|
|
33
40
|
* @summary Get runner by sandbox ID
|
|
@@ -73,6 +80,13 @@ export declare const RunnersApiFp: (configuration?: Configuration) => {
|
|
|
73
80
|
* @throws {RequiredError}
|
|
74
81
|
*/
|
|
75
82
|
createRunner(createRunner: CreateRunner, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @summary Get info for authenticated runner
|
|
86
|
+
* @param {*} [options] Override http request option.
|
|
87
|
+
* @throws {RequiredError}
|
|
88
|
+
*/
|
|
89
|
+
getInfoForAuthenticatedRunner(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Runner>>;
|
|
76
90
|
/**
|
|
77
91
|
*
|
|
78
92
|
* @summary Get runner by sandbox ID
|
|
@@ -118,6 +132,13 @@ export declare const RunnersApiFactory: (configuration?: Configuration, basePath
|
|
|
118
132
|
* @throws {RequiredError}
|
|
119
133
|
*/
|
|
120
134
|
createRunner(createRunner: CreateRunner, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary Get info for authenticated runner
|
|
138
|
+
* @param {*} [options] Override http request option.
|
|
139
|
+
* @throws {RequiredError}
|
|
140
|
+
*/
|
|
141
|
+
getInfoForAuthenticatedRunner(options?: RawAxiosRequestConfig): AxiosPromise<Runner>;
|
|
121
142
|
/**
|
|
122
143
|
*
|
|
123
144
|
* @summary Get runner by sandbox ID
|
|
@@ -165,7 +186,15 @@ export declare class RunnersApi extends BaseAPI {
|
|
|
165
186
|
* @throws {RequiredError}
|
|
166
187
|
* @memberof RunnersApi
|
|
167
188
|
*/
|
|
168
|
-
createRunner(createRunner: CreateRunner, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
189
|
+
createRunner(createRunner: CreateRunner, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
190
|
+
/**
|
|
191
|
+
*
|
|
192
|
+
* @summary Get info for authenticated runner
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
* @memberof RunnersApi
|
|
196
|
+
*/
|
|
197
|
+
getInfoForAuthenticatedRunner(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Runner, any>>;
|
|
169
198
|
/**
|
|
170
199
|
*
|
|
171
200
|
* @summary Get runner by sandbox ID
|
|
@@ -174,7 +203,7 @@ export declare class RunnersApi extends BaseAPI {
|
|
|
174
203
|
* @throws {RequiredError}
|
|
175
204
|
* @memberof RunnersApi
|
|
176
205
|
*/
|
|
177
|
-
getRunnerBySandboxId(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Runner, any
|
|
206
|
+
getRunnerBySandboxId(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Runner, any>>;
|
|
178
207
|
/**
|
|
179
208
|
*
|
|
180
209
|
* @summary Get runners by snapshot ref
|
|
@@ -183,7 +212,7 @@ export declare class RunnersApi extends BaseAPI {
|
|
|
183
212
|
* @throws {RequiredError}
|
|
184
213
|
* @memberof RunnersApi
|
|
185
214
|
*/
|
|
186
|
-
getRunnersBySnapshotRef(ref: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerSnapshotDto[], any
|
|
215
|
+
getRunnersBySnapshotRef(ref: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerSnapshotDto[], any>>;
|
|
187
216
|
/**
|
|
188
217
|
*
|
|
189
218
|
* @summary List all runners
|
|
@@ -191,7 +220,7 @@ export declare class RunnersApi extends BaseAPI {
|
|
|
191
220
|
* @throws {RequiredError}
|
|
192
221
|
* @memberof RunnersApi
|
|
193
222
|
*/
|
|
194
|
-
listRunners(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
223
|
+
listRunners(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
195
224
|
/**
|
|
196
225
|
*
|
|
197
226
|
* @summary Update runner scheduling status
|
|
@@ -200,5 +229,5 @@ export declare class RunnersApi extends BaseAPI {
|
|
|
200
229
|
* @throws {RequiredError}
|
|
201
230
|
* @memberof RunnersApi
|
|
202
231
|
*/
|
|
203
|
-
updateRunnerScheduling(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any
|
|
232
|
+
updateRunnerScheduling(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
204
233
|
}
|