cloudcommerce 0.2.3 → 0.4.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 (153) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/ecomplus-stores/monocard/functions/ssr/package.json +0 -2
  3. package/ecomplus-stores/tia-sonia/functions/ssr/package.json +0 -2
  4. package/package.json +6 -6
  5. package/packages/api/package.json +1 -1
  6. package/packages/apps/correios/package.json +2 -2
  7. package/packages/apps/custom-payment/package.json +1 -1
  8. package/packages/apps/custom-shipping/package.json +1 -1
  9. package/packages/apps/datafrete/package.json +2 -2
  10. package/packages/apps/discounts/package.json +1 -1
  11. package/packages/apps/emails/package.json +1 -1
  12. package/packages/apps/fb-conversions/package.json +1 -1
  13. package/packages/apps/frenet/package.json +2 -2
  14. package/packages/apps/galaxpay/package.json +2 -2
  15. package/packages/apps/google-analytics/package.json +2 -2
  16. package/packages/apps/infinitepay/package.json +2 -2
  17. package/packages/apps/jadlog/package.json +2 -2
  18. package/packages/apps/loyalty-points/package.json +1 -1
  19. package/packages/apps/melhor-envio/CHANGELOG.md +1 -0
  20. package/packages/apps/melhor-envio/README.md +1 -0
  21. package/packages/apps/melhor-envio/events.js +1 -0
  22. package/packages/apps/melhor-envio/lib/functions-lib/database.d.ts +18 -0
  23. package/packages/apps/melhor-envio/lib/functions-lib/database.js +115 -0
  24. package/packages/apps/melhor-envio/lib/functions-lib/database.js.map +1 -0
  25. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.d.ts +7 -0
  26. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js +112 -0
  27. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js.map +1 -0
  28. package/packages/apps/melhor-envio/lib/functions-lib/new-label.d.ts +42 -0
  29. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js +185 -0
  30. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js.map +1 -0
  31. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.d.ts +5 -0
  32. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js +40 -0
  33. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js.map +1 -0
  34. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.d.ts +2 -0
  35. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js +164 -0
  36. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js.map +1 -0
  37. package/packages/apps/melhor-envio/lib/index.d.ts +1 -0
  38. package/packages/apps/melhor-envio/lib/index.js +2 -0
  39. package/packages/apps/melhor-envio/lib/index.js.map +1 -0
  40. package/packages/apps/melhor-envio/lib/melhor-envio-events.d.ts +6 -0
  41. package/packages/apps/melhor-envio/lib/melhor-envio-events.js +17 -0
  42. package/packages/apps/melhor-envio/lib/melhor-envio-events.js.map +1 -0
  43. package/packages/apps/melhor-envio/lib/melhor-envio.d.ts +2 -0
  44. package/packages/apps/melhor-envio/lib/melhor-envio.js +6 -0
  45. package/packages/apps/melhor-envio/lib/melhor-envio.js.map +1 -0
  46. package/packages/apps/melhor-envio/lib-mjs/calculate-melhor-envio.mjs +341 -0
  47. package/packages/apps/melhor-envio/lib-mjs/functions/client-melhor-envio.mjs +14 -0
  48. package/packages/apps/melhor-envio/lib-mjs/functions/error-handling.mjs +62 -0
  49. package/packages/apps/melhor-envio/lib-mjs/functions/new-shipment.mjs +119 -0
  50. package/packages/apps/melhor-envio/package.json +36 -0
  51. package/packages/apps/melhor-envio/src/functions-lib/database.ts +140 -0
  52. package/packages/apps/melhor-envio/src/functions-lib/events-to-melhor-envio.ts +137 -0
  53. package/packages/apps/melhor-envio/src/functions-lib/new-label.ts +214 -0
  54. package/packages/apps/melhor-envio/src/functions-lib/order-is-valid.ts +51 -0
  55. package/packages/apps/melhor-envio/src/functions-lib/tracking-codes.ts +191 -0
  56. package/packages/apps/melhor-envio/src/index.ts +1 -0
  57. package/packages/apps/melhor-envio/src/melhor-envio-events.ts +24 -0
  58. package/packages/apps/melhor-envio/src/melhor-envio.ts +7 -0
  59. package/packages/apps/melhor-envio/tsconfig.json +6 -0
  60. package/packages/apps/mercadopago/package.json +2 -2
  61. package/packages/apps/pagarme/package.json +2 -2
  62. package/packages/apps/paghiper/package.json +3 -3
  63. package/packages/apps/pix/package.json +2 -2
  64. package/packages/apps/tiny-erp/package.json +2 -2
  65. package/packages/cli/package.json +1 -1
  66. package/packages/config/package.json +1 -1
  67. package/packages/emails/package.json +3 -3
  68. package/packages/events/lib/firebase.js +2 -0
  69. package/packages/events/lib/firebase.js.map +1 -1
  70. package/packages/events/package.json +2 -1
  71. package/packages/events/src/firebase.ts +2 -0
  72. package/packages/firebase/lib/config.d.ts +4 -0
  73. package/packages/firebase/lib/config.js +7 -0
  74. package/packages/firebase/lib/config.js.map +1 -1
  75. package/packages/firebase/package.json +2 -2
  76. package/packages/firebase/src/config.ts +8 -0
  77. package/packages/i18n/lib/en_us/i19buyTogether.txt +1 -0
  78. package/packages/i18n/lib/en_us/i19buyTogetherWith.txt +1 -0
  79. package/packages/i18n/lib/en_us/i19report.txt +1 -0
  80. package/packages/i18n/lib/en_us/i19toggleMenu.txt +1 -0
  81. package/packages/i18n/lib/en_us/i19uponRequest.txt +1 -0
  82. package/packages/i18n/lib/en_us/i19usedPoints.txt +1 -0
  83. package/packages/i18n/lib/en_us.d.ts +6 -0
  84. package/packages/i18n/lib/en_us.js +6 -0
  85. package/packages/i18n/lib/en_us.js.map +1 -1
  86. package/packages/i18n/lib/pt_br/i19buyTogether.txt +1 -0
  87. package/packages/i18n/lib/pt_br/i19buyTogetherWith.txt +1 -0
  88. package/packages/i18n/lib/pt_br/i19report.txt +1 -0
  89. package/packages/i18n/lib/pt_br/i19toggleMenu.txt +1 -0
  90. package/packages/i18n/lib/pt_br/i19uponRequest.txt +1 -0
  91. package/packages/i18n/lib/pt_br/i19usedPoints.txt +1 -0
  92. package/packages/i18n/lib/pt_br.d.ts +6 -0
  93. package/packages/i18n/lib/pt_br.js +6 -0
  94. package/packages/i18n/lib/pt_br.js.map +1 -1
  95. package/packages/i18n/package.json +1 -1
  96. package/packages/i18n/src/en_us.ts +6 -0
  97. package/packages/i18n/src/pt_br.ts +6 -0
  98. package/packages/modules/lib/firebase/call-app-module.js +5 -0
  99. package/packages/modules/lib/firebase/call-app-module.js.map +1 -1
  100. package/packages/modules/package.json +3 -2
  101. package/packages/modules/src/firebase/call-app-module.ts +5 -0
  102. package/packages/passport/package.json +1 -1
  103. package/packages/ssr/package.json +3 -4
  104. package/packages/storefront/.eslintrc.cjs +1 -1
  105. package/packages/storefront/astro.config.mjs +8 -1
  106. package/packages/storefront/dist/client/_astro/PitchBar.103168e6.js +1 -0
  107. package/packages/storefront/dist/client/_astro/Prices.b75d44d6.js +1 -0
  108. package/packages/storefront/dist/client/_astro/Prices.vue_vue_type_script_setup_true_lang.054033ef.js +1 -0
  109. package/packages/storefront/dist/client/_astro/{ProductCard.6d8b6d86.js → ProductCard.9138ec25.js} +1 -1
  110. package/packages/storefront/dist/client/_astro/ShopHeader.65213f83.js +1 -0
  111. package/packages/storefront/dist/client/_astro/_...slug_.39c46f54.css +1 -0
  112. package/packages/storefront/dist/client/_astro/client.eba0daa7.js +1 -0
  113. package/packages/storefront/dist/client/_astro/index.0c833781.css +1 -0
  114. package/packages/storefront/dist/client/_astro/index.7577af70.js +1 -0
  115. package/packages/storefront/dist/client/_astro/{modules-info.dde776b4.js → modules-info.0c999f60.js} +1 -1
  116. package/packages/storefront/dist/client/_astro/runtime-core.esm-bundler.4da3640b.js +1 -0
  117. package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.0869e112.js +1 -0
  118. package/packages/storefront/dist/client/_astro/server.60de185d.css +1 -0
  119. package/packages/storefront/dist/client/fallback/index.html +12 -7
  120. package/packages/storefront/dist/client/sw.js +1 -1
  121. package/packages/storefront/dist/server/chunks/pages/{all.c27193d6.mjs → all.6379e666.mjs} +494 -373
  122. package/packages/storefront/dist/server/chunks/{prerender.89f63027.mjs → prerender.a1ec39e0.mjs} +0 -0
  123. package/packages/storefront/dist/server/entry.mjs +39 -4452
  124. package/packages/storefront/package.json +4 -5
  125. package/packages/storefront/src/lib/assets/base.css +16 -11
  126. package/packages/storefront/src/lib/components/Carousel.vue +52 -82
  127. package/packages/storefront/src/lib/components/Drawer.vue +97 -0
  128. package/packages/storefront/src/lib/components/ProductCard.vue +1 -1
  129. package/packages/storefront/src/lib/components/ShopHeader.vue +110 -0
  130. package/packages/storefront/src/lib/components/ShopSidenav.vue +26 -0
  131. package/packages/storefront/src/lib/components/globals/Fade.vue +10 -14
  132. package/packages/storefront/src/lib/composables/use-pitch-bar.ts +27 -0
  133. package/packages/storefront/src/lib/composables/use-prices.ts +4 -2
  134. package/packages/storefront/src/lib/composables/use-sticky-header.ts +111 -0
  135. package/packages/storefront/src/lib/layouts/BaseBody.astro +2 -0
  136. package/packages/storefront/src/lib/layouts/PagesHeader.astro +23 -17
  137. package/packages/storefront/tailwind.config.cjs +4 -0
  138. package/packages/storefront/uno.config.cjs +1 -1
  139. package/packages/types/package.json +1 -1
  140. package/packages/storefront/dist/client/_astro/PitchBar.f3579a5b.js +0 -1
  141. package/packages/storefront/dist/client/_astro/Prices.8e5cead5.js +0 -1
  142. package/packages/storefront/dist/client/_astro/Prices.vue_vue_type_script_setup_true_lang.b8cbeb54.js +0 -1
  143. package/packages/storefront/dist/client/_astro/StickyHeader.7b0f3963.js +0 -1
  144. package/packages/storefront/dist/client/_astro/_...slug_.97285eba.css +0 -1
  145. package/packages/storefront/dist/client/_astro/client.3e777d4c.js +0 -1
  146. package/packages/storefront/dist/client/_astro/index.90df622b.css +0 -1
  147. package/packages/storefront/dist/client/_astro/runtime-core.esm-bundler.7cf33881.js +0 -1
  148. package/packages/storefront/dist/client/_astro/runtime-dom.esm-bundler.1a4c7407.js +0 -1
  149. package/packages/storefront/dist/client/_astro/server.4d9646d8.css +0 -1
  150. package/packages/storefront/src/lib/components/PitchBar.vue +0 -61
  151. package/packages/storefront/src/lib/components/Prices.vue +0 -176
  152. package/packages/storefront/src/lib/components/StickyHeader.vue +0 -56
  153. package/packages/storefront/src/lib/composables/use-component-variant.ts +0 -13
