@daytonaio/toolbox-api-client 0.162.0 → 0.163.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.
package/package.json
CHANGED
|
@@ -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.
|