@daytonaio/api-client 0.103.0 → 0.104.0-alpha.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 +3 -3
- package/src/api/config-api.d.ts +70 -0
- package/src/api/config-api.js +119 -0
- package/src/api/config-api.js.map +1 -0
- 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 +5 -5
- package/src/api/sandbox-api.d.ts +97 -18
- package/src/api/sandbox-api.js +165 -0
- package/src/api/sandbox-api.js.map +1 -1
- package/src/api/snapshots-api.d.ts +9 -9
- package/src/api/toolbox-api.d.ts +62 -62
- 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/api.d.ts +1 -0
- package/src/api.js +1 -0
- package/src/api.js.map +1 -1
- package/src/models/announcement.d.ts +30 -0
- package/src/models/announcement.js +4 -0
- package/src/models/announcement.js.map +1 -0
- package/src/models/daytona-configuration.d.ts +107 -0
- package/src/models/daytona-configuration.js +16 -0
- package/src/models/daytona-configuration.js.map +1 -0
- package/src/models/index.d.ts +5 -0
- package/src/models/index.js +5 -0
- package/src/models/index.js.map +1 -1
- package/src/models/oidc-config.d.ts +36 -0
- package/src/models/oidc-config.js +4 -0
- package/src/models/oidc-config.js.map +1 -0
- package/src/models/posthog-config.d.ts +30 -0
- package/src/models/posthog-config.js +4 -0
- package/src/models/posthog-config.js.map +1 -0
- package/src/models/update-sandbox-state-dto.d.ts +43 -0
- package/src/models/update-sandbox-state-dto.js +23 -0
- package/src/models/update-sandbox-state-dto.js.map +1 -0
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<PortPreviewUrl, any>>;
|
|
559
|
+
getPortPreviewUrlWorkspaceDeprecated(workspaceId: string, port: number, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortPreviewUrl, 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/api.d.ts
CHANGED
package/src/api.js
CHANGED
|
@@ -28,6 +28,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
28
28
|
*/
|
|
29
29
|
__exportStar(require("./api/api-keys-api"), exports);
|
|
30
30
|
__exportStar(require("./api/audit-api"), exports);
|
|
31
|
+
__exportStar(require("./api/config-api"), exports);
|
|
31
32
|
__exportStar(require("./api/docker-registry-api"), exports);
|
|
32
33
|
__exportStar(require("./api/health-api"), exports);
|
|
33
34
|
__exportStar(require("./api/object-storage-api"), exports);
|
package/src/api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,qDAAkC;AAClC,kDAA+B;AAC/B,4DAAyC;AACzC,mDAAgC;AAChC,2DAAwC;AACxC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,sDAAmC;AACnC,oDAAiC;AACjC,kDAA+B;AAC/B,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC"}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../../libs/api-client/src/api.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB;;;;;;;;;;GAUG;AAEH,qDAAkC;AAClC,kDAA+B;AAC/B,mDAAgC;AAChC,4DAAyC;AACzC,mDAAgC;AAChC,2DAAwC;AACxC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,oDAAiC;AACjC,sDAAmC;AACnC,oDAAiC;AACjC,kDAA+B;AAC/B,oDAAiC;AACjC,qDAAkC;AAClC,sDAAmC"}
|
|
@@ -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 Announcement
|
|
16
|
+
*/
|
|
17
|
+
export interface Announcement {
|
|
18
|
+
/**
|
|
19
|
+
* The announcement text
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Announcement
|
|
22
|
+
*/
|
|
23
|
+
text: string;
|
|
24
|
+
/**
|
|
25
|
+
* URL to learn more about the announcement
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof Announcement
|
|
28
|
+
*/
|
|
29
|
+
learnMoreUrl?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"announcement.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/announcement.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,107 @@
|
|
|
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 { Announcement } from './announcement';
|
|
13
|
+
import type { OidcConfig } from './oidc-config';
|
|
14
|
+
import type { PosthogConfig } from './posthog-config';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface DaytonaConfiguration
|
|
19
|
+
*/
|
|
20
|
+
export interface DaytonaConfiguration {
|
|
21
|
+
/**
|
|
22
|
+
* Daytona version
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof DaytonaConfiguration
|
|
25
|
+
*/
|
|
26
|
+
version: string;
|
|
27
|
+
/**
|
|
28
|
+
* PostHog configuration
|
|
29
|
+
* @type {PosthogConfig}
|
|
30
|
+
* @memberof DaytonaConfiguration
|
|
31
|
+
*/
|
|
32
|
+
posthog?: PosthogConfig;
|
|
33
|
+
/**
|
|
34
|
+
* OIDC configuration
|
|
35
|
+
* @type {OidcConfig}
|
|
36
|
+
* @memberof DaytonaConfiguration
|
|
37
|
+
*/
|
|
38
|
+
oidc: OidcConfig;
|
|
39
|
+
/**
|
|
40
|
+
* Whether linked accounts are enabled
|
|
41
|
+
* @type {boolean}
|
|
42
|
+
* @memberof DaytonaConfiguration
|
|
43
|
+
*/
|
|
44
|
+
linkedAccountsEnabled: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* System announcements
|
|
47
|
+
* @type {{ [key: string]: Announcement; }}
|
|
48
|
+
* @memberof DaytonaConfiguration
|
|
49
|
+
*/
|
|
50
|
+
announcements: {
|
|
51
|
+
[key: string]: Announcement;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Pylon application ID
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof DaytonaConfiguration
|
|
57
|
+
*/
|
|
58
|
+
pylonAppId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Proxy template URL
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof DaytonaConfiguration
|
|
63
|
+
*/
|
|
64
|
+
proxyTemplateUrl: string;
|
|
65
|
+
/**
|
|
66
|
+
* Default snapshot for sandboxes
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof DaytonaConfiguration
|
|
69
|
+
*/
|
|
70
|
+
defaultSnapshot: string;
|
|
71
|
+
/**
|
|
72
|
+
* Dashboard URL
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof DaytonaConfiguration
|
|
75
|
+
*/
|
|
76
|
+
dashboardUrl: string;
|
|
77
|
+
/**
|
|
78
|
+
* Maximum auto-archive interval in minutes
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof DaytonaConfiguration
|
|
81
|
+
*/
|
|
82
|
+
maxAutoArchiveInterval: number;
|
|
83
|
+
/**
|
|
84
|
+
* Whether maintenance mode is enabled
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof DaytonaConfiguration
|
|
87
|
+
*/
|
|
88
|
+
maintananceMode: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Current environment
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof DaytonaConfiguration
|
|
93
|
+
*/
|
|
94
|
+
environment: string;
|
|
95
|
+
/**
|
|
96
|
+
* Billing API URL
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof DaytonaConfiguration
|
|
99
|
+
*/
|
|
100
|
+
billingApiUrl?: string;
|
|
101
|
+
/**
|
|
102
|
+
* SSH Gateway command
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof DaytonaConfiguration
|
|
105
|
+
*/
|
|
106
|
+
sshGatewayCommand?: string;
|
|
107
|
+
}
|
|
@@ -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=daytona-configuration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"daytona-configuration.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/daytona-configuration.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
package/src/models/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './account-provider';
|
|
2
|
+
export * from './announcement';
|
|
2
3
|
export * from './api-key-list';
|
|
3
4
|
export * from './api-key-response';
|
|
4
5
|
export * from './audit-log';
|
|
@@ -27,6 +28,7 @@ export * from './create-snapshot';
|
|
|
27
28
|
export * from './create-user';
|
|
28
29
|
export * from './create-volume';
|
|
29
30
|
export * from './create-workspace';
|
|
31
|
+
export * from './daytona-configuration';
|
|
30
32
|
export * from './display-info-response';
|
|
31
33
|
export * from './docker-registry';
|
|
32
34
|
export * from './execute-request';
|
|
@@ -65,6 +67,7 @@ export * from './mouse-move-response';
|
|
|
65
67
|
export * from './mouse-position';
|
|
66
68
|
export * from './mouse-scroll-request';
|
|
67
69
|
export * from './mouse-scroll-response';
|
|
70
|
+
export * from './oidc-config';
|
|
68
71
|
export * from './organization';
|
|
69
72
|
export * from './organization-invitation';
|
|
70
73
|
export * from './organization-role';
|
|
@@ -76,6 +79,7 @@ export * from './paginated-audit-logs';
|
|
|
76
79
|
export * from './paginated-snapshots-dto';
|
|
77
80
|
export * from './port-preview-url';
|
|
78
81
|
export * from './position';
|
|
82
|
+
export * from './posthog-config';
|
|
79
83
|
export * from './process-errors-response';
|
|
80
84
|
export * from './process-logs-response';
|
|
81
85
|
export * from './process-restart-response';
|
|
@@ -113,6 +117,7 @@ export * from './update-organization-invitation';
|
|
|
113
117
|
export * from './update-organization-member-access';
|
|
114
118
|
export * from './update-organization-quota';
|
|
115
119
|
export * from './update-organization-role';
|
|
120
|
+
export * from './update-sandbox-state-dto';
|
|
116
121
|
export * from './user';
|
|
117
122
|
export * from './user-home-dir-response';
|
|
118
123
|
export * from './user-public-key';
|
package/src/models/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./account-provider"), exports);
|
|
18
|
+
__exportStar(require("./announcement"), exports);
|
|
18
19
|
__exportStar(require("./api-key-list"), exports);
|
|
19
20
|
__exportStar(require("./api-key-response"), exports);
|
|
20
21
|
__exportStar(require("./audit-log"), exports);
|
|
@@ -43,6 +44,7 @@ __exportStar(require("./create-snapshot"), exports);
|
|
|
43
44
|
__exportStar(require("./create-user"), exports);
|
|
44
45
|
__exportStar(require("./create-volume"), exports);
|
|
45
46
|
__exportStar(require("./create-workspace"), exports);
|
|
47
|
+
__exportStar(require("./daytona-configuration"), exports);
|
|
46
48
|
__exportStar(require("./display-info-response"), exports);
|
|
47
49
|
__exportStar(require("./docker-registry"), exports);
|
|
48
50
|
__exportStar(require("./execute-request"), exports);
|
|
@@ -81,6 +83,7 @@ __exportStar(require("./mouse-move-response"), exports);
|
|
|
81
83
|
__exportStar(require("./mouse-position"), exports);
|
|
82
84
|
__exportStar(require("./mouse-scroll-request"), exports);
|
|
83
85
|
__exportStar(require("./mouse-scroll-response"), exports);
|
|
86
|
+
__exportStar(require("./oidc-config"), exports);
|
|
84
87
|
__exportStar(require("./organization"), exports);
|
|
85
88
|
__exportStar(require("./organization-invitation"), exports);
|
|
86
89
|
__exportStar(require("./organization-role"), exports);
|
|
@@ -92,6 +95,7 @@ __exportStar(require("./paginated-audit-logs"), exports);
|
|
|
92
95
|
__exportStar(require("./paginated-snapshots-dto"), exports);
|
|
93
96
|
__exportStar(require("./port-preview-url"), exports);
|
|
94
97
|
__exportStar(require("./position"), exports);
|
|
98
|
+
__exportStar(require("./posthog-config"), exports);
|
|
95
99
|
__exportStar(require("./process-errors-response"), exports);
|
|
96
100
|
__exportStar(require("./process-logs-response"), exports);
|
|
97
101
|
__exportStar(require("./process-restart-response"), exports);
|
|
@@ -129,6 +133,7 @@ __exportStar(require("./update-organization-invitation"), exports);
|
|
|
129
133
|
__exportStar(require("./update-organization-member-access"), exports);
|
|
130
134
|
__exportStar(require("./update-organization-quota"), exports);
|
|
131
135
|
__exportStar(require("./update-organization-role"), exports);
|
|
136
|
+
__exportStar(require("./update-sandbox-state-dto"), exports);
|
|
132
137
|
__exportStar(require("./user"), exports);
|
|
133
138
|
__exportStar(require("./user-home-dir-response"), exports);
|
|
134
139
|
__exportStar(require("./user-public-key"), 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":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,iDAA8B;AAC9B,qDAAkC;AAClC,8CAA2B;AAC3B,+CAA4B;AAC5B,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,mEAAgD;AAChD,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,mDAAgC;AAChC,qDAAkC;AAClC,sDAAmC;AACnC,2DAAwC;AACxC,0DAAuC;AACvC,wDAAqC;AACrC,mEAAgD;AAChD,8DAA2C;AAC3C,6DAA0C;AAC1C,kDAA+B;AAC/B,mDAAgC;AAChC,2DAAwC;AACxC,oDAAiC;AACjC,gDAA6B;AAC7B,kDAA+B;AAC/B,qDAAkC;AAClC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,8DAA2C;AAC3C,qDAAkC;AAClC,+CAA4B;AAC5B,wEAAqD;AACrD,mFAAgE;AAChE,wEAAqD;AACrD,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,wDAAqC;AACrC,mDAAgC;AAChC,yDAAsC;AACtC,0DAAuC;AACvC,iDAA8B;AAC9B,4DAAyC;AACzC,sDAAmC;AACnC,wFAAqE;AACrE,4DAAyC;AACzC,gEAA6C;AAC7C,sDAAmC;AACnC,yDAAsC;AACtC,4DAAyC;AACzC,qDAAkC;AAClC,6CAA0B;AAC1B,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,4DAAyC;AACzC,yDAAsC;AACtC,0CAAuB;AACvB,+DAA4C;AAC5C,6DAA0C;AAC1C,oDAAiC;AACjC,mDAAgC;AAChC,2CAAwB;AACxB,wDAAqC;AACrC,iDAA8B;AAC9B,4CAAyB;AACzB,kDAA+B;AAC/B,0DAAuC;AACvC,iDAA8B;AAC9B,mDAAgC;AAChC,kDAA+B;AAC/B,mDAAgC;AAChC,wDAAqC;AACrC,0DAAuC;AACvC,qDAAkC;AAClC,4CAAyB;AACzB,4DAAyC;AACzC,6DAA0C;AAC1C,oEAAiD;AACjD,iDAA8B;AAC9B,mDAAgC;AAChC,mDAAgC;AAChC,8DAA2C;AAC3C,uDAAoC;AACpC,2DAAwC;AACxC,mEAAgD;AAChD,sEAAmD;AACnD,8DAA2C;AAC3C,6DAA0C;AAC1C,yCAAsB;AACtB,2DAAwC;AACxC,oDAAiC;AACjC,+CAA4B;AAC5B,iDAA8B;AAC9B,8DAA2C;AAC3C,8EAA2D;AAC3D,kEAA+C;AAC/C,qDAAkC;AAClC,sDAAmC;AACnC,8CAA2B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,iDAA8B;AAC9B,iDAA8B;AAC9B,qDAAkC;AAClC,8CAA2B;AAC3B,+CAA4B;AAC5B,4CAAyB;AACzB,uDAAoC;AACpC,oDAAiC;AACjC,oDAAiC;AACjC,mEAAgD;AAChD,gEAA6C;AAC7C,iEAA8C;AAC9C,+DAA4C;AAC5C,mDAAgC;AAChC,qDAAkC;AAClC,sDAAmC;AACnC,2DAAwC;AACxC,0DAAuC;AACvC,wDAAqC;AACrC,mEAAgD;AAChD,8DAA2C;AAC3C,6DAA0C;AAC1C,kDAA+B;AAC/B,mDAAgC;AAChC,2DAAwC;AACxC,oDAAiC;AACjC,gDAA6B;AAC7B,kDAA+B;AAC/B,qDAAkC;AAClC,0DAAuC;AACvC,0DAAuC;AACvC,oDAAiC;AACjC,oDAAiC;AACjC,qDAAkC;AAClC,8CAA2B;AAC3B,gDAA6B;AAC7B,oDAAiC;AACjC,uDAAoC;AACpC,yDAAsC;AACtC,sDAAmC;AACnC,oDAAiC;AACjC,uDAAoC;AACpC,wDAAqC;AACrC,8DAA2C;AAC3C,qDAAkC;AAClC,+CAA4B;AAC5B,wEAAqD;AACrD,mFAAgE;AAChE,wEAAqD;AACrD,4DAAyC;AACzC,2DAAwC;AACxC,0DAAuC;AACvC,yDAAsC;AACtC,0DAAuC;AACvC,yDAAsC;AACtC,iDAA8B;AAC9B,uDAAoC;AACpC,+CAA4B;AAC5B,0CAAuB;AACvB,wDAAqC;AACrC,yDAAsC;AACtC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,wDAAqC;AACrC,mDAAgC;AAChC,yDAAsC;AACtC,0DAAuC;AACvC,gDAA6B;AAC7B,iDAA8B;AAC9B,4DAAyC;AACzC,sDAAmC;AACnC,wFAAqE;AACrE,4DAAyC;AACzC,gEAA6C;AAC7C,sDAAmC;AACnC,yDAAsC;AACtC,4DAAyC;AACzC,qDAAkC;AAClC,6CAA0B;AAC1B,mDAAgC;AAChC,4DAAyC;AACzC,0DAAuC;AACvC,6DAA0C;AAC1C,4DAAyC;AACzC,yDAAsC;AACtC,0CAAuB;AACvB,+DAA4C;AAC5C,6DAA0C;AAC1C,oDAAiC;AACjC,mDAAgC;AAChC,2CAAwB;AACxB,wDAAqC;AACrC,iDAA8B;AAC9B,4CAAyB;AACzB,kDAA+B;AAC/B,0DAAuC;AACvC,iDAA8B;AAC9B,mDAAgC;AAChC,kDAA+B;AAC/B,mDAAgC;AAChC,wDAAqC;AACrC,0DAAuC;AACvC,qDAAkC;AAClC,4CAAyB;AACzB,4DAAyC;AACzC,6DAA0C;AAC1C,oEAAiD;AACjD,iDAA8B;AAC9B,mDAAgC;AAChC,mDAAgC;AAChC,8DAA2C;AAC3C,uDAAoC;AACpC,2DAAwC;AACxC,mEAAgD;AAChD,sEAAmD;AACnD,8DAA2C;AAC3C,6DAA0C;AAC1C,6DAA0C;AAC1C,yCAAsB;AACtB,2DAAwC;AACxC,oDAAiC;AACjC,+CAA4B;AAC5B,iDAA8B;AAC9B,8DAA2C;AAC3C,8EAA2D;AAC3D,kEAA+C;AAC/C,qDAAkC;AAClC,sDAAmC;AACnC,8CAA2B"}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 OidcConfig
|
|
16
|
+
*/
|
|
17
|
+
export interface OidcConfig {
|
|
18
|
+
/**
|
|
19
|
+
* OIDC issuer
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OidcConfig
|
|
22
|
+
*/
|
|
23
|
+
issuer: string;
|
|
24
|
+
/**
|
|
25
|
+
* OIDC client ID
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OidcConfig
|
|
28
|
+
*/
|
|
29
|
+
clientId: string;
|
|
30
|
+
/**
|
|
31
|
+
* OIDC audience
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof OidcConfig
|
|
34
|
+
*/
|
|
35
|
+
audience: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"oidc-config.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/oidc-config.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 PosthogConfig
|
|
16
|
+
*/
|
|
17
|
+
export interface PosthogConfig {
|
|
18
|
+
/**
|
|
19
|
+
* PostHog API key
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PosthogConfig
|
|
22
|
+
*/
|
|
23
|
+
apiKey: string;
|
|
24
|
+
/**
|
|
25
|
+
* PostHog host URL
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PosthogConfig
|
|
28
|
+
*/
|
|
29
|
+
host: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"posthog-config.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/models/posthog-config.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,43 @@
|
|
|
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 UpdateSandboxStateDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateSandboxStateDto {
|
|
18
|
+
/**
|
|
19
|
+
* The new state for the sandbox
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateSandboxStateDto
|
|
22
|
+
*/
|
|
23
|
+
state: UpdateSandboxStateDtoStateEnum;
|
|
24
|
+
}
|
|
25
|
+
export declare const UpdateSandboxStateDtoStateEnum: {
|
|
26
|
+
readonly CREATING: "creating";
|
|
27
|
+
readonly RESTORING: "restoring";
|
|
28
|
+
readonly DESTROYED: "destroyed";
|
|
29
|
+
readonly DESTROYING: "destroying";
|
|
30
|
+
readonly STARTED: "started";
|
|
31
|
+
readonly STOPPED: "stopped";
|
|
32
|
+
readonly STARTING: "starting";
|
|
33
|
+
readonly STOPPING: "stopping";
|
|
34
|
+
readonly ERROR: "error";
|
|
35
|
+
readonly BUILD_FAILED: "build_failed";
|
|
36
|
+
readonly PENDING_BUILD: "pending_build";
|
|
37
|
+
readonly BUILDING_SNAPSHOT: "building_snapshot";
|
|
38
|
+
readonly UNKNOWN: "unknown";
|
|
39
|
+
readonly PULLING_SNAPSHOT: "pulling_snapshot";
|
|
40
|
+
readonly ARCHIVED: "archived";
|
|
41
|
+
readonly ARCHIVING: "archiving";
|
|
42
|
+
};
|
|
43
|
+
export type UpdateSandboxStateDtoStateEnum = (typeof UpdateSandboxStateDtoStateEnum)[keyof typeof UpdateSandboxStateDtoStateEnum];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.UpdateSandboxStateDtoStateEnum = void 0;
|
|
5
|
+
exports.UpdateSandboxStateDtoStateEnum = {
|
|
6
|
+
CREATING: 'creating',
|
|
7
|
+
RESTORING: 'restoring',
|
|
8
|
+
DESTROYED: 'destroyed',
|
|
9
|
+
DESTROYING: 'destroying',
|
|
10
|
+
STARTED: 'started',
|
|
11
|
+
STOPPED: 'stopped',
|
|
12
|
+
STARTING: 'starting',
|
|
13
|
+
STOPPING: 'stopping',
|
|
14
|
+
ERROR: 'error',
|
|
15
|
+
BUILD_FAILED: 'build_failed',
|
|
16
|
+
PENDING_BUILD: 'pending_build',
|
|
17
|
+
BUILDING_SNAPSHOT: 'building_snapshot',
|
|
18
|
+
UNKNOWN: 'unknown',
|
|
19
|
+
PULLING_SNAPSHOT: 'pulling_snapshot',
|
|
20
|
+
ARCHIVED: 'archived',
|
|
21
|
+
ARCHIVING: 'archiving',
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=update-sandbox-state-dto.js.map
|