@solidexpert/file-api
Advanced tools
Comparing version 1.0.160 to 1.0.161
@@ -86,2 +86,31 @@ /** | ||
} | ||
export interface DownloadFileParams { | ||
/** | ||
* Identifier of the company to be received | ||
* format: uuid | ||
*/ | ||
companyId: string; | ||
/** Key of the file to be received */ | ||
s3Key?: string; | ||
/** Local file path of the file to be received */ | ||
localFilePath?: string; | ||
/** Bucket name */ | ||
bucketName?: string; | ||
/** Access key id */ | ||
accessKeyId?: string; | ||
/** Secret access key */ | ||
secretAccessKey?: string; | ||
/** Region */ | ||
region?: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
'x-api-version'?: string; | ||
/** | ||
* The requested API version | ||
* default: 1.0 | ||
*/ | ||
'api-version'?: string; | ||
} | ||
export interface RenameFileParams { | ||
@@ -135,2 +164,7 @@ /** | ||
/** | ||
* The method provider possibility to download file from S3 by company id, S3 key, local file path and S3 client | ||
* http://undefined/swagger/swagger-ui.html#!/System/DownloadFile | ||
*/ | ||
DownloadFile(params: DownloadFileParams): Observable<__model.DownloadFileResponse>; | ||
/** | ||
* The method provider possibility to rename file by company id and file id | ||
@@ -137,0 +171,0 @@ * http://undefined/swagger/swagger-ui.html#!/System/undefined |
@@ -23,2 +23,3 @@ /** | ||
export * from './defs/DeleteFolderResponse'; | ||
export * from './defs/DownloadFileResponse'; | ||
export * from './defs/FileEntity'; | ||
@@ -25,0 +26,0 @@ export * from './defs/FileEntityItemResponse'; |
{ | ||
"name": "@solidexpert/file-api", | ||
"version": "1.0.160", | ||
"version": "1.0.161", | ||
"peerDependencies": { | ||
@@ -5,0 +5,0 @@ "@angular/common": "*", |
@@ -25,2 +25,3 @@ export * from './lib/model'; | ||
export * from './lib/defs/DeleteFolderResponse'; | ||
export * from './lib/defs/DownloadFileResponse'; | ||
export * from './lib/defs/FileEntity'; | ||
@@ -57,7 +58,2 @@ export * from './lib/defs/FileEntityItemResponse'; | ||
export * from './lib/store/bucket/getBucketContent/getBucketContent.service'; | ||
export * from './lib/store/system/CreateSystemFolder/CreateSystemFolder.service'; | ||
export * from './lib/store/system/GetSystemFolderContent/GetSystemFolderContent.service'; | ||
export * from './lib/store/system/UploadFileWithToken/UploadFileWithToken.service'; | ||
export * from './lib/store/system/UploadSystemFiles/UploadSystemFiles.service'; | ||
export * from './lib/store/system/renameFile/renameFile.service'; | ||
export * from './lib/store/folder/CheckFileOrFolderExist/CheckFileOrFolderExist.service'; | ||
@@ -70,4 +66,4 @@ export * from './lib/store/folder/CopyItem/CopyItem.service'; | ||
export * from './lib/store/folder/GetFolderByPath/GetFolderByPath.service'; | ||
export * from './lib/store/folder/GetFolderContent/GetFolderContent.service'; | ||
export * from './lib/store/folder/GetItem/GetItem.service'; | ||
export * from './lib/store/folder/GetFolderContent/GetFolderContent.service'; | ||
export * from './lib/store/folder/MoveItem/MoveItem.service'; | ||
@@ -79,1 +75,7 @@ export * from './lib/store/folder/UpdateFolder/UpdateFolder.service'; | ||
export * from './lib/store/folder/UploadTempFile/UploadTempFile.service'; | ||
export * from './lib/store/system/CreateSystemFolder/CreateSystemFolder.service'; | ||
export * from './lib/store/system/DownloadFile/DownloadFile.service'; | ||
export * from './lib/store/system/GetSystemFolderContent/GetSystemFolderContent.service'; | ||
export * from './lib/store/system/UploadFileWithToken/UploadFileWithToken.service'; | ||
export * from './lib/store/system/renameFile/renameFile.service'; | ||
export * from './lib/store/system/UploadSystemFiles/UploadSystemFiles.service'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
835615
164
7643