@freelog/tools-lib 0.1.114 → 0.1.117
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/resources.d.ts +8 -0
- package/dist/service-API/user.d.ts +7 -1
- package/dist/tools-lib.cjs.development.js +77 -38
- 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 +77 -38
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +11 -0
- package/package.json +1 -1
- package/src/service-API/resources.ts +529 -512
- package/src/service-API/user.ts +261 -251
- package/src/utils/axios.ts +5 -2
- package/src/utils/linkTo.ts +29 -0
- package/src/service-API/recombinations/.gitkeep +0 -0
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -105,6 +105,14 @@ interface Exception403ParamsType {
|
|
|
105
105
|
from?: string;
|
|
106
106
|
}
|
|
107
107
|
export declare function exception403({ ...params }?: Exception403ParamsType): string;
|
|
108
|
+
interface NodeFreezeParamsType {
|
|
109
|
+
nodeID: number;
|
|
110
|
+
}
|
|
111
|
+
export declare function nodeFreeze({ nodeID }: NodeFreezeParamsType): string;
|
|
112
|
+
interface ResourceFreezeParamsType {
|
|
113
|
+
resourceID: string;
|
|
114
|
+
}
|
|
115
|
+
export declare function resourceFreeze({ resourceID }: ResourceFreezeParamsType): string;
|
|
108
116
|
/************** console End ******************************************************/
|
|
109
117
|
/************** user Start ******************************************************/
|
|
110
118
|
interface LoginParamsType {
|
|
@@ -123,6 +131,9 @@ interface RetrievePayPasswordParamsType {
|
|
|
123
131
|
goTo?: string;
|
|
124
132
|
}
|
|
125
133
|
export declare function retrievePayPassword({}?: RetrievePayPasswordParamsType): string;
|
|
134
|
+
interface UserFreezeParamsType {
|
|
135
|
+
}
|
|
136
|
+
export declare function userFreeze({}?: UserFreezeParamsType): string;
|
|
126
137
|
interface WalletParamsType {
|
|
127
138
|
}
|
|
128
139
|
export declare function wallet({}?: WalletParamsType): string;
|