@freelog/tools-lib 0.1.180 → 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 +11 -2
- 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 +11 -2
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/presentables.ts +2 -2
- package/src/service-API/user.ts +324 -300
package/dist/tools-lib.esm.js
CHANGED
|
@@ -1262,7 +1262,7 @@ function setItemsSortFromPresentableCollectionQuick(_ref20) {
|
|
|
1262
1262
|
params = _objectWithoutPropertiesLoose(_ref20, _excluded18);
|
|
1263
1263
|
return FUtil.Request({
|
|
1264
1264
|
method: 'PUT',
|
|
1265
|
-
url: "/v2/presentables/catalogues/" + presentableId + "/
|
|
1265
|
+
url: "/v2/presentables/catalogues/" + presentableId + "/reorder",
|
|
1266
1266
|
data: params
|
|
1267
1267
|
});
|
|
1268
1268
|
}
|
|
@@ -2444,6 +2444,14 @@ function searchForConsole(params) {
|
|
|
2444
2444
|
params: params
|
|
2445
2445
|
});
|
|
2446
2446
|
}
|
|
2447
|
+
function wechatPublicApisShareSignature(_ref5) {
|
|
2448
|
+
var params = _extends({}, (_objectDestructuringEmpty(_ref5), _ref5));
|
|
2449
|
+
return FUtil.Request({
|
|
2450
|
+
method: 'GET',
|
|
2451
|
+
url: '/v2/users/wechatPublicApis/shareSignature',
|
|
2452
|
+
params: params
|
|
2453
|
+
});
|
|
2454
|
+
}
|
|
2447
2455
|
|
|
2448
2456
|
var User = {
|
|
2449
2457
|
__proto__: null,
|
|
@@ -2467,7 +2475,8 @@ var User = {
|
|
|
2467
2475
|
thirdPartyIsBind: thirdPartyIsBind,
|
|
2468
2476
|
signForCoins: signForCoins,
|
|
2469
2477
|
getSignInfo: getSignInfo,
|
|
2470
|
-
searchForConsole: searchForConsole
|
|
2478
|
+
searchForConsole: searchForConsole,
|
|
2479
|
+
wechatPublicApisShareSignature: wechatPublicApisShareSignature
|
|
2471
2480
|
};
|
|
2472
2481
|
|
|
2473
2482
|
var _excluded$5 = ["nodeId"],
|