@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/src/utils/linkTo.ts
CHANGED
|
@@ -18,7 +18,7 @@ interface ActivitiesParamsType {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export function activities({}: ActivitiesParamsType = {}) {
|
|
21
|
-
return `/
|
|
21
|
+
return `/activities`;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
// 活动详情
|
|
@@ -27,7 +27,7 @@ interface ActivitiesParamsType {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export function activity({activityID}: ActivitiesParamsType) {
|
|
30
|
-
return `/
|
|
30
|
+
return `/activity/${activityID}`;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
/************** www End ******************************************************/
|
|
@@ -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 {
|