@@ -48,20 +48,24 @@ window.storefront = {"settings":{"domain":"ecom2-002.web.app","name":"My Shop","
48
48
  measurementId: 'G-SC592CE0GB',
49
49
  };
50
50
  </script>
51
- <link rel="stylesheet" href="/_astro/_...slug_.97285eba.css" /><script type="module" src="/_astro/hoisted.6edd7364.js"></script></head>
51
+ <link rel="stylesheet" href="/_astro/_...slug_.39c46f54.css" /><script type="module" src="/_astro/hoisted.6edd7364.js"></script></head>
52
52
  <body>
53
+ <div id="teleported-top"></div>
53
54
  <style>astro-island,astro-slot{display:contents}</style><script>(self.Astro=self.Astro||{}).idle=t=>{const e=async()=>{await(await t())()};"requestIdleCallback"in window?window.requestIdleCallback(e):setTimeout(e,200)},window.dispatchEvent(new Event("astro:idle"));var l;{const c={0:t=>t,1:t=>JSON.parse(t,o),2:t=>new RegExp(t),3:t=>new Date(t),4:t=>new Map(JSON.parse(t,o)),5:t=>new Set(JSON.parse(t,o)),6:t=>BigInt(t),7:t=>new URL(t),8:t=>new Uint8Array(JSON.parse(t)),9:t=>new Uint16Array(JSON.parse(t)),10:t=>new Uint32Array(JSON.parse(t))},o=(t,s)=>{if(t===""||!Array.isArray(s))return s;const[e,n]=s;return e in c?c[e](n):void 0};customElements.get("astro-island")||customElements.define("astro-island",(l=class extends HTMLElement{constructor(){super(...arguments);this.hydrate=()=>{if(!this.hydrator||this.parentElement&&this.parentElement.closest("astro-island[ssr]"))return;const s=this.querySelectorAll("astro-slot"),e={},n=this.querySelectorAll("template[data-astro-template]");for(const r of n){const i=r.closest(this.tagName);!i||!i.isSameNode(this)||(e[r.getAttribute("data-astro-template")||"default"]=r.innerHTML,r.remove())}for(const r of s){const i=r.closest(this.tagName);!i||!i.isSameNode(this)||(e[r.getAttribute("name")||"default"]=r.innerHTML)}const a=this.hasAttribute("props")?JSON.parse(this.getAttribute("props"),o):{};this.hydrator(this)(this.Component,a,e,{client:this.getAttribute("client")}),this.removeAttribute("ssr"),window.removeEventListener("astro:hydrate",this.hydrate),window.dispatchEvent(new CustomEvent("astro:hydrate"))}}connectedCallback(){!this.hasAttribute("await-children")||this.firstChild?this.childrenConnectedCallback():new MutationObserver((s,e)=>{e.disconnect(),this.childrenConnectedCallback()}).observe(this,{childList:!0})}async childrenConnectedCallback(){window.addEventListener("astro:hydrate",this.hydrate);let s=this.getAttribute("before-hydration-url");s&&await import(s),this.start()}start(){const s=JSON.parse(this.getAttribute("opts")),e=this.getAttribute("client");if(Astro[e]===void 0){window.addEventListener(`astro:${e}`,()=>this.start(),{once:!0});return}Astro[e](async()=>{const n=this.getAttribute("renderer-url"),[a,{default:r}]=await Promise.all([import(this.getAttribute("component-url")),n?import(n):()=>()=>{}]),i=this.getAttribute("component-export")||"default";if(!i.includes("."))this.Component=a[i];else{this.Component=a;for(const d of i.split("."))this.Component=this.Component[d]}return this.hydrator=r,this.hydrate},s,this)}attributeChangedCallback(){this.hydrator&&this.hydrate()}},l.observedAttributes=["props"],l))}</script><script>(self.Astro=self.Astro||{}).load=a=>{(async()=>await(await a())())()},window.dispatchEvent(new Event("astro:load"));</script>
54
55
 
55
- <astro-island uid="2a8ELd" component-url="/_astro/PitchBar.f3579a5b.js" component-export="default" renderer-url="/_astro/client.3e777d4c.js" props="{&quot;slides&quot;:[1,&quot;[[0,{\&quot;href\&quot;:[0,\&quot;/promotion\&quot;],\&quot;html\&quot;:[0,\&quot;Aproveite nossos descontos de até 50%!\&quot;]}],[0,{\&quot;href\&quot;:[0,\&quot;\&quot;],\&quot;html\&quot;:[0,\&quot;&lt;b&gt;Frete grátis&lt;/b&gt; para todo Brasil a partir de {{free_shipping_from_value}}\&quot;]}]]&quot;]}" ssr="" client="idle" opts="{&quot;name&quot;:&quot;PitchBar&quot;,&quot;value&quot;:true}" await-children=""><div data-pitch-bar class="bg-base-100"><div class="container md:w-2/3 mx-auto px-3 py-1"><div data-carousel><ul data-carousel-wrapper><!--[--><!--[--><li><a href="/promotion" class="hover:underline"><!--[--><!--[--><span class="prose text-sm text-base-800">Aproveite nossos descontos de até 50%!</span><!--]--><!--]--></a></li><li><span href class=""><!--[--><span class="prose text-sm text-base-800"><b>Frete grátis</b> para todo Brasil a partir de R$ 150,00</span><!--]--></span></li><!--]--><!--]--></ul><!--[--><div style="" class="text-xl leading-none text-base-400"><button type="button" aria-label="Anterior" data-carousel-control="previous" class="pr-2 bg-base-100 hover:text-base-700"><!--[--><i class="i-chevron-left m-0"></i><!--]--></button><button type="button" aria-label="Próximo" data-carousel-control="next" class="pl-2 bg-base-100 hover:text-base-700"><!--[--><i class="i-chevron-right m-0"></i><!--]--></button></div><!--]--></div></div></div></astro-island>
56
+ <astro-island uid="Z16SWoR" component-url="/_astro/PitchBar.103168e6.js" component-export="default" renderer-url="/_astro/client.eba0daa7.js" props="{&quot;slides&quot;:[1,&quot;[[0,{\&quot;href\&quot;:[0,\&quot;/promotion\&quot;],\&quot;html\&quot;:[0,\&quot;Aproveite nossos descontos de até 50%!\&quot;]}],[0,{\&quot;href\&quot;:[0,\&quot;\&quot;],\&quot;html\&quot;:[0,\&quot;&lt;b&gt;Frete grátis&lt;/b&gt; &lt;d-md&gt;para todo Brasil&lt;/d-md&gt; a partir de {{free_shipping_from_value}}\&quot;]}]]&quot;]}" ssr="" client="idle" opts="{&quot;name&quot;:&quot;PitchBar&quot;,&quot;value&quot;:true}" await-children=""><div class="bg-base-100"><div class="container md:w-2/3 mx-auto px-3 py-1"><div data-carousel><ul data-carousel-wrapper><!--[--><!--[--><li><a href="/promotion" class="inline-block px-8 hover:underline"><!--[--><span class="prose text-sm text-base-800">Aproveite nossos descontos de até 50%!</span><!--]--></a></li><li><span href class="inline-block px-8"><span class="prose text-sm text-base-800"><b>Frete grátis</b> <d-md>para todo Brasil</d-md> a partir de R$ 150,00</span></span></li><!--]--><!--]--></ul><!--[--><div style="" class="text-xl leading-none text-base-400"><button type="button" aria-label="Anterior" data-carousel-control="previous" class="pr-2 bg-base-100 hover:text-base-700"><!--[--><i class="i-chevron-left m-0"></i><!--]--></button><button type="button" aria-label="Próximo" data-carousel-control="next" class="pl-2 bg-base-100 hover:text-base-700"><!--[--><i class="i-chevron-right m-0"></i><!--]--></button></div><!--]--></div></div></div></astro-island>
57
+
56
58
 
57
- <astro-island uid="Z2abwf2" component-url="/_astro/StickyHeader.7b0f3963.js" component-export="default" renderer-url="/_astro/client.3e777d4c.js" props="{}" ssr="" client="load" opts="{&quot;name&quot;:&quot;StickyHeader&quot;,&quot;value&quot;:true}" await-children=""><header class="header bg-opacity-90 backdrop-blur-md sticky top-0 z-50 py-1 sm:py-2" data-sticky-header><div class="container"><div class="grid grid-flow-col auto-cols-max justify-between items-center"><!--[--><div class="header__aside md:hidden"><div class="i-bars-3-bottom-left"></div></div><!--]--><!--[--><astro-slot name="logo">
58
- <h2><picture>
59
+ <astro-island uid="Z2rUJuR" component-url="/_astro/ShopHeader.65213f83.js" component-export="default" renderer-url="/_astro/client.eba0daa7.js" props="{&quot;categories&quot;:[1,&quot;[[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa18c626be23430d4f4e\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores\&quot;],\&quot;slug\&quot;:[0,\&quot;monitores\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007322374-rect836.png\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2019-08-28T15:51:06.863Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-28T15:51:06.863Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa2ac626be23430d4f50\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores Gamer\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa18c626be23430d4f4e\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores\&quot;],\&quot;slug\&quot;:[0,\&quot;monitores\&quot;]}],\&quot;slug\&quot;:[0,\&quot;monitores-gamer\&quot;],\&quot;updated_at\&quot;:[0,\&quot;2021-07-15T23:29:10.192Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa45c626be23430d4f52\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores Convencionais\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa18c626be23430d4f4e\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores\&quot;],\&quot;slug\&quot;:[0,\&quot;monitores\&quot;]}],\&quot;slug\&quot;:[0,\&quot;monitores-convencionais\&quot;],\&quot;updated_at\&quot;:[0,\&quot;2021-08-17T18:42:54.920Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa5bc626be23430d4f54\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores TV\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa18c626be23430d4f4e\&quot;],\&quot;name\&quot;:[0,\&quot;Monitores\&quot;],\&quot;slug\&quot;:[0,\&quot;monitores\&quot;]}],\&quot;slug\&quot;:[0,\&quot;monitores-tv\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T13:34:19.659Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa6ec626be23430d4f56\&quot;],\&quot;name\&quot;:[0,\&quot;Notebooks\&quot;],\&quot;slug\&quot;:[0,\&quot;notebooks\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007351112-comp.png\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2019-08-28T15:51:51.039Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-28T15:51:51.039Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa8cc626be23430d4f58\&quot;],\&quot;name\&quot;:[0,\&quot;Notebooks gamers\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa6ec626be23430d4f56\&quot;],\&quot;name\&quot;:[0,\&quot;Notebooks\&quot;],\&quot;slug\&quot;:[0,\&quot;notebooks\&quot;]}],\&quot;slug\&quot;:[0,\&quot;notebooks-gamers\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T13:35:08.093Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffab6c626be23430d4f5c\&quot;],\&quot;name\&quot;:[0,\&quot;MacBook\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5d5714045753286eadbbdc77\&quot;],\&quot;name\&quot;:[0,\&quot;Ultrabook\&quot;],\&quot;slug\&quot;:[0,\&quot;ultrabook\&quot;]}],\&quot;slug\&quot;:[0,\&quot;macbook\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1566932713325-macbook.jfif\&quot;],\&quot;size\&quot;:[0,\&quot;233x216\&quot;],\&quot;alt\&quot;:[0,\&quot;macbook\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2019-08-27T19:07:35.157Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-27T19:07:35.157Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007328003-keyb.png\&quot;]}],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c701cb1c626be23430d4fe9\&quot;],\&quot;name\&quot;:[0,\&quot;Físicos\&quot;],\&quot;slug\&quot;:[0,\&quot;fisicos\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2020-09-04T21:48:44.261Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2020-09-04T21:48:44.261Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c7009fdc626be23430d4f82\&quot;],\&quot;name\&quot;:[0,\&quot;Teclados\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;]}],\&quot;slug\&quot;:[0,\&quot;teclados\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T14:41:01.323Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c700a11c626be23430d4f84\&quot;],\&quot;name\&quot;:[0,\&quot;Mouses\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;]}],\&quot;slug\&quot;:[0,\&quot;mouses\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T14:41:21.566Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c700a37c626be23430d4f86\&quot;],\&quot;name\&quot;:[0,\&quot;Caixas de Som\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;]}],\&quot;slug\&quot;:[0,\&quot;caixas-de-som\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T14:41:59.607Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c700a53c626be23430d4f88\&quot;],\&quot;name\&quot;:[0,\&quot;Headset\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;]}],\&quot;slug\&quot;:[0,\&quot;headset\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T14:42:27.608Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c700a6bc626be23430d4f8a\&quot;],\&quot;name\&quot;:[0,\&quot;Cadeira Gamer\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c7009bec626be23430d4f80\&quot;],\&quot;name\&quot;:[0,\&quot;Periféricos\&quot;],\&quot;slug\&quot;:[0,\&quot;perifericos\&quot;]}],\&quot;slug\&quot;:[0,\&quot;cadeira-gamer\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T14:42:51.330Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c700a9cc626be23430d4f8c\&quot;],\&quot;name\&quot;:[0,\&quot;Smartphones\&quot;],\&quot;slug\&quot;:[0,\&quot;smartphones\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007321218-smartphone.png\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2019-08-28T15:52:17.995Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-28T15:52:17.995Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c701c9ec626be23430d4fe7\&quot;],\&quot;name\&quot;:[0,\&quot;Jogo\&quot;],\&quot;slug\&quot;:[0,\&quot;jogos/\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007332353-game.png\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2020-07-24T19:14:01.592Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2020-07-24T19:14:01.592Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c701cb1c626be23430d4fe9\&quot;],\&quot;name\&quot;:[0,\&quot;Físicos\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c701c9ec626be23430d4fe7\&quot;],\&quot;name\&quot;:[0,\&quot;Jogo\&quot;],\&quot;slug\&quot;:[0,\&quot;jogos/\&quot;]}],\&quot;slug\&quot;:[0,\&quot;fisicos\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T16:00:49.671Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c701cc6c626be23430d4feb\&quot;],\&quot;name\&quot;:[0,\&quot;Digitais\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c701c9ec626be23430d4fe7\&quot;],\&quot;name\&quot;:[0,\&quot;Jogo\&quot;],\&quot;slug\&quot;:[0,\&quot;jogos/\&quot;]}],\&quot;slug\&quot;:[0,\&quot;digitais\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T16:01:10.358Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5c701ce2c626be23430d4fed\&quot;],\&quot;name\&quot;:[0,\&quot;Usados\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c701c9ec626be23430d4fe7\&quot;],\&quot;name\&quot;:[0,\&quot;Jogo\&quot;],\&quot;slug\&quot;:[0,\&quot;jogos/\&quot;]}],\&quot;slug\&quot;:[0,\&quot;usados\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-02-22T16:01:38.850Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5ceecb3f887ef430f1f70c88\&quot;],\&quot;name\&quot;:[0,\&quot;Promoções\&quot;],\&quot;slug\&quot;:[0,\&quot;promocoes\&quot;],\&quot;icon\&quot;:[0,{\&quot;url\&quot;:[0,\&quot;https://ecom-jvxboxzk.sfo2.digitaloceanspaces.com/@1567007326827-mony.png\&quot;]}],\&quot;updated_at\&quot;:[0,\&quot;2019-08-28T15:52:41.385Z\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-28T15:52:41.385Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5d5714045753286eadbbdc77\&quot;],\&quot;name\&quot;:[0,\&quot;Ultrabook\&quot;],\&quot;parent\&quot;:[0,{\&quot;_id\&quot;:[0,\&quot;5c6ffa6ec626be23430d4f56\&quot;],\&quot;name\&quot;:[0,\&quot;Notebooks\&quot;],\&quot;slug\&quot;:[0,\&quot;notebooks\&quot;]}],\&quot;slug\&quot;:[0,\&quot;ultrabook\&quot;],\&quot;created_at\&quot;:[0,\&quot;2019-08-16T20:37:24.811Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5f70f1417430f92180f5ba66\&quot;],\&quot;name\&quot;:[0,\&quot;Brasileiro\&quot;],\&quot;created_at\&quot;:[0,\&quot;2020-09-27T20:08:33.202Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;5fb2b13b69274c73fcd6a051\&quot;],\&quot;name\&quot;:[0,\&quot;smartwatch\&quot;],\&quot;created_at\&quot;:[0,\&quot;2020-11-16T17:04:59.320Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;60199592d6981740b4a030f4\&quot;],\&quot;name\&quot;:[0,\&quot;São Paulo\&quot;],\&quot;slug\&quot;:[0,\&quot;sao-paulo\&quot;],\&quot;updated_at\&quot;:[0,\&quot;2021-08-17T18:43:10.174Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;61de099d0c7c72722502397b\&quot;],\&quot;name\&quot;:[0,\&quot;MacBook Pro\&quot;],\&quot;created_at\&quot;:[0,\&quot;2022-01-11T22:50:05.070Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;61de12450c7c727225025299\&quot;],\&quot;name\&quot;:[0,\&quot;Mac Stop\&quot;],\&quot;created_at\&quot;:[0,\&quot;2022-01-11T23:27:01.790Z\&quot;]}],[0,{\&quot;_id\&quot;:[0,\&quot;6227a90a7963422eee367aaa\&quot;],\&quot;name\&quot;:[0,\&quot;capinhas\&quot;],\&quot;created_at\&quot;:[0,\&quot;2022-03-08T19:05:46.688Z\&quot;]}]]&quot;]}" ssr="" client="load" opts="{&quot;name&quot;:&quot;ShopHeader&quot;,&quot;value&quot;:true}" await-children=""><header class="top-0 z-50 bg-white py-3 sm:py-4 md:py-5"><div class="container lg:max-w-7xl mx-auto px-1 lg:pl-3 grid grid-flow-col grid-cols-3 justify-between items-center md:grid-cols-none md:auto-cols-max"><!--[--><div class="md:hidden" data-sidenav-toggle><button class="px-2 my-1" aria-label="Abrir/fechar menu"><!--[--><i class="i-menu text-base-500 text-3xl"></i><!--]--></button></div><!--]--><!--[--><astro-slot name="logo">
60
+ <a href="/">
61
+ <h2><picture>
59
62
  <source type="image/avif" srcset="/_image?f=avif&#38;w=300&#38;h=117&#38;ar=2.570281124497992&#38;href=%2Fimg%2Fuploads%2Flogo.webp 300w" sizes="150px"><source type="image/webp" srcset="/_image?f=webp&#38;w=300&#38;h=117&#38;ar=2.570281124497992&#38;href=%2Fimg%2Fuploads%2Flogo.webp 300w" sizes="150px">
60
- <img alt="My Shop" src="/_image?f=webp&#38;w=300&#38;h=117&#38;ar=2.570281124497992&#38;href=%2Fimg%2Fuploads%2Flogo.webp" loading="lazy" decoding="async" alt="My Shop" fetchpriority="high">
63
+ <img alt="My Shop" src="/_image?f=webp&#38;w=300&#38;h=117&#38;ar=2.570281124497992&#38;href=%2Fimg%2Fuploads%2Flogo.webp" loading="lazy" decoding="async" alt="My Shop" slot="logo-picture" fetchpriority="high" class="hover:drop-shadow-sm">
61
64
  </picture></h2>
62
- </astro-slot><!--]--><div class="flex items-center"><!--[--><!--[--><!----><!--]--><!--[--><!--]--><!--[--><!--]--><!--]--></div></div></div></header></astro-island>
65
+ </a>
66
+ </astro-slot><!--]--><!--[--><!--]--><!--[--><div class="px-2 flex justify-end items-center gap-3 lg:gap-4 text-base-800" data-header-buttons><!--[--><!--[--><button class="" aria-label="Buscar produtos" data-header-button="search"><!--[--><i class="i-search hover:text-primary w-7 h-7 hover:scale-110 active:scale-125"></i><!--]--></button><!--]--><!--[--><button class="hidden sm:block" aria-label="Minha conta" data-header-button="account"><!--[--><i class="i-account hover:text-primary w-7 h-7 hover:scale-110 active:scale-125"></i><!--]--></button><!--]--><!--[--><button class="" aria-label="Abrir carrinho" data-header-button="cart"><!--[--><i class="i-shopping-cart hover:text-primary w-7 h-7 hover:scale-110 active:scale-125"></i><!--]--></button><!--]--><!--]--></div><!--]--></div><!----></header></astro-island>
63
67
 
64
- <link rel="stylesheet" href="/_astro/_...slug_.97285eba.css" /><script type="module" src="/_astro/hoisted.6edd7364.js"></script><main>
68
+ <link rel="stylesheet" href="/_astro/_...slug_.39c46f54.css" /><script type="module" src="/_astro/hoisted.6edd7364.js"></script><main>
65
69
  <h1>Error :/</h1>
66
70
  <p class="instructions">
67
71
  Check out the <code>src/pages</code> directory to get started.<br>
@@ -69,5 +73,6 @@ window.storefront = {"settings":{"domain":"ecom2-002.web.app","name":"My Shop","
69
73
  </p>
70
74
  </main>
71
75
 
76
+ <div id="teleported-bottom"></div>
72
77
  </body>
73
78
  </html>
@@ -1 +1 @@
1
- if(!self.define){let e,s={};const r=(r,n)=>(r=new URL(r+".js",n).href,s[r]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=r,e.onload=s,document.head.appendChild(e)}else e=r,importScripts(r),s()})).then((()=>{let e=s[r];if(!e)throw new Error(`Module ${r} didn’t register its module`);return e})));self.define=(n,i)=>{const o=e||("document"in self?document.currentScript.src:"")||location.href;if(s[o])return;let t={};const a=e=>r(e,o),u={module:{uri:o},exports:t,require:a};s[o]=Promise.all(n.map((e=>u[e]||a(e)))).then((e=>(i(...e),t)))}}define(["./workbox-e2ee76b5"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"_astro/_...slug_.97285eba.css",revision:null},{url:"_astro/client.3e777d4c.js",revision:null},{url:"_astro/ecom-utils.92f137f6.js",revision:null},{url:"_astro/hoisted.6edd7364.js",revision:null},{url:"_astro/index.90df622b.css",revision:null},{url:"_astro/modules-info.dde776b4.js",revision:null},{url:"_astro/PitchBar.f3579a5b.js",revision:null},{url:"_astro/Prices.8e5cead5.js",revision:null},{url:"_astro/Prices.vue_vue_type_script_setup_true_lang.b8cbeb54.js",revision:null},{url:"_astro/ProductCard.6d8b6d86.js",revision:null},{url:"_astro/runtime-core.esm-bundler.7cf33881.js",revision:null},{url:"_astro/runtime-dom.esm-bundler.1a4c7407.js",revision:null},{url:"_astro/server.4d9646d8.css",revision:null},{url:"_astro/session-utm.72684b84.js",revision:null},{url:"_astro/StickyHeader.7b0f3963.js",revision:null},{url:"_astro/workbox-window.prod.es5.295a6886.js",revision:null},{url:"img/uploads/large-icon.png",revision:"0b35db516cfa7475b1c2f8c081e8d54d"},{url:"manifest.webmanifest",revision:"6a858866b0560997f368e27ab5418e15"}],{ignoreURLParametersMatching:[/.*/]}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("/404"))),e.registerRoute(/^\/$/,new e.NetworkFirst,"GET"),e.registerRoute(/\/((?!(?:admin|assets|img)(\/|$))[^.]+)(\.(?!js|css|xml|txt|png|jpg|jpeg|webp|avif|svg|gif)[^.]+)*$/,new e.NetworkFirst({cacheName:"pages",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/assets\//,new e.StaleWhileRevalidate({cacheName:"assets",plugins:[]}),"GET"),e.registerRoute(/^\/_image$/,new e.StaleWhileRevalidate({cacheName:"sharp-images",plugins:[new e.ExpirationPlugin({maxEntries:50,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/img\/uploads\/.*\.(?:png|jpg|jpeg|webp|avif|svg|gif)$/,new e.StaleWhileRevalidate({cacheName:"cms-images",plugins:[new e.ExpirationPlugin({maxEntries:20,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/ecomplus\.io/,new e.NetworkFirst({cacheName:"store-api",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/normal\//,new e.CacheFirst({cacheName:"product-thumbnails",plugins:[new e.ExpirationPlugin({maxEntries:100,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/big\//,new e.CacheFirst({cacheName:"product-pictures",plugins:[new e.ExpirationPlugin({maxEntries:10,maxAgeSeconds:604800,purgeOnQuotaError:!0})]}),"GET")}));
1
+ if(!self.define){let e,s={};const r=(r,n)=>(r=new URL(r+".js",n).href,s[r]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=r,e.onload=s,document.head.appendChild(e)}else e=r,importScripts(r),s()})).then((()=>{let e=s[r];if(!e)throw new Error(`Module ${r} didn’t register its module`);return e})));self.define=(n,i)=>{const o=e||("document"in self?document.currentScript.src:"")||location.href;if(s[o])return;let a={};const l=e=>r(e,o),t={module:{uri:o},exports:a,require:l};s[o]=Promise.all(n.map((e=>t[e]||l(e)))).then((e=>(i(...e),a)))}}define(["./workbox-e2ee76b5"],(function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"_astro/_...slug_.39c46f54.css",revision:null},{url:"_astro/client.eba0daa7.js",revision:null},{url:"_astro/ecom-utils.92f137f6.js",revision:null},{url:"_astro/hoisted.6edd7364.js",revision:null},{url:"_astro/index.0c833781.css",revision:null},{url:"_astro/index.7577af70.js",revision:null},{url:"_astro/modules-info.0c999f60.js",revision:null},{url:"_astro/PitchBar.103168e6.js",revision:null},{url:"_astro/Prices.b75d44d6.js",revision:null},{url:"_astro/Prices.vue_vue_type_script_setup_true_lang.054033ef.js",revision:null},{url:"_astro/ProductCard.9138ec25.js",revision:null},{url:"_astro/runtime-core.esm-bundler.4da3640b.js",revision:null},{url:"_astro/runtime-dom.esm-bundler.0869e112.js",revision:null},{url:"_astro/server.60de185d.css",revision:null},{url:"_astro/session-utm.72684b84.js",revision:null},{url:"_astro/ShopHeader.65213f83.js",revision:null},{url:"_astro/workbox-window.prod.es5.295a6886.js",revision:null},{url:"img/uploads/large-icon.png",revision:"0b35db516cfa7475b1c2f8c081e8d54d"},{url:"manifest.webmanifest",revision:"6a858866b0560997f368e27ab5418e15"}],{ignoreURLParametersMatching:[/.*/]}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("/404"))),e.registerRoute(/^\/$/,new e.NetworkFirst,"GET"),e.registerRoute(/\/((?!(?:admin|assets|img)(\/|$))[^.]+)(\.(?!js|css|xml|txt|png|jpg|jpeg|webp|avif|svg|gif)[^.]+)*$/,new e.NetworkFirst({cacheName:"pages",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/assets\//,new e.StaleWhileRevalidate({cacheName:"assets",plugins:[]}),"GET"),e.registerRoute(/^\/_image$/,new e.StaleWhileRevalidate({cacheName:"sharp-images",plugins:[new e.ExpirationPlugin({maxEntries:50,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^\/img\/uploads\/.*\.(?:png|jpg|jpeg|webp|avif|svg|gif)$/,new e.StaleWhileRevalidate({cacheName:"cms-images",plugins:[new e.ExpirationPlugin({maxEntries:20,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/ecomplus\.io/,new e.NetworkFirst({cacheName:"store-api",plugins:[new e.ExpirationPlugin({maxEntries:50,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/normal\//,new e.CacheFirst({cacheName:"product-thumbnails",plugins:[new e.ExpirationPlugin({maxEntries:100,maxAgeSeconds:2592e3,purgeOnQuotaError:!0})]}),"GET"),e.registerRoute(/^https:\/\/(((\w+\.)?ecoms\d)|(ecom[\w-]+(\.\w+)*\.digitaloceanspaces))\.com.*\/imgs\/big\//,new e.CacheFirst({cacheName:"product-pictures",plugins:[new e.ExpirationPlugin({maxEntries:10,maxAgeSeconds:604800,purgeOnQuotaError:!0})]}),"GET")}));