@faststore/core 3.42.0 → 3.43.0

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 (89) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +16 -16
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/webpack/client-production/0.pack +0 -0
  6. package/.next/cache/webpack/client-production/index.pack +0 -0
  7. package/.next/cache/webpack/server-production/0.pack +0 -0
  8. package/.next/cache/webpack/server-production/index.pack +0 -0
  9. package/.next/prerender-manifest.js +1 -1
  10. package/.next/prerender-manifest.json +1 -1
  11. package/.next/react-loadable-manifest.json +4 -4
  12. package/.next/routes-manifest.json +1 -1
  13. package/.next/server/chunks/1506.js +1 -1
  14. package/.next/server/chunks/4289.js +4 -4
  15. package/.next/server/chunks/6968.js +9 -0
  16. package/.next/server/chunks/8646.js +1 -1
  17. package/.next/server/middleware-build-manifest.js +1 -1
  18. package/.next/server/middleware-react-loadable-manifest.js +1 -1
  19. package/.next/server/pages/404.js +1 -1
  20. package/.next/server/pages/404.js.nft.json +1 -1
  21. package/.next/server/pages/500.js +1 -1
  22. package/.next/server/pages/500.js.nft.json +1 -1
  23. package/.next/server/pages/[...slug].js +1 -1
  24. package/.next/server/pages/[...slug].js.nft.json +1 -1
  25. package/.next/server/pages/[slug]/p.js +1 -1
  26. package/.next/server/pages/[slug]/p.js.nft.json +1 -1
  27. package/.next/server/pages/_app.js.nft.json +1 -1
  28. package/.next/server/pages/_document.js.nft.json +1 -1
  29. package/.next/server/pages/_error.js.nft.json +1 -1
  30. package/.next/server/pages/account/profile.js +1 -1
  31. package/.next/server/pages/account/profile.js.nft.json +1 -1
  32. package/.next/server/pages/account.js.nft.json +1 -1
  33. package/.next/server/pages/api/graphql.js.nft.json +1 -1
  34. package/.next/server/pages/api/health/live.js.nft.json +1 -1
  35. package/.next/server/pages/api/health/ready.js.nft.json +1 -1
  36. package/.next/server/pages/api/preview.js +1 -1
  37. package/.next/server/pages/api/preview.js.nft.json +1 -1
  38. package/.next/server/pages/checkout.js +1 -1
  39. package/.next/server/pages/checkout.js.nft.json +1 -1
  40. package/.next/server/pages/en-US/404.html +2 -2
  41. package/.next/server/pages/en-US/500.html +2 -2
  42. package/.next/server/pages/en-US/checkout.html +2 -2
  43. package/.next/server/pages/en-US/login.html +2 -2
  44. package/.next/server/pages/en-US/s.html +2 -2
  45. package/.next/server/pages/en-US.html +2 -2
  46. package/.next/server/pages/index.js +1 -1
  47. package/.next/server/pages/index.js.nft.json +1 -1
  48. package/.next/server/pages/login.js +1 -1
  49. package/.next/server/pages/login.js.nft.json +1 -1
  50. package/.next/server/pages/s.js +1 -1
  51. package/.next/server/pages/s.js.nft.json +1 -1
  52. package/.next/server/pages-manifest.json +1 -1
  53. package/.next/static/chunks/{1552.e7cece605fc2e1cd.js → 1552.b5a073e7ac834965.js} +1 -1
  54. package/.next/static/chunks/630.13d3dd939b789798.js +6 -0
  55. package/.next/static/chunks/8827.179b49f8ab3afe48.js +1 -0
  56. package/.next/static/chunks/pages/[...slug]-2cfb2b1b8ee3b7a9.js +1 -0
  57. package/.next/static/chunks/pages/{_app-0f16b6b5d7dfab2a.js → _app-f02182ccd58f2781.js} +1 -1
  58. package/.next/static/chunks/webpack-0dd5a14ceff64065.js +1 -0
  59. package/.next/static/{Ra_8xXVEVCNHcT2KePSUO → f5jWOXDXh3GdBy9EK8IDc}/_buildManifest.js +1 -1
  60. package/.next/trace +111 -109
  61. package/.turbo/turbo-build.log +17 -17
  62. package/.turbo/turbo-test.log +5 -5
  63. package/CHANGELOG.md +6 -0
  64. package/discovery.config.default.js +6 -0
  65. package/package.json +3 -2
  66. package/src/components/cms/GlobalSections.tsx +13 -9
  67. package/src/components/templates/LandingPage/LandingPage.tsx +22 -18
  68. package/src/components/templates/ProductListingPage/ProductListing.tsx +6 -1
  69. package/src/experimental/searchServerSideFunctions/getServerSideProps.ts +8 -5
  70. package/src/experimental/searchServerSideFunctions/getStaticProps.ts +9 -7
  71. package/src/pages/404.tsx +6 -5
  72. package/src/pages/500.tsx +6 -5
  73. package/src/pages/[...slug].tsx +11 -4
  74. package/src/pages/[slug]/p.tsx +14 -5
  75. package/src/pages/api/preview.ts +43 -18
  76. package/src/pages/index.tsx +9 -7
  77. package/src/pages/login.tsx +6 -5
  78. package/src/sdk/error/MissingContentError/MissingContentError.ts +6 -4
  79. package/src/sdk/error/MultipleContentError/MultipleContentError.ts +6 -4
  80. package/src/server/cms/index.ts +1 -2
  81. package/src/server/content/service.ts +227 -0
  82. package/src/server/content/types.ts +26 -0
  83. package/src/server/content/utils.ts +8 -0
  84. package/.next/server/chunks/6026.js +0 -9
  85. package/.next/static/chunks/1036.27f5244aaf7d0915.js +0 -1
  86. package/.next/static/chunks/485.a35fab0c7c75a11b.js +0 -1
  87. package/.next/static/chunks/pages/[...slug]-f4fd6c8d7dc53f8f.js +0 -1
  88. package/.next/static/chunks/webpack-d72e5eb27bf80195.js +0 -1
  89. /package/.next/static/{Ra_8xXVEVCNHcT2KePSUO → f5jWOXDXh3GdBy9EK8IDc}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/react","../../../package.json","../../../src/pages/_document.tsx","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6026.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
