@daytonaio/api-client 0.111.0 → 0.112.0-dev.462c455

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.
@@ -311,7 +311,7 @@ export declare class SnapshotsApi extends BaseAPI {
311
311
  * @throws {RequiredError}
312
312
  * @memberof SnapshotsApi
313
313
  */
314
- activateSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any, {}>>;
314
+ activateSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any>>;
315
315
  /**
316
316
  *
317
317
  * @summary Check if an image can be cleaned up
@@ -321,7 +321,7 @@ export declare class SnapshotsApi extends BaseAPI {
321
321
  * @throws {RequiredError}
322
322
  * @memberof SnapshotsApi
323
323
  */
324
- canCleanupImage(imageName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any, {}>>;
324
+ canCleanupImage(imageName: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
325
325
  /**
326
326
  *
327
327
  * @summary Create a new snapshot
@@ -331,7 +331,7 @@ export declare class SnapshotsApi extends BaseAPI {
331
331
  * @throws {RequiredError}
332
332
  * @memberof SnapshotsApi
333
333
  */
334
- createSnapshot(createSnapshot: CreateSnapshot, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any, {}>>;
334
+ createSnapshot(createSnapshot: CreateSnapshot, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any>>;
335
335
  /**
336
336
  *
337
337
  * @summary Deactivate a snapshot
@@ -341,7 +341,7 @@ export declare class SnapshotsApi extends BaseAPI {
341
341
  * @throws {RequiredError}
342
342
  * @memberof SnapshotsApi
343
343
  */
344
- deactivateSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
344
+ deactivateSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
345
345
  /**
346
346
  *
347
347
  * @summary List all snapshots
@@ -355,7 +355,7 @@ export declare class SnapshotsApi extends BaseAPI {
355
355
  * @throws {RequiredError}
356
356
  * @memberof SnapshotsApi
357
357
  */
358
- getAllSnapshots(xDaytonaOrganizationID?: string, page?: number, limit?: number, name?: string, sort?: GetAllSnapshotsSortEnum, order?: GetAllSnapshotsOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSnapshots, any, {}>>;
358
+ getAllSnapshots(xDaytonaOrganizationID?: string, page?: number, limit?: number, name?: string, sort?: GetAllSnapshotsSortEnum, order?: GetAllSnapshotsOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSnapshots, any>>;
359
359
  /**
360
360
  *
361
361
  * @summary Get snapshot by ID or name
@@ -365,7 +365,7 @@ export declare class SnapshotsApi extends BaseAPI {
365
365
  * @throws {RequiredError}
366
366
  * @memberof SnapshotsApi
367
367
  */
368
- getSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any, {}>>;
368
+ getSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any>>;
369
369
  /**
370
370
  *
371
371
  * @summary Get snapshot build logs
@@ -376,7 +376,7 @@ export declare class SnapshotsApi extends BaseAPI {
376
376
  * @throws {RequiredError}
377
377
  * @memberof SnapshotsApi
378
378
  */
379
- getSnapshotBuildLogs(id: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
379
+ getSnapshotBuildLogs(id: string, xDaytonaOrganizationID?: string, follow?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
380
380
  /**
381
381
  *
382
382
  * @summary Delete snapshot
@@ -386,7 +386,7 @@ export declare class SnapshotsApi extends BaseAPI {
386
386
  * @throws {RequiredError}
387
387
  * @memberof SnapshotsApi
388
388
  */
389
- removeSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
389
+ removeSnapshot(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
390
390
  /**
391
391
  *
392
392
  * @summary Set snapshot general status
@@ -397,7 +397,7 @@ export declare class SnapshotsApi extends BaseAPI {
397
397
  * @throws {RequiredError}
398
398
  * @memberof SnapshotsApi
399
399
  */
400
- setSnapshotGeneralStatus(id: string, setSnapshotGeneralStatusDto: SetSnapshotGeneralStatusDto, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any, {}>>;
400
+ setSnapshotGeneralStatus(id: string, setSnapshotGeneralStatusDto: SetSnapshotGeneralStatusDto, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SnapshotDto, any>>;
401
401
  }
402
402
  /**
403
403
  * @export