@daytonaio/api-client 0.140.0 → 0.142.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.
Files changed (60) hide show
  1. package/package.json +1 -1
  2. package/src/api/admin-api.d.ts +6 -6
  3. package/src/api/api-keys-api.d.ts +6 -6
  4. package/src/api/audit-api.d.ts +2 -2
  5. package/src/api/config-api.d.ts +1 -1
  6. package/src/api/docker-registry-api.d.ts +7 -7
  7. package/src/api/health-api.d.ts +26 -1
  8. package/src/api/health-api.js +54 -0
  9. package/src/api/health-api.js.map +1 -1
  10. package/src/api/jobs-api.d.ts +4 -4
  11. package/src/api/object-storage-api.d.ts +1 -1
  12. package/src/api/organizations-api.d.ts +116 -37
  13. package/src/api/organizations-api.js +146 -0
  14. package/src/api/organizations-api.js.map +1 -1
  15. package/src/api/preview-api.d.ts +4 -4
  16. package/src/api/regions-api.d.ts +1 -1
  17. package/src/api/runners-api.d.ts +47 -10
  18. package/src/api/runners-api.js +77 -0
  19. package/src/api/runners-api.js.map +1 -1
  20. package/src/api/sandbox-api.d.ts +236 -28
  21. package/src/api/sandbox-api.js +419 -0
  22. package/src/api/sandbox-api.js.map +1 -1
  23. package/src/api/snapshots-api.d.ts +10 -10
  24. package/src/api/toolbox-api.d.ts +68 -68
  25. package/src/api/users-api.d.ts +9 -9
  26. package/src/api/volumes-api.d.ts +5 -5
  27. package/src/api/webhooks-api.d.ts +6 -6
  28. package/src/api/workspace-api.d.ts +14 -14
  29. package/src/models/index.d.ts +9 -0
  30. package/src/models/index.js +9 -0
  31. package/src/models/index.js.map +1 -1
  32. package/src/models/log-entry.d.ts +76 -0
  33. package/src/models/log-entry.js +4 -0
  34. package/src/models/log-entry.js.map +1 -0
  35. package/src/models/metric-data-point.d.ts +30 -0
  36. package/src/models/metric-data-point.js +4 -0
  37. package/src/models/metric-data-point.js.map +1 -0
  38. package/src/models/metric-series.d.ts +31 -0
  39. package/src/models/metric-series.js +16 -0
  40. package/src/models/metric-series.js.map +1 -0
  41. package/src/models/metrics-response.d.ts +25 -0
  42. package/src/models/metrics-response.js +16 -0
  43. package/src/models/metrics-response.js.map +1 -0
  44. package/src/models/organization.d.ts +24 -0
  45. package/src/models/otel-config.d.ts +32 -0
  46. package/src/models/otel-config.js +4 -0
  47. package/src/models/otel-config.js.map +1 -0
  48. package/src/models/paginated-logs.d.ts +43 -0
  49. package/src/models/paginated-logs.js +16 -0
  50. package/src/models/paginated-logs.js.map +1 -0
  51. package/src/models/paginated-traces.d.ts +43 -0
  52. package/src/models/paginated-traces.js +16 -0
  53. package/src/models/paginated-traces.js.map +1 -0
  54. package/src/models/trace-span.d.ts +74 -0
  55. package/src/models/trace-span.js +4 -0
  56. package/src/models/trace-span.js.map +1 -0
  57. package/src/models/trace-summary.d.ts +60 -0
  58. package/src/models/trace-summary.js +4 -0
  59. package/src/models/trace-summary.js.map +1 -0
  60. package/src/models/update-organization-quota.d.ts +18 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/api-client",
3
- "version": "0.140.0",
3
+ "version": "0.142.0",
4
4
  "description": "OpenAPI client for @daytonaio/api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -193,7 +193,7 @@ export declare class AdminApi extends BaseAPI {
193
193
  * @throws {RequiredError}
194
194
  * @memberof AdminApi
195
195
  */
