@daytonaio/toolbox-api-client 0.163.0-alpha.1 → 0.164.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daytonaio/toolbox-api-client",
3
- "version": "0.163.0-alpha.1",
3
+ "version": "0.164.0-alpha.1",
4
4
  "description": "OpenAPI client for @daytona/toolbox-api-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -50,7 +50,7 @@ export declare const FileSystemApiAxiosParamCreator: (configuration?: Configurat
50
50
  */
51
51
  downloadFile: (path: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
52
  /**
53
- * Download multiple files by providing their paths
53
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
54
54
  * @summary Download multiple files
55
55
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
56
56
  * @param {*} [options] Override http request option.
@@ -168,7 +168,7 @@ export declare const FileSystemApiFp: (configuration?: Configuration) => {
168
168
  */
169
169
  downloadFile(path: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
170
170
  /**
171
- * Download multiple files by providing their paths
171
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
172
172
  * @summary Download multiple files
173
173
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
174
174
  * @param {*} [options] Override http request option.
@@ -290,7 +290,7 @@ export declare const FileSystemApiFactory: (configuration?: Configuration, baseP
290
290
  */
291
291
  downloadFile(path: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
292
292
  /**
293
- * Download multiple files by providing their paths
293
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
294
294
  * @summary Download multiple files
295
295
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
296
296
  * @param {*} [options] Override http request option.
@@ -417,7 +417,7 @@ export declare class FileSystemApi extends BaseAPI {
417
417
  */
418
418
  downloadFile(path: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
419
419
  /**
420
- * Download multiple files by providing their paths
420
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
421
421
  * @summary Download multiple files
422
422
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
423
423
  * @param {*} [options] Override http request option.
@@ -130,7 +130,7 @@ const FileSystemApiAxiosParamCreator = function (configuration) {
130
130
  };
131
131
  },
132
132
  /**
133
- * Download multiple files by providing their paths
133
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
134
134
  * @summary Download multiple files
135
135
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
136
136
  * @param {*} [options] Override http request option.
@@ -520,7 +520,7 @@ const FileSystemApiFp = function (configuration) {
520
520
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
521
521
  },
522
522
  /**
523
- * Download multiple files by providing their paths
523
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
524
524
  * @summary Download multiple files
525
525
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
526
526
  * @param {*} [options] Override http request option.
@@ -698,7 +698,7 @@ const FileSystemApiFactory = function (configuration, basePath, axios) {
698
698
  return localVarFp.downloadFile(path, options).then((request) => request(axios, basePath));
699
699
  },
700
700
  /**
701
- * Download multiple files by providing their paths
701
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
702
702
  * @summary Download multiple files
703
703
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
704
704
  * @param {*} [options] Override http request option.
@@ -849,7 +849,7 @@ class FileSystemApi extends base_1.BaseAPI {
849
849
  return (0, exports.FileSystemApiFp)(this.configuration).downloadFile(path, options).then((request) => request(this.axios, this.basePath));
850
850
  }
851
851
  /**
852
- * Download multiple files by providing their paths
852
+ * Download multiple files by providing their paths. Successful files are returned as multipart parts named `file`. Per-file failures are returned as multipart parts named `error` with JSON payloads shaped like ErrorResponse.
853
853
  * @summary Download multiple files
854
854
  * @param {FilesDownloadRequest} downloadFiles Paths of files to download
855
855
  * @param {*} [options] Override http request option.
@@ -130,7 +130,7 @@ export declare const ProcessApiAxiosParamCreator: (configuration?: Configuration
130
130
  */
131
131
  getSessionCommand: (sessionId: string, commandId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
132
132
  /**
133
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
133
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
134
134
  * @summary Get session command logs
135
135
  * @param {string} sessionId Session ID
136
136
  * @param {string} commandId Command ID
@@ -286,7 +286,7 @@ export declare const ProcessApiFp: (configuration?: Configuration) => {
286
286
  */
287
287
  getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Command>>;
288
288
  /**
289
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
289
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
290
290
  * @summary Get session command logs
291
291
  * @param {string} sessionId Session ID
292
292
  * @param {string} commandId Command ID
@@ -442,7 +442,7 @@ export declare const ProcessApiFactory: (configuration?: Configuration, basePath
442
442
  */
443
443
  getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): AxiosPromise<Command>;
444
444
  /**
445
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
445
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
446
446
  * @summary Get session command logs
447
447
  * @param {string} sessionId Session ID
448
448
  * @param {string} commandId Command ID
@@ -612,7 +612,7 @@ export declare class ProcessApi extends BaseAPI {
612
612
  */
613
613
  getSessionCommand(sessionId: string, commandId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Command, any, {}>>;
614
614
  /**
615
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
615
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
616
616
  * @summary Get session command logs
617
617
  * @param {string} sessionId Session ID
618
618
  * @param {string} commandId Command ID
@@ -379,7 +379,7 @@ const ProcessApiAxiosParamCreator = function (configuration) {
379
379
  };
380
380
  },
381
381
  /**
382
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
382
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
383
383
  * @summary Get session command logs
384
384
  * @param {string} sessionId Session ID
385
385
  * @param {string} commandId Command ID
@@ -738,7 +738,7 @@ const ProcessApiFp = function (configuration) {
738
738
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
739
739
  },
740
740
  /**
741
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
741
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
742
742
  * @summary Get session command logs
743
743
  * @param {string} sessionId Session ID
744
744
  * @param {string} commandId Command ID
@@ -950,7 +950,7 @@ const ProcessApiFactory = function (configuration, basePath, axios) {
950
950
  return localVarFp.getSessionCommand(sessionId, commandId, options).then((request) => request(axios, basePath));
951
951
  },
952
952
  /**
953
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
953
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
954
954
  * @summary Get session command logs
955
955
  * @param {string} sessionId Session ID
956
956
  * @param {string} commandId Command ID
@@ -1156,7 +1156,7 @@ class ProcessApi extends base_1.BaseAPI {
1156
1156
  return (0, exports.ProcessApiFp)(this.configuration).getSessionCommand(sessionId, commandId, options).then((request) => request(this.axios, this.basePath));
1157
1157
  }
1158
1158
  /**
1159
- * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.163.0, plain text otherwise. Supports WebSocket streaming.
1159
+ * Get logs for a specific command within a session. Returns JSON with separated stdout/stderr for SDK >= 0.164.0, plain text otherwise. Supports WebSocket streaming.
1160
1160
  * @summary Get session command logs
1161
1161
  * @param {string} sessionId Session ID
1162
1162
  * @param {string} commandId Command ID