@freelog/tools-lib 0.1.181 → 0.1.183
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 +8 -1
- package/dist/service-API/resources.d.ts +4 -0
- package/dist/service-API/user.d.ts +5 -1
- package/dist/tools-lib.cjs.development.js +21 -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 +21 -2
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/presentables.ts +20 -1
- package/src/service-API/resources.ts +4 -0
- package/src/service-API/user.ts +324 -300
package/dist/tools-lib.esm.js
CHANGED
|
@@ -1282,6 +1282,15 @@ function setItemsAutoCollectRule(_ref22) {
|
|
|
1282
1282
|
data: params
|
|
1283
1283
|
});
|
|
1284
1284
|
}
|
|
1285
|
+
function getItemsFromPresentableCollections(_ref23) {
|
|
1286
|
+
var params = _extends({}, (_objectDestructuringEmpty(_ref23), _ref23));
|
|
1287
|
+
return FUtil.Request({
|
|
1288
|
+
method: 'GET',
|
|
1289
|
+
// url: `/v2/presentables/catalogues/items/batch/list?presentableIds=685cf423e1502e002fe3053b&limit=1&sortType=-1&sortField=createDate`,
|
|
1290
|
+
url: "/v2/presentables/catalogues/items/batch/list",
|
|
1291
|
+
params: params
|
|
1292
|
+
});
|
|
1293
|
+
}
|
|
1285
1294
|
|
|
1286
1295
|
var Exhibit = {
|
|
1287
1296
|
__proto__: null,
|
|
@@ -1311,7 +1320,8 @@ var Exhibit = {
|
|
|
1311
1320
|
setItemsSortFromPresentableCollectionManual: setItemsSortFromPresentableCollectionManual,
|
|
1312
1321
|
setItemsSortFromPresentableCollectionQuick: setItemsSortFromPresentableCollectionQuick,
|
|
1313
1322
|
getItemsAutoCollectRule: getItemsAutoCollectRule,
|
|
1314
|
-
setItemsAutoCollectRule: setItemsAutoCollectRule
|
|
1323
|
+
setItemsAutoCollectRule: setItemsAutoCollectRule,
|
|
1324
|
+
getItemsFromPresentableCollections: getItemsFromPresentableCollections
|
|
1315
1325
|
};
|
|
1316
1326
|
|
|
1317
1327
|
var _excluded$2 = ["bucketName"],
|
|
@@ -2444,6 +2454,14 @@ function searchForConsole(params) {
|
|
|
2444
2454
|
params: params
|
|
2445
2455
|
});
|
|
2446
2456
|
}
|
|
2457
|
+
function wechatPublicApisShareSignature(_ref5) {
|
|
2458
|
+
var params = _extends({}, (_objectDestructuringEmpty(_ref5), _ref5));
|
|
2459
|
+
return FUtil.Request({
|
|
2460
|
+
method: 'GET',
|
|
2461
|
+
url: '/v2/users/wechatPublicApis/shareSignature',
|
|
2462
|
+
params: params
|
|
2463
|
+
});
|
|
2464
|
+
}
|
|
2447
2465
|
|
|
2448
2466
|
var User = {
|
|
2449
2467
|
__proto__: null,
|
|
@@ -2467,7 +2485,8 @@ var User = {
|
|
|
2467
2485
|
thirdPartyIsBind: thirdPartyIsBind,
|
|
2468
2486
|
signForCoins: signForCoins,
|
|
2469
2487
|
getSignInfo: getSignInfo,
|
|
2470
|
-
searchForConsole: searchForConsole
|
|
2488
|
+
searchForConsole: searchForConsole,
|
|
2489
|
+
wechatPublicApisShareSignature: wechatPublicApisShareSignature
|
|
2471
2490
|
};
|
|
2472
2491
|
|
|
2473
2492
|
var _excluded$5 = ["nodeId"],
|