@pisell/pisellos 2.2.7 → 2.2.8
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/server/modules/menu/index.js +1 -1
- package/dist/server/modules/products/index.js +1 -1
- package/dist/server/modules/schedule/index.js +1 -1
- package/lib/server/modules/menu/index.js +1 -1
- package/lib/server/modules/products/index.js +1 -1
- package/lib/server/modules/schedule/index.js +1 -1
- package/package.json +1 -1
|
@@ -475,7 +475,7 @@ export var ProductsModule = /*#__PURE__*/function (_BaseModule) {
|
|
|
475
475
|
front_end_cache_id: cacheId,
|
|
476
476
|
application_code: (_this$otherParams = this.otherParams) === null || _this$otherParams === void 0 ? void 0 : _this$otherParams.channel
|
|
477
477
|
}, {
|
|
478
|
-
|
|
478
|
+
cache: undefined
|
|
479
479
|
});
|
|
480
480
|
case 4:
|
|
481
481
|
productsData = _context6.sent;
|
|
@@ -73,7 +73,7 @@ var MenuModule = class extends import_BaseModule.BaseModule {
|
|
|
73
73
|
num: 999,
|
|
74
74
|
code: "menu_list"
|
|
75
75
|
},
|
|
76
|
-
{
|
|
76
|
+
{ cache: void 0 }
|
|
77
77
|
);
|
|
78
78
|
const menuList = ((_a = response == null ? void 0 : response.data) == null ? void 0 : _a.list) || [];
|
|
79
79
|
await this.saveMenuToIndexDB(menuList);
|
|
@@ -313,7 +313,7 @@ var ProductsModule = class extends import_BaseModule.BaseModule {
|
|
|
313
313
|
front_end_cache_id: cacheId,
|
|
314
314
|
application_code: (_a = this.otherParams) == null ? void 0 : _a.channel
|
|
315
315
|
},
|
|
316
|
-
{
|
|
316
|
+
{ cache: void 0 }
|
|
317
317
|
);
|
|
318
318
|
await this.saveProductsToIndexDB(((_b = productsData == null ? void 0 : productsData.data) == null ? void 0 : _b.list) || []);
|
|
319
319
|
await this.core.effects.emit(
|
|
@@ -82,7 +82,7 @@ var ScheduleModuleEx = class extends import_BaseModule.BaseModule {
|
|
|
82
82
|
const scheduleList = await this.request.get(
|
|
83
83
|
`/schedule`,
|
|
84
84
|
{ num: 999 },
|
|
85
|
-
{
|
|
85
|
+
{ cache: void 0 }
|
|
86
86
|
);
|
|
87
87
|
const list = ((_a = scheduleList.data) == null ? void 0 : _a.list) || [];
|
|
88
88
|
await this.saveScheduleToIndexDB(list);
|