@freelog/tools-lib 0.1.83 → 0.1.84

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.
@@ -71,6 +71,7 @@ interface InformExhibitManagementParamsType {
71
71
  export declare function informExhibitManagement({ exhibitID }: InformExhibitManagementParamsType): TReturnType;
72
72
  interface StorageSpaceParamsType {
73
73
  bucketName?: string;
74
+ createBucket?: boolean;
74
75
  }
75
76
  export declare function storageSpace({ ...params }?: StorageSpaceParamsType): TReturnType;
76
77
  interface ObjectDetailsParamsType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.83",
3
+ "version": "0.1.84",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -175,6 +175,7 @@ export function informExhibitManagement({exhibitID}: InformExhibitManagementPara
175
175
  // 存储空间
176
176
  interface StorageSpaceParamsType {
177
177
  bucketName?: string;
178
+ createBucket?: boolean;
178
179
  }
179
180
 
180
181
  export function storageSpace({...params}: StorageSpaceParamsType = {}): TReturnType {