@daytonaio/api-client 0.105.1 → 0.106.0-alpha.2

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.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/src/api/api-keys-api.d.ts +6 -6
  3. package/src/api/audit-api.d.ts +25 -25
  4. package/src/api/audit-api.js +36 -36
  5. package/src/api/audit-api.js.map +1 -1
  6. package/src/api/config-api.d.ts +1 -1
  7. package/src/api/default-api.d.ts +7 -7
  8. package/src/api/docker-registry-api.d.ts +7 -7
  9. package/src/api/health-api.d.ts +1 -1
  10. package/src/api/object-storage-api.d.ts +1 -1
  11. package/src/api/organizations-api.d.ts +26 -26
  12. package/src/api/preview-api.d.ts +3 -3
  13. package/src/api/runners-api.d.ts +5 -5
  14. package/src/api/sandbox-api.d.ts +204 -27
  15. package/src/api/sandbox-api.js +314 -17
  16. package/src/api/sandbox-api.js.map +1 -1
  17. package/src/api/snapshots-api.d.ts +51 -21
  18. package/src/api/snapshots-api.js +55 -18
  19. package/src/api/snapshots-api.js.map +1 -1
  20. package/src/api/toolbox-api.d.ts +63 -63
  21. package/src/api/users-api.d.ts +9 -9
  22. package/src/api/volumes-api.d.ts +5 -5
  23. package/src/api/webhooks-api.d.ts +6 -6
  24. package/src/api/workspace-api.d.ts +14 -14
  25. package/src/models/index.d.ts +3 -1
  26. package/src/models/index.js +3 -1
  27. package/src/models/index.js.map +1 -1
  28. package/src/models/paginated-sandboxes.d.ts +43 -0
  29. package/src/models/paginated-sandboxes.js +16 -0
  30. package/src/models/paginated-sandboxes.js.map +1 -0
  31. package/src/models/paginated-snapshots.d.ts +43 -0
  32. package/src/models/paginated-snapshots.js +16 -0
  33. package/src/models/paginated-snapshots.js.map +1 -0
  34. package/src/models/region.d.ts +24 -0
  35. package/src/models/region.js +4 -0
  36. package/src/models/region.js.map +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.105.1",
3
+ "version": "0.106.0-alpha.2",
4
4
  "description": "OpenAPI client for @daytonaio/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -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
  }
@@ -31,22 +31,22 @@ export declare const AuditApiAxiosParamCreator: (configuration?: Configuration)
31
31
  /**
32
32
  *
33
33
  * @summary Get all audit logs
34
- * @param {number} [limit] Number of items per page (default: 10)
35
- * @param {number} [page] Page number (default: 1)
34
+ * @param {number} [page] Page number of the results
35
+ * @param {number} [limit] Number of results per page
36
36
  * @param {*} [options] Override http request option.
37
37
  * @throws {RequiredError}
38
38
  */
