@freelog/tools-lib 0.1.83 → 0.1.86
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/service-API/activities.d.ts +2 -0
- package/dist/service-API/resources.d.ts +4 -3
- package/dist/tools-lib.cjs.development.js +42 -37
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +42 -37
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +1 -0
- package/package.json +1 -1
- package/src/service-API/activities.ts +2 -0
- package/src/service-API/resources.ts +496 -496
- package/src/utils/linkTo.ts +3 -2
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -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