@freelog/tools-lib 0.1.181 → 0.1.182
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/presentables.d.ts +1 -1
- package/dist/service-API/user.d.ts +5 -1
- package/dist/tools-lib.cjs.development.js +10 -1
- 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 +10 -1
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/presentables.ts +1 -1
- package/src/service-API/user.ts +324 -300
|
@@ -227,7 +227,7 @@ interface GetItemsFromPresentableCollectionIsExistParamsType {
|
|
|
227
227
|
export declare function getItemsFromPresentableCollectionIsExist({ presentableId, ...params }: GetItemsFromPresentableCollectionIsExistParamsType): Promise<any>;
|
|
228
228
|
interface SetItemsSortFromPresentableCollectionManualParamsType {
|
|
229
229
|
presentableId: string;
|
|
230
|
-
|
|
230
|
+
itemIds: string[];
|
|
231
231
|
targetSortId: number;
|
|
232
232
|
}
|
|
233
233
|
export declare function setItemsSortFromPresentableCollectionManual({ presentableId, ...params }: SetItemsSortFromPresentableCollectionManualParamsType): Promise<any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AxiosRequestConfig } from
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
|
2
2
|
interface LoginParamsType {
|
|
3
3
|
loginName: string;
|
|
4
4
|
password: string;
|
|
@@ -101,4 +101,8 @@ interface SearchForConsoleParamsType {
|
|
|
101
101
|
keywords?: string;
|
|
102
102
|
}
|
|
103
103
|
export declare function searchForConsole(params?: SearchForConsoleParamsType): Promise<any>;
|
|
104
|
+
interface WechatPublicApisShareSignatureParamsType {
|
|
105
|
+
shareUrl: string;
|
|
106
|
+
}
|
|
107
|
+
export declare function wechatPublicApisShareSignature({ ...params }: WechatPublicApisShareSignatureParamsType): Promise<any>;
|
|
104
108
|
export {};
|
|
@@ -2450,6 +2450,14 @@ function searchForConsole(params) {
|
|
|
2450
2450
|
params: params
|
|
2451
2451
|
});
|
|
2452
2452
|
}
|
|
2453
|
+
function wechatPublicApisShareSignature(_ref5) {
|
|
2454
|
+
var params = _extends({}, (_objectDestructuringEmpty(_ref5), _ref5));
|
|
2455
|
+
return FUtil.Request({
|
|
2456
|
+
method: 'GET',
|
|
2457
|
+
url: '/v2/users/wechatPublicApis/shareSignature',
|
|
2458
|
+
params: params
|
|
2459
|
+
});
|
|
2460
|
+
}
|
|
2453
2461
|
|
|
2454
2462
|
var User = {
|
|
2455
2463
|
__proto__: null,
|
|
@@ -2473,7 +2481,8 @@ var User = {
|
|
|
2473
2481
|
thirdPartyIsBind: thirdPartyIsBind,
|
|
2474
2482
|
signForCoins: signForCoins,
|
|
2475
2483
|
getSignInfo: getSignInfo,
|
|
2476
|
-
searchForConsole: searchForConsole
|
|
2484
|
+
searchForConsole: searchForConsole,
|
|
2485
|
+
wechatPublicApisShareSignature: wechatPublicApisShareSignature
|
|
2477
2486
|
};
|
|
2478
2487
|
|
|
2479
2488
|
var _excluded$5 = ["nodeId"],
|