39
- getAllAuditLogs: (limit?: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39
+ getAllAuditLogs: (page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
40
40
  /**
41
41
  *
42
42
  * @summary Get audit logs for organization
43
43
  * @param {string} organizationId Organization ID
44
- * @param {number} [limit] Number of items per page (default: 10)
45
- * @param {number} [page] Page number (default: 1)
44
+ * @param {number} [page] Page number of the results
45
+ * @param {number} [limit] Number of results per page
46
46
  * @param {*} [options] Override http request option.
47
47
  * @throws {RequiredError}
48
48
  */
49
- getOrganizationAuditLogs: (organizationId: string, limit?: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49
+ getOrganizationAuditLogs: (organizationId: string, page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
50
50
  };
51
51
  /**
52
52
  * AuditApi - functional programming interface
@@ -64,22 +64,22 @@ export declare const AuditApiFp: (configuration?: Configuration) => {
64
64
  /**
65
65
  *
66
66
  * @summary Get all audit logs
67
- * @param {number} [limit] Number of items per page (default: 10)
68
- * @param {number} [page] Page number (default: 1)
67
+ * @param {number} [page] Page number of the results
68
+ * @param {number} [limit] Number of results per page
69
69
  * @param {*} [options] Override http request option.
70
70
  * @throws {RequiredError}
71
71
  */
72
- getAllAuditLogs(limit?: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedAuditLogs>>;
72
+ getAllAuditLogs(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedAuditLogs>>;
73
73
  /**
74
74
  *
75
75
  * @summary Get audit logs for organization
76
76
  * @param {string} organizationId Organization ID
77
- * @param {number} [limit] Number of items per page (default: 10)
78
- * @param {number} [page] Page number (default: 1)
77
+ * @param {number} [page] Page number of the results
78
+ * @param {number} [limit] Number of results per page
79
79
  * @param {*} [options] Override http request option.
80
80
  * @throws {RequiredError}
81
81
  */
82
- getOrganizationAuditLogs(organizationId: string, limit?: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedAuditLogs>>;
82
+ getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedAuditLogs>>;
83
83
  };
84
84
  /**
85
85
  * AuditApi - factory interface
@@ -97,22 +97,22 @@ export declare const AuditApiFactory: (configuration?: Configuration, basePath?:
97
97
  /**
98
98
  *
99
99
  * @summary Get all audit logs
100
- * @param {number} [limit] Number of items per page (default: 10)
101
- * @param {number} [page] Page number (default: 1)
100
+ * @param {number} [page] Page number of the results
101
+ * @param {number} [limit] Number of results per page
102
102
  * @param {*} [options] Override http request option.
103
103
  * @throws {RequiredError}
104
104
  */
105
- getAllAuditLogs(limit?: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedAuditLogs>;
105
+ getAllAuditLogs(page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedAuditLogs>;
106
106
  /**
107
107
  *
108
108
  * @summary Get audit logs for organization
109
109
  * @param {string} organizationId Organization ID
110
- * @param {number} [limit] Number of items per page (default: 10)
111
- * @param {number} [page] Page number (default: 1)
110
+ * @param {number} [page] Page number of the results
111
+ * @param {number} [limit] Number of results per page
112
112
  * @param {*} [options] Override http request option.
113
113
  * @throws {RequiredError}
114
114
  */
115
- getOrganizationAuditLogs(organizationId: string, limit?: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedAuditLogs>;
115
+ getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedAuditLogs>;
116
116
  };
117
117
  /**
118
118
  * AuditApi - object-oriented interface
@@ -129,26 +129,26 @@ export declare class AuditApi extends BaseAPI {
129
129
  * @throws {RequiredError}
130
130
  * @memberof AuditApi
131
131
  */
132
- createAuditLog(createAuditLog: CreateAuditLog, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuditLog, any>>;
132
+ createAuditLog(createAuditLog: CreateAuditLog, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuditLog, any, {}>>;
133
133
  /**
134
134
  *
135
135
  * @summary Get all audit logs
136
- * @param {number} [limit] Number of items per page (default: 10)
137
- * @param {number} [page] Page number (default: 1)
136
+ * @param {number} [page] Page number of the results
137
+ * @param {number} [limit] Number of results per page
138
138
  * @param {*} [options] Override http request option.
139
139
  * @throws {RequiredError}
140
140
  * @memberof AuditApi
141
141
  */
142
- getAllAuditLogs(limit?: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
142
+ getAllAuditLogs(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any, {}>>;
143
143
  /**
144
144
  *
145
145
  * @summary Get audit logs for organization
146
146
  * @param {string} organizationId Organization ID
147
- * @param {number} [limit] Number of items per page (default: 10)
148
- * @param {number} [page] Page number (default: 1)
147
+ * @param {number} [page] Page number of the results
148
+ * @param {number} [limit] Number of results per page
149
149
  * @param {*} [options] Override http request option.
150
150
  * @throws {RequiredError}
151
151
  * @memberof AuditApi
152
152
  */
153
- getOrganizationAuditLogs(organizationId: string, limit?: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
153
+ getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any, {}>>;
154
154
  }
@@ -63,12 +63,12 @@ const AuditApiAxiosParamCreator = function (configuration) {
63
63
  /**
64
64
  *
65
65
  * @summary Get all audit logs
66
- * @param {number} [limit] Number of items per page (default: 10)
67
- * @param {number} [page] Page number (default: 1)
66
+ * @param {number} [page] Page number of the results
67
+ * @param {number} [limit] Number of results per page
68
68
  * @param {*} [options] Override http request option.
69
69
  * @throws {RequiredError}
70
70
  */
71
- getAllAuditLogs: async (limit, page, options = {}) => {
71
+ getAllAuditLogs: async (page, limit, options = {}) => {
72
72
  const localVarPath = `/audit`;
73
73
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
74
74
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -83,12 +83,12 @@ const AuditApiAxiosParamCreator = function (configuration) {
83
83
  // http bearer authentication required
84
84
  await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
85
85
  // authentication oauth2 required
86
- if (limit !== undefined) {
87
- localVarQueryParameter['limit'] = limit;
88
- }
89
86
  if (page !== undefined) {
90
87
  localVarQueryParameter['page'] = page;
91
88
  }
89
+ if (limit !== undefined) {
90
+ localVarQueryParameter['limit'] = limit;
91
+ }
92
92
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
93
93
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
94
94
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -101,12 +101,12 @@ const AuditApiAxiosParamCreator = function (configuration) {
101
101
  *
102
102
  * @summary Get audit logs for organization
103
103
  * @param {string} organizationId Organization ID
104
- * @param {number} [limit] Number of items per page (default: 10)
105
- * @param {number} [page] Page number (default: 1)
104
+ * @param {number} [page] Page number of the results
105
+ * @param {number} [limit] Number of results per page
106
106
  * @param {*} [options] Override http request option.
107
107
  * @throws {RequiredError}
108
108
  */
109
- getOrganizationAuditLogs: async (organizationId, limit, page, options = {}) => {
109
+ getOrganizationAuditLogs: async (organizationId, page, limit, options = {}) => {
110
110
  // verify required parameter 'organizationId' is not null or undefined
111
111
  (0, common_1.assertParamExists)('getOrganizationAuditLogs', 'organizationId', organizationId);
112
112
  const localVarPath = `/audit/organizations/{organizationId}`.replace(`{${'organizationId'}}`, encodeURIComponent(String(organizationId)));
@@ -123,12 +123,12 @@ const AuditApiAxiosParamCreator = function (configuration) {
123
123
  // http bearer authentication required
124
124
  await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
125
125
  // authentication oauth2 required
126
- if (limit !== undefined) {
127
- localVarQueryParameter['limit'] = limit;
128
- }
129
126
  if (page !== undefined) {
130
127
  localVarQueryParameter['page'] = page;
131
128
  }
129
+ if (limit !== undefined) {
130
+ localVarQueryParameter['limit'] = limit;
131
+ }
132
132
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
133
133
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
134
134
  localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
@@ -163,13 +163,13 @@ const AuditApiFp = function (configuration) {
163
163
  /**
164
164
  *
165
165
  * @summary Get all audit logs
166
- * @param {number} [limit] Number of items per page (default: 10)
167
- * @param {number} [page] Page number (default: 1)
166
+ * @param {number} [page] Page number of the results
167
+ * @param {number} [limit] Number of results per page
168
168
  * @param {*} [options] Override http request option.
169
169
  * @throws {RequiredError}
170
170
  */
171
- async getAllAuditLogs(limit, page, options) {
172
- const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAuditLogs(limit, page, options);
171
+ async getAllAuditLogs(page, limit, options) {
172
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getAllAuditLogs(page, limit, options);
173
173
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
174
174
  const localVarOperationServerBasePath = base_1.operationServerMap['AuditApi.getAllAuditLogs']?.[localVarOperationServerIndex]?.url;
175
175
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -178,13 +178,13 @@ const AuditApiFp = function (configuration) {
178
178
  *
179
179
  * @summary Get audit logs for organization
180
180
  * @param {string} organizationId Organization ID
181
- * @param {number} [limit] Number of items per page (default: 10)
182
- * @param {number} [page] Page number (default: 1)
181
+ * @param {number} [page] Page number of the results
182
+ * @param {number} [limit] Number of results per page
183
183
  * @param {*} [options] Override http request option.
184
184
  * @throws {RequiredError}
185
185
  */
186
- async getOrganizationAuditLogs(organizationId, limit, page, options) {
187
- const localVarAxiosArgs = await localVarAxiosParamCreator.getOrganizationAuditLogs(organizationId, limit, page, options);
186
+ async getOrganizationAuditLogs(organizationId, page, limit, options) {
187
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getOrganizationAuditLogs(organizationId, page, limit, options);
188
188
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
189
189
  const localVarOperationServerBasePath = base_1.operationServerMap['AuditApi.getOrganizationAuditLogs']?.[localVarOperationServerIndex]?.url;
190
190
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -212,26 +212,26 @@ const AuditApiFactory = function (configuration, basePath, axios) {
212
212
  /**
213
213
  *
214
214
  * @summary Get all audit logs
215
- * @param {number} [limit] Number of items per page (default: 10)
216
- * @param {number} [page] Page number (default: 1)
215
+ * @param {number} [page] Page number of the results
216
+ * @param {number} [limit] Number of results per page
217
217
  * @param {*} [options] Override http request option.
218
218
  * @throws {RequiredError}
219
219
  */
220
- getAllAuditLogs(limit, page, options) {
221
- return localVarFp.getAllAuditLogs(limit, page, options).then((request) => request(axios, basePath));
220
+ getAllAuditLogs(page, limit, options) {
221
+ return localVarFp.getAllAuditLogs(page, limit, options).then((request) => request(axios, basePath));
222
222
  },
223
223
  /**
224
224
  *
225
225
  * @summary Get audit logs for organization
226
226
  * @param {string} organizationId Organization ID
227
- * @param {number} [limit] Number of items per page (default: 10)
228
- * @param {number} [page] Page number (default: 1)
227
+ * @param {number} [page] Page number of the results
228
+ * @param {number} [limit] Number of results per page
229
229
  * @param {*} [options] Override http request option.
230
230
  * @throws {RequiredError}
231
231
  */
232
- getOrganizationAuditLogs(organizationId, limit, page, options) {
232
+ getOrganizationAuditLogs(organizationId, page, limit, options) {
233
233
  return localVarFp
234
- .getOrganizationAuditLogs(organizationId, limit, page, options)
234
+ .getOrganizationAuditLogs(organizationId, page, limit, options)
235
235
  .then((request) => request(axios, basePath));
236
236
  },
237
237
  };
@@ -260,30 +260,30 @@ class AuditApi extends base_1.BaseAPI {
260
260
  /**
261
261
  *
262
262
  * @summary Get all audit logs
263
- * @param {number} [limit] Number of items per page (default: 10)
264
- * @param {number} [page] Page number (default: 1)
263
+ * @param {number} [page] Page number of the results
264
+ * @param {number} [limit] Number of results per page
265
265
  * @param {*} [options] Override http request option.
266
266
  * @throws {RequiredError}
267
267
  * @memberof AuditApi
268
268
  */
269
- getAllAuditLogs(limit, page, options) {
269
+ getAllAuditLogs(page, limit, options) {
270
270
  return (0, exports.AuditApiFp)(this.configuration)
271
- .getAllAuditLogs(limit, page, options)
271
+ .getAllAuditLogs(page, limit, options)
272
272
  .then((request) => request(this.axios, this.basePath));
273
273
  }
274
274
  /**
275
275
  *
276
276
  * @summary Get audit logs for organization
277
277
  * @param {string} organizationId Organization ID
278
- * @param {number} [limit] Number of items per page (default: 10)
279
- * @param {number} [page] Page number (default: 1)
278
+ * @param {number} [page] Page number of the results
279
+ * @param {number} [limit] Number of results per page
280
280
  * @param {*} [options] Override http request option.
281
281
  * @throws {RequiredError}
282
282
  * @memberof AuditApi
283
283
  */
284
- getOrganizationAuditLogs(organizationId, limit, page, options) {
284
+ getOrganizationAuditLogs(organizationId, page, limit, options) {
285
285
  return (0, exports.AuditApiFp)(this.configuration)
286
- .getOrganizationAuditLogs(organizationId, limit, page, options)
286
+ .getOrganizationAuditLogs(organizationId, page, limit, options)
287
287
  .then((request) => request(this.axios, this.basePath));
288
288
  }
289
289
  }
@@ -1 +1 @@
1
- {"version":3,"file":"audit-api.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/api/audit-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"audit-api.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/api/audit-api.ts"],"names":[],"mappings":"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"}
@@ -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
  }
@@ -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
  }
@@ -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
  }