@faststore/core 2.1.18 → 2.1.22

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.
Files changed (90) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +49 -45
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/eslint/.cache_1gneedd +1 -1
  6. package/.next/cache/next-server.js.nft.json +1 -1
  7. package/.next/cache/webpack/client-production/0.pack +0 -0
  8. package/.next/cache/webpack/client-production/index.pack +0 -0
  9. package/.next/cache/webpack/server-production/0.pack +0 -0
  10. package/.next/cache/webpack/server-production/index.pack +0 -0
  11. package/.next/next-server.js.nft.json +1 -1
  12. package/.next/prerender-manifest.json +1 -1
  13. package/.next/routes-manifest.json +1 -1
  14. package/.next/server/chunks/{205.js → 144.js} +619 -2
  15. package/.next/server/chunks/721.js +679 -0
  16. package/.next/server/chunks/74.js +54 -20
  17. package/.next/server/middleware-build-manifest.js +1 -1
  18. package/.next/server/pages/404.js.nft.json +1 -1
  19. package/.next/server/pages/500.js.nft.json +1 -1
  20. package/.next/server/pages/[...slug].js +298 -71
  21. package/.next/server/pages/[...slug].js.nft.json +1 -1
  22. package/.next/server/pages/[slug]/p.js +2 -2
  23. package/.next/server/pages/[slug]/p.js.nft.json +1 -1
  24. package/.next/server/pages/_app.js.nft.json +1 -1
  25. package/.next/server/pages/_document.js +5 -1
  26. package/.next/server/pages/_error.js.nft.json +1 -1
  27. package/.next/server/pages/account.js.nft.json +1 -1
  28. package/.next/server/pages/api/preview.js +35 -6
  29. package/.next/server/pages/checkout.js.nft.json +1 -1
  30. package/.next/server/pages/en-US/404.html +3 -3
  31. package/.next/server/pages/en-US/500.html +3 -3
  32. package/.next/server/pages/en-US/account.html +3 -3
  33. package/.next/server/pages/en-US/checkout.html +3 -3
  34. package/.next/server/pages/en-US/login.html +3 -3
  35. package/.next/server/pages/en-US/s.html +3 -3
  36. package/.next/server/pages/en-US.html +3 -3
  37. package/.next/server/pages/en-US.json +1 -1
  38. package/.next/server/pages/index.js +4 -474
  39. package/.next/server/pages/index.js.nft.json +1 -1
  40. package/.next/server/pages/login.js.nft.json +1 -1
  41. package/.next/server/pages/s.js +1 -1
  42. package/.next/server/pages/s.js.nft.json +1 -1
  43. package/.next/server/pages-manifest.json +4 -4
  44. package/.next/static/JOMe5dtqNwu-zmVu2HIcF/_buildManifest.js +1 -0
  45. package/.next/static/chunks/548-6b23e7ad82cd22b9.js +1 -0
  46. package/.next/static/chunks/706-8049971f9e5f6ad2.js +1 -0
  47. package/.next/static/chunks/{738-67a288ca3569cdbb.js → 738-a5ff304828f20cbf.js} +1 -1
  48. package/.next/static/chunks/791-c23aa4269c7955c8.js +1 -0
  49. package/.next/static/chunks/pages/{404-6da332b2c4ef0f41.js → 404-d5f20744ecd83121.js} +1 -1
  50. package/.next/static/chunks/pages/{500-88dd73506f17946c.js → 500-3911549ab88d0378.js} +1 -1
  51. package/.next/static/chunks/pages/[...slug]-3a37fd4d13cb2ba8.js +1 -0
  52. package/.next/static/chunks/pages/[slug]/{p-93d3f1c0f2d3aed2.js → p-bf47c90571846f86.js} +1 -1
  53. package/.next/static/chunks/pages/account-d248acc931146694.js +1 -0
  54. package/.next/static/chunks/pages/checkout-97f6d6f36f041a6f.js +1 -0
  55. package/.next/static/chunks/pages/index-e9727cb06d9ae961.js +1 -0
  56. package/.next/static/chunks/pages/{login-a688a70872ea61f5.js → login-4cc4b8e52608f076.js} +1 -1
  57. package/.next/static/chunks/pages/s-aabfa5c08338974a.js +1 -0
  58. package/.next/static/chunks/{webpack-8bf035049b590d82.js → webpack-764ce5753552a617.js} +1 -1
  59. package/.next/static/css/08e3fc80f9bad95d.css +1 -0
  60. package/.next/trace +80 -78
  61. package/.turbo/turbo-build.log +7 -8
  62. package/cms/faststore/content-types.json +2 -2
  63. package/package.json +2 -2
  64. package/src/components/ThirdPartyScripts/vtex.tsx +6 -0
  65. package/src/components/cms/GlobalSections.tsx +2 -3
  66. package/src/components/templates/LandingPage/LandingPage.tsx +102 -0
  67. package/src/components/templates/LandingPage/index.ts +2 -0
  68. package/src/components/templates/ProductListingPage/ProductListingPage.tsx +138 -0
  69. package/src/components/templates/ProductListingPage/index.ts +2 -0
  70. package/src/pages/[...slug].tsx +45 -130
  71. package/src/pages/api/preview.ts +18 -2
  72. package/src/pages/index.tsx +1 -3
  73. package/src/sdk/error/MissingContentError/MissingContentError.ts +15 -0
  74. package/src/sdk/error/MissingContentError/index.ts +1 -0
  75. package/src/sdk/error/MultipleContentError/MultipleContentError.ts +15 -0
  76. package/src/sdk/error/MultipleContentError/index.ts +1 -0
  77. package/src/server/cms.ts +7 -21
  78. package/.next/server/chunks/513.js +0 -257
  79. package/.next/server/chunks/90.js +0 -623
  80. package/.next/static/chunks/113-207e8eceab001eea.js +0 -1
  81. package/.next/static/chunks/548-ab84e9e8b49413ab.js +0 -1
  82. package/.next/static/chunks/791-b6747a7c7ca0967e.js +0 -1
  83. package/.next/static/chunks/pages/[...slug]-ab804df4ac6c945e.js +0 -1
  84. package/.next/static/chunks/pages/account-06126db1f6dc537e.js +0 -1
  85. package/.next/static/chunks/pages/checkout-5138b7956d64dde8.js +0 -1
  86. package/.next/static/chunks/pages/index-7ba4f6708af42d8e.js +0 -1
  87. package/.next/static/chunks/pages/s-99aad326e6aafeb7.js +0 -1
  88. package/.next/static/css/13ddbbc10e89ff0e.css +0 -1
  89. package/.next/static/hlJfefjb0gNJqepjDW_Eh/_buildManifest.js +0 -1
  90. /package/.next/static/{hlJfefjb0gNJqepjDW_Eh → JOMe5dtqNwu-zmVu2HIcF}/_ssgManifest.js +0 -0
