@daytonaio/api-client 0.140.0 → 0.141.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/package.json +1 -1
- package/src/api/admin-api.d.ts +6 -6
- 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/docker-registry-api.d.ts +7 -7
- package/src/api/health-api.d.ts +1 -1
- package/src/api/jobs-api.d.ts +4 -4
- package/src/api/object-storage-api.d.ts +1 -1
- package/src/api/organizations-api.d.ts +116 -37
- package/src/api/organizations-api.js +146 -0
- package/src/api/organizations-api.js.map +1 -1
- package/src/api/preview-api.d.ts +4 -4
- package/src/api/regions-api.d.ts +1 -1
- package/src/api/runners-api.d.ts +10 -10
- package/src/api/sandbox-api.d.ts +236 -28
- package/src/api/sandbox-api.js +419 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/snapshots-api.d.ts +10 -10
- 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/src/models/index.d.ts +9 -0
- package/src/models/index.js +9 -0
- package/src/models/index.js.map +1 -1
- package/src/models/log-entry.d.ts +76 -0
- package/src/models/log-entry.js +4 -0
- package/src/models/log-entry.js.map +1 -0
- package/src/models/metric-data-point.d.ts +30 -0
- package/src/models/metric-data-point.js +4 -0
- package/src/models/metric-data-point.js.map +1 -0
- package/src/models/metric-series.d.ts +31 -0
- package/src/models/metric-series.js +16 -0
- package/src/models/metric-series.js.map +1 -0
- package/src/models/metrics-response.d.ts +25 -0
- package/src/models/metrics-response.js +16 -0
- package/src/models/metrics-response.js.map +1 -0
- package/src/models/organization.d.ts +24 -0
- package/src/models/otel-config.d.ts +32 -0
- package/src/models/otel-config.js +4 -0
- package/src/models/otel-config.js.map +1 -0
- package/src/models/paginated-logs.d.ts +43 -0
- package/src/models/paginated-logs.js +16 -0
- package/src/models/paginated-logs.js.map +1 -0
- package/src/models/paginated-traces.d.ts +43 -0
- package/src/models/paginated-traces.js +16 -0
- package/src/models/paginated-traces.js.map +1 -0
- package/src/models/trace-span.d.ts +74 -0
- package/src/models/trace-span.js +4 -0
- package/src/models/trace-span.js.map +1 -0
- package/src/models/trace-summary.d.ts +60 -0
- package/src/models/trace-summary.js +4 -0
- package/src/models/trace-summary.js.map +1 -0
- package/src/models/update-organization-quota.d.ts +18 -0
package/src/api/users-api.d.ts
CHANGED
|
@@ -256,7 +256,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
256
256
|
* @throws {RequiredError}
|
|
257
257
|
* @memberof UsersApi
|
|
258
258
|
*/
|
|
259
|
-
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
259
|
+
createUser(createUser: CreateUser, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
260
260
|
/**
|
|
261
261
|
*
|
|
262
262
|
* @summary Enroll in SMS MFA
|
|
@@ -264,7 +264,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
264
264
|
* @throws {RequiredError}
|
|
265
265
|
* @memberof UsersApi
|
|
266
266
|
*/
|
|
267
|
-
enrollInSmsMfa(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
267
|
+
enrollInSmsMfa(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
268
268
|
/**
|
|
269
269
|
*
|
|
270
270
|
* @summary Get authenticated user
|
|
@@ -272,7 +272,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
272
272
|
* @throws {RequiredError}
|
|
273
273
|
* @memberof UsersApi
|
|
274
274
|
*/
|
|
275
|
-
getAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
275
|
+
getAuthenticatedUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
276
276
|
/**
|
|
277
277
|
*
|
|
278
278
|
* @summary Get available account providers
|
|
@@ -280,7 +280,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
280
280
|
* @throws {RequiredError}
|
|
281
281
|
* @memberof UsersApi
|
|
282
282
|
*/
|
|
283
|
-
getAvailableAccountProviders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountProvider[], any>>;
|
|
283
|
+
getAvailableAccountProviders(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountProvider[], any, {}>>;
|
|
284
284
|
/**
|
|
285
285
|
*
|
|
286
286
|
* @summary Get user by ID
|
|
@@ -289,7 +289,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
289
289
|
* @throws {RequiredError}
|
|
290
290
|
* @memberof UsersApi
|
|
291
291
|
*/
|
|
292
|
-
getUser(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any>>;
|
|
292
|
+
getUser(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<User, any, {}>>;
|
|
293
293
|
/**
|
|
294
294
|
*
|
|
295
295
|
* @summary Link account
|
|
@@ -298,7 +298,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
298
298
|
* @throws {RequiredError}
|
|
299
299
|
* @memberof UsersApi
|
|
300
300
|
*/
|
|
301
|
-
linkAccount(createLinkedAccount: CreateLinkedAccount, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
301
|
+
linkAccount(createLinkedAccount: CreateLinkedAccount, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
302
302
|
/**
|
|
303
303
|
*
|
|
304
304
|
* @summary List all users
|
|
@@ -306,7 +306,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
306
306
|
* @throws {RequiredError}
|
|
307
307
|
* @memberof UsersApi
|
|
308
308
|
*/
|
|
309
|
-
listUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
|
+
listUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
310
310
|
/**
|
|
311
311
|
*
|
|
312
312
|
* @summary Regenerate user key pair
|
|
@@ -315,7 +315,7 @@ export declare class UsersApi extends BaseAPI {
|
|
|
315
315
|
* @throws {RequiredError}
|
|
316
316
|
* @memberof UsersApi
|
|
317
317
|
*/
|
|
318
|
-
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
318
|
+
regenerateKeyPair(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
319
319
|
/**
|
|
320
320
|
*
|
|
321
321
|
* @summary Unlink account
|
|
@@ -325,5 +325,5 @@ export declare class UsersApi extends BaseAPI {
|
|
|
325
325
|
* @throws {RequiredError}
|
|
326
326
|
* @memberof UsersApi
|
|
327
327
|
*/
|
|
328
|
-
unlinkAccount(provider: string, providerUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
328
|
+
unlinkAccount(provider: string, providerUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
329
329
|
}
|
package/src/api/volumes-api.d.ts
CHANGED
|
@@ -183,7 +183,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
183
183
|
* @throws {RequiredError}
|
|
184
184
|
* @memberof VolumesApi
|
|
185
185
|
*/
|
|
186
|
-
createVolume(createVolume: CreateVolume, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
186
|
+
createVolume(createVolume: CreateVolume, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
187
187
|
/**
|
|
188
188
|
*
|
|
189
189
|
* @summary Delete volume
|
|
@@ -193,7 +193,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
193
193
|
* @throws {RequiredError}
|
|
194
194
|
* @memberof VolumesApi
|
|
195
195
|
*/
|
|
196
|
-
deleteVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
196
|
+
deleteVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
197
197
|
/**
|
|
198
198
|
*
|
|
199
199
|
* @summary Get volume details
|
|
@@ -203,7 +203,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
203
203
|
* @throws {RequiredError}
|
|
204
204
|
* @memberof VolumesApi
|
|
205
205
|
*/
|
|
206
|
-
getVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
206
|
+
getVolume(volumeId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
207
207
|
/**
|
|
208
208
|
*
|
|
209
209
|
* @summary Get volume details by name
|
|
@@ -213,7 +213,7 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
213
213
|
* @throws {RequiredError}
|
|
214
214
|
* @memberof VolumesApi
|
|
215
215
|
*/
|
|
216
|
-
getVolumeByName(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any>>;
|
|
216
|
+
getVolumeByName(name: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto, any, {}>>;
|
|
217
217
|
/**
|
|
218
218
|
*
|
|
219
219
|
* @summary List all volumes
|
|
@@ -223,5 +223,5 @@ export declare class VolumesApi extends BaseAPI {
|
|
|
223
223
|
* @throws {RequiredError}
|
|
224
224
|
* @memberof VolumesApi
|
|
225
225
|
*/
|
|
226
|
-
listVolumes(xDaytonaOrganizationID?: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto[], any>>;
|
|
226
|
+
listVolumes(xDaytonaOrganizationID?: string, includeDeleted?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VolumeDto[], any, {}>>;
|
|
227
227
|
}
|
|
@@ -215,7 +215,7 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
215
215
|
* @throws {RequiredError}
|
|
216
216
|
* @memberof WebhooksApi
|
|
217
217
|
*/
|
|
218
|
-
webhookControllerGetAppPortalAccess(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookAppPortalAccess, any>>;
|
|
218
|
+
webhookControllerGetAppPortalAccess(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookAppPortalAccess, any, {}>>;
|
|
219
219
|
/**
|
|
220
220
|
*
|
|
221
221
|
* @summary Get webhook initialization status for an organization
|
|
@@ -225,7 +225,7 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
225
225
|
* @throws {RequiredError}
|
|
226
226
|
* @memberof WebhooksApi
|
|
227
227
|
*/
|
|
228
|
-
webhookControllerGetInitializationStatus(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookInitializationStatus, any>>;
|
|
228
|
+
webhookControllerGetInitializationStatus(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookInitializationStatus, any, {}>>;
|
|
229
229
|
/**
|
|
230
230
|
*
|
|
231
231
|
* @summary Get delivery attempts for a webhook message
|
|
@@ -236,7 +236,7 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
236
236
|
* @throws {RequiredError}
|
|
237
237
|
* @memberof WebhooksApi
|
|
238
238
|
*/
|
|
239
|
-
webhookControllerGetMessageAttempts(organizationId: string, messageId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
|
|
239
|
+
webhookControllerGetMessageAttempts(organizationId: string, messageId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any, {}>>;
|
|
240
240
|
/**
|
|
241
241
|
*
|
|
242
242
|
* @summary Get webhook service status
|
|
@@ -245,7 +245,7 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
245
245
|
* @throws {RequiredError}
|
|
246
246
|
* @memberof WebhooksApi
|
|
247
247
|
*/
|
|
248
|
-
webhookControllerGetStatus(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookControllerGetStatus200Response, any>>;
|
|
248
|
+
webhookControllerGetStatus(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookControllerGetStatus200Response, any, {}>>;
|
|
249
249
|
/**
|
|
250
250
|
*
|
|
251
251
|
* @summary Initialize webhooks for an organization
|
|
@@ -255,7 +255,7 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
255
255
|
* @throws {RequiredError}
|
|
256
256
|
* @memberof WebhooksApi
|
|
257
257
|
*/
|
|
258
|
-
webhookControllerInitializeWebhooks(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
258
|
+
webhookControllerInitializeWebhooks(organizationId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
259
259
|
/**
|
|
260
260
|
*
|
|
261
261
|
* @summary Send a webhook message to an organization
|
|
@@ -266,5 +266,5 @@ export declare class WebhooksApi extends BaseAPI {
|
|
|
266
266
|
* @throws {RequiredError}
|
|
267
267
|
* @memberof WebhooksApi
|
|
268
268
|
*/
|
|
269
|
-
webhookControllerSendWebhook(organizationId: string, sendWebhookDto: SendWebhookDto, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
269
|
+
webhookControllerSendWebhook(organizationId: string, sendWebhookDto: SendWebhookDto, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
270
270
|
}
|
|
@@ -498,7 +498,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
498
498
|
* @throws {RequiredError}
|
|
499
499
|
* @memberof WorkspaceApi
|
|
500
500
|
*/
|
|
501
|
-
archiveWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
501
|
+
archiveWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
502
502
|
/**
|
|
503
503
|
*
|
|
504
504
|
* @summary [DEPRECATED] Create workspace backup
|
|
@@ -509,7 +509,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
509
509
|
* @throws {RequiredError}
|
|
510
510
|
* @memberof WorkspaceApi
|
|
511
511
|
*/
|
|
512
|
-
createBackupWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any>>;
|
|
512
|
+
createBackupWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
513
513
|
/**
|
|
514
514
|
*
|
|
515
515
|
* @summary [DEPRECATED] Create a new workspace
|
|
@@ -520,7 +520,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
520
520
|
* @throws {RequiredError}
|
|
521
521
|
* @memberof WorkspaceApi
|
|
522
522
|
*/
|
|
523
|
-
createWorkspaceDeprecated(createWorkspace: CreateWorkspace, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any>>;
|
|
523
|
+
createWorkspaceDeprecated(createWorkspace: CreateWorkspace, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
524
524
|
/**
|
|
525
525
|
*
|
|
526
526
|
* @summary [DEPRECATED] Delete workspace
|
|
@@ -532,7 +532,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
532
532
|
* @throws {RequiredError}
|
|
533
533
|
* @memberof WorkspaceApi
|
|
534
534
|
*/
|
|
535
|
-
deleteWorkspaceDeprecated(workspaceId: string, force: boolean, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
535
|
+
deleteWorkspaceDeprecated(workspaceId: string, force: boolean, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
536
536
|
/**
|
|
537
537
|
*
|
|
538
538
|
* @summary [DEPRECATED] Get build logs
|
|
@@ -544,7 +544,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
544
544
|
* @throws {RequiredError}
|
|
545
545
|
* @memberof WorkspaceApi
|
|
546
546
|
*/
|
|
547
|
-
getBuildLogsWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
547
|
+
getBuildLogsWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
548
548
|
/**
|
|
549
549
|
*
|
|
550
550
|
* @summary [DEPRECATED] Get preview URL for a workspace port
|
|
@@ -556,7 +556,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
556
556
|
* @throws {RequiredError}
|
|
557
557
|
* @memberof WorkspaceApi
|
|
558
558
|
*/
|
|
559
|
-
getPortPreviewUrlWorkspaceDeprecated(workspaceId: string, port: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkspacePortPreviewUrl, any>>;
|
|
559
|
+
getPortPreviewUrlWorkspaceDeprecated(workspaceId: string, port: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkspacePortPreviewUrl, any, {}>>;
|
|
560
560
|
/**
|
|
561
561
|
*
|
|
562
562
|
* @summary [DEPRECATED] Get workspace details
|
|
@@ -568,7 +568,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
568
568
|
* @throws {RequiredError}
|
|
569
569
|
* @memberof WorkspaceApi
|
|
570
570
|
*/
|
|
571
|
-
getWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, verbose?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any>>;
|
|
571
|
+
getWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, verbose?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace, any, {}>>;
|
|
572
572
|
/**
|
|
573
573
|
*
|
|
574
574
|
* @summary [DEPRECATED] List all workspaces
|
|
@@ -580,7 +580,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
580
580
|
* @throws {RequiredError}
|
|
581
581
|
* @memberof WorkspaceApi
|
|
582
582
|
*/
|
|
583
|
-
listWorkspacesDeprecated(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace[], any>>;
|
|
583
|
+
listWorkspacesDeprecated(xDaytonaOrganizationID?: string, verbose?: boolean, labels?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Workspace[], any, {}>>;
|
|
584
584
|
/**
|
|
585
585
|
*
|
|
586
586
|
* @summary [DEPRECATED] Replace workspace labels
|
|
@@ -592,7 +592,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
592
592
|
* @throws {RequiredError}
|
|
593
593
|
* @memberof WorkspaceApi
|
|
594
594
|
*/
|
|
595
|
-
replaceLabelsWorkspaceDeprecated(workspaceId: string, sandboxLabels: SandboxLabels, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxLabels, any>>;
|
|
595
|
+
replaceLabelsWorkspaceDeprecated(workspaceId: string, sandboxLabels: SandboxLabels, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxLabels, any, {}>>;
|
|
596
596
|
/**
|
|
597
597
|
*
|
|
598
598
|
* @summary [DEPRECATED] Set workspace auto-archive interval
|
|
@@ -604,7 +604,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
604
604
|
* @throws {RequiredError}
|
|
605
605
|
* @memberof WorkspaceApi
|
|
606
606
|
*/
|
|
607
|
-
setAutoArchiveIntervalWorkspaceDeprecated(workspaceId: string, interval: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
607
|
+
setAutoArchiveIntervalWorkspaceDeprecated(workspaceId: string, interval: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
608
608
|
/**
|
|
609
609
|
*
|
|
610
610
|
* @summary [DEPRECATED] Set workspace auto-stop interval
|
|
@@ -616,7 +616,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
616
616
|
* @throws {RequiredError}
|
|
617
617
|
* @memberof WorkspaceApi
|
|
618
618
|
*/
|
|
619
|
-
setAutostopIntervalWorkspaceDeprecated(workspaceId: string, interval: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
619
|
+
setAutostopIntervalWorkspaceDeprecated(workspaceId: string, interval: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
620
620
|
/**
|
|
621
621
|
*
|
|
622
622
|
* @summary [DEPRECATED] Start workspace
|
|
@@ -627,7 +627,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
627
627
|
* @throws {RequiredError}
|
|
628
628
|
* @memberof WorkspaceApi
|
|
629
629
|
*/
|
|
630
|
-
startWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
630
|
+
startWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
631
631
|
/**
|
|
632
632
|
*
|
|
633
633
|
* @summary [DEPRECATED] Stop workspace
|
|
@@ -638,7 +638,7 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
638
638
|
* @throws {RequiredError}
|
|
639
639
|
* @memberof WorkspaceApi
|
|
640
640
|
*/
|
|
641
|
-
stopWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
641
|
+
stopWorkspaceDeprecated(workspaceId: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
642
642
|
/**
|
|
643
643
|
*
|
|
644
644
|
* @summary [DEPRECATED] Update public status
|
|
@@ -650,5 +650,5 @@ export declare class WorkspaceApi extends BaseAPI {
|
|
|
650
650
|
* @throws {RequiredError}
|
|
651
651
|
* @memberof WorkspaceApi
|
|
652
652
|
*/
|
|
653
|
-
updatePublicStatusWorkspaceDeprecated(workspaceId: string, isPublic: boolean, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
653
|
+
updatePublicStatusWorkspaceDeprecated(workspaceId: string, isPublic: boolean, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
654
654
|
}
|
package/src/models/index.d.ts
CHANGED
|
@@ -59,12 +59,16 @@ export * from './keyboard-hotkey-request';
|
|
|
59
59
|
export * from './keyboard-press-request';
|
|
60
60
|
export * from './keyboard-type-request';
|
|
61
61
|
export * from './list-branch-response';
|
|
62
|
+
export * from './log-entry';
|
|
62
63
|
export * from './lsp-completion-params';
|
|
63
64
|
export * from './lsp-document-request';
|
|
64
65
|
export * from './lsp-location';
|
|
65
66
|
export * from './lsp-server-request';
|
|
66
67
|
export * from './lsp-symbol';
|
|
67
68
|
export * from './match';
|
|
69
|
+
export * from './metric-data-point';
|
|
70
|
+
export * from './metric-series';
|
|
71
|
+
export * from './metrics-response';
|
|
68
72
|
export * from './mouse-click-request';
|
|
69
73
|
export * from './mouse-click-response';
|
|
70
74
|
export * from './mouse-drag-request';
|
|
@@ -82,10 +86,13 @@ export * from './organization-sandbox-default-limited-network-egress';
|
|
|
82
86
|
export * from './organization-suspension';
|
|
83
87
|
export * from './organization-usage-overview';
|
|
84
88
|
export * from './organization-user';
|
|
89
|
+
export * from './otel-config';
|
|
85
90
|
export * from './paginated-audit-logs';
|
|
86
91
|
export * from './paginated-jobs';
|
|
92
|
+
export * from './paginated-logs';
|
|
87
93
|
export * from './paginated-sandboxes';
|
|
88
94
|
export * from './paginated-snapshots';
|
|
95
|
+
export * from './paginated-traces';
|
|
89
96
|
export * from './poll-jobs-response';
|
|
90
97
|
export * from './port-preview-url';
|
|
91
98
|
export * from './position';
|
|
@@ -141,6 +148,8 @@ export * from './ssh-access-dto';
|
|
|
141
148
|
export * from './ssh-access-validation-dto';
|
|
142
149
|
export * from './storage-access-dto';
|
|
143
150
|
export * from './toolbox-proxy-url';
|
|
151
|
+
export * from './trace-span';
|
|
152
|
+
export * from './trace-summary';
|
|
144
153
|
export * from './update-docker-registry';
|
|
145
154
|
export * from './update-job-status';
|
|
146
155
|
export * from './update-organization-default-region';
|
package/src/models/index.js
CHANGED
|
@@ -75,12 +75,16 @@ __exportStar(require("./keyboard-hotkey-request"), exports);
|
|
|
75
75
|
__exportStar(require("./keyboard-press-request"), exports);
|
|
76
76
|
__exportStar(require("./keyboard-type-request"), exports);
|
|
77
77
|
__exportStar(require("./list-branch-response"), exports);
|
|
78
|
+
__exportStar(require("./log-entry"), exports);
|
|
78
79
|
__exportStar(require("./lsp-completion-params"), exports);
|
|
79
80
|
__exportStar(require("./lsp-document-request"), exports);
|
|
80
81
|
__exportStar(require("./lsp-location"), exports);
|
|
81
82
|
__exportStar(require("./lsp-server-request"), exports);
|
|
82
83
|
__exportStar(require("./lsp-symbol"), exports);
|
|
83
84
|
__exportStar(require("./match"), exports);
|
|
85
|
+
__exportStar(require("./metric-data-point"), exports);
|
|
86
|
+
__exportStar(require("./metric-series"), exports);
|
|
87
|
+
__exportStar(require("./metrics-response"), exports);
|
|
84
88
|
__exportStar(require("./mouse-click-request"), exports);
|
|
85
89
|
__exportStar(require("./mouse-click-response"), exports);
|
|
86
90
|
__exportStar(require("./mouse-drag-request"), exports);
|
|
@@ -98,10 +102,13 @@ __exportStar(require("./organization-sandbox-default-limited-network-egress"), e
|
|
|
98
102
|
__exportStar(require("./organization-suspension"), exports);
|
|
99
103
|
__exportStar(require("./organization-usage-overview"), exports);
|
|
100
104
|
__exportStar(require("./organization-user"), exports);
|
|
105
|
+
__exportStar(require("./otel-config"), exports);
|
|
101
106
|
__exportStar(require("./paginated-audit-logs"), exports);
|
|
102
107
|
__exportStar(require("./paginated-jobs"), exports);
|
|
108
|
+
__exportStar(require("./paginated-logs"), exports);
|
|
103
109
|
__exportStar(require("./paginated-sandboxes"), exports);
|
|
104
110
|
__exportStar(require("./paginated-snapshots"), exports);
|
|
111
|
+
__exportStar(require("./paginated-traces"), exports);
|
|
105
112
|
__exportStar(require("./poll-jobs-response"), exports);
|
|
106
113
|
__exportStar(require("./port-preview-url"), exports);
|
|
107
114
|
__exportStar(require("./position"), exports);
|
|
@@ -157,6 +164,8 @@ __exportStar(require("./ssh-access-dto"), exports);
|
|
|
157
164
|
__exportStar(require("./ssh-access-validation-dto"), exports);
|
|
158
165
|
__exportStar(require("./storage-access-dto"), exports);
|
|
159
166
|
__exportStar(require("./toolbox-proxy-url"), exports);
|
|
167
|
+
__exportStar(require("./trace-span"), exports);
|
|
168
|
+
__exportStar(require("./trace-summary"), exports);
|
|
160
169
|
__exportStar(require("./update-docker-registry"), exports);
|
|
161
170
|
__exportStar(require("./update-job-status"), exports);
|
|
162
171
|
__exportStar(require("./update-organization-default-region"), exports);
|
package/src/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface LogEntry
|
|
16
|
+
*/
|
|
17
|
+
export interface LogEntry {
|
|
18
|
+
/**
|
|
19
|
+
* Timestamp of the log entry
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof LogEntry
|
|
22
|
+
*/
|
|
23
|
+
timestamp: string;
|
|
24
|
+
/**
|
|
25
|
+
* Log message body
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof LogEntry
|
|
28
|
+
*/
|
|
29
|
+
body: string;
|
|
30
|
+
/**
|
|
31
|
+
* Severity level text (e.g., INFO, WARN, ERROR)
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof LogEntry
|
|
34
|
+
*/
|
|
35
|
+
severityText: string;
|
|
36
|
+
/**
|
|
37
|
+
* Severity level number
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof LogEntry
|
|
40
|
+
*/
|
|
41
|
+
severityNumber?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Service name that generated the log
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof LogEntry
|
|
46
|
+
*/
|
|
47
|
+
serviceName: string;
|
|
48
|
+
/**
|
|
49
|
+
* Resource attributes from OTEL
|
|
50
|
+
* @type {{ [key: string]: string; }}
|
|
51
|
+
* @memberof LogEntry
|
|
52
|
+
*/
|
|
53
|
+
resourceAttributes: {
|
|
54
|
+
[key: string]: string;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Log-specific attributes
|
|
58
|
+
* @type {{ [key: string]: string; }}
|
|
59
|
+
* @memberof LogEntry
|
|
60
|
+
*/
|
|
61
|
+
logAttributes: {
|
|
62
|
+
[key: string]: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Associated trace ID if available
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof LogEntry
|
|
68
|
+
*/
|
|
69
|
+
traceId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Associated span ID if available
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof LogEntry
|
|
74
|
+
*/
|
|
75
|
+
spanId?: string;
|
|
76
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"log-entry.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/log-entry.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface MetricDataPoint
|
|
16
|
+
*/
|
|
17
|
+
export interface MetricDataPoint {
|
|
18
|
+
/**
|
|
19
|
+
* Timestamp of the data point
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof MetricDataPoint
|
|
22
|
+
*/
|
|
23
|
+
timestamp: string;
|
|
24
|
+
/**
|
|
25
|
+
* Value at this timestamp
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof MetricDataPoint
|
|
28
|
+
*/
|
|
29
|
+
value: number;
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metric-data-point.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/metric-data-point.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { MetricDataPoint } from './metric-data-point';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface MetricSeries
|
|
17
|
+
*/
|
|
18
|
+
export interface MetricSeries {
|
|
19
|
+
/**
|
|
20
|
+
* Name of the metric
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof MetricSeries
|
|
23
|
+
*/
|
|
24
|
+
metricName: string;
|
|
25
|
+
/**
|
|
26
|
+
* Data points for this metric
|
|
27
|
+
* @type {Array<MetricDataPoint>}
|
|
28
|
+
* @memberof MetricSeries
|
|
29
|
+
*/
|
|
30
|
+
dataPoints: Array<MetricDataPoint>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona
|
|
6
|
+
* Daytona AI platform API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: support@daytona.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
//# sourceMappingURL=metric-series.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metric-series.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/metric-series.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Daytona
|
|
3
|
+
* Daytona AI platform API Docs
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: support@daytona.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { MetricSeries } from './metric-series';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface MetricsResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface MetricsResponse {
|
|
19
|
+
/**
|
|
20
|
+
* List of metric series
|
|
21
|
+
* @type {Array<MetricSeries>}
|
|
22
|
+
* @memberof MetricsResponse
|
|
23
|
+
*/
|
|
24
|
+
series: Array<MetricSeries>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Daytona
|
|
6
|
+
* Daytona AI platform API Docs
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: support@daytona.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
//# sourceMappingURL=metrics-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metrics-response.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/metrics-response.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -129,4 +129,28 @@ export interface Organization {
|
|
|
129
129
|
* @memberof Organization
|
|
130
130
|
*/
|
|
131
131
|
sandboxLifecycleRateLimit: number | null;
|
|
132
|
+
/**
|
|
133
|
+
* Experimental configuration
|
|
134
|
+
* @type {object}
|
|
135
|
+
* @memberof Organization
|
|
136
|
+
*/
|
|
137
|
+
experimentalConfig: object;
|
|
138
|
+
/**
|
|
139
|
+
* Authenticated rate limit TTL in seconds
|
|
140
|
+
* @type {number}
|
|
141
|
+
* @memberof Organization
|
|
142
|
+
*/
|
|
143
|
+
authenticatedRateLimitTtlSeconds: number | null;
|
|
144
|
+
/**
|
|
145
|
+
* Sandbox create rate limit TTL in seconds
|
|
146
|
+
* @type {number}
|
|
147
|
+
* @memberof Organization
|
|
148
|
+
*/
|
|
149
|
+
sandboxCreateRateLimitTtlSeconds: number | null;
|
|
150
|
+
/**
|
|
151
|
+
* Sandbox lifecycle rate limit TTL in seconds
|
|
152
|
+
* @type {number}
|
|
153
|
+
* @memberof Organization
|
|
154
|
+
*/
|
|
155
|
+
sandboxLifecycleRateLimitTtlSeconds: number | null;
|
|
132
156
|
}
|