@kevisual/oss 0.0.9 → 0.0.11
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/dist/{index-BeN3AaPr.d.ts → index-BGsBfWH-.d.ts} +8 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2455 -6
- package/dist/services/config.d.ts +1 -1
- package/dist/services/config.js +2455 -6
- package/dist/services/index.d.ts +5 -3
- package/dist/services/index.js +2458 -8
- package/package.json +1 -1
package/dist/services/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { O as OssBase } from '../index-
|
|
2
|
-
export { b as ListDirectoryObject, L as ListFileObject, c as ListObjectResult, d as OssBaseOperation, a as OssBaseOptions, e as OssService, S as StatObjectResult, U as UploadedObjectInfo } from '../index-
|
|
1
|
+
import { O as OssBase } from '../index-BGsBfWH-.js';
|
|
2
|
+
export { b as ListDirectoryObject, L as ListFileObject, c as ListObjectResult, d as OssBaseOperation, a as OssBaseOptions, e as OssService, S as StatObjectResult, U as UploadedObjectInfo } from '../index-BGsBfWH-.js';
|
|
3
3
|
export { ConfigOssService } from './config.js';
|
|
4
4
|
import * as stream from 'stream';
|
|
5
5
|
import { ServerResponse } from 'node:http';
|
|
@@ -33,4 +33,6 @@ declare const downloadObject: ({ objectName, client, filePath }: Pick<SendObject
|
|
|
33
33
|
declare const hash: (str: string | Buffer | Object) => string;
|
|
34
34
|
declare const hashSringify: (str: Object) => string;
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
declare const getContentType: (filePath: string) => any;
|
|
37
|
+
|
|
38
|
+
export { NotFoundFile, OssBase, downloadObject, filterMetaDataKeys, getContentType, hash, hashSringify, sendObject };
|