@@ -854,7 +854,7 @@ __webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __we
854
854
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16689);
855
855
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
856
856
  /* harmony import */ var src_customizations_components__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(20859);
857
- /* harmony import */ var src_server_cms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(15764);
857
+ /* harmony import */ var src_server_cms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(42430);
858
858
  /* harmony import */ var src_components_common_Toast__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(17568);
859
859
  /* harmony import */ var _RenderSections__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(82224);
860
860
  /* harmony import */ var src_components_sections_Alert__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(2865);
@@ -921,11 +921,7 @@ function GlobalSections(_ref) {
921
921
  const getGlobalSectionsData = async previewData => {
922
922
  const {
923
923
  sections
924
- } = await (0,src_server_cms__WEBPACK_IMPORTED_MODULE_2__/* .getPage */ .f)(_objectSpread(_objectSpread({}, previewData?.contentType === GLOBAL_SECTIONS_CONTENT_TYPE ? previewData : {
925
- filters: {
926
- 'settings.seo.slug': '/'
927
- }
928
- }), {}, {
924
+ } = await (0,src_server_cms__WEBPACK_IMPORTED_MODULE_2__/* .getPage */ .f)(_objectSpread(_objectSpread({}, previewData?.contentType === GLOBAL_SECTIONS_CONTENT_TYPE && previewData), {}, {
929
925
  contentType: GLOBAL_SECTIONS_CONTENT_TYPE
930
926
  }));
931
927
  return {
@@ -3295,6 +3291,22 @@ const useCart = () => {
3295
3291
 
3296
3292
  /***/ }),
3297
3293
 
3294
+ /***/ 43025:
3295
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3296
+
3297
+ "use strict";
3298
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3299
+ /* harmony export */ "Z": () => (/* binding */ MissingContentError)
3300
+ /* harmony export */ });
3301
+ class MissingContentError extends Error {
3302
+ constructor(options) {
3303
+ super(`Missing content on the CMS for content type ${options.contentType}. Add content before proceeding. Context: ${JSON.stringify(options, null, 2)}`);
3304
+ }
3305
+
3306
+ }
3307
+
3308
+ /***/ }),
3309
+
3298
3310
  /***/ 180:
3299
3311
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3300
3312
 
@@ -3650,23 +3662,45 @@ const createValidationStore = cb => {
3650
3662
 
3651
3663
  /***/ }),
3652
3664
 
