@freelog/tools-lib 0.1.82 → 0.1.85

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.
@@ -1,4 +1,20 @@
1
1
  declare type TReturnType = string;
2
+ /************** www Start ******************************************************/
3
+ interface HomeParamsType {
4
+ }
5
+ export declare function home({}?: HomeParamsType): string;
6
+ interface ActivitiesParamsType {
7
+ }
8
+ export declare function activities({}?: ActivitiesParamsType): string;
9
+ interface ActivitiesParamsType {
10
+ activityID: string;
11
+ }
12
+ export declare function activity({ activityID }: ActivitiesParamsType): string;
13
+ /************** www End ******************************************************/
14
+ /************** console Start ******************************************************/
15
+ interface DashboardParamsType {
16
+ }
17
+ export declare function dashboard({}?: DashboardParamsType): string;
2
18
  interface MarketParamsType {
3
19
  }
4
20
  export declare function market({}?: MarketParamsType): TReturnType;
@@ -55,6 +71,7 @@ interface InformExhibitManagementParamsType {
55
71
  export declare function informExhibitManagement({ exhibitID }: InformExhibitManagementParamsType): TReturnType;
56
72
  interface StorageSpaceParamsType {
57
73
  bucketName?: string;
74
+ createBucket?: boolean;
58
75
  }
59
76
  export declare function storageSpace({ ...params }?: StorageSpaceParamsType): TReturnType;
60
77
  interface ObjectDetailsParamsType {
@@ -79,6 +96,8 @@ interface Exception403ParamsType {
79
96
  from?: string;
80
97
  }
81
98
  export declare function exception403({ ...params }?: Exception403ParamsType): string;
99
+ /************** console End ******************************************************/
100
+ /************** user Start ******************************************************/
82
101
  interface LoginParamsType {
83
102
  goTo?: string;
84
103
  }
@@ -91,8 +110,17 @@ interface RetrieveUserPasswordParamsType {
91
110
  goTo?: string;
92
111
  }
93
112
  export declare function retrieveUserPassword({ goTo }?: RetrieveUserPasswordParamsType): string;
94
- export declare function retrievePayPassword(): string;
95
- export declare function wallet(): string;
96
- export declare function contract(): string;
97
- export declare function setting(): string;
113
+ interface RetrievePayPasswordParamsType {
114
+ goTo?: string;
115
+ }
116
+ export declare function retrievePayPassword({}?: RetrievePayPasswordParamsType): string;
117
+ interface WalletParamsType {
118
+ }
119
+ export declare function wallet({}?: WalletParamsType): string;
120
+ interface ContractParamsType {
121
+ }
122
+ export declare function contract({}?: ContractParamsType): string;
123
+ interface SettingParamsType {
124
+ }
125
+ export declare function setting({}?: SettingParamsType): string;
98
126
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.82",
3
+ "version": "0.1.85",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -2,6 +2,8 @@ import FUtil from '../utils';
2
2
 
3
3
  // 列出活动
4
4
  interface List4ClientParamsType {
5
+ skip?: number;
6
+ limit?: number;
5
7
  }
6
8
 
7
9
  export function list4Client(params: List4ClientParamsType) {