196
- adminCreateRunner(adminCreateRunner: AdminCreateRunner, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateRunnerResponse, any>>;
196
+ adminCreateRunner(adminCreateRunner: AdminCreateRunner, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateRunnerResponse, any, {}>>;
197
197
  /**
198
198
  *
199
199
  * @summary Delete runner
@@ -202,7 +202,7 @@ export declare class AdminApi extends BaseAPI {
202
202
  * @throws {RequiredError}
203
203
  * @memberof AdminApi
204
204
  */
205
- adminDeleteRunner(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
205
+ adminDeleteRunner(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
206
206
  /**
207
207
  *
208
208
  * @summary Get runner by ID
@@ -211,7 +211,7 @@ export declare class AdminApi extends BaseAPI {
211
211
  * @throws {RequiredError}
212
212
  * @memberof AdminApi
213
213
  */
214
- adminGetRunnerById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerFull, any>>;
214
+ adminGetRunnerById(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerFull, any, {}>>;
215
215
  /**
216
216
  *
217
217
  * @summary List all runners
@@ -220,7 +220,7 @@ export declare class AdminApi extends BaseAPI {
220
220
  * @throws {RequiredError}
221
221
  * @memberof AdminApi
222
222
  */
223
- adminListRunners(regionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerFull[], any>>;
223
+ adminListRunners(regionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunnerFull[], any, {}>>;
224
224
  /**
225
225
  *
226
226
  * @summary Recover sandbox from error state as an admin
@@ -229,7 +229,7 @@ export declare class AdminApi extends BaseAPI {
229
229
  * @throws {RequiredError}
230
230
  * @memberof AdminApi
231
231
  */
232
- adminRecoverSandbox(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Sandbox, any>>;
232
+ adminRecoverSandbox(sandboxId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Sandbox, any, {}>>;
233
233
  /**
234
234
  *
235
235
  * @summary Update runner scheduling status
@@ -238,5 +238,5 @@ export declare class AdminApi extends BaseAPI {
238
238
  * @throws {RequiredError}
239
239
  * @memberof AdminApi
240
240
  */
241
- adminUpdateRunnerScheduling(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
241
+ adminUpdateRunnerScheduling(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
242
242
  }
@@ -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
  }
@@ -125,7 +125,7 @@ export declare class AuditApi extends BaseAPI {
125
125
  * @throws {RequiredError}
126
126
  * @memberof AuditApi
127
127
  */
128
- getAllAuditLogs(page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
128
+ getAllAuditLogs(page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any, {}>>;
129
129
  /**
130
130
  *
131
131
  * @summary Get audit logs for organization
@@ -139,5 +139,5 @@ export declare class AuditApi extends BaseAPI {
139
139
  * @throws {RequiredError}
140
140
  * @memberof AuditApi
141
141
  */
142
- getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any>>;
142
+ getOrganizationAuditLogs(organizationId: string, page?: number, limit?: number, from?: Date, to?: Date, nextToken?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedAuditLogs, any, {}>>;
143
143
  }
@@ -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
  }
@@ -239,7 +239,7 @@ export declare class DockerRegistryApi extends BaseAPI {
239
239
  * @throws {RequiredError}
240
240
  * @memberof DockerRegistryApi
241
241
  */
242
- createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
242
+ createRegistry(createDockerRegistry: CreateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any, {}>>;
243
243
  /**
244
244
  *
245
245
  * @summary Delete registry
@@ -249,7 +249,7 @@ export declare class DockerRegistryApi extends BaseAPI {
249
249
  * @throws {RequiredError}
250
250
  * @memberof DockerRegistryApi
251
251
  */
252
- deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
252
+ deleteRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
253
253
  /**
254
254
  *
255
255
  * @summary Get registry
@@ -259,7 +259,7 @@ export declare class DockerRegistryApi extends BaseAPI {
259
259
  * @throws {RequiredError}
260
260
  * @memberof DockerRegistryApi
261
261
  */
262
- getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
262
+ getRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any, {}>>;
263
263
  /**
264
264
  *
265
265
  * @summary Get temporary registry access for pushing snapshots
@@ -269,7 +269,7 @@ export declare class DockerRegistryApi extends BaseAPI {
269
269
  * @throws {RequiredError}
270
270
  * @memberof DockerRegistryApi
271
271
  */
272
- getTransientPushAccess(xDaytonaOrganizationID?: string, regionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any>>;
272
+ getTransientPushAccess(xDaytonaOrganizationID?: string, regionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryPushAccessDto, any, {}>>;
273
273
  /**
274
274
  *
275
275
  * @summary List registries
@@ -278,7 +278,7 @@ export declare class DockerRegistryApi extends BaseAPI {
278
278
  * @throws {RequiredError}
279
279
  * @memberof DockerRegistryApi
280
280
  */
281
- listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any>>;
281
+ listRegistries(xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry[], any, {}>>;
282
282
  /**
283
283
  *
284
284
  * @summary Set default registry
@@ -288,7 +288,7 @@ export declare class DockerRegistryApi extends BaseAPI {
288
288
  * @throws {RequiredError}
289
289
  * @memberof DockerRegistryApi
290
290
  */
291
- setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
291
+ setDefaultRegistry(id: string, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any, {}>>;
292
292
  /**
293
293
  *
294
294
  * @summary Update registry
@@ -299,5 +299,5 @@ export declare class DockerRegistryApi extends BaseAPI {
299
299
  * @throws {RequiredError}
300
300
  * @memberof DockerRegistryApi
301
301
  */
302
- updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any>>;
302
+ updateRegistry(id: string, updateDockerRegistry: UpdateDockerRegistry, xDaytonaOrganizationID?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DockerRegistry, any, {}>>;
303
303
  }
@@ -24,6 +24,12 @@ export declare const HealthApiAxiosParamCreator: (configuration?: Configuration)
24
24
  * @throws {RequiredError}
25
25
  */
26
26
  healthControllerCheck: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27
+ /**
28
+ *
29
+ * @param {*} [options] Override http request option.
30
+ * @throws {RequiredError}
31
+ */
32
+ healthControllerLive: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27
33
  };
28
34
  /**
29
35
  * HealthApi - functional programming interface
@@ -36,6 +42,12 @@ export declare const HealthApiFp: (configuration?: Configuration) => {
36
42
  * @throws {RequiredError}
37
43
  */
38
44
  healthControllerCheck(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthControllerCheck200Response>>;
45
+ /**
46
+ *
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ healthControllerLive(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
39
51
  };
40
52
  /**
41
53
  * HealthApi - factory interface
@@ -48,6 +60,12 @@ export declare const HealthApiFactory: (configuration?: Configuration, basePath?
48
60
  * @throws {RequiredError}
49
61
  */
50
62
  healthControllerCheck(options?: RawAxiosRequestConfig): AxiosPromise<HealthControllerCheck200Response>;
63
+ /**
64
+ *
65
+ * @param {*} [options] Override http request option.
66
+ * @throws {RequiredError}
67
+ */
68
+ healthControllerLive(options?: RawAxiosRequestConfig): AxiosPromise<void>;
51
69
  };
52
70
  /**
53
71
  * HealthApi - object-oriented interface
@@ -62,5 +80,12 @@ export declare class HealthApi extends BaseAPI {
62
80
  * @throws {RequiredError}
63
81
  * @memberof HealthApi
64
82
  */
65
- healthControllerCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthControllerCheck200Response, any>>;
83
+ healthControllerCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthControllerCheck200Response, any, {}>>;
84
+ /**
85
+ *
86
+ * @param {*} [options] Override http request option.
87
+ * @throws {RequiredError}
88
+ * @memberof HealthApi
89
+ */
90
+ healthControllerLive(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
66
91
  }
@@ -32,6 +32,30 @@ const HealthApiAxiosParamCreator = function (configuration) {
32
32
  * @throws {RequiredError}
33
33
  */
34
34
  healthControllerCheck: async (options = {}) => {
35
+ const localVarPath = `/health/ready`;
36
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
37
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
38
+ let baseOptions;
39
+ if (configuration) {
40
+ baseOptions = configuration.baseOptions;
41
+ }
42
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
43
+ const localVarHeaderParameter = {};
44
+ const localVarQueryParameter = {};
45
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
46
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
47
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
48
+ return {
49
+ url: (0, common_1.toPathString)(localVarUrlObj),
50
+ options: localVarRequestOptions,
51
+ };
52
+ },
53
+ /**
54
+ *
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ healthControllerLive: async (options = {}) => {
35
59
  const localVarPath = `/health`;
36
60
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
37
61
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -71,6 +95,17 @@ const HealthApiFp = function (configuration) {
71
95
  const localVarOperationServerBasePath = base_1.operationServerMap['HealthApi.healthControllerCheck']?.[localVarOperationServerIndex]?.url;
72
96
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
73
97
  },
98
+ /**
99
+ *
100
+ * @param {*} [options] Override http request option.
101
+ * @throws {RequiredError}
102
+ */
103
+ async healthControllerLive(options) {
104
+ const localVarAxiosArgs = await localVarAxiosParamCreator.healthControllerLive(options);
105
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
106
+ const localVarOperationServerBasePath = base_1.operationServerMap['HealthApi.healthControllerLive']?.[localVarOperationServerIndex]?.url;
107
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108
+ },
74
109
  };
75
110
  };
76
111
  exports.HealthApiFp = HealthApiFp;
@@ -89,6 +124,14 @@ const HealthApiFactory = function (configuration, basePath, axios) {
89
124
  healthControllerCheck(options) {
90
125
  return localVarFp.healthControllerCheck(options).then((request) => request(axios, basePath));
91
126
  },
127
+ /**
128
+ *
129
+ * @param {*} [options] Override http request option.
130
+ * @throws {RequiredError}
131
+ */
132
+ healthControllerLive(options) {
133
+ return localVarFp.healthControllerLive(options).then((request) => request(axios, basePath));
134
+ },
92
135
  };
93
136
  };
94
137
  exports.HealthApiFactory = HealthApiFactory;
@@ -110,6 +153,17 @@ class HealthApi extends base_1.BaseAPI {
110
153
  .healthControllerCheck(options)
111
154
  .then((request) => request(this.axios, this.basePath));
112
155
  }
156
+ /**
157
+ *
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ * @memberof HealthApi
161
+ */
162
+ healthControllerLive(options) {
163
+ return (0, exports.HealthApiFp)(this.configuration)
164
+ .healthControllerLive(options)
165
+ .then((request) => request(this.axios, this.basePath));
166
+ }
113
167
  }
114
168
  exports.HealthApi = HealthApi;
115
169
  //# sourceMappingURL=health-api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"health-api.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/api/health-api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"health-api.js","sourceRoot":"","sources":["../../../../../libs/api-client/src/api/health-api.ts"],"names":[],"mappings":"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"}
@@ -161,7 +161,7 @@ export declare class JobsApi extends BaseAPI {
161
161
  * @throws {RequiredError}
162
162
  * @memberof JobsApi
163
163
  */
164
- getJob(jobId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Job, any>>;
164
+ getJob(jobId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Job, any, {}>>;
165
165
  /**
166
166
  * Returns a paginated list of jobs for the runner, optionally filtered by status.
167
167
  * @summary List jobs for the runner
@@ -173,7 +173,7 @@ export declare class JobsApi extends BaseAPI {
173
173
  * @throws {RequiredError}
174
174
  * @memberof JobsApi
175
175
  */
176
- listJobs(page?: number, limit?: number, status?: JobStatus, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedJobs, any>>;
176
+ listJobs(page?: number, limit?: number, status?: JobStatus, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedJobs, any, {}>>;
177
177
  /**
178
178
  * Long poll endpoint for runners to fetch pending jobs. Returns immediately if jobs are available, otherwise waits up to timeout seconds.
179
179
  * @summary Long poll for jobs
@@ -183,7 +183,7 @@ export declare class JobsApi extends BaseAPI {
183
183
  * @throws {RequiredError}
184
184
  * @memberof JobsApi
185
185
  */
186
- pollJobs(timeout?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PollJobsResponse, any>>;
186
+ pollJobs(timeout?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PollJobsResponse, any, {}>>;
187
187
  /**
188
188
  *
189
189
  * @summary Update job status
@@ -193,5 +193,5 @@ export declare class JobsApi extends BaseAPI {
193
193
  * @throws {RequiredError}
194
194
  * @memberof JobsApi
195
195
  */
196
- updateJobStatus(jobId: string, updateJobStatus: UpdateJobStatus, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Job, any>>;
196
+ updateJobStatus(jobId: string, updateJobStatus: UpdateJobStatus, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Job, any, {}>>;
197
197
  }
@@ -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
  }