3653
- /***/ 15764:
3665
+ /***/ 42430:
3654
3666
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
3655
3667
 
3656
3668
  "use strict";
3657
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
3658
- /* harmony export */ "f": () => (/* binding */ getPage)
3659
- /* harmony export */ });
3660
- /* unused harmony export clientCMS */
3661
- /* harmony import */ var _vtex_client_cms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(16676);
3662
- /* harmony import */ var _vtex_client_cms__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_vtex_client_cms__WEBPACK_IMPORTED_MODULE_0__);
3663
- /* harmony import */ var _faststore_config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(97183);
3664
- /* harmony import */ var _faststore_config__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_faststore_config__WEBPACK_IMPORTED_MODULE_1__);
3669
+
3670
+ // EXPORTS
3671
+ __webpack_require__.d(__webpack_exports__, {
3672
+ "f": () => (/* binding */ getPage)
3673
+ });
3674
+
3675
+ // UNUSED EXPORTS: clientCMS
3676
+
3677
+ // EXTERNAL MODULE: external "@vtex/client-cms"
3678
+ var client_cms_ = __webpack_require__(16676);
3679
+ var client_cms_default = /*#__PURE__*/__webpack_require__.n(client_cms_);
3680
+ // EXTERNAL MODULE: ./faststore.config.js
3681
+ var faststore_config = __webpack_require__(97183);
3682
+ var faststore_config_default = /*#__PURE__*/__webpack_require__.n(faststore_config);
3683
+ ;// CONCATENATED MODULE: ./src/sdk/error/MultipleContentError/MultipleContentError.ts
3684
+ class MultipleContentError extends Error {
3685
+ constructor(options) {
3686
+ super(`Multiple content defined on the CMS for content type ${options.contentType}. Remove duplicated content before proceeding. Context: ${JSON.stringify(options, null, 2)}`);
3687
+ }
3688
+
3689
+ }
3690
+ ;// CONCATENATED MODULE: ./src/sdk/error/MultipleContentError/index.ts
3691
+
3692
+ // EXTERNAL MODULE: ./src/sdk/error/MissingContentError/MissingContentError.ts
3693
+ var MissingContentError = __webpack_require__(43025);
3694
+ ;// CONCATENATED MODULE: ./src/sdk/error/MissingContentError/index.ts
3695
+
3696
+ ;// CONCATENATED MODULE: ./src/server/cms.ts
3697
+
3698
+
3665
3699
 
3666
3700
 
