@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.
- package/dist/service-API/activities.d.ts +2 -0
- package/dist/tools-lib.cjs.development.js +110 -77
- 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 +110 -77
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +32 -4
- package/package.json +1 -1
- package/src/service-API/activities.ts +2 -0
- package/src/utils/linkTo.ts +324 -276
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -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
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
export declare function
|
|
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