1
+ {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/react","../../../package.json","../../../src/pages/_document.tsx","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6968.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/next-seo","../../../node_modules/react","../../../node_modules/react-dom","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6026.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
1
+ {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/next-seo","../../../node_modules/react","../../../node_modules/react-dom","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6968.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
@@ -1 +1 @@
1
- (()=>{var e={};e.id=2771,e.ids=[2771,2888,660],e.modules={18538:(e,t,r)=>{"use strict";r.d(t,{Z:()=>MyAccountLayout_MyAccountLayout});var s=r(40727),a=r(83339),c=r(74444),n=r(82690),i=r.n(n),o=r(36259),u=r(20997);let Nav=({items:e})=>{let t=(0,c.useRouter)(),r=t.pathname;return u.jsx("ul",{className:i().nav,children:e.map(({route:e,title:t})=>u.jsx("li",{className:i().navItem,"data-is-selected":r===e,children:u.jsx(s.Z,{href:e,tabIndex:0,children:t})},e))})},MyAccountMenu_MyAccountMenu=({avatarImageUrl:e,accountName:t,items:r})=>{let{isDesktop:s}=(0,o.Z)();return(0,u.jsxs)("div",{className:i().menu,children:[s?(0,u.jsxs)("div",{className:i().account,children:[(0,u.jsxs)("div",{className:i().avatarContainer,children:[e?u.jsx("img",{className:i().avatar,src:e}):u.jsx("span",{className:i().avatar,children:t[0]}),u.jsx("h2",{children:t})]}),u.jsx(a.Z,{className:i().switchButton,variant:"secondary",size:"small",children:"Switch"})]}):null,u.jsx(Nav,{items:r})]})},l=[{title:"Profile",route:"/account/profile"},{title:"Orders",route:"/account/orders"},{title:"User Details",route:"/account/user-details"},{title:"Security",route:"/account/security"}],p=function({routes:e}){return[...l,...e]}({routes:[]}),MyAccountLayout_MyAccountLayout=({children:e})=>(0,u.jsxs)("div",{className:i().layout,children:[u.jsx(MyAccountMenu_MyAccountMenu,{accountName:"Mocked Username",items:p}),e]})},74561:(e,t,r)=>{"use strict";r.d(t,{N:()=>getServerSideProps});var s=r(80608),a=r(11715);let getServerSideProps=async({previewData:e})=>{let[t,r,c]=(0,s.Tc)(e),[n,i,o]=await Promise.all([t,r,c]),u=(0,a.z)({globalSections:n,globalSectionsHeader:i,globalSectionsFooter:o});return{props:{globalSections:u}}}},10507:(e,t,r)=>{"use strict";r.a(e,async(e,s)=>{try{r.r(t),r.d(t,{default:()=>Profile,getServerSideProps:()=>u.N});var a=r(16641),c=r(18538),n=r(75938),i=r(595),o=r(56283),u=r(74561),l=r(20997),p=e([i,n]);function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,s)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach(function(t){var s;s=r[t],t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}[i,n]=p.then?(await p)():p;let d=_objectSpread(_objectSpread({},i.Z),o.Z),_={alignContent:"center",justifyContent:"center",alignItems:"center",display:"flex",h1:{fontSize:"100px"}};function Profile({globalSections:e}){return(0,l.jsxs)(n.Z,{globalSections:e.sections,components:d,children:[l.jsx(a.NextSeo,{noindex:!0,nofollow:!0}),l.jsx(c.Z,{children:l.jsx("div",{style:_,children:l.jsx("h1",{style:_.h1,children:"Profile"})})})]})}s()}catch(e){s(e)}})},82690:e=>{e.exports={layout:"section_layout__QJ4xs",menu:"section_menu__WKZdl",account:"section_account__YjCAC",avatarContainer:"section_avatarContainer__1RMsJ",switchButton:"section_switchButton__ul06M",nav:"section_nav__Jjee8",navItem:"section_navItem__yr27R",avatar:"section_avatar__IQLo8"}},73832:(e,t,r)=>{"use strict";r.a(e,async(e,s)=>{try{r.r(t),r.d(t,{config:()=>x,default:()=>p,getServerSideProps:()=>m,getStaticPaths:()=>_,getStaticProps:()=>d,reportWebVitals:()=>v,routeModule:()=>g,unstable_getServerProps:()=>j,unstable_getServerSideProps:()=>f,unstable_getStaticParams:()=>h,unstable_getStaticPaths:()=>b,unstable_getStaticProps:()=>y});var a=r(9339),c=r(50958),n=r(55365),i=r(86291),o=r(29594),u=r(10507),l=e([u,i]);[u,i]=l.then?(await l)():l;let p=(0,n.l)(u,"default"),d=(0,n.l)(u,"getStaticProps"),_=(0,n.l)(u,"getStaticPaths"),m=(0,n.l)(u,"getServerSideProps"),x=(0,n.l)(u,"config"),v=(0,n.l)(u,"reportWebVitals"),y=(0,n.l)(u,"unstable_getStaticProps"),b=(0,n.l)(u,"unstable_getStaticPaths"),h=(0,n.l)(u,"unstable_getStaticParams"),j=(0,n.l)(u,"unstable_getServerProps"),f=(0,n.l)(u,"unstable_getServerSideProps"),g=new a.PagesRouteModule({definition:{kind:c.x.PAGES,page:"/account/profile",pathname:"/account/profile",bundlePath:"",filename:""},components:{App:o.default,Document:i.default},userland:u});s()}catch(e){s(e)}})},16676:e=>{"use strict";e.exports=require("@vtex/client-cms")},56330:e=>{"use strict";e.exports=require("deepmerge")},16641:e=>{"use strict";e.exports=require("next-seo")},62785:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/pages.runtime.prod.js")},16689:e=>{"use strict";e.exports=require("react")},66405:e=>{"use strict";e.exports=require("react-dom")},19785:e=>{"use strict";e.exports=require("react-intersection-observer")},20997:e=>{"use strict";e.exports=require("react/jsx-runtime")},14037:e=>{"use strict";e.exports=import("@builder.io/partytown/react")},15941:e=>{"use strict";e.exports=import("swr")},57147:e=>{"use strict";e.exports=require("fs")},71017:e=>{"use strict";e.exports=require("path")},12781:e=>{"use strict";e.exports=require("stream")},59796:e=>{"use strict";e.exports=require("zlib")}};var t=require("../../webpack-runtime.js");t.C(e);var __webpack_exec__=e=>t(t.s=e),r=t.X(0,[298,4444,3105,41,7348,7337,8355,1506,9594,6291,7675,4289],()=>__webpack_exec__(73832));module.exports=r})();
1
+ (()=>{var e={};e.id=2771,e.ids=[2771,2888,660],e.modules={18538:(e,t,r)=>{"use strict";r.d(t,{Z:()=>MyAccountLayout_MyAccountLayout});var s=r(40727),a=r(83339),c=r(74444),n=r(82690),i=r.n(n),o=r(36259),u=r(20997);let Nav=({items:e})=>{let t=(0,c.useRouter)(),r=t.pathname;return u.jsx("ul",{className:i().nav,children:e.map(({route:e,title:t})=>u.jsx("li",{className:i().navItem,"data-is-selected":r===e,children:u.jsx(s.Z,{href:e,tabIndex:0,children:t})},e))})},MyAccountMenu_MyAccountMenu=({avatarImageUrl:e,accountName:t,items:r})=>{let{isDesktop:s}=(0,o.Z)();return(0,u.jsxs)("div",{className:i().menu,children:[s?(0,u.jsxs)("div",{className:i().account,children:[(0,u.jsxs)("div",{className:i().avatarContainer,children:[e?u.jsx("img",{className:i().avatar,src:e}):u.jsx("span",{className:i().avatar,children:t[0]}),u.jsx("h2",{children:t})]}),u.jsx(a.Z,{className:i().switchButton,variant:"secondary",size:"small",children:"Switch"})]}):null,u.jsx(Nav,{items:r})]})},l=[{title:"Profile",route:"/account/profile"},{title:"Orders",route:"/account/orders"},{title:"User Details",route:"/account/user-details"},{title:"Security",route:"/account/security"}],p=function({routes:e}){return[...l,...e]}({routes:[]}),MyAccountLayout_MyAccountLayout=({children:e})=>(0,u.jsxs)("div",{className:i().layout,children:[u.jsx(MyAccountMenu_MyAccountMenu,{accountName:"Mocked Username",items:p}),e]})},74561:(e,t,r)=>{"use strict";r.d(t,{N:()=>getServerSideProps});var s=r(80608),a=r(11715);let getServerSideProps=async({previewData:e})=>{let[t,r,c]=(0,s.Tc)(e),[n,i,o]=await Promise.all([t,r,c]),u=(0,a.z)({globalSections:n,globalSectionsHeader:i,globalSectionsFooter:o});return{props:{globalSections:u}}}},10507:(e,t,r)=>{"use strict";r.a(e,async(e,s)=>{try{r.r(t),r.d(t,{default:()=>Profile,getServerSideProps:()=>u.N});var a=r(16641),c=r(18538),n=r(75938),i=r(595),o=r(56283),u=r(74561),l=r(20997),p=e([i,n]);function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,s)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach(function(t){var s;s=r[t],t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}[i,n]=p.then?(await p)():p;let d=_objectSpread(_objectSpread({},i.Z),o.Z),_={alignContent:"center",justifyContent:"center",alignItems:"center",display:"flex",h1:{fontSize:"100px"}};function Profile({globalSections:e}){return(0,l.jsxs)(n.Z,{globalSections:e.sections,components:d,children:[l.jsx(a.NextSeo,{noindex:!0,nofollow:!0}),l.jsx(c.Z,{children:l.jsx("div",{style:_,children:l.jsx("h1",{style:_.h1,children:"Profile"})})})]})}s()}catch(e){s(e)}})},82690:e=>{e.exports={layout:"section_layout__QJ4xs",menu:"section_menu__WKZdl",account:"section_account__YjCAC",avatarContainer:"section_avatarContainer__1RMsJ",switchButton:"section_switchButton__ul06M",nav:"section_nav__Jjee8",navItem:"section_navItem__yr27R",avatar:"section_avatar__IQLo8"}},73832:(e,t,r)=>{"use strict";r.a(e,async(e,s)=>{try{r.r(t),r.d(t,{config:()=>m,default:()=>p,getServerSideProps:()=>x,getStaticPaths:()=>_,getStaticProps:()=>d,reportWebVitals:()=>v,routeModule:()=>g,unstable_getServerProps:()=>j,unstable_getServerSideProps:()=>f,unstable_getStaticParams:()=>h,unstable_getStaticPaths:()=>b,unstable_getStaticProps:()=>y});var a=r(9339),c=r(50958),n=r(55365),i=r(86291),o=r(29594),u=r(10507),l=e([u,i]);[u,i]=l.then?(await l)():l;let p=(0,n.l)(u,"default"),d=(0,n.l)(u,"getStaticProps"),_=(0,n.l)(u,"getStaticPaths"),x=(0,n.l)(u,"getServerSideProps"),m=(0,n.l)(u,"config"),v=(0,n.l)(u,"reportWebVitals"),y=(0,n.l)(u,"unstable_getStaticProps"),b=(0,n.l)(u,"unstable_getStaticPaths"),h=(0,n.l)(u,"unstable_getStaticParams"),j=(0,n.l)(u,"unstable_getServerProps"),f=(0,n.l)(u,"unstable_getServerSideProps"),g=new a.PagesRouteModule({definition:{kind:c.x.PAGES,page:"/account/profile",pathname:"/account/profile",bundlePath:"",filename:""},components:{App:o.default,Document:i.default},userland:u});s()}catch(e){s(e)}})},16676:e=>{"use strict";e.exports=require("@vtex/client-cms")},44339:e=>{"use strict";e.exports=require("@vtex/client-cp")},56330:e=>{"use strict";e.exports=require("deepmerge")},16641:e=>{"use strict";e.exports=require("next-seo")},62785:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/pages.runtime.prod.js")},16689:e=>{"use strict";e.exports=require("react")},66405:e=>{"use strict";e.exports=require("react-dom")},19785:e=>{"use strict";e.exports=require("react-intersection-observer")},20997:e=>{"use strict";e.exports=require("react/jsx-runtime")},14037:e=>{"use strict";e.exports=import("@builder.io/partytown/react")},15941:e=>{"use strict";e.exports=import("swr")},57147:e=>{"use strict";e.exports=require("fs")},71017:e=>{"use strict";e.exports=require("path")},12781:e=>{"use strict";e.exports=require("stream")},59796:e=>{"use strict";e.exports=require("zlib")}};var t=require("../../webpack-runtime.js");t.C(e);var __webpack_exec__=e=>t(t.s=e),r=t.X(0,[298,4444,3105,41,7348,7337,8355,1506,9594,6291,7675,4289],()=>__webpack_exec__(73832));module.exports=r})();
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../components/dist/esm/atoms/Badge/Badge.js","../../../../../components/dist/esm/atoms/Badge/index.js","../../../../../components/dist/esm/atoms/Button/Button.js","../../../../../components/dist/esm/atoms/Button/index.js","../../../../../components/dist/esm/atoms/Checkbox/Checkbox.js","../../../../../components/dist/esm/atoms/Checkbox/index.js","../../../../../components/dist/esm/atoms/Icon/Icon.js","../../../../../components/dist/esm/atoms/Icon/index.js","../../../../../components/dist/esm/atoms/Input/Input.js","../../../../../components/dist/esm/atoms/Input/index.js","../../../../../components/dist/esm/atoms/Label/Label.js","../../../../../components/dist/esm/atoms/Label/index.js","../../../../../components/dist/esm/atoms/Link/Link.js","../../../../../components/dist/esm/atoms/Link/index.js","../../../../../components/dist/esm/atoms/List/List.js","../../../../../components/dist/esm/atoms/List/index.js","../../../../../components/dist/esm/atoms/Loader/Loader.js","../../../../../components/dist/esm/atoms/Loader/index.js","../../../../../components/dist/esm/atoms/Overlay/Overlay.js","../../../../../components/dist/esm/atoms/Overlay/index.js","../../../../../components/dist/esm/atoms/Price/Price.js","../../../../../components/dist/esm/atoms/Price/index.js","../../../../../components/dist/esm/atoms/Radio/Radio.js","../../../../../components/dist/esm/atoms/Radio/index.js","../../../../../components/dist/esm/atoms/SROnly/SROnly.js","../../../../../components/dist/esm/atoms/SROnly/index.js","../../../../../components/dist/esm/atoms/Select/Select.js","../../../../../components/dist/esm/atoms/Select/index.js","../../../../../components/dist/esm/atoms/Skeleton/Skeleton.js","../../../../../components/dist/esm/atoms/Skeleton/index.js","../../../../../components/dist/esm/atoms/Slider/Slider.js","../../../../../components/dist/esm/atoms/Slider/index.js","../../../../../components/dist/esm/atoms/Textarea/Textarea.js","../../../../../components/dist/esm/atoms/Textarea/index.js","../../../../../components/dist/esm/hooks/UIProvider.js","../../../../../components/dist/esm/hooks/index.js","../../../../../components/dist/esm/hooks/useFadeEffect.js","../../../../../components/dist/esm/hooks/useSKUMatrix.js","../../../../../components/dist/esm/hooks/useScrollDirection.js","../../../../../components/dist/esm/hooks/useSearch.js","../../../../../components/dist/esm/hooks/useSlideVisibility.js","../../../../../components/dist/esm/hooks/useSlider.js","../../../../../components/dist/esm/hooks/useTrapFocus.js","../../../../../components/dist/esm/index.js","../../../../../components/dist/esm/molecules/Accordion/Accordion.js","../../../../../components/dist/esm/molecules/Accordion/AccordionButton.js","../../../../../components/dist/esm/molecules/Accordion/AccordionItem.js","../../../../../components/dist/esm/molecules/Accordion/AccordionPanel.js","../../../../../components/dist/esm/molecules/Accordion/index.js","../../../../../components/dist/esm/molecules/Alert/Alert.js","../../../../../components/dist/esm/molecules/Alert/index.js","../../../../../components/dist/esm/molecules/Breadcrumb/Breadcrumb.js","../../../../../components/dist/esm/molecules/Breadcrumb/BreadcrumbBase.js","../../../../../components/dist/esm/molecules/Breadcrumb/BreadcrumbPure.js","../../../../../components/dist/esm/molecules/Breadcrumb/Divider.js","../../../../../components/dist/esm/molecules/Breadcrumb/ListItem.js","../../../../../components/dist/esm/molecules/Breadcrumb/index.js","../../../../../components/dist/esm/molecules/BuyButton/BuyButton.js","../../../../../components/dist/esm/molecules/BuyButton/index.js","../../../../../components/dist/esm/molecules/Card/Card.js","../../../../../components/dist/esm/molecules/Card/index.js","../../../../../components/dist/esm/molecules/Carousel/Carousel.js","../../../../../components/dist/esm/molecules/Carousel/CarouselBullets.js","../../../../../components/dist/esm/molecules/Carousel/CarouselItem.js","../../../../../components/dist/esm/molecules/Carousel/index.js","../../../../../components/dist/esm/molecules/CartItem/CartItem.js","../../../../../components/dist/esm/molecules/CartItem/CartItemImage.js","../../../../../components/dist/esm/molecules/CartItem/CartItemSummary.js","../../../../../components/dist/esm/molecules/CartItem/index.js","../../../../../components/dist/esm/molecules/CheckboxField/CheckboxField.js","../../../../../components/dist/esm/molecules/CheckboxField/index.js","../../../../../components/dist/esm/molecules/DiscountBadge/DiscountBadge.js","../../../../../components/dist/esm/molecules/DiscountBadge/index.js","../../../../../components/dist/esm/molecules/DiscountBadge/useDiscountPercent.js","../../../../../components/dist/esm/molecules/Dropdown/Dropdown.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownButton.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownItem.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownMenu.js","../../../../../components/dist/esm/molecules/Dropdown/contexts/DropdownContext.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdown.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownItem.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownPosition.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownTrigger.js","../../../../../components/dist/esm/molecules/Dropdown/index.js","../../../../../components/dist/esm/molecules/Gift/Gift.js","../../../../../components/dist/esm/molecules/Gift/GiftContent.js","../../../../../components/dist/esm/molecules/Gift/GiftImage.js","../../../../../components/dist/esm/molecules/Gift/index.js","../../../../../components/dist/esm/molecules/IconButton/IconButton.js","../../../../../components/dist/esm/molecules/IconButton/index.js","../../../../../components/dist/esm/molecules/InputField/InputField.js","../../../../../components/dist/esm/molecules/InputField/index.js","../../../../../components/dist/esm/molecules/LinkButton/LinkButton.js","../../../../../components/dist/esm/molecules/LinkButton/index.js","../../../../../components/dist/esm/molecules/Modal/Modal.js","../../../../../components/dist/esm/molecules/Modal/ModalBody.js","../../../../../components/dist/esm/molecules/Modal/ModalContent.js","../../../../../components/dist/esm/molecules/Modal/ModalFooter.js","../../../../../components/dist/esm/molecules/Modal/ModalHeader.js","../../../../../components/dist/esm/molecules/Modal/index.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinks.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinksList.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinksListItem.js","../../../../../components/dist/esm/molecules/NavbarLinks/index.js","../../../../../components/dist/esm/molecules/OrderSummary/OrderSummary.js","../../../../../components/dist/esm/molecules/OrderSummary/index.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCard.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCardContent.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCardImage.js","../../../../../components/dist/esm/molecules/ProductCard/index.js","../../../../../components/dist/esm/molecules/ProductPrice/ProductPrice.js","../../../../../components/dist/esm/molecules/ProductPrice/index.js","../../../../../components/dist/esm/molecules/ProductTitle/ProductTitle.js","../../../../../components/dist/esm/molecules/ProductTitle/index.js","../../../../../components/dist/esm/molecules/QuantitySelector/QuantitySelector.js","../../../../../components/dist/esm/molecules/QuantitySelector/index.js","../../../../../components/dist/esm/molecules/RadioField/RadioField.js","../../../../../components/dist/esm/molecules/RadioField/index.js","../../../../../components/dist/esm/molecules/RadioGroup/RadioGroup.js","../../../../../components/dist/esm/molecules/RadioGroup/RadioOption.js","../../../../../components/dist/esm/molecules/RadioGroup/index.js","../../../../../components/dist/esm/molecules/RadioGroup/useRadioGroup.js","../../../../../components/dist/esm/molecules/Rating/Rating.js","../../../../../components/dist/esm/molecules/Rating/index.js","../../../../../components/dist/esm/molecules/RatingField/RatingField.js","../../../../../components/dist/esm/molecules/RatingField/index.js","../../../../../components/dist/esm/molecules/RegionBar/RegionBar.js","../../../../../components/dist/esm/molecules/RegionBar/index.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/SearchAutoComplete.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/SearchAutoCompleteTerm.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/index.js","../../../../../components/dist/esm/molecules/SearchDropdown/SearchDropdown.js","../../../../../components/dist/esm/molecules/SearchDropdown/index.js","../../../../../components/dist/esm/molecules/SearchHistory/SearchHistory.js","../../../../../components/dist/esm/molecules/SearchHistory/SearchHistoryTerm.js","../../../../../components/dist/esm/molecules/SearchHistory/index.js","../../../../../components/dist/esm/molecules/SearchInputField/SearchInputField.js","../../../../../components/dist/esm/molecules/SearchInputField/index.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItem.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemContent.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemControl.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemImage.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProducts.js","../../../../../components/dist/esm/molecules/SearchProducts/index.js","../../../../../components/dist/esm/molecules/SearchProvider/SearchProvider.js","../../../../../components/dist/esm/molecules/SearchProvider/index.js","../../../../../components/dist/esm/molecules/SearchTop/SearchTop.js","../../../../../components/dist/esm/molecules/SearchTop/SearchTopTerm.js","../../../../../components/dist/esm/molecules/SearchTop/index.js","../../../../../components/dist/esm/molecules/SelectField/SelectField.js","../../../../../components/dist/esm/molecules/SelectField/index.js","../../../../../components/dist/esm/molecules/SkuSelector/SkuSelector.js","../../../../../components/dist/esm/molecules/SkuSelector/index.js","../../../../../components/dist/esm/molecules/SkuSelector/useDefineVariant.js","../../../../../components/dist/esm/molecules/SkuSelector/useSkuSlug.js","../../../../../components/dist/esm/molecules/Table/Table.js","../../../../../components/dist/esm/molecules/Table/TableBody.js","../../../../../components/dist/esm/molecules/Table/TableCell.js","../../../../../components/dist/esm/molecules/Table/TableFooter.js","../../../../../components/dist/esm/molecules/Table/TableHead.js","../../../../../components/dist/esm/molecules/Table/TableRow.js","../../../../../components/dist/esm/molecules/Table/index.js","../../../../../components/dist/esm/molecules/Tag/Tag.js","../../../../../components/dist/esm/molecules/Tag/index.js","../../../../../components/dist/esm/molecules/TextareaField/TextareaField.js","../../../../../components/dist/esm/molecules/TextareaField/index.js","../../../../../components/dist/esm/molecules/Toast/Toast.js","../../../../../components/dist/esm/molecules/Toast/index.js","../../../../../components/dist/esm/molecules/Toggle/Toggle.js","../../../../../components/dist/esm/molecules/Toggle/index.js","../../../../../components/dist/esm/molecules/ToggleField/ToggleField.js","../../../../../components/dist/esm/molecules/ToggleField/index.js","../../../../../components/dist/esm/molecules/Tooltip/Tooltip.js","../../../../../components/dist/esm/molecules/Tooltip/index.js","../../../../../components/dist/esm/organisms/BannerText/BannerText.js","../../../../../components/dist/esm/organisms/BannerText/BannerTextContent.js","../../../../../components/dist/esm/organisms/BannerText/index.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebar.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebarFooter.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebarList.js","../../../../../components/dist/esm/organisms/CartSidebar/index.js","../../../../../components/dist/esm/organisms/EmptyState/EmptyState.js","../../../../../components/dist/esm/organisms/EmptyState/index.js","../../../../../components/dist/esm/organisms/Filter/Filter.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetBoolean.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetBooleanItem.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetRange.js","../../../../../components/dist/esm/organisms/Filter/FilterFacets.js","../../../../../components/dist/esm/organisms/Filter/FilterSlider.js","../../../../../components/dist/esm/organisms/Filter/index.js","../../../../../components/dist/esm/organisms/Hero/Hero.js","../../../../../components/dist/esm/organisms/Hero/HeroHeader.js","../../../../../components/dist/esm/organisms/Hero/HeroImage.js","../../../../../components/dist/esm/organisms/Hero/index.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGallery.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGallerySelector.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGalleryViewer.js","../../../../../components/dist/esm/organisms/ImageGallery/index.js","../../../../../components/dist/esm/organisms/Navbar/Navbar.js","../../../../../components/dist/esm/organisms/Navbar/NavbarButtons.js","../../../../../components/dist/esm/organisms/Navbar/NavbarHeader.js","../../../../../components/dist/esm/organisms/Navbar/NavbarRow.js","../../../../../components/dist/esm/organisms/Navbar/index.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSlider.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderContent.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderFooter.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderHeader.js","../../../../../components/dist/esm/organisms/NavbarSlider/index.js","../../../../../components/dist/esm/organisms/Newsletter/Newsletter.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterAddendum.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterContent.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterForm.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterHeader.js","../../../../../components/dist/esm/organisms/Newsletter/index.js","../../../../../components/dist/esm/organisms/OutOfStock/OutOfStock.js","../../../../../components/dist/esm/organisms/OutOfStock/index.js","../../../../../components/dist/esm/organisms/PaymentMethods/PaymentMethods.js","../../../../../components/dist/esm/organisms/PaymentMethods/index.js","../../../../../components/dist/esm/organisms/PriceRange/PriceRange.js","../../../../../components/dist/esm/organisms/PriceRange/index.js","../../../../../components/dist/esm/organisms/ProductGrid/ProductGrid.js","../../../../../components/dist/esm/organisms/ProductGrid/ProductGridItem.js","../../../../../components/dist/esm/organisms/ProductGrid/index.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelf.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelfItem.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelfItems.js","../../../../../components/dist/esm/organisms/ProductShelf/index.js","../../../../../components/dist/esm/organisms/RegionModal/RegionModal.js","../../../../../components/dist/esm/organisms/RegionModal/index.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrix.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrixSidebar.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrixTrigger.js","../../../../../components/dist/esm/organisms/SKUMatrix/index.js","../../../../../components/dist/esm/organisms/SKUMatrix/provider/SKUMatrixProvider.js","../../../../../components/dist/esm/organisms/SearchInput/SearchInput.js","../../../../../components/dist/esm/organisms/SearchInput/index.js","../../../../../components/dist/esm/organisms/ShippingSimulation/ShippingSimulation.js","../../../../../components/dist/esm/organisms/ShippingSimulation/index.js","../../../../../components/dist/esm/organisms/SlideOver/SlideOver.js","../../../../../components/dist/esm/organisms/SlideOver/SlideOverHeader.js","../../../../../components/dist/esm/organisms/SlideOver/index.js","../../../../../components/package.json","../../../../../ui/dist/esm/components/atoms/Incentive/Incentive.js","../../../../../ui/dist/esm/components/atoms/Incentive/index.js","../../../../../ui/dist/esm/components/organisms/Tiles/Tile.js","../../../../../ui/dist/esm/components/organisms/Tiles/Tiles.js","../../../../../ui/dist/esm/components/organisms/Tiles/index.js","../../../../../ui/dist/esm/index.js","../../../../../ui/package.json","../../../../node_modules/@builder.io/partytown","../../../../node_modules/@vtex/client-cms","../../../../node_modules/deepmerge","../../../../node_modules/next","../../../../node_modules/next-seo","../../../../node_modules/react","../../../../node_modules/react-dom","../../../../node_modules/react-intersection-observer","../../../../node_modules/swr","../../../../package.json","../../../../src/components/search/SearchDropdown/index.ts","../../../../src/components/ui/Button/index.ts","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6026.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-runtime.js"]}
1
+ {"version":1,"files":["../../../../../components/dist/esm/atoms/Badge/Badge.js","../../../../../components/dist/esm/atoms/Badge/index.js","../../../../../components/dist/esm/atoms/Button/Button.js","../../../../../components/dist/esm/atoms/Button/index.js","../../../../../components/dist/esm/atoms/Checkbox/Checkbox.js","../../../../../components/dist/esm/atoms/Checkbox/index.js","../../../../../components/dist/esm/atoms/Icon/Icon.js","../../../../../components/dist/esm/atoms/Icon/index.js","../../../../../components/dist/esm/atoms/Input/Input.js","../../../../../components/dist/esm/atoms/Input/index.js","../../../../../components/dist/esm/atoms/Label/Label.js","../../../../../components/dist/esm/atoms/Label/index.js","../../../../../components/dist/esm/atoms/Link/Link.js","../../../../../components/dist/esm/atoms/Link/index.js","../../../../../components/dist/esm/atoms/List/List.js","../../../../../components/dist/esm/atoms/List/index.js","../../../../../components/dist/esm/atoms/Loader/Loader.js","../../../../../components/dist/esm/atoms/Loader/index.js","../../../../../components/dist/esm/atoms/Overlay/Overlay.js","../../../../../components/dist/esm/atoms/Overlay/index.js","../../../../../components/dist/esm/atoms/Price/Price.js","../../../../../components/dist/esm/atoms/Price/index.js","../../../../../components/dist/esm/atoms/Radio/Radio.js","../../../../../components/dist/esm/atoms/Radio/index.js","../../../../../components/dist/esm/atoms/SROnly/SROnly.js","../../../../../components/dist/esm/atoms/SROnly/index.js","../../../../../components/dist/esm/atoms/Select/Select.js","../../../../../components/dist/esm/atoms/Select/index.js","../../../../../components/dist/esm/atoms/Skeleton/Skeleton.js","../../../../../components/dist/esm/atoms/Skeleton/index.js","../../../../../components/dist/esm/atoms/Slider/Slider.js","../../../../../components/dist/esm/atoms/Slider/index.js","../../../../../components/dist/esm/atoms/Textarea/Textarea.js","../../../../../components/dist/esm/atoms/Textarea/index.js","../../../../../components/dist/esm/hooks/UIProvider.js","../../../../../components/dist/esm/hooks/index.js","../../../../../components/dist/esm/hooks/useFadeEffect.js","../../../../../components/dist/esm/hooks/useSKUMatrix.js","../../../../../components/dist/esm/hooks/useScrollDirection.js","../../../../../components/dist/esm/hooks/useSearch.js","../../../../../components/dist/esm/hooks/useSlideVisibility.js","../../../../../components/dist/esm/hooks/useSlider.js","../../../../../components/dist/esm/hooks/useTrapFocus.js","../../../../../components/dist/esm/index.js","../../../../../components/dist/esm/molecules/Accordion/Accordion.js","../../../../../components/dist/esm/molecules/Accordion/AccordionButton.js","../../../../../components/dist/esm/molecules/Accordion/AccordionItem.js","../../../../../components/dist/esm/molecules/Accordion/AccordionPanel.js","../../../../../components/dist/esm/molecules/Accordion/index.js","../../../../../components/dist/esm/molecules/Alert/Alert.js","../../../../../components/dist/esm/molecules/Alert/index.js","../../../../../components/dist/esm/molecules/Breadcrumb/Breadcrumb.js","../../../../../components/dist/esm/molecules/Breadcrumb/BreadcrumbBase.js","../../../../../components/dist/esm/molecules/Breadcrumb/BreadcrumbPure.js","../../../../../components/dist/esm/molecules/Breadcrumb/Divider.js","../../../../../components/dist/esm/molecules/Breadcrumb/ListItem.js","../../../../../components/dist/esm/molecules/Breadcrumb/index.js","../../../../../components/dist/esm/molecules/BuyButton/BuyButton.js","../../../../../components/dist/esm/molecules/BuyButton/index.js","../../../../../components/dist/esm/molecules/Card/Card.js","../../../../../components/dist/esm/molecules/Card/index.js","../../../../../components/dist/esm/molecules/Carousel/Carousel.js","../../../../../components/dist/esm/molecules/Carousel/CarouselBullets.js","../../../../../components/dist/esm/molecules/Carousel/CarouselItem.js","../../../../../components/dist/esm/molecules/Carousel/index.js","../../../../../components/dist/esm/molecules/CartItem/CartItem.js","../../../../../components/dist/esm/molecules/CartItem/CartItemImage.js","../../../../../components/dist/esm/molecules/CartItem/CartItemSummary.js","../../../../../components/dist/esm/molecules/CartItem/index.js","../../../../../components/dist/esm/molecules/CheckboxField/CheckboxField.js","../../../../../components/dist/esm/molecules/CheckboxField/index.js","../../../../../components/dist/esm/molecules/DiscountBadge/DiscountBadge.js","../../../../../components/dist/esm/molecules/DiscountBadge/index.js","../../../../../components/dist/esm/molecules/DiscountBadge/useDiscountPercent.js","../../../../../components/dist/esm/molecules/Dropdown/Dropdown.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownButton.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownItem.js","../../../../../components/dist/esm/molecules/Dropdown/DropdownMenu.js","../../../../../components/dist/esm/molecules/Dropdown/contexts/DropdownContext.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdown.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownItem.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownPosition.js","../../../../../components/dist/esm/molecules/Dropdown/hooks/useDropdownTrigger.js","../../../../../components/dist/esm/molecules/Dropdown/index.js","../../../../../components/dist/esm/molecules/Gift/Gift.js","../../../../../components/dist/esm/molecules/Gift/GiftContent.js","../../../../../components/dist/esm/molecules/Gift/GiftImage.js","../../../../../components/dist/esm/molecules/Gift/index.js","../../../../../components/dist/esm/molecules/IconButton/IconButton.js","../../../../../components/dist/esm/molecules/IconButton/index.js","../../../../../components/dist/esm/molecules/InputField/InputField.js","../../../../../components/dist/esm/molecules/InputField/index.js","../../../../../components/dist/esm/molecules/LinkButton/LinkButton.js","../../../../../components/dist/esm/molecules/LinkButton/index.js","../../../../../components/dist/esm/molecules/Modal/Modal.js","../../../../../components/dist/esm/molecules/Modal/ModalBody.js","../../../../../components/dist/esm/molecules/Modal/ModalContent.js","../../../../../components/dist/esm/molecules/Modal/ModalFooter.js","../../../../../components/dist/esm/molecules/Modal/ModalHeader.js","../../../../../components/dist/esm/molecules/Modal/index.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinks.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinksList.js","../../../../../components/dist/esm/molecules/NavbarLinks/NavbarLinksListItem.js","../../../../../components/dist/esm/molecules/NavbarLinks/index.js","../../../../../components/dist/esm/molecules/OrderSummary/OrderSummary.js","../../../../../components/dist/esm/molecules/OrderSummary/index.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCard.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCardContent.js","../../../../../components/dist/esm/molecules/ProductCard/ProductCardImage.js","../../../../../components/dist/esm/molecules/ProductCard/index.js","../../../../../components/dist/esm/molecules/ProductPrice/ProductPrice.js","../../../../../components/dist/esm/molecules/ProductPrice/index.js","../../../../../components/dist/esm/molecules/ProductTitle/ProductTitle.js","../../../../../components/dist/esm/molecules/ProductTitle/index.js","../../../../../components/dist/esm/molecules/QuantitySelector/QuantitySelector.js","../../../../../components/dist/esm/molecules/QuantitySelector/index.js","../../../../../components/dist/esm/molecules/RadioField/RadioField.js","../../../../../components/dist/esm/molecules/RadioField/index.js","../../../../../components/dist/esm/molecules/RadioGroup/RadioGroup.js","../../../../../components/dist/esm/molecules/RadioGroup/RadioOption.js","../../../../../components/dist/esm/molecules/RadioGroup/index.js","../../../../../components/dist/esm/molecules/RadioGroup/useRadioGroup.js","../../../../../components/dist/esm/molecules/Rating/Rating.js","../../../../../components/dist/esm/molecules/Rating/index.js","../../../../../components/dist/esm/molecules/RatingField/RatingField.js","../../../../../components/dist/esm/molecules/RatingField/index.js","../../../../../components/dist/esm/molecules/RegionBar/RegionBar.js","../../../../../components/dist/esm/molecules/RegionBar/index.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/SearchAutoComplete.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/SearchAutoCompleteTerm.js","../../../../../components/dist/esm/molecules/SearchAutoComplete/index.js","../../../../../components/dist/esm/molecules/SearchDropdown/SearchDropdown.js","../../../../../components/dist/esm/molecules/SearchDropdown/index.js","../../../../../components/dist/esm/molecules/SearchHistory/SearchHistory.js","../../../../../components/dist/esm/molecules/SearchHistory/SearchHistoryTerm.js","../../../../../components/dist/esm/molecules/SearchHistory/index.js","../../../../../components/dist/esm/molecules/SearchInputField/SearchInputField.js","../../../../../components/dist/esm/molecules/SearchInputField/index.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItem.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemContent.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemControl.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProductItemImage.js","../../../../../components/dist/esm/molecules/SearchProducts/SearchProducts.js","../../../../../components/dist/esm/molecules/SearchProducts/index.js","../../../../../components/dist/esm/molecules/SearchProvider/SearchProvider.js","../../../../../components/dist/esm/molecules/SearchProvider/index.js","../../../../../components/dist/esm/molecules/SearchTop/SearchTop.js","../../../../../components/dist/esm/molecules/SearchTop/SearchTopTerm.js","../../../../../components/dist/esm/molecules/SearchTop/index.js","../../../../../components/dist/esm/molecules/SelectField/SelectField.js","../../../../../components/dist/esm/molecules/SelectField/index.js","../../../../../components/dist/esm/molecules/SkuSelector/SkuSelector.js","../../../../../components/dist/esm/molecules/SkuSelector/index.js","../../../../../components/dist/esm/molecules/SkuSelector/useDefineVariant.js","../../../../../components/dist/esm/molecules/SkuSelector/useSkuSlug.js","../../../../../components/dist/esm/molecules/Table/Table.js","../../../../../components/dist/esm/molecules/Table/TableBody.js","../../../../../components/dist/esm/molecules/Table/TableCell.js","../../../../../components/dist/esm/molecules/Table/TableFooter.js","../../../../../components/dist/esm/molecules/Table/TableHead.js","../../../../../components/dist/esm/molecules/Table/TableRow.js","../../../../../components/dist/esm/molecules/Table/index.js","../../../../../components/dist/esm/molecules/Tag/Tag.js","../../../../../components/dist/esm/molecules/Tag/index.js","../../../../../components/dist/esm/molecules/TextareaField/TextareaField.js","../../../../../components/dist/esm/molecules/TextareaField/index.js","../../../../../components/dist/esm/molecules/Toast/Toast.js","../../../../../components/dist/esm/molecules/Toast/index.js","../../../../../components/dist/esm/molecules/Toggle/Toggle.js","../../../../../components/dist/esm/molecules/Toggle/index.js","../../../../../components/dist/esm/molecules/ToggleField/ToggleField.js","../../../../../components/dist/esm/molecules/ToggleField/index.js","../../../../../components/dist/esm/molecules/Tooltip/Tooltip.js","../../../../../components/dist/esm/molecules/Tooltip/index.js","../../../../../components/dist/esm/organisms/BannerText/BannerText.js","../../../../../components/dist/esm/organisms/BannerText/BannerTextContent.js","../../../../../components/dist/esm/organisms/BannerText/index.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebar.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebarFooter.js","../../../../../components/dist/esm/organisms/CartSidebar/CartSidebarList.js","../../../../../components/dist/esm/organisms/CartSidebar/index.js","../../../../../components/dist/esm/organisms/EmptyState/EmptyState.js","../../../../../components/dist/esm/organisms/EmptyState/index.js","../../../../../components/dist/esm/organisms/Filter/Filter.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetBoolean.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetBooleanItem.js","../../../../../components/dist/esm/organisms/Filter/FilterFacetRange.js","../../../../../components/dist/esm/organisms/Filter/FilterFacets.js","../../../../../components/dist/esm/organisms/Filter/FilterSlider.js","../../../../../components/dist/esm/organisms/Filter/index.js","../../../../../components/dist/esm/organisms/Hero/Hero.js","../../../../../components/dist/esm/organisms/Hero/HeroHeader.js","../../../../../components/dist/esm/organisms/Hero/HeroImage.js","../../../../../components/dist/esm/organisms/Hero/index.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGallery.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGallerySelector.js","../../../../../components/dist/esm/organisms/ImageGallery/ImageGalleryViewer.js","../../../../../components/dist/esm/organisms/ImageGallery/index.js","../../../../../components/dist/esm/organisms/Navbar/Navbar.js","../../../../../components/dist/esm/organisms/Navbar/NavbarButtons.js","../../../../../components/dist/esm/organisms/Navbar/NavbarHeader.js","../../../../../components/dist/esm/organisms/Navbar/NavbarRow.js","../../../../../components/dist/esm/organisms/Navbar/index.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSlider.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderContent.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderFooter.js","../../../../../components/dist/esm/organisms/NavbarSlider/NavbarSliderHeader.js","../../../../../components/dist/esm/organisms/NavbarSlider/index.js","../../../../../components/dist/esm/organisms/Newsletter/Newsletter.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterAddendum.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterContent.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterForm.js","../../../../../components/dist/esm/organisms/Newsletter/NewsletterHeader.js","../../../../../components/dist/esm/organisms/Newsletter/index.js","../../../../../components/dist/esm/organisms/OutOfStock/OutOfStock.js","../../../../../components/dist/esm/organisms/OutOfStock/index.js","../../../../../components/dist/esm/organisms/PaymentMethods/PaymentMethods.js","../../../../../components/dist/esm/organisms/PaymentMethods/index.js","../../../../../components/dist/esm/organisms/PriceRange/PriceRange.js","../../../../../components/dist/esm/organisms/PriceRange/index.js","../../../../../components/dist/esm/organisms/ProductGrid/ProductGrid.js","../../../../../components/dist/esm/organisms/ProductGrid/ProductGridItem.js","../../../../../components/dist/esm/organisms/ProductGrid/index.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelf.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelfItem.js","../../../../../components/dist/esm/organisms/ProductShelf/ProductShelfItems.js","../../../../../components/dist/esm/organisms/ProductShelf/index.js","../../../../../components/dist/esm/organisms/RegionModal/RegionModal.js","../../../../../components/dist/esm/organisms/RegionModal/index.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrix.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrixSidebar.js","../../../../../components/dist/esm/organisms/SKUMatrix/SKUMatrixTrigger.js","../../../../../components/dist/esm/organisms/SKUMatrix/index.js","../../../../../components/dist/esm/organisms/SKUMatrix/provider/SKUMatrixProvider.js","../../../../../components/dist/esm/organisms/SearchInput/SearchInput.js","../../../../../components/dist/esm/organisms/SearchInput/index.js","../../../../../components/dist/esm/organisms/ShippingSimulation/ShippingSimulation.js","../../../../../components/dist/esm/organisms/ShippingSimulation/index.js","../../../../../components/dist/esm/organisms/SlideOver/SlideOver.js","../../../../../components/dist/esm/organisms/SlideOver/SlideOverHeader.js","../../../../../components/dist/esm/organisms/SlideOver/index.js","../../../../../components/package.json","../../../../../ui/dist/esm/components/atoms/Incentive/Incentive.js","../../../../../ui/dist/esm/components/atoms/Incentive/index.js","../../../../../ui/dist/esm/components/organisms/Tiles/Tile.js","../../../../../ui/dist/esm/components/organisms/Tiles/Tiles.js","../../../../../ui/dist/esm/components/organisms/Tiles/index.js","../../../../../ui/dist/esm/index.js","../../../../../ui/package.json","../../../../node_modules/@builder.io/partytown","../../../../node_modules/@vtex/client-cms","../../../../node_modules/@vtex/client-cp","../../../../node_modules/deepmerge","../../../../node_modules/next","../../../../node_modules/next-seo","../../../../node_modules/react","../../../../node_modules/react-dom","../../../../node_modules/react-intersection-observer","../../../../node_modules/swr","../../../../package.json","../../../../src/components/search/SearchDropdown/index.ts","../../../../src/components/ui/Button/index.ts","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6968.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-runtime.js"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/next-seo","../../../node_modules/react","../../../node_modules/react-dom","../../../package.json","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6026.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
1
+ {"version":1,"files":["../../../node_modules/@builder.io/partytown","../../../node_modules/deepmerge","../../../node_modules/next","../../../node_modules/next-seo","../../../node_modules/react","../../../node_modules/react-dom","../../../package.json","../../package.json","../chunks/1153.js","../chunks/1246.js","../chunks/1280.js","../chunks/1454.js","../chunks/1506.js","../chunks/1650.js","../chunks/1990.js","../chunks/2295.js","../chunks/2880.js","../chunks/298.js","../chunks/3105.js","../chunks/3358.js","../chunks/3529.js","../chunks/3675.js","../chunks/3684.js","../chunks/3779.js","../chunks/3922.js","../chunks/41.js","../chunks/416.js","../chunks/4216.js","../chunks/4289.js","../chunks/4444.js","../chunks/4451.js","../chunks/4746.js","../chunks/4816.js","../chunks/5080.js","../chunks/5146.js","../chunks/563.js","../chunks/6030.js","../chunks/6076.js","../chunks/6291.js","../chunks/6335.js","../chunks/6594.js","../chunks/674.js","../chunks/6866.js","../chunks/6968.js","../chunks/6999.js","../chunks/7169.js","../chunks/7228.js","../chunks/7337.js","../chunks/7348.js","../chunks/7371.js","../chunks/7468.js","../chunks/7668.js","../chunks/7675.js","../chunks/7819.js","../chunks/7986.js","../chunks/831.js","../chunks/8355.js","../chunks/8482.js","../chunks/8562.js","../chunks/8640.js","../chunks/8646.js","../chunks/8737.js","../chunks/8924.js","../chunks/9088.js","../chunks/9130.js","../chunks/938.js","../chunks/9570.js","../chunks/9594.js","../chunks/ButtonSignIn.js","../chunks/Dropdown.js","../chunks/DropdownButton.js","../chunks/DropdownItem.js","../chunks/DropdownMenu.js","../chunks/FilterSkeleton.js","../chunks/ScrollToTopButton.js","../chunks/UIBannerText.js","../chunks/UISKUMatrixSidebar.js","../chunks/font-manifest.json","../webpack-runtime.js"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../api/dist/esm/package.json","../../../../../api/dist/esm/src/__generated__/schema.js","../../../../../api/dist/esm/src/directives/cacheControl.js","../../../../../api/dist/esm/src/index.js","../../../../../api/dist/esm/src/platforms/errors.js","../../../../../api/dist/esm/src/platforms/vtex/clients/commerce/index.js","../../../../../api/dist/esm/src/platforms/vtex/clients/fetch.js","../../../../../api/dist/esm/src/platforms/vtex/clients/index.js","../../../../../api/dist/esm/src/platforms/vtex/clients/search/index.js","../../../../../api/dist/esm/src/platforms/vtex/index.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/collection.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/index.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/salesChannel.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/simulation.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/sku.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/aggregateOffer.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/aggregateRating.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/collection.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/faceValue.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/facet.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/mutation.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/objectOrString.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/offer.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/product.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/productGroup.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/propertyValue.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/query.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/review.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/root.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/searchResult.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/seo.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/shippingSLA.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/skuVariations.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/subscribeToNewsletter.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/validateCart.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/validateSession.js","../../../../../api/dist/esm/src/platforms/vtex/utils/canonical.js","../../../../../api/dist/esm/src/platforms/vtex/utils/channel.js","../../../../../api/dist/esm/src/platforms/vtex/utils/contex.js","../../../../../api/dist/esm/src/platforms/vtex/utils/cookies.js","../../../../../api/dist/esm/src/platforms/vtex/utils/createNewAddress.js","../../../../../api/dist/esm/src/platforms/vtex/utils/enhanceCommercialOffer.js","../../../../../api/dist/esm/src/platforms/vtex/utils/enhanceSku.js","../../../../../api/dist/esm/src/platforms/vtex/utils/facets.js","../../../../../api/dist/esm/src/platforms/vtex/utils/getAddressOrderForm.js","../../../../../api/dist/esm/src/platforms/vtex/utils/md5.js","../../../../../api/dist/esm/src/platforms/vtex/utils/orderStatistics.js","../../../../../api/dist/esm/src/platforms/vtex/utils/productStock.js","../../../../../api/dist/esm/src/platforms/vtex/utils/propertyValue.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sanitizeHtml.js","../../../../../api/dist/esm/src/platforms/vtex/utils/shouldUpdateShippingData.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sku.js","../../../../../api/dist/esm/src/platforms/vtex/utils/skuVariants.js","../../../../../api/dist/esm/src/platforms/vtex/utils/slugify.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sort.js","../../../../../api/dist/esm/src/platforms/vtex/utils/taxes.js","../../../../../api/dist/esm/src/typeDefs/index.js","../../../../../api/package.json","../../../../@generated/persisted-documents.json","../../../../@generated/schema.graphql","../../../../node_modules/@builder.io/partytown","../../../../node_modules/@envelop/core","../../../../node_modules/@envelop/graphql-jit","../../../../node_modules/@envelop/parser-cache","../../../../node_modules/@envelop/validation-cache","../../../../node_modules/@graphql-tools/load-files","../../../../node_modules/@graphql-tools/schema","../../../../node_modules/@graphql-tools/utils","../../../../node_modules/deepmerge","../../../../node_modules/fast-deep-equal","../../../../node_modules/graphql","../../../../node_modules/next","../../../../node_modules/postcss","../../../../package.json","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6026.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-api-runtime.js"]}
1
+ {"version":1,"files":["../../../../../api/dist/esm/package.json","../../../../../api/dist/esm/src/__generated__/schema.js","../../../../../api/dist/esm/src/directives/cacheControl.js","../../../../../api/dist/esm/src/index.js","../../../../../api/dist/esm/src/platforms/errors.js","../../../../../api/dist/esm/src/platforms/vtex/clients/commerce/index.js","../../../../../api/dist/esm/src/platforms/vtex/clients/fetch.js","../../../../../api/dist/esm/src/platforms/vtex/clients/index.js","../../../../../api/dist/esm/src/platforms/vtex/clients/search/index.js","../../../../../api/dist/esm/src/platforms/vtex/index.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/collection.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/index.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/salesChannel.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/simulation.js","../../../../../api/dist/esm/src/platforms/vtex/loaders/sku.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/aggregateOffer.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/aggregateRating.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/collection.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/faceValue.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/facet.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/mutation.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/objectOrString.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/offer.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/product.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/productGroup.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/propertyValue.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/query.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/review.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/root.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/searchResult.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/seo.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/shippingSLA.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/skuVariations.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/subscribeToNewsletter.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/validateCart.js","../../../../../api/dist/esm/src/platforms/vtex/resolvers/validateSession.js","../../../../../api/dist/esm/src/platforms/vtex/utils/canonical.js","../../../../../api/dist/esm/src/platforms/vtex/utils/channel.js","../../../../../api/dist/esm/src/platforms/vtex/utils/contex.js","../../../../../api/dist/esm/src/platforms/vtex/utils/cookies.js","../../../../../api/dist/esm/src/platforms/vtex/utils/createNewAddress.js","../../../../../api/dist/esm/src/platforms/vtex/utils/enhanceCommercialOffer.js","../../../../../api/dist/esm/src/platforms/vtex/utils/enhanceSku.js","../../../../../api/dist/esm/src/platforms/vtex/utils/facets.js","../../../../../api/dist/esm/src/platforms/vtex/utils/getAddressOrderForm.js","../../../../../api/dist/esm/src/platforms/vtex/utils/md5.js","../../../../../api/dist/esm/src/platforms/vtex/utils/orderStatistics.js","../../../../../api/dist/esm/src/platforms/vtex/utils/productStock.js","../../../../../api/dist/esm/src/platforms/vtex/utils/propertyValue.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sanitizeHtml.js","../../../../../api/dist/esm/src/platforms/vtex/utils/shouldUpdateShippingData.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sku.js","../../../../../api/dist/esm/src/platforms/vtex/utils/skuVariants.js","../../../../../api/dist/esm/src/platforms/vtex/utils/slugify.js","../../../../../api/dist/esm/src/platforms/vtex/utils/sort.js","../../../../../api/dist/esm/src/platforms/vtex/utils/taxes.js","../../../../../api/dist/esm/src/typeDefs/index.js","../../../../../api/package.json","../../../../@generated/persisted-documents.json","../../../../@generated/schema.graphql","../../../../node_modules/@builder.io/partytown","../../../../node_modules/@envelop/core","../../../../node_modules/@envelop/graphql-jit","../../../../node_modules/@envelop/parser-cache","../../../../node_modules/@envelop/validation-cache","../../../../node_modules/@graphql-tools/load-files","../../../../node_modules/@graphql-tools/schema","../../../../node_modules/@graphql-tools/utils","../../../../node_modules/deepmerge","../../../../node_modules/fast-deep-equal","../../../../node_modules/graphql","../../../../node_modules/next","../../../../node_modules/postcss","../../../../package.json","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6968.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-api-runtime.js"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../node_modules/@builder.io/partytown","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/1153.js","../../../chunks/1246.js","../../../chunks/1280.js","../../../chunks/1454.js","../../../chunks/1506.js","../../../chunks/1650.js","../../../chunks/1990.js","../../../chunks/2295.js","../../../chunks/2880.js","../../../chunks/298.js","../../../chunks/3105.js","../../../chunks/3358.js","../../../chunks/3529.js","../../../chunks/3675.js","../../../chunks/3684.js","../../../chunks/3779.js","../../../chunks/3922.js","../../../chunks/41.js","../../../chunks/416.js","../../../chunks/4216.js","../../../chunks/4289.js","../../../chunks/4444.js","../../../chunks/4451.js","../../../chunks/4746.js","../../../chunks/4816.js","../../../chunks/5080.js","../../../chunks/5146.js","../../../chunks/563.js","../../../chunks/6026.js","../../../chunks/6030.js","../../../chunks/6076.js","../../../chunks/6291.js","../../../chunks/6335.js","../../../chunks/6594.js","../../../chunks/674.js","../../../chunks/6866.js","../../../chunks/6999.js","../../../chunks/7169.js","../../../chunks/7228.js","../../../chunks/7337.js","../../../chunks/7348.js","../../../chunks/7371.js","../../../chunks/7468.js","../../../chunks/7668.js","../../../chunks/7675.js","../../../chunks/7819.js","../../../chunks/7986.js","../../../chunks/831.js","../../../chunks/8355.js","../../../chunks/8482.js","../../../chunks/8562.js","../../../chunks/8640.js","../../../chunks/8646.js","../../../chunks/8737.js","../../../chunks/8924.js","../../../chunks/9088.js","../../../chunks/9130.js","../../../chunks/938.js","../../../chunks/9570.js","../../../chunks/9594.js","../../../chunks/ButtonSignIn.js","../../../chunks/Dropdown.js","../../../chunks/DropdownButton.js","../../../chunks/DropdownItem.js","../../../chunks/DropdownMenu.js","../../../chunks/FilterSkeleton.js","../../../chunks/ScrollToTopButton.js","../../../chunks/UIBannerText.js","../../../chunks/UISKUMatrixSidebar.js","../../../chunks/font-manifest.json","../../../webpack-api-runtime.js"]}
1
+ {"version":1,"files":["../../../../../node_modules/@builder.io/partytown","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/1153.js","../../../chunks/1246.js","../../../chunks/1280.js","../../../chunks/1454.js","../../../chunks/1506.js","../../../chunks/1650.js","../../../chunks/1990.js","../../../chunks/2295.js","../../../chunks/2880.js","../../../chunks/298.js","../../../chunks/3105.js","../../../chunks/3358.js","../../../chunks/3529.js","../../../chunks/3675.js","../../../chunks/3684.js","../../../chunks/3779.js","../../../chunks/3922.js","../../../chunks/41.js","../../../chunks/416.js","../../../chunks/4216.js","../../../chunks/4289.js","../../../chunks/4444.js","../../../chunks/4451.js","../../../chunks/4746.js","../../../chunks/4816.js","../../../chunks/5080.js","../../../chunks/5146.js","../../../chunks/563.js","../../../chunks/6030.js","../../../chunks/6076.js","../../../chunks/6291.js","../../../chunks/6335.js","../../../chunks/6594.js","../../../chunks/674.js","../../../chunks/6866.js","../../../chunks/6968.js","../../../chunks/6999.js","../../../chunks/7169.js","../../../chunks/7228.js","../../../chunks/7337.js","../../../chunks/7348.js","../../../chunks/7371.js","../../../chunks/7468.js","../../../chunks/7668.js","../../../chunks/7675.js","../../../chunks/7819.js","../../../chunks/7986.js","../../../chunks/831.js","../../../chunks/8355.js","../../../chunks/8482.js","../../../chunks/8562.js","../../../chunks/8640.js","../../../chunks/8646.js","../../../chunks/8737.js","../../../chunks/8924.js","../../../chunks/9088.js","../../../chunks/9130.js","../../../chunks/938.js","../../../chunks/9570.js","../../../chunks/9594.js","../../../chunks/ButtonSignIn.js","../../../chunks/Dropdown.js","../../../chunks/DropdownButton.js","../../../chunks/DropdownItem.js","../../../chunks/DropdownMenu.js","../../../chunks/FilterSkeleton.js","../../../chunks/ScrollToTopButton.js","../../../chunks/UIBannerText.js","../../../chunks/UISKUMatrixSidebar.js","../../../chunks/font-manifest.json","../../../webpack-api-runtime.js"]}
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../node_modules/@builder.io/partytown","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/1153.js","../../../chunks/1246.js","../../../chunks/1280.js","../../../chunks/1454.js","../../../chunks/1506.js","../../../chunks/1650.js","../../../chunks/1990.js","../../../chunks/2295.js","../../../chunks/2880.js","../../../chunks/298.js","../../../chunks/3105.js","../../../chunks/3358.js","../../../chunks/3529.js","../../../chunks/3675.js","../../../chunks/3684.js","../../../chunks/3779.js","../../../chunks/3922.js","../../../chunks/41.js","../../../chunks/416.js","../../../chunks/4216.js","../../../chunks/4289.js","../../../chunks/4444.js","../../../chunks/4451.js","../../../chunks/4746.js","../../../chunks/4816.js","../../../chunks/5080.js","../../../chunks/5146.js","../../../chunks/563.js","../../../chunks/6026.js","../../../chunks/6030.js","../../../chunks/6076.js","../../../chunks/6291.js","../../../chunks/6335.js","../../../chunks/6594.js","../../../chunks/674.js","../../../chunks/6866.js","../../../chunks/6999.js","../../../chunks/7169.js","../../../chunks/7228.js","../../../chunks/7337.js","../../../chunks/7348.js","../../../chunks/7371.js","../../../chunks/7468.js","../../../chunks/7668.js","../../../chunks/7675.js","../../../chunks/7819.js","../../../chunks/7986.js","../../../chunks/831.js","../../../chunks/8355.js","../../../chunks/8482.js","../../../chunks/8562.js","../../../chunks/8640.js","../../../chunks/8646.js","../../../chunks/8737.js","../../../chunks/8924.js","../../../chunks/9088.js","../../../chunks/9130.js","../../../chunks/938.js","../../../chunks/9570.js","../../../chunks/9594.js","../../../chunks/ButtonSignIn.js","../../../chunks/Dropdown.js","../../../chunks/DropdownButton.js","../../../chunks/DropdownItem.js","../../../chunks/DropdownMenu.js","../../../chunks/FilterSkeleton.js","../../../chunks/ScrollToTopButton.js","../../../chunks/UIBannerText.js","../../../chunks/UISKUMatrixSidebar.js","../../../chunks/font-manifest.json","../../../webpack-api-runtime.js"]}
1
+ {"version":1,"files":["../../../../../node_modules/@builder.io/partytown","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/1153.js","../../../chunks/1246.js","../../../chunks/1280.js","../../../chunks/1454.js","../../../chunks/1506.js","../../../chunks/1650.js","../../../chunks/1990.js","../../../chunks/2295.js","../../../chunks/2880.js","../../../chunks/298.js","../../../chunks/3105.js","../../../chunks/3358.js","../../../chunks/3529.js","../../../chunks/3675.js","../../../chunks/3684.js","../../../chunks/3779.js","../../../chunks/3922.js","../../../chunks/41.js","../../../chunks/416.js","../../../chunks/4216.js","../../../chunks/4289.js","../../../chunks/4444.js","../../../chunks/4451.js","../../../chunks/4746.js","../../../chunks/4816.js","../../../chunks/5080.js","../../../chunks/5146.js","../../../chunks/563.js","../../../chunks/6030.js","../../../chunks/6076.js","../../../chunks/6291.js","../../../chunks/6335.js","../../../chunks/6594.js","../../../chunks/674.js","../../../chunks/6866.js","../../../chunks/6968.js","../../../chunks/6999.js","../../../chunks/7169.js","../../../chunks/7228.js","../../../chunks/7337.js","../../../chunks/7348.js","../../../chunks/7371.js","../../../chunks/7468.js","../../../chunks/7668.js","../../../chunks/7675.js","../../../chunks/7819.js","../../../chunks/7986.js","../../../chunks/831.js","../../../chunks/8355.js","../../../chunks/8482.js","../../../chunks/8562.js","../../../chunks/8640.js","../../../chunks/8646.js","../../../chunks/8737.js","../../../chunks/8924.js","../../../chunks/9088.js","../../../chunks/9130.js","../../../chunks/938.js","../../../chunks/9570.js","../../../chunks/9594.js","../../../chunks/ButtonSignIn.js","../../../chunks/Dropdown.js","../../../chunks/DropdownButton.js","../../../chunks/DropdownItem.js","../../../chunks/DropdownMenu.js","../../../chunks/FilterSkeleton.js","../../../chunks/ScrollToTopButton.js","../../../chunks/UIBannerText.js","../../../chunks/UISKUMatrixSidebar.js","../../../chunks/font-manifest.json","../../../webpack-api-runtime.js"]}
@@ -1 +1 @@
1
- "use strict";(()=>{var e={};e.id=4157,e.ids=[4157],e.modules={56330:e=>{e.exports=require("deepmerge")},20145:e=>{e.exports=require("next/dist/compiled/next-server/pages-api.runtime.prod.js")},51903:(e,r,t)=>{t.r(r),t.d(r,{config:()=>g,default:()=>f,routeModule:()=>w});var n={};t.r(n),t.d(n,{default:()=>c});var a=t(22616),s=t(76005),i=t(81035);let o=require("@vtex/client-cms");var d=t.n(o),u=t(48646),l=t.n(u);let p=new(d())({workspace:l().api.workspace,tenant:l().api.storeId});let StatusError=class StatusError extends Error{constructor(e,r){super(e),this.status=r}};let pickParam=(e,r)=>{let t=e.query[r];if("string"==typeof t)return t},handler=async(e,r)=>{try{let t=["contentType","documentId","versionId","releaseId"].reduce((r,t)=>{let n=pickParam(e,t);return void 0!==n&&(r[t]=n),r},{});if(!t.contentType||!t.documentId)throw new StatusError("The following path params are required: contentType, documentId",400);if(!t.versionId&&!t.releaseId)throw new StatusError("One of the following querystring params are required: versionId, releaseId",400);let n=await p.getCMSPage(t);if(!n)throw new StatusError(`Content NotFound for ${JSON.stringify(t,null,2)}`,404);r.setPreviewData(t,{maxAge:3600,path:n.settings?.seo?.slug});let a=u.previewRedirects;if(a[t.contentType]){r.redirect(a[t.contentType]);return}if("landingPage"===t.contentType){r.redirect(`${n.settings?.seo.slug}`);return}r.redirect("/")}catch(e){if(e instanceof StatusError){r.status(e.status).end(e.message);return}throw e}},c=handler,f=(0,i.l)(n,"default"),g=(0,i.l)(n,"config"),w=new a.PagesAPIRouteModule({definition:{kind:s.x.PAGES_API,page:"/api/preview",pathname:"/api/preview",bundlePath:"",filename:""},userland:n})}};var r=require("../../webpack-api-runtime.js");r.C(e);var __webpack_exec__=e=>r(r.s=e),t=r.X(0,[8924,8646],()=>__webpack_exec__(51903));module.exports=t})();
1
+ "use strict";(()=>{var e={};e.id=4157,e.ids=[4157],e.modules={56330:e=>{e.exports=require("deepmerge")},20145:e=>{e.exports=require("next/dist/compiled/next-server/pages-api.runtime.prod.js")},20153:(e,t,r)=>{r.r(t),r.d(t,{config:()=>w,default:()=>b,routeModule:()=>v});var n={};r.r(n),r.d(n,{default:()=>m});var o=r(22616),i=r(76005),s=r(81035),a=r(48646),c=r.n(a);let p=require("@vtex/client-cp");var l=r.n(p);let u=require("@vtex/client-cms");var d=r.n(u),f=r(32369);let MultipleContentError=class MultipleContentError extends Error{constructor(e){super(`Multiple content defined on the ${f.contentSource.type} for content type ${e.contentType}. Remove duplicated content before proceeding. Context: ${JSON.stringify(e,null,2)}`)}};function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach(function(t){var n;n=r[t],t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}let isLocator=e=>"string"==typeof e.contentType&&("string"==typeof e.releaseId||"string"==typeof e.documentId||"string"==typeof e.versionId),g=new(d())({workspace:c().api.workspace,tenant:c().api.storeId}),getCMSPage=async(e,t=g)=>{if(isLocator(e))return await t.getCMSPage(e).then(e=>({data:[e]}));let r=[],n=await t.getCMSPagesByContentType(e.contentType,_objectSpread(_objectSpread({},e.filters),{},{page:1,perPage:10}));r.push(...n.data);let o=Math.ceil(n.totalItems/10),i=Array.from({length:o-1},(e,t)=>t+2);if(n.totalItems>r.length){let n=await Promise.all(i.map(r=>t.getCMSPagesByContentType(e.contentType,_objectSpread(_objectSpread({},e.filters),{},{page:r,perPage:10}))));n.forEach(e=>{r.push(...e.data)})}return{data:r}},getPage=async e=>{let t=await getCMSPage(e),r=t.data;if(r.length>1)throw new MultipleContentError(e);return r[0]};let MissingContentError=class MissingContentError extends Error{constructor(e){super(`Missing content on the ${f.contentSource.type} for content type ${e.contentType}. Add content before proceeding. Context: ${JSON.stringify(e,null,2)}`)}};function normalizePLPSlug(e){let t=e.replace(/^\/+|\/+$/g,"");return"/"+(t=t.replace(/\/+/g,"/").replace(/\s+/g,"")).toLowerCase()}function findPLPTemplateBySlug(e,t,r){return e.find(e=>{if(!e.settings?.template?.value)return!1;let n=normalizePLPSlug(e.settings?.template?.value);return n===t||function({rewrites:e,templateValue:t,slug:r}){if(!e)return!1;let n=[];n=Array.isArray(e)?e:[...e?.beforeFiles||[],...e?.afterFiles||[],...e?.fallback||[]];let o=n.find(e=>e.source===t&&e.destination===r);return!!o}({rewrites:r,templateValue:n,slug:t})})}function findBestPLPTemplate(e,t,r){let n=normalizePLPSlug(t),o=findPLPTemplateBySlug(e,n,r);for(;!o&&-1!==n.lastIndexOf("/");)o=findPLPTemplateBySlug(e,n=n.substring(0,n.lastIndexOf("/")),r);return o||e.find(e=>!e.settings?.template?.value)||e[0]}let getSlugsWithoutSkuIdFromPDP=e=>{let t=[],r=e,n=r.match(/-\d+\/p$/);for(;n;){let e=r.replace(/-\d+\/p$/,"/p");t.push(e),n=(r=e).match(/-\d+\/p$/)}return t};function findBestPDPTemplate(e,t){let r=function({itemListElement:e=[]}){let t=[...e].reverse().map(({item:e})=>e),r=t[0],n=getSlugsWithoutSkuIdFromPDP(r);return[r,...n,...t.slice(1)].filter((e,t,r)=>e&&r.indexOf(e)===t)}({itemListElement:t.breadcrumbList.itemListElement??[]});for(let t of r)for(let r of e){if(!r.settings?.template?.value)continue;let e=function(e){let t=e.trim().replace(/^\/+|\/+$/g,"");return t.startsWith("/")||(t="/"+t),t.endsWith("/p")||(t+="/"),(t=t.replace(/\/+/g,"/").replace(/\s+/g,"")).toLowerCase()}(r.settings.template.value);if(e===t)return r}return e.find(e=>!e.settings?.template?.value)||e[0]}function plp_ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function plp_objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?plp_ownKeys(Object(r),!0).forEach(function(t){var n;n=r[t],t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):plp_ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}let getPLP=async(e,t,r)=>{if(c().cms.data){let n=JSON.parse(c().cms.data),o=n.plp;return await getPLPFromCmsEnvData(`/${e}/`,o,plp_objectSpread(plp_objectSpread({},t?.contentType==="plp"?t:null),{},{contentType:"plp"}),r)}return await getPLPFromCms(`/${e}/`,plp_objectSpread(plp_objectSpread({},t?.contentType==="plp"?t:null),{},{contentType:"plp"}),r)},getPLPFromCmsEnvData=async(e,t,r,n)=>{let o=t??[];if(!o[0])throw new MissingContentError(r);let i=findBestPLPTemplate(o,e,n);return getPage({contentType:"plp",documentId:i.documentId,versionId:i.versionId})},getPLPFromCms=async(e,t,r)=>{let n=(await getCMSPage(t)).data;if(!n[0])throw new MissingContentError(t);return findBestPLPTemplate(n,e,r)};function pdp_ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function pdp_objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?pdp_ownKeys(Object(r),!0).forEach(function(t){var n;n=r[t],t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):pdp_ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}let getPDP=async(e,t)=>{if(c().cms.data){let r=JSON.parse(c().cms.data),n=r.pdp;return await getPDPFromCmsEnvData(e,n,pdp_objectSpread(pdp_objectSpread({},t?.contentType==="pdp"?t:null),{},{contentType:"pdp"}))}return await getPDPFromCms(e,pdp_objectSpread(pdp_objectSpread({},t?.contentType==="pdp"?t:null),{},{contentType:"pdp"}))},getPDPFromCmsEnvData=async(e,t,r)=>{let n=t??[];if(!n[0])throw new MissingContentError(r);let o=findBestPDPTemplate(n,e);return getPage({contentType:"pdp",documentId:o.documentId,versionId:o.versionId})},getPDPFromCms=async(e,t)=>{let r=(await getCMSPage(t)).data;if(!r[0])throw new MissingContentError(t);return findBestPDPTemplate(r,e)};function isContentPlatformSource(){return"cp"===a.contentSource.type.toLocaleLowerCase()}let y=["slug"];function service_ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function service_objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?service_ownKeys(Object(r),!0).forEach(function(t){service_defineProperty(e,t,r[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):service_ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}function service_defineProperty(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}let P=new class{constructor(){service_defineProperty(this,"clientCP",void 0),this.clientCP=new(l())({tenant:c().api.storeId})}async getSingleContent(e){let t=this.createContentOptions(e);return isContentPlatformSource()?this.getFromCP(t):getPage(t.cmsOptions)}async getContent(e){let t=this.createContentOptions(e);if(isContentPlatformSource()){let e=this.convertOptionsToParams(t),{entries:r}=await this.clientCP.listEntries(e),n=await Promise.all(r.map(async r=>{let n=await this.getSingleEntry(service_objectSpread(service_objectSpread({},e),{},{entryId:r.id}),!!t.isPreview);return this.mergeEntryWithData(r,n)}));return{data:n}}return getCMSPage(t.cmsOptions)}async getPlpContent(e,t){let r=service_objectSpread(service_objectSpread({},e),{},{contentType:"plp"}),n=this.createContentOptions(r);if(isContentPlatformSource()){let e=(await this.getContent(r)).data;if(!e?.length)throw new MissingContentError(n.cmsOptions);return findBestPLPTemplate(e,n.slug,t)}return getPLP(n.slug,n.cmsOptions,t)}async getPdpContent(e,t){let r=service_objectSpread(service_objectSpread({},t),{},{contentType:"pdp"}),n=this.createContentOptions(r);if(isContentPlatformSource()){let t=(await this.getContent(r)).data;if(!t.length)throw new MissingContentError(n.cmsOptions);return findBestPDPTemplate(t,e)}return getPDP(e,n.cmsOptions)}async getFromCP(e){let t=this.convertOptionsToParams(e);try{let r=t.entryId||t.slug?await this.getSingleEntry(t,!!e.isPreview):await this.fetchFirstEntry(t,!!e.isPreview);return r}catch(e){if(!(e instanceof MissingContentError||e instanceof Error&&/\b404\b/.test(e.message)))throw e;console.error("Content not found",e)}}async getSingleEntry(e,t){if(t){if(e.entryId)return this.clientCP.previewEntryById(e);if(e.slug)return this.clientCP.previewEntryBySlug(e);throw Error("Preview requires entryId or slug")}if(e.entryId)return this.clientCP.getEntry(e);if(e.slug)return this.clientCP.getEntryBySlug(e);throw Error("getEntry requires entryId or slug")}async fetchFirstEntry(e,t){let{entries:r}=await this.clientCP.listEntries(e);if(!r||0===r.length)return console.error("No entries found for params",e),{};if(r.length>1)throw new MultipleContentError(e);return this.getSingleEntry(service_objectSpread(service_objectSpread({},e),{},{entryId:r[0].id}),t)}mergeEntryWithData(e,t){return service_objectSpread(service_objectSpread(service_objectSpread({},e),t),{},{id:e.id,name:e.name||""})}convertOptionsToParams(e){let{cmsOptions:t}=e,r={accountName:c().api.storeId,storeId:"faststore",contentType:t.contentType,slug:e.slug};if("documentId"in t&&t.documentId&&(r.entryId=t.documentId),"versionId"in t&&t.versionId&&(r.branchId=t.versionId),"releaseId"in t&&t.releaseId&&(r.branchId=t.releaseId),"filters"in t&&t.filters){let e=t.filters.filters;if(e["settings.seo.slug"]){let t=e["settings.seo.slug"];r.slug=t.replace(/^\//,"")}Object.assign(r,t.filters)}return r}createContentOptions(e){let{contentType:t,previewData:r,slug:n,documentId:o,versionId:i,releaseId:s,filters:a}=e,c=r?.contentType===t,p=r||{},{slug:l}=p,u=function(e,t){if(null==e)return{};var r,n,o=function(e,t){if(null==e)return{};var r,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)r=i[n],!(t.indexOf(r)>=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}(p,y),d=service_objectSpread(service_objectSpread(service_objectSpread(service_objectSpread(service_objectSpread({contentType:t},c?u:{}),void 0!==o&&{documentId:o}),void 0!==i&&{versionId:i}),void 0!==s&&{releaseId:s}),a&&{filters:a});return service_objectSpread(service_objectSpread({cmsOptions:d},void 0!==n&&{slug:n}),{},{isPreview:c})}};let StatusError=class StatusError extends Error{constructor(e,t){super(e),this.status=t}};let pickParam=(e,t)=>{let r=e.query[t];return"string"==typeof r?r:void 0},setPreviewAndRedirect=(e,t,r)=>{e.setPreviewData(t,{maxAge:3600,path:r}),e.redirect(r)},handler=async(e,t)=>{try{let r=pickParam(e,"slug");r&&!r.startsWith("/")&&(r=`/${r}`);let n=["contentType","documentId","versionId","releaseId"].reduce((t,r)=>{let n=pickParam(e,r);return void 0!==n&&(t[r]=n),t},{});if(!n.contentType||!n.documentId)throw new StatusError("The following path params are required: contentType, documentId",400);if(!n.versionId&&!n.releaseId)throw new StatusError("One of the following querystring params are required: versionId, releaseId",400);if(!isLocator(n))throw new StatusError("Invalid locator object",400);let o=await P.getSingleContent({contentType:n.contentType,previewData:n,slug:r,documentId:n.documentId,versionId:n.versionId,releaseId:n.releaseId});if(!o)throw new StatusError(`Content NotFound for ${JSON.stringify(n,null,2)}`,404);if(isContentPlatformSource()&&r&&["landingPage","plp","pdp"].includes(n.contentType))return setPreviewAndRedirect(t,n,r);let i=a.previewRedirects;if(i[n.contentType])return setPreviewAndRedirect(t,n,i[n.contentType]);if("landingPage"===n.contentType)return r=o.settings?.seo?.slug,setPreviewAndRedirect(t,n,r);return setPreviewAndRedirect(t,n,"/")}catch(e){if(e instanceof StatusError){t.status(e.status).end(e.message);return}throw e}},m=handler,b=(0,s.l)(n,"default"),w=(0,s.l)(n,"config"),v=new o.PagesAPIRouteModule({definition:{kind:i.x.PAGES_API,page:"/api/preview",pathname:"/api/preview",bundlePath:"",filename:""},userland:n})}};var t=require("../../webpack-api-runtime.js");t.C(e);var __webpack_exec__=e=>t(t.s=e),r=t.X(0,[8924,8646],()=>__webpack_exec__(20153));module.exports=r})();
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../node_modules/@builder.io/partytown","../../../../node_modules/@vtex/client-cms","../../../../node_modules/deepmerge","../../../../node_modules/next","../../../../package.json","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6026.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-api-runtime.js"]}
1
+ {"version":1,"files":["../../../../node_modules/@builder.io/partytown","../../../../node_modules/@vtex/client-cms","../../../../node_modules/@vtex/client-cp","../../../../node_modules/deepmerge","../../../../node_modules/next","../../../../package.json","../../../package.json","../../chunks/1153.js","../../chunks/1246.js","../../chunks/1280.js","../../chunks/1454.js","../../chunks/1506.js","../../chunks/1650.js","../../chunks/1990.js","../../chunks/2295.js","../../chunks/2880.js","../../chunks/298.js","../../chunks/3105.js","../../chunks/3358.js","../../chunks/3529.js","../../chunks/3675.js","../../chunks/3684.js","../../chunks/3779.js","../../chunks/3922.js","../../chunks/41.js","../../chunks/416.js","../../chunks/4216.js","../../chunks/4289.js","../../chunks/4444.js","../../chunks/4451.js","../../chunks/4746.js","../../chunks/4816.js","../../chunks/5080.js","../../chunks/5146.js","../../chunks/563.js","../../chunks/6030.js","../../chunks/6076.js","../../chunks/6291.js","../../chunks/6335.js","../../chunks/6594.js","../../chunks/674.js","../../chunks/6866.js","../../chunks/6968.js","../../chunks/6999.js","../../chunks/7169.js","../../chunks/7228.js","../../chunks/7337.js","../../chunks/7348.js","../../chunks/7371.js","../../chunks/7468.js","../../chunks/7668.js","../../chunks/7675.js","../../chunks/7819.js","../../chunks/7986.js","../../chunks/831.js","../../chunks/8355.js","../../chunks/8482.js","../../chunks/8562.js","../../chunks/8640.js","../../chunks/8646.js","../../chunks/8737.js","../../chunks/8924.js","../../chunks/9088.js","../../chunks/9130.js","../../chunks/938.js","../../chunks/9570.js","../../chunks/9594.js","../../chunks/ButtonSignIn.js","../../chunks/Dropdown.js","../../chunks/DropdownButton.js","../../chunks/DropdownItem.js","../../chunks/DropdownMenu.js","../../chunks/FilterSkeleton.js","../../chunks/ScrollToTopButton.js","../../chunks/UIBannerText.js","../../chunks/UISKUMatrixSidebar.js","../../chunks/font-manifest.json","../../webpack-api-runtime.js"]}
@@ -1 +1 @@
1
- "use strict";(()=>{var e={};e.id=2222,e.ids=[2222,2888,660],e.modules={41747:(e,t,r)=>{r.a(e,async(e,o)=>{try{r.r(t),r.d(t,{default:()=>__WEBPACK_DEFAULT_EXPORT__,getStaticProps:()=>getStaticProps});var a=r(16641),s=r(16689),i=r(595),n=r(80608),c=r(56283),p=r(75938),l=r(11715),u=r(11506),b=r.n(u),d=r(20997),g=e([i,p]);function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach(function(t){var o;o=r[t],t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}[i,p]=g.then?(await g)():g;let P=_objectSpread(_objectSpread({},i.Z),c.Z),getStaticProps=async({previewData:e})=>{let[t,r,o]=(0,n.Tc)(e),[a,s,i]=await Promise.all([t,r,o]),c=(0,l.z)({globalSections:a,globalSectionsHeader:s,globalSectionsFooter:i});return{props:{globalSections:c}}},__WEBPACK_DEFAULT_EXPORT__=function({globalSections:e}){return(0,s.useEffect)(()=>{window.location.href=b().checkoutUrl},[]),(0,d.jsxs)(p.Z,{globalSections:e.sections,components:P,children:[d.jsx(a.NextSeo,{noindex:!0,nofollow:!0}),d.jsx("div",{children:"loading..."})]})};o()}catch(e){o(e)}})},51382:(e,t,r)=>{r.a(e,async(e,o)=>{try{r.r(t),r.d(t,{config:()=>P,default:()=>u,getServerSideProps:()=>g,getStaticPaths:()=>d,getStaticProps:()=>b,reportWebVitals:()=>_,routeModule:()=>h,unstable_getServerProps:()=>m,unstable_getServerSideProps:()=>w,unstable_getStaticParams:()=>x,unstable_getStaticPaths:()=>f,unstable_getStaticProps:()=>S});var a=r(9339),s=r(50958),i=r(55365),n=r(86291),c=r(29594),p=r(41747),l=e([p,n]);[p,n]=l.then?(await l)():l;let u=(0,i.l)(p,"default"),b=(0,i.l)(p,"getStaticProps"),d=(0,i.l)(p,"getStaticPaths"),g=(0,i.l)(p,"getServerSideProps"),P=(0,i.l)(p,"config"),_=(0,i.l)(p,"reportWebVitals"),S=(0,i.l)(p,"unstable_getStaticProps"),f=(0,i.l)(p,"unstable_getStaticPaths"),x=(0,i.l)(p,"unstable_getStaticParams"),m=(0,i.l)(p,"unstable_getServerProps"),w=(0,i.l)(p,"unstable_getServerSideProps"),h=new a.PagesRouteModule({definition:{kind:s.x.PAGES,page:"/checkout",pathname:"/checkout",bundlePath:"",filename:""},components:{App:c.default,Document:n.default},userland:p});o()}catch(e){o(e)}})},16676:e=>{e.exports=require("@vtex/client-cms")},56330:e=>{e.exports=require("deepmerge")},16641:e=>{e.exports=require("next-seo")},62785:e=>{e.exports=require("next/dist/compiled/next-server/pages.runtime.prod.js")},16689:e=>{e.exports=require("react")},66405:e=>{e.exports=require("react-dom")},19785:e=>{e.exports=require("react-intersection-observer")},20997:e=>{e.exports=require("react/jsx-runtime")},14037:e=>{e.exports=import("@builder.io/partytown/react")},15941:e=>{e.exports=import("swr")},57147:e=>{e.exports=require("fs")},71017:e=>{e.exports=require("path")},12781:e=>{e.exports=require("stream")},59796:e=>{e.exports=require("zlib")}};var t=require("../webpack-runtime.js");t.C(e);var __webpack_exec__=e=>t(t.s=e),r=t.X(0,[298,4444,3105,41,7348,7337,8355,1506,9594,6291,7675,4289],()=>__webpack_exec__(51382));module.exports=r})();
1
+ "use strict";(()=>{var e={};e.id=2222,e.ids=[2222,2888,660],e.modules={41747:(e,t,r)=>{r.a(e,async(e,o)=>{try{r.r(t),r.d(t,{default:()=>__WEBPACK_DEFAULT_EXPORT__,getStaticProps:()=>getStaticProps});var s=r(16641),a=r(16689),i=r(595),n=r(80608),c=r(56283),p=r(75938),l=r(11715),u=r(11506),b=r.n(u),d=r(20997),g=e([i,p]);function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,o)}return r}function _objectSpread(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach(function(t){var o;o=r[t],t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))})}return e}[i,p]=g.then?(await g)():g;let P=_objectSpread(_objectSpread({},i.Z),c.Z),getStaticProps=async({previewData:e})=>{let[t,r,o]=(0,n.Tc)(e),[s,a,i]=await Promise.all([t,r,o]),c=(0,l.z)({globalSections:s,globalSectionsHeader:a,globalSectionsFooter:i});return{props:{globalSections:c}}},__WEBPACK_DEFAULT_EXPORT__=function({globalSections:e}){return(0,a.useEffect)(()=>{window.location.href=b().checkoutUrl},[]),(0,d.jsxs)(p.Z,{globalSections:e.sections,components:P,children:[d.jsx(s.NextSeo,{noindex:!0,nofollow:!0}),d.jsx("div",{children:"loading..."})]})};o()}catch(e){o(e)}})},51382:(e,t,r)=>{r.a(e,async(e,o)=>{try{r.r(t),r.d(t,{config:()=>P,default:()=>u,getServerSideProps:()=>g,getStaticPaths:()=>d,getStaticProps:()=>b,reportWebVitals:()=>_,routeModule:()=>w,unstable_getServerProps:()=>m,unstable_getServerSideProps:()=>v,unstable_getStaticParams:()=>f,unstable_getStaticPaths:()=>x,unstable_getStaticProps:()=>S});var s=r(9339),a=r(50958),i=r(55365),n=r(86291),c=r(29594),p=r(41747),l=e([p,n]);[p,n]=l.then?(await l)():l;let u=(0,i.l)(p,"default"),b=(0,i.l)(p,"getStaticProps"),d=(0,i.l)(p,"getStaticPaths"),g=(0,i.l)(p,"getServerSideProps"),P=(0,i.l)(p,"config"),_=(0,i.l)(p,"reportWebVitals"),S=(0,i.l)(p,"unstable_getStaticProps"),x=(0,i.l)(p,"unstable_getStaticPaths"),f=(0,i.l)(p,"unstable_getStaticParams"),m=(0,i.l)(p,"unstable_getServerProps"),v=(0,i.l)(p,"unstable_getServerSideProps"),w=new s.PagesRouteModule({definition:{kind:a.x.PAGES,page:"/checkout",pathname:"/checkout",bundlePath:"",filename:""},components:{App:c.default,Document:n.default},userland:p});o()}catch(e){o(e)}})},16676:e=>{e.exports=require("@vtex/client-cms")},44339:e=>{e.exports=require("@vtex/client-cp")},56330:e=>{e.exports=require("deepmerge")},16641:e=>{e.exports=require("next-seo")},62785:e=>{e.exports=require("next/dist/compiled/next-server/pages.runtime.prod.js")},16689:e=>{e.exports=require("react")},66405:e=>{e.exports=require("react-dom")},19785:e=>{e.exports=require("react-intersection-observer")},20997:e=>{e.exports=require("react/jsx-runtime")},14037:e=>{e.exports=import("@builder.io/partytown/react")},15941:e=>{e.exports=import("swr")},57147:e=>{e.exports=require("fs")},71017:e=>{e.exports=require("path")},12781:e=>{e.exports=require("stream")},59796:e=>{e.exports=require("zlib")}};var t=require("../webpack-runtime.js");t.C(e);var __webpack_exec__=e=>t(t.s=e),r=t.X(0,[298,4444,3105,41,7348,7337,8355,1506,9594,6291,7675,4289],()=>__webpack_exec__(51382));module.exports=r})();