3667
- const clientCMS = new (_vtex_client_cms__WEBPACK_IMPORTED_MODULE_0___default())({
3668
- workspace: (_faststore_config__WEBPACK_IMPORTED_MODULE_1___default().api.workspace),
3669
- tenant: (_faststore_config__WEBPACK_IMPORTED_MODULE_1___default().api.storeId)
3701
+ const clientCMS = new (client_cms_default())({
3702
+ workspace: (faststore_config_default()).api.workspace,
3703
+ tenant: (faststore_config_default()).api.storeId
3670
3704
  });
3671
3705
 
3672
3706
  const isLocator = x => typeof x.contentType === 'string' && (typeof x.releaseId === 'string' || typeof x.documentId === 'string');
@@ -3678,11 +3712,11 @@ const getPage = async options => {
3678
3712
  const pages = result.data;
3679
3713
 
3680
3714
  if (!pages[0]) {
3681
- throw new Error(`Missing content on the CMS for content type ${options.contentType}. Add content before proceeding. Context: ${JSON.stringify(options, null, 2)}`);
3715
+ throw new MissingContentError/* default */.Z(options);
3682
3716
  }
3683
3717
 
3684
3718
  if (pages.length !== 1) {
3685
- throw new Error(`Multiple content defined on the CMS for content type ${options.contentType}. Remove duplicated content before proceeding. Context: ${JSON.stringify(options, null, 2)}`);
3719
+ throw new MultipleContentError(options);
3686
3720
  }
3687
3721
 
3688
3722
  return pages[0];
@@ -1 +1 @@
1
- self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-c67a75d1b6f99dc8.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:["static/hlJfefjb0gNJqepjDW_Eh/_buildManifest.js","static/hlJfefjb0gNJqepjDW_Eh/_ssgManifest.js"],rootMainFiles:[],pages:{"/":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/chunks/548-ab84e9e8b49413ab.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/6f33907361436e6c.css","static/chunks/130-15325805e3c8d5f4.js","static/css/584640ffee46aa49.css","static/chunks/pages/index-7ba4f6708af42d8e.js"],"/404":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/e02cdad8fc000339.css","static/chunks/pages/404-6da332b2c4ef0f41.js"],"/500":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/e02cdad8fc000339.css","static/chunks/pages/500-88dd73506f17946c.js"],"/[...slug]":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/f9d59f597a4d8f82.css","static/chunks/791-b6747a7c7ca0967e.js","static/css/13ddbbc10e89ff0e.css","static/chunks/pages/[...slug]-ab804df4ac6c945e.js"],"/[slug]/p":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/chunks/548-ab84e9e8b49413ab.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/6f33907361436e6c.css","static/chunks/130-15325805e3c8d5f4.js","static/css/0e00026896a2ee3e.css","static/chunks/pages/[slug]/p-93d3f1c0f2d3aed2.js"],"/_app":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/css/f7ed956d370744ea.css","static/chunks/pages/_app-79d333aa6001a806.js"],"/_error":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/pages/_error-a7a0c1d9bfbb4f38.js"],"/account":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/chunks/pages/account-06126db1f6dc537e.js"],"/checkout":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/chunks/pages/checkout-5138b7956d64dde8.js"],"/login":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/e02cdad8fc000339.css","static/chunks/pages/login-a688a70872ea61f5.js"],"/s":["static/chunks/webpack-8bf035049b590d82.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-67a288ca3569cdbb.js","static/css/a49f71ae6bb528e0.css","static/chunks/113-207e8eceab001eea.js","static/css/f9d59f597a4d8f82.css","static/chunks/791-b6747a7c7ca0967e.js","static/chunks/pages/s-99aad326e6aafeb7.js"]},ampFirstPages:[]};
1
+ self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-c67a75d1b6f99dc8.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:["static/JOMe5dtqNwu-zmVu2HIcF/_buildManifest.js","static/JOMe5dtqNwu-zmVu2HIcF/_ssgManifest.js"],rootMainFiles:[],pages:{"/":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/chunks/548-6b23e7ad82cd22b9.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/6f33907361436e6c.css","static/chunks/130-15325805e3c8d5f4.js","static/css/584640ffee46aa49.css","static/chunks/pages/index-e9727cb06d9ae961.js"],"/404":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/e02cdad8fc000339.css","static/chunks/pages/404-d5f20744ecd83121.js"],"/500":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/e02cdad8fc000339.css","static/chunks/pages/500-3911549ab88d0378.js"],"/[...slug]":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/chunks/548-6b23e7ad82cd22b9.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/6f33907361436e6c.css","static/chunks/130-15325805e3c8d5f4.js","static/css/f9d59f597a4d8f82.css","static/chunks/791-c23aa4269c7955c8.js","static/css/584640ffee46aa49.css","static/css/08e3fc80f9bad95d.css","static/chunks/pages/[...slug]-3a37fd4d13cb2ba8.js"],"/[slug]/p":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/chunks/548-6b23e7ad82cd22b9.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/6f33907361436e6c.css","static/chunks/130-15325805e3c8d5f4.js","static/css/0e00026896a2ee3e.css","static/chunks/pages/[slug]/p-bf47c90571846f86.js"],"/_app":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/css/f7ed956d370744ea.css","static/chunks/pages/_app-79d333aa6001a806.js"],"/_error":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/pages/_error-a7a0c1d9bfbb4f38.js"],"/account":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/chunks/pages/account-d248acc931146694.js"],"/checkout":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/chunks/pages/checkout-97f6d6f36f041a6f.js"],"/login":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/e02cdad8fc000339.css","static/chunks/pages/login-4cc4b8e52608f076.js"],"/s":["static/chunks/webpack-764ce5753552a617.js","static/chunks/framework-dfd14d7ce6600b03.js","static/chunks/main-fd466221927468fd.js","static/chunks/738-a5ff304828f20cbf.js","static/css/a49f71ae6bb528e0.css","static/chunks/706-8049971f9e5f6ad2.js","static/css/f9d59f597a4d8f82.css","static/chunks/791-c23aa4269c7955c8.js","static/chunks/pages/s-aabfa5c08338974a.js"]},ampFirstPages:[]};
@@ -1 +1 @@
1
- {"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/886.js","../chunks/74.js","../chunks/186.js","../chunks/287.js","../chunks/597.js","../chunks/247.js","../chunks/123.js","../chunks/502.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
1
+ {"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/886.js","../chunks/74.js","../chunks/186.js","../chunks/287.js","../chunks/597.js","../chunks/247.js","../chunks/123.js","../chunks/502.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/886.js","../chunks/74.js","../chunks/186.js","../chunks/287.js","../chunks/597.js","../chunks/247.js","../chunks/123.js","../chunks/502.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
1
+ {"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/886.js","../chunks/74.js","../chunks/186.js","../chunks/287.js","../chunks/597.js","../chunks/247.js","../chunks/123.js","../chunks/502.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}