@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.
@@ -18,7 +18,7 @@ interface ActivitiesParamsType {
18
18
  }
19
19
 
20
20
  export function activities({}: ActivitiesParamsType = {}) {
21
- return `/activity`;
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 `/activityDetail/${activityID}`;
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 {