@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@freelog/tools-lib",
3
- "version": "0.1.114",
3
+ "version": "0.1.117",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",