cloudcommerce 1.0.0-alpha.8 → 2.0.1

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 (3439) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.cjs +3 -0
  3. package/.gitattributes +3 -0
  4. package/.github/renovate.json +59 -2
  5. package/.github/workflows/create-release.yml +3 -3
  6. package/.github/workflows/test-apps.yml +141 -0
  7. package/.gitmodules +9 -0
  8. package/.husky/commit-msg +0 -0
  9. package/.nvmrc +1 -0
  10. package/.vscode/extensions.json +5 -1
  11. package/.vscode/settings.json +23 -0
  12. package/CHANGELOG.md +3116 -0
  13. package/CONTRIBUTING.md +64 -0
  14. package/README.md +9 -3
  15. package/action.yml +348 -0
  16. package/commitlint.config.cjs +1 -1
  17. package/ecomplus-stores/barra-doce/.devcontainer/devcontainer.json +30 -0
  18. package/ecomplus-stores/barra-doce/.editorconfig +13 -0
  19. package/ecomplus-stores/barra-doce/.eslintrc.cjs +3 -0
  20. package/ecomplus-stores/barra-doce/.firebaserc +5 -0
  21. package/ecomplus-stores/barra-doce/.github/build-and-deploy +1 -0
  22. package/ecomplus-stores/barra-doce/.github/renovate.json +5 -0
  23. package/ecomplus-stores/barra-doce/.github/workflows/build-and-deploy.yml +36 -0
  24. package/ecomplus-stores/barra-doce/.github/workflows/calibreapp-image-actions.yml +23 -0
  25. package/ecomplus-stores/barra-doce/.gitpod.yml +12 -0
  26. package/ecomplus-stores/barra-doce/.idx/dev.nix +24 -0
  27. package/ecomplus-stores/barra-doce/.nvmrc +1 -0
  28. package/ecomplus-stores/barra-doce/.vscode/extensions.json +8 -0
  29. package/ecomplus-stores/barra-doce/.vscode/launch.json +11 -0
  30. package/ecomplus-stores/barra-doce/.vscode/settings.json +13 -0
  31. package/ecomplus-stores/barra-doce/LICENSE.md +230 -0
  32. package/ecomplus-stores/barra-doce/README.md +31 -0
  33. package/ecomplus-stores/barra-doce/SETUP.md +117 -0
  34. package/ecomplus-stores/barra-doce/SETUP.pt-BR.md +117 -0
  35. package/ecomplus-stores/barra-doce/conf/firebase.json +7 -0
  36. package/ecomplus-stores/barra-doce/functions/config.json +3 -0
  37. package/ecomplus-stores/barra-doce/functions/example.env +10 -0
  38. package/ecomplus-stores/barra-doce/functions/many/index.js +14 -0
  39. package/ecomplus-stores/barra-doce/functions/many/package.json +22 -0
  40. package/ecomplus-stores/barra-doce/functions/ssr/.eslintrc.cjs +6 -0
  41. package/ecomplus-stores/barra-doce/functions/ssr/astro.config.mjs +19 -0
  42. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/3.md +24 -0
  43. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/4.md +24 -0
  44. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/5.md +24 -0
  45. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/dos.md +24 -0
  46. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/uno.md +24 -0
  47. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/contato.md +9 -0
  48. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/terms.md +20 -0
  49. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/trocas.md +9 -0
  50. package/ecomplus-stores/barra-doce/functions/ssr/content/layout.json +61 -0
  51. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/brands.json +16 -0
  52. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/categories.json +16 -0
  53. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/collections.json +16 -0
  54. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/home.json +53 -0
  55. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/products.json +18 -0
  56. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/search.json +7 -0
  57. package/ecomplus-stores/barra-doce/functions/ssr/content/settings.json +70 -0
  58. package/ecomplus-stores/barra-doce/functions/ssr/index.js +18 -0
  59. package/ecomplus-stores/barra-doce/functions/ssr/package.json +34 -0
  60. package/ecomplus-stores/barra-doce/functions/ssr/public/admin/.gitkeep +2 -0
  61. package/ecomplus-stores/barra-doce/functions/ssr/public/assets/.gitkeep +2 -0
  62. package/ecomplus-stores/barra-doce/functions/ssr/public/img/icon.png +0 -0
  63. package/ecomplus-stores/barra-doce/functions/ssr/public/img/large-icon.png +0 -0
  64. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/banner-forma-decora.jpg +0 -0
  65. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/ecom-icon.png +0 -0
  66. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/logo-barradoce.webp +0 -0
  67. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/og-image.png +0 -0
  68. package/ecomplus-stores/barra-doce/functions/ssr/public/robots.txt +6 -0
  69. package/ecomplus-stores/barra-doce/functions/ssr/scripts/build.sh +14 -0
  70. package/ecomplus-stores/barra-doce/functions/ssr/src/assets/style.css +90 -0
  71. package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountMenu.vue +97 -0
  72. package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountPage.vue +62 -0
  73. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Banner.vue +66 -0
  74. package/ecomplus-stores/barra-doce/functions/ssr/src/components/BannersGrid.astro +25 -0
  75. package/ecomplus-stores/barra-doce/functions/ssr/src/components/BlogPosts.vue +88 -0
  76. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Breadcrumbs.vue +49 -0
  77. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartItem.vue +64 -0
  78. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartSidebar.vue +69 -0
  79. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CheckoutPage.vue +47 -0
  80. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Collapse.vue +19 -0
  81. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ContentEntry.vue +23 -0
  82. package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocBanners.vue +26 -0
  83. package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocDescription.vue +28 -0
  84. package/ecomplus-stores/barra-doce/functions/ssr/src/components/FooterStamps.vue +62 -0
  85. package/ecomplus-stores/barra-doce/functions/ssr/src/components/HeroSlider.vue +56 -0
  86. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ImagesGallery.vue +152 -0
  87. package/ecomplus-stores/barra-doce/functions/ssr/src/components/LoginForm.vue +107 -0
  88. package/ecomplus-stores/barra-doce/functions/ssr/src/components/PageTitle.vue +43 -0
  89. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Pagination.vue +67 -0
  90. package/ecomplus-stores/barra-doce/functions/ssr/src/components/PitchBar.vue +50 -0
  91. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Prices.vue +95 -0
  92. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductCard.vue +113 -0
  93. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductDetails.vue +123 -0
  94. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductShelf.vue +71 -0
  95. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductSpecifications.vue +42 -0
  96. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchFilters.vue +122 -0
  97. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchModal.vue +102 -0
  98. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchShowcase.vue +169 -0
  99. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopFooter.vue +102 -0
  100. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeader.vue +201 -0
  101. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderMenu.vue +66 -0
  102. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderSubmenu.vue +98 -0
  103. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenav.vue +60 -0
  104. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenavCategory.vue +79 -0
  105. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SkuSelector.vue +58 -0
  106. package/ecomplus-stores/barra-doce/functions/ssr/src/env.d.ts +18 -0
  107. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/Base.astro +15 -0
  108. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageFooter.astro +73 -0
  109. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageHeader.astro +38 -0
  110. package/ecomplus-stores/barra-doce/functions/ssr/src/main/Fallback.astro +33 -0
  111. package/ecomplus-stores/barra-doce/functions/ssr/src/main/Main.astro +26 -0
  112. package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Hero.astro +33 -0
  113. package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Sections.astro +75 -0
  114. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/[...slug].astro +69 -0
  115. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/_vue.ts +19 -0
  116. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/account.astro +38 -0
  117. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/index.astro +82 -0
  118. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/[page].astro +71 -0
  119. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/_blog-pages.ts +9 -0
  120. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/~fallback.astro +30 -0
  121. package/ecomplus-stores/barra-doce/functions/ssr/src/scripts/InlineScripts.astro +10 -0
  122. package/ecomplus-stores/barra-doce/functions/ssr/tailwind.config.cjs +18 -0
  123. package/ecomplus-stores/barra-doce/functions/ssr/tsconfig.json +12 -0
  124. package/ecomplus-stores/barra-doce/functions/ssr/uno.config.cjs +5 -0
  125. package/ecomplus-stores/barra-doce/functions/with-apps/index.js +12 -0
  126. package/ecomplus-stores/barra-doce/functions/with-apps/package.json +22 -0
  127. package/ecomplus-stores/barra-doce/package.json +31 -0
  128. package/ecomplus-stores/barra-doce/scripts/install.sh +24 -0
  129. package/ecomplus-stores/tia-sonia/.devcontainer/devcontainer.json +30 -0
  130. package/ecomplus-stores/tia-sonia/.eslintrc.cjs +3 -0
  131. package/ecomplus-stores/tia-sonia/.firebaserc +5 -0
  132. package/ecomplus-stores/tia-sonia/.github/renovate.json +5 -0
  133. package/ecomplus-stores/tia-sonia/.github/workflows/build-and-deploy.yml +41 -0
  134. package/ecomplus-stores/tia-sonia/.github/workflows/calibreapp-image-actions.yml +23 -0
  135. package/ecomplus-stores/tia-sonia/.gitpod.yml +12 -0
  136. package/ecomplus-stores/tia-sonia/.idx/dev.nix +24 -0
  137. package/ecomplus-stores/tia-sonia/.nvmrc +1 -0
  138. package/ecomplus-stores/tia-sonia/.vscode/extensions.json +8 -0
  139. package/ecomplus-stores/tia-sonia/.vscode/settings.json +9 -0
  140. package/ecomplus-stores/tia-sonia/LICENSE.md +230 -0
  141. package/ecomplus-stores/tia-sonia/README.md +102 -0
  142. package/ecomplus-stores/tia-sonia/README.pt-BR.md +102 -0
  143. package/ecomplus-stores/tia-sonia/functions/config.json +3 -0
  144. package/ecomplus-stores/tia-sonia/functions/core/index.js +9 -0
  145. package/ecomplus-stores/tia-sonia/functions/core/package.json +20 -0
  146. package/ecomplus-stores/tia-sonia/functions/events/index.js +9 -0
  147. package/ecomplus-stores/tia-sonia/functions/events/package.json +21 -0
  148. package/ecomplus-stores/tia-sonia/functions/example.env +10 -0
  149. package/ecomplus-stores/tia-sonia/functions/modules/index.js +9 -0
  150. package/ecomplus-stores/tia-sonia/functions/modules/package.json +21 -0
  151. package/ecomplus-stores/tia-sonia/functions/passport/index.js +9 -0
  152. package/ecomplus-stores/tia-sonia/functions/passport/package.json +21 -0
  153. package/ecomplus-stores/tia-sonia/functions/ssr/.eslintrc.cjs +6 -0
  154. package/ecomplus-stores/tia-sonia/functions/ssr/astro.config.mjs +4 -0
  155. package/ecomplus-stores/tia-sonia/functions/ssr/content/blog.json +18 -0
  156. package/ecomplus-stores/tia-sonia/functions/ssr/content/brands.json +24 -0
  157. package/ecomplus-stores/tia-sonia/functions/ssr/content/categories.json +24 -0
  158. package/ecomplus-stores/tia-sonia/functions/ssr/content/code.json +5 -0
  159. package/ecomplus-stores/tia-sonia/functions/ssr/content/collections.json +24 -0
  160. package/ecomplus-stores/tia-sonia/functions/ssr/content/contacts.json +13 -0
  161. package/ecomplus-stores/tia-sonia/functions/ssr/content/footer.json +46 -0
  162. package/ecomplus-stores/tia-sonia/functions/ssr/content/header.json +35 -0
  163. package/ecomplus-stores/tia-sonia/functions/ssr/content/home.json +45 -0
  164. package/ecomplus-stores/tia-sonia/functions/ssr/content/info.json +18 -0
  165. package/ecomplus-stores/tia-sonia/functions/ssr/content/maintenance.json +6 -0
  166. package/ecomplus-stores/tia-sonia/functions/ssr/content/menu.json +6 -0
  167. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/contato.json +6 -0
  168. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/entrega.json +6 -0
  169. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/faq.json +6 -0
  170. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/pagamentos.json +6 -0
  171. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/privacidade.json +6 -0
  172. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/sobre-nos.json +6 -0
  173. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/termos.json +6 -0
  174. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/trocas.json +6 -0
  175. package/ecomplus-stores/tia-sonia/functions/ssr/content/posts/esta-loja-e-um-pwa.json +9 -0
  176. package/ecomplus-stores/tia-sonia/functions/ssr/content/products.json +32 -0
  177. package/ecomplus-stores/tia-sonia/functions/ssr/content/search.json +8 -0
  178. package/ecomplus-stores/tia-sonia/functions/ssr/content/settings.json +18 -0
  179. package/ecomplus-stores/tia-sonia/functions/ssr/content/social.json +5 -0
  180. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/analytics.json +11 -0
  181. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/compre-confie.json +11 -0
  182. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/ebit.json +11 -0
  183. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/fb-pixel.json +12 -0
  184. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/gmc-ratings.json +12 -0
  185. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/minicart.json +6 -0
  186. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/offers-notification.json +11 -0
  187. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/opinioes-verificadas.json +18 -0
  188. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product-card.json +10 -0
  189. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product.json +13 -0
  190. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search-engine.json +8 -0
  191. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search.json +6 -0
  192. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tag-manager.json +12 -0
  193. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tawkto.json +12 -0
  194. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/trustvox.json +15 -0
  195. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/user.json +5 -0
  196. package/ecomplus-stores/tia-sonia/functions/ssr/index.js +18 -0
  197. package/ecomplus-stores/tia-sonia/functions/ssr/package.json +34 -0
  198. package/ecomplus-stores/tia-sonia/functions/ssr/public/admin/config.json +1 -0
  199. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms-preview.css +274 -0
  200. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms.css +114 -0
  201. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cvv.png +0 -0
  202. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/bootstrap-icons/font/storefront-icons.woff2 +0 -0
  203. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/feather-icons/font/storefront-icons.woff2 +0 -0
  204. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/font-awesome/font/storefront-icons.woff2 +0 -0
  205. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/line-awesome/font/storefront-icons.woff2 +0 -0
  206. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/tabler-icons/font/storefront-icons.woff2 +0 -0
  207. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/img-placeholder.png +0 -0
  208. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/payments.png +0 -0
  209. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/ssl-safe.png +0 -0
  210. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/icon.png +0 -0
  211. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/large-icon.png +0 -0
  212. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-acucares.webp +0 -0
  213. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-barras.webp +0 -0
  214. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-bebidas-em-po.webp +0 -0
  215. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-cookies.webp +0 -0
  216. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-granola-tia-sonia.webp +0 -0
  217. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-integrais.webp +0 -0
  218. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-naturais.webp +0 -0
  219. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-pastas-tia-sonia.webp +0 -0
  220. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-snacks.webp +0 -0
  221. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-ultrabar.webp +0 -0
  222. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/daniel-cady.webp +0 -0
  223. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/favicon.png +0 -0
  224. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/fimdeano1920x736.jpg +0 -0
  225. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata-verso.webp +0 -0
  226. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata.webp +0 -0
  227. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-em-pote.png +0 -0
  228. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-espalhadas.png +0 -0
  229. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-acai-granola.jpg +0 -0
  230. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-cafe-tapioca-aveia.jpg +0 -0
  231. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-piquenique-snack-cookies.jpg +0 -0
  232. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/icon.png +0 -0
  233. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/large-icon.png +0 -0
  234. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/machu-picchu-1500.jpg +0 -0
  235. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/og-image.png +0 -0
  236. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-ibd-120-80.webp +0 -0
  237. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-organico-120-80.webp +0 -0
  238. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-usda-120-80.webp +0 -0
  239. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-vegano-120-80.webp +0 -0
  240. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/ssl-safe.png +0 -0
  241. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tia-sonia-real.png +0 -0
  242. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-mono.png +0 -0
  243. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-var.png +0 -0
  244. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo.png +0 -0
  245. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/trustvox.png +0 -0
  246. package/ecomplus-stores/tia-sonia/functions/ssr/public/robots.txt +8 -0
  247. package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/.gitkeep +0 -0
  248. package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/prices.css +3 -0
  249. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/AboutUs.astro +77 -0
  250. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/BrandTestimonials.vue +134 -0
  251. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesGrid.vue +32 -0
  252. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesSlider.vue +117 -0
  253. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/HeroBanner.vue +112 -0
  254. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/PitchBar.vue +97 -0
  255. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/TheHeader.vue +201 -0
  256. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderBarLink.vue +5 -0
  257. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtonLink.vue +5 -0
  258. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtons.vue +46 -0
  259. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderNav.vue +14 -0
  260. package/ecomplus-stores/tia-sonia/functions/ssr/src/env.d.ts +5 -0
  261. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Base.astro +49 -0
  262. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Checkout.astro +0 -0
  263. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Pages.astro +44 -0
  264. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/PagesHeader.astro +98 -0
  265. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Fallback.astro +15 -0
  266. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Home.astro +172 -0
  267. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Wildcard.astro +21 -0
  268. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/[...slug].astro +36 -0
  269. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/_vue.ts +3 -0
  270. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/account.astro +0 -0
  271. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/index.astro +0 -0
  272. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/fallback.astro +19 -0
  273. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/index.astro +31 -0
  274. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/head-scripts.ts +13 -0
  275. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/modules-info-preset.ts +27 -0
  276. package/ecomplus-stores/tia-sonia/functions/ssr/tailwind.config.cjs +15 -0
  277. package/ecomplus-stores/tia-sonia/functions/ssr/tsconfig.json +16 -0
  278. package/ecomplus-stores/tia-sonia/functions/ssr/uno.config.cjs +5 -0
  279. package/ecomplus-stores/tia-sonia/package.json +28 -0
  280. package/ecomplus-stores/tia-sonia/scripts/install.sh +24 -0
  281. package/package.json +35 -25
  282. package/packages/__skeleton/CHANGELOG.md +1 -0
  283. package/packages/__skeleton/README.md +1 -0
  284. package/packages/__skeleton/package.json +27 -0
  285. package/packages/__skeleton/src/index.ts +0 -0
  286. package/packages/__skeleton/tsconfig.json +3 -0
  287. package/packages/api/lib/api.d.ts +125 -0
  288. package/packages/api/lib/api.js +215 -0
  289. package/packages/api/lib/api.js.map +1 -0
  290. package/packages/api/package.json +10 -3
  291. package/packages/api/src/api.ts +298 -0
  292. package/packages/api/tests/index.test.ts +82 -0
  293. package/packages/api/tsconfig.json +2 -97
  294. package/packages/api/types/applications.d.ts +180 -0
  295. package/packages/api/types/authentications.d.ts +121 -0
  296. package/packages/api/types/brands.d.ts +174 -0
  297. package/packages/api/types/carts.d.ts +380 -0
  298. package/packages/api/types/categories.d.ts +216 -0
  299. package/packages/api/types/collections.d.ts +174 -0
  300. package/packages/api/types/customers.d.ts +535 -0
  301. package/packages/api/types/grids.d.ts +172 -0
  302. package/packages/api/types/orders.d.ts +1743 -0
  303. package/packages/api/types/products.d.ts +1441 -0
  304. package/packages/api/types/stores.d.ts +138 -0
  305. package/packages/api/types.d.ts +509 -0
  306. package/packages/api/types.ts +2 -0
  307. package/packages/apps/affiliate-program/CHANGELOG.md +1 -0
  308. package/packages/apps/affiliate-program/README.md +1 -0
  309. package/packages/apps/affiliate-program/lib/affiliate-program.js +9 -0
  310. package/packages/apps/affiliate-program/lib/affiliate-program.js.map +1 -0
  311. package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js +153 -0
  312. package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js.map +1 -0
  313. package/packages/apps/affiliate-program/lib/index.js +2 -0
  314. package/packages/apps/affiliate-program/lib/index.js.map +1 -0
  315. package/packages/apps/affiliate-program/package.json +30 -0
  316. package/packages/apps/affiliate-program/src/affiliate-program.ts +14 -0
  317. package/packages/apps/affiliate-program/src/events-to-affiliate-program.ts +183 -0
  318. package/packages/apps/affiliate-program/src/index.ts +1 -0
  319. package/packages/apps/affiliate-program/tsconfig.json +3 -0
  320. package/packages/apps/correios/CHANGELOG.md +1 -0
  321. package/packages/apps/correios/README.md +1 -0
  322. package/packages/apps/correios/lib/correios.d.ts +3 -0
  323. package/packages/apps/correios/lib/correios.js +7 -0
  324. package/packages/apps/correios/lib/correios.js.map +1 -0
  325. package/packages/apps/correios/lib/index.d.ts +1 -0
  326. package/packages/apps/correios/lib/index.js +2 -0
  327. package/packages/apps/correios/lib/index.js.map +1 -0
  328. package/packages/apps/correios/lib-mjs/calculate-shipping.mjs +430 -0
  329. package/packages/apps/correios/lib-mjs/correios-db.mjs +189 -0
  330. package/packages/apps/correios/lib-mjs/correios-v2.mjs +84 -0
  331. package/packages/apps/correios/lib-mjs/utils/constants-parsers.mjs +135 -0
  332. package/packages/apps/correios/lib-mjs/utils/correios-axios.mjs +93 -0
  333. package/packages/apps/correios/package.json +38 -0
  334. package/packages/apps/correios/scripts/tests.sh +11 -0
  335. package/packages/apps/correios/src/correios.ts +8 -0
  336. package/packages/apps/correios/src/index.ts +1 -0
  337. package/packages/apps/correios/tests/calculate-shipping.test.mjs +45 -0
  338. package/packages/apps/correios/tsconfig.json +6 -0
  339. package/packages/apps/custom-payment/CHANGELOG.md +1 -0
  340. package/packages/apps/custom-payment/README.md +1 -0
  341. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.d.ts +72 -0
  342. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js +55 -0
  343. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js.map +1 -0
  344. package/packages/apps/custom-payment/lib/custom-payment-list-payments.d.ts +3 -0
  345. package/packages/apps/custom-payment/lib/custom-payment-list-payments.js +79 -0
  346. package/packages/apps/custom-payment/lib/custom-payment-list-payments.js.map +1 -0
  347. package/packages/apps/custom-payment/lib/custom-payment.d.ts +72 -0
  348. package/packages/apps/custom-payment/lib/custom-payment.js +11 -0
  349. package/packages/apps/custom-payment/lib/custom-payment.js.map +1 -0
  350. package/packages/apps/custom-payment/lib/index.d.ts +1 -0
  351. package/packages/apps/custom-payment/lib/index.js +2 -0
  352. package/packages/apps/custom-payment/lib/index.js.map +1 -0
  353. package/packages/apps/custom-payment/package.json +27 -0
  354. package/packages/apps/custom-payment/src/custom-payment-create-transaction.ts +67 -0
  355. package/packages/apps/custom-payment/src/custom-payment-list-payments.ts +96 -0
  356. package/packages/apps/custom-payment/src/custom-payment.ts +11 -0
  357. package/packages/apps/custom-payment/src/index.ts +1 -0
  358. package/packages/apps/custom-payment/tsconfig.json +6 -0
  359. package/packages/apps/custom-shipping/CHANGELOG.md +1 -0
  360. package/packages/apps/custom-shipping/README.md +1 -0
  361. package/packages/apps/custom-shipping/lib/custom-shipping.d.ts +2 -0
  362. package/packages/apps/custom-shipping/lib/custom-shipping.js +6 -0
  363. package/packages/apps/custom-shipping/lib/custom-shipping.js.map +1 -0
  364. package/packages/apps/custom-shipping/lib/index.d.ts +1 -0
  365. package/packages/apps/custom-shipping/lib/index.js +2 -0
  366. package/packages/apps/custom-shipping/lib/index.js.map +1 -0
  367. package/packages/apps/custom-shipping/lib-mjs/calculate-custom-shipping.mjs +251 -0
  368. package/packages/apps/custom-shipping/package.json +29 -0
  369. package/packages/apps/custom-shipping/src/custom-shipping.ts +7 -0
  370. package/packages/apps/custom-shipping/src/index.ts +1 -0
  371. package/packages/apps/custom-shipping/tests/calculate-shipping.test.mjs +37 -0
  372. package/packages/apps/custom-shipping/tsconfig.json +6 -0
  373. package/packages/apps/datafrete/CHANGELOG.md +1 -0
  374. package/packages/apps/datafrete/README.md +1 -0
  375. package/packages/apps/datafrete/lib/datafrete-webhook.d.ts +4 -0
  376. package/packages/apps/datafrete/lib/datafrete-webhook.js +108 -0
  377. package/packages/apps/datafrete/lib/datafrete-webhook.js.map +1 -0
  378. package/packages/apps/datafrete/lib/datafrete.d.ts +2 -0
  379. package/packages/apps/datafrete/lib/datafrete.js +6 -0
  380. package/packages/apps/datafrete/lib/datafrete.js.map +1 -0
  381. package/packages/apps/datafrete/lib/index.d.ts +1 -0
  382. package/packages/apps/datafrete/lib/index.js +2 -0
  383. package/packages/apps/datafrete/lib/index.js.map +1 -0
  384. package/packages/apps/datafrete/lib-mjs/calculate-datafrete.mjs +277 -0
  385. package/packages/apps/datafrete/package.json +37 -0
  386. package/packages/apps/datafrete/src/datafrete-webhook.ts +131 -0
  387. package/packages/apps/datafrete/src/datafrete.ts +7 -0
  388. package/packages/apps/datafrete/src/index.ts +1 -0
  389. package/packages/apps/datafrete/tsconfig.json +6 -0
  390. package/packages/apps/datafrete/webhook.js +1 -0
  391. package/packages/apps/discounts/lib/discounts.d.ts +2 -0
  392. package/packages/apps/discounts/lib/discounts.js +6 -0
  393. package/packages/apps/discounts/lib/discounts.js.map +1 -0
  394. package/packages/apps/discounts/lib/index.d.ts +1 -0
  395. package/packages/apps/discounts/lib/index.js +2 -0
  396. package/packages/apps/discounts/lib/index.js.map +1 -0
  397. package/packages/apps/discounts/lib-mjs/apply-discount.mjs +429 -0
  398. package/packages/apps/discounts/lib-mjs/helpers.mjs +169 -0
  399. package/packages/apps/discounts/package.json +9 -4
  400. package/packages/apps/discounts/src/discounts.ts +7 -0
  401. package/packages/apps/discounts/src/index.ts +1 -0
  402. package/packages/apps/discounts/tsconfig.json +6 -0
  403. package/packages/apps/emails/CHANGELOG.md +1 -0
  404. package/packages/apps/emails/README.md +1 -0
  405. package/packages/apps/emails/lib/events-to-app-emails.js +19 -0
  406. package/packages/apps/emails/lib/events-to-app-emails.js.map +1 -0
  407. package/packages/apps/emails/lib/firebase.js +19 -0
  408. package/packages/apps/emails/lib/firebase.js.map +1 -0
  409. package/packages/apps/emails/lib/functios-lib/abandoned-carts.js +87 -0
  410. package/packages/apps/emails/lib/functios-lib/abandoned-carts.js.map +1 -0
  411. package/packages/apps/emails/lib/functios-lib/handle-orders.js +174 -0
  412. package/packages/apps/emails/lib/functios-lib/handle-orders.js.map +1 -0
  413. package/packages/apps/emails/lib/functios-lib/trigger-actions.js +178 -0
  414. package/packages/apps/emails/lib/functios-lib/trigger-actions.js.map +1 -0
  415. package/packages/apps/emails/lib/functios-lib/utils.js +33 -0
  416. package/packages/apps/emails/lib/functios-lib/utils.js.map +1 -0
  417. package/packages/apps/emails/lib/index.js +2 -0
  418. package/packages/apps/emails/lib/index.js.map +1 -0
  419. package/packages/apps/emails/package.json +33 -0
  420. package/packages/apps/emails/src/events-to-app-emails.ts +27 -0
  421. package/packages/apps/emails/src/firebase.ts +25 -0
  422. package/packages/apps/emails/src/functios-lib/abandoned-carts.ts +101 -0
  423. package/packages/apps/emails/src/functios-lib/handle-orders.ts +232 -0
  424. package/packages/apps/emails/src/functios-lib/trigger-actions.ts +177 -0
  425. package/packages/apps/emails/src/functios-lib/utils.ts +45 -0
  426. package/packages/apps/emails/src/index.ts +1 -0
  427. package/packages/apps/emails/tsconfig.json +3 -0
  428. package/packages/apps/fb-conversions/CHANGELOG.md +1 -0
  429. package/packages/apps/fb-conversions/README.md +1 -0
  430. package/packages/apps/fb-conversions/lib/fb-conversions-events.js +178 -0
  431. package/packages/apps/fb-conversions/lib/fb-conversions-events.js.map +1 -0
  432. package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js +69 -0
  433. package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js.map +1 -0
  434. package/packages/apps/fb-conversions/lib/index.js +2 -0
  435. package/packages/apps/fb-conversions/lib/index.js.map +1 -0
  436. package/packages/apps/fb-conversions/package.json +33 -0
  437. package/packages/apps/fb-conversions/src/fb-conversions-events.ts +243 -0
  438. package/packages/apps/fb-conversions/src/functions-lib/create-fb-objects.ts +104 -0
  439. package/packages/apps/fb-conversions/src/index.ts +1 -0
  440. package/packages/apps/fb-conversions/tsconfig.json +3 -0
  441. package/packages/apps/flash-courier/CHANGELOG.md +1 -0
  442. package/packages/apps/flash-courier/README.md +1 -0
  443. package/packages/apps/flash-courier/events.js +1 -0
  444. package/packages/apps/flash-courier/lib/flash-courier-events.d.ts +5 -0
  445. package/packages/apps/flash-courier/lib/flash-courier-events.js +14 -0
  446. package/packages/apps/flash-courier/lib/flash-courier-events.js.map +1 -0
  447. package/packages/apps/flash-courier/lib/flash-courier.d.ts +2 -0
  448. package/packages/apps/flash-courier/lib/flash-courier.js +6 -0
  449. package/packages/apps/flash-courier/lib/flash-courier.js.map +1 -0
  450. package/packages/apps/flash-courier/lib/index.d.ts +1 -0
  451. package/packages/apps/flash-courier/lib/index.js +2 -0
  452. package/packages/apps/flash-courier/lib/index.js.map +1 -0
  453. package/packages/apps/flash-courier/lib-mjs/calculate-flash-courier.mjs +246 -0
  454. package/packages/apps/flash-courier/lib-mjs/update-tracking.mjs +176 -0
  455. package/packages/apps/flash-courier/package.json +34 -0
  456. package/packages/apps/flash-courier/src/flash-courier-events.ts +13 -0
  457. package/packages/apps/flash-courier/src/flash-courier.ts +7 -0
  458. package/packages/apps/flash-courier/src/index.ts +1 -0
  459. package/packages/apps/flash-courier/tsconfig.json +6 -0
  460. package/packages/apps/frenet/CHANGELOG.md +1 -0
  461. package/packages/apps/frenet/README.md +1 -0
  462. package/packages/apps/frenet/events.js +1 -0
  463. package/packages/apps/frenet/lib/frenet-events.d.ts +6 -0
  464. package/packages/apps/frenet/lib/frenet-events.js +19 -0
  465. package/packages/apps/frenet/lib/frenet-events.js.map +1 -0
  466. package/packages/apps/frenet/lib/frenet.d.ts +2 -0
  467. package/packages/apps/frenet/lib/frenet.js +6 -0
  468. package/packages/apps/frenet/lib/frenet.js.map +1 -0
  469. package/packages/apps/frenet/lib/functions-lib/database.d.ts +19 -0
  470. package/packages/apps/frenet/lib/functions-lib/database.js +128 -0
  471. package/packages/apps/frenet/lib/functions-lib/database.js.map +1 -0
  472. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.d.ts +3 -0
  473. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js +48 -0
  474. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js.map +1 -0
  475. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.d.ts +2 -0
  476. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js +19 -0
  477. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js.map +1 -0
  478. package/packages/apps/frenet/lib/functions-lib/remove-delivered.d.ts +2 -0
  479. package/packages/apps/frenet/lib/functions-lib/remove-delivered.js +30 -0
  480. package/packages/apps/frenet/lib/functions-lib/remove-delivered.js.map +1 -0
  481. package/packages/apps/frenet/lib/functions-lib/tracking-codes.d.ts +2 -0
  482. package/packages/apps/frenet/lib/functions-lib/tracking-codes.js +139 -0
  483. package/packages/apps/frenet/lib/functions-lib/tracking-codes.js.map +1 -0
  484. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.d.ts +6 -0
  485. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js +49 -0
  486. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js.map +1 -0
  487. package/packages/apps/frenet/lib/index.d.ts +1 -0
  488. package/packages/apps/frenet/lib/index.js +2 -0
  489. package/packages/apps/frenet/lib/index.js.map +1 -0
  490. package/packages/apps/frenet/lib-mjs/calculate-frenet.mjs +162 -0
  491. package/packages/apps/frenet/package.json +38 -0
  492. package/packages/apps/frenet/scripts/tests.sh +7 -0
  493. package/packages/apps/frenet/src/frenet-events.ts +25 -0
  494. package/packages/apps/frenet/src/frenet.ts +7 -0
  495. package/packages/apps/frenet/src/functions-lib/database.ts +160 -0
  496. package/packages/apps/frenet/src/functions-lib/events-to-frenet.ts +62 -0
  497. package/packages/apps/frenet/src/functions-lib/fetch-tracking-code.ts +22 -0
  498. package/packages/apps/frenet/src/functions-lib/remove-delivered.ts +31 -0
  499. package/packages/apps/frenet/src/functions-lib/tracking-codes.ts +171 -0
  500. package/packages/apps/frenet/src/functions-lib/update-fulfillments.ts +57 -0
  501. package/packages/apps/frenet/src/index.ts +1 -0
  502. package/packages/apps/frenet/tests/calculate-shipping.test.mjs +37 -0
  503. package/packages/apps/frenet/tsconfig.json +6 -0
  504. package/packages/apps/galaxpay/CHANGELOG.md +1 -0
  505. package/packages/apps/galaxpay/README.md +1 -0
  506. package/packages/apps/galaxpay/assets/onload-expression.js +23 -0
  507. package/packages/apps/galaxpay/assets/onload-expression.min.js +1 -0
  508. package/packages/apps/galaxpay/events.js +1 -0
  509. package/packages/apps/galaxpay/lib/functions-lib/all-parses.d.ts +5 -0
  510. package/packages/apps/galaxpay/lib/functions-lib/all-parses.js +79 -0
  511. package/packages/apps/galaxpay/lib/functions-lib/all-parses.js.map +1 -0
  512. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.d.ts +3 -0
  513. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js +91 -0
  514. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js.map +1 -0
  515. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.d.ts +11 -0
  516. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js +60 -0
  517. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js.map +1 -0
  518. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.d.ts +2 -0
  519. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js +20 -0
  520. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js.map +1 -0
  521. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.d.ts +2 -0
  522. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js +32 -0
  523. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js.map +1 -0
  524. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.d.ts +30 -0
  525. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js +73 -0
  526. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js.map +1 -0
  527. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.d.ts +8 -0
  528. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js +73 -0
  529. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js.map +1 -0
  530. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.d.ts +3 -0
  531. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js +372 -0
  532. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js.map +1 -0
  533. package/packages/apps/galaxpay/lib/functions-lib/utils.d.ts +8 -0
  534. package/packages/apps/galaxpay/lib/functions-lib/utils.js +17 -0
  535. package/packages/apps/galaxpay/lib/functions-lib/utils.js.map +1 -0
  536. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.d.ts +75 -0
  537. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js +215 -0
  538. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js.map +1 -0
  539. package/packages/apps/galaxpay/lib/galaxpay-events.d.ts +6 -0
  540. package/packages/apps/galaxpay/lib/galaxpay-events.js +21 -0
  541. package/packages/apps/galaxpay/lib/galaxpay-events.js.map +1 -0
  542. package/packages/apps/galaxpay/lib/galaxpay-list-payments.d.ts +7 -0
  543. package/packages/apps/galaxpay/lib/galaxpay-list-payments.js +121 -0
  544. package/packages/apps/galaxpay/lib/galaxpay-list-payments.js.map +1 -0
  545. package/packages/apps/galaxpay/lib/galaxpay.d.ts +80 -0
  546. package/packages/apps/galaxpay/lib/galaxpay.js +12 -0
  547. package/packages/apps/galaxpay/lib/galaxpay.js.map +1 -0
  548. package/packages/apps/galaxpay/lib/index.d.ts +1 -0
  549. package/packages/apps/galaxpay/lib/index.js +3 -0
  550. package/packages/apps/galaxpay/lib/index.js.map +1 -0
  551. package/packages/apps/galaxpay/package.json +36 -0
  552. package/packages/apps/galaxpay/scripts/build.sh +4 -0
  553. package/packages/apps/galaxpay/src/functions-lib/all-parses.ts +91 -0
  554. package/packages/apps/galaxpay/src/functions-lib/ecom/events-to-galaxpay.ts +104 -0
  555. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-access.ts +80 -0
  556. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-axios.ts +21 -0
  557. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/gerate-token.ts +36 -0
  558. package/packages/apps/galaxpay/src/functions-lib/galaxpay/handle-plans.ts +91 -0
  559. package/packages/apps/galaxpay/src/functions-lib/galaxpay/update-subscription.ts +92 -0
  560. package/packages/apps/galaxpay/src/functions-lib/galaxpay/webhook.ts +484 -0
  561. package/packages/apps/galaxpay/src/functions-lib/utils.ts +23 -0
  562. package/packages/apps/galaxpay/src/galaxpay-create-transaction.ts +257 -0
  563. package/packages/apps/galaxpay/src/galaxpay-events.ts +28 -0
  564. package/packages/apps/galaxpay/src/galaxpay-list-payments.ts +148 -0
  565. package/packages/apps/galaxpay/src/galaxpay.ts +12 -0
  566. package/packages/apps/galaxpay/src/index.ts +2 -0
  567. package/packages/apps/galaxpay/tsconfig.json +6 -0
  568. package/packages/apps/galaxpay/types/config-app.d.ts +99 -0
  569. package/packages/apps/google-analytics/CHANGELOG.md +1 -0
  570. package/packages/apps/google-analytics/README.md +1 -0
  571. package/packages/apps/google-analytics/lib/google-analytics-events.js +129 -0
  572. package/packages/apps/google-analytics/lib/google-analytics-events.js.map +1 -0
  573. package/packages/apps/google-analytics/lib/index.js +2 -0
  574. package/packages/apps/google-analytics/lib/index.js.map +1 -0
  575. package/packages/apps/google-analytics/package.json +32 -0
  576. package/packages/apps/google-analytics/src/google-analytics-events.ts +168 -0
  577. package/packages/apps/google-analytics/src/index.ts +1 -0
  578. package/packages/apps/google-analytics/tsconfig.json +3 -0
  579. package/packages/apps/google-analytics/types.d.ts +43 -0
  580. package/packages/apps/jadlog/CHANGELOG.md +1 -0
  581. package/packages/apps/jadlog/README.md +1 -0
  582. package/packages/apps/jadlog/lib/index.d.ts +1 -0
  583. package/packages/apps/jadlog/lib/index.js +2 -0
  584. package/packages/apps/jadlog/lib/index.js.map +1 -0
  585. package/packages/apps/jadlog/lib/jadlog.d.ts +2 -0
  586. package/packages/apps/jadlog/lib/jadlog.js +6 -0
  587. package/packages/apps/jadlog/lib/jadlog.js.map +1 -0
  588. package/packages/apps/jadlog/lib-mjs/calculate-jadlog.mjs +421 -0
  589. package/packages/apps/jadlog/lib-mjs/deadlines/range-0.mjs +147 -0
  590. package/packages/apps/jadlog/lib-mjs/deadlines/range-1.mjs +1149 -0
  591. package/packages/apps/jadlog/lib-mjs/deadlines/range-2.mjs +1137 -0
  592. package/packages/apps/jadlog/lib-mjs/deadlines/range-3.mjs +1638 -0
  593. package/packages/apps/jadlog/lib-mjs/deadlines/range-4.mjs +1089 -0
  594. package/packages/apps/jadlog/lib-mjs/deadlines/range-5.mjs +1101 -0
  595. package/packages/apps/jadlog/lib-mjs/deadlines/range-6.mjs +1893 -0
  596. package/packages/apps/jadlog/lib-mjs/deadlines/range-7.mjs +1371 -0
  597. package/packages/apps/jadlog/lib-mjs/deadlines/range-8.mjs +1401 -0
  598. package/packages/apps/jadlog/lib-mjs/deadlines/range-9.mjs +963 -0
  599. package/packages/apps/jadlog/lib-mjs/jadlog-get-deadlines.mjs +32 -0
  600. package/packages/apps/jadlog/package.json +28 -0
  601. package/packages/apps/jadlog/src/index.ts +1 -0
  602. package/packages/apps/jadlog/src/jadlog.ts +7 -0
  603. package/packages/apps/jadlog/tsconfig.json +6 -0
  604. package/packages/apps/loyalty-points/CHANGELOG.md +1 -0
  605. package/packages/apps/loyalty-points/README.md +1 -0
  606. package/packages/apps/loyalty-points/events.js +1 -0
  607. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.d.ts +2 -0
  608. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js +98 -0
  609. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js.map +1 -0
  610. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.d.ts +5 -0
  611. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js +20 -0
  612. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js.map +1 -0
  613. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.d.ts +3 -0
  614. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js +208 -0
  615. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js.map +1 -0
  616. package/packages/apps/loyalty-points/lib/index.d.ts +1 -0
  617. package/packages/apps/loyalty-points/lib/index.js +2 -0
  618. package/packages/apps/loyalty-points/lib/index.js.map +1 -0
  619. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.d.ts +80 -0
  620. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js +215 -0
  621. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js.map +1 -0
  622. package/packages/apps/loyalty-points/lib/loyalty-list-payments.d.ts +3 -0
  623. package/packages/apps/loyalty-points/lib/loyalty-list-payments.js +49 -0
  624. package/packages/apps/loyalty-points/lib/loyalty-list-payments.js.map +1 -0
  625. package/packages/apps/loyalty-points/lib/loyalty-points-events.d.ts +6 -0
  626. package/packages/apps/loyalty-points/lib/loyalty-points-events.js +37 -0
  627. package/packages/apps/loyalty-points/lib/loyalty-points-events.js.map +1 -0
  628. package/packages/apps/loyalty-points/lib/loyalty-points.d.ts +81 -0
  629. package/packages/apps/loyalty-points/lib/loyalty-points.js +12 -0
  630. package/packages/apps/loyalty-points/lib/loyalty-points.js.map +1 -0
  631. package/packages/apps/loyalty-points/package.json +35 -0
  632. package/packages/apps/loyalty-points/src/functions-lib/cron-add-points.ts +104 -0
  633. package/packages/apps/loyalty-points/src/functions-lib/get-program-id.ts +23 -0
  634. package/packages/apps/loyalty-points/src/functions-lib/handle-loyalty-points-event.ts +249 -0
  635. package/packages/apps/loyalty-points/src/index.ts +1 -0
  636. package/packages/apps/loyalty-points/src/loyalty-create-transaction.ts +249 -0
  637. package/packages/apps/loyalty-points/src/loyalty-list-payments.ts +62 -0
  638. package/packages/apps/loyalty-points/src/loyalty-points-events.ts +52 -0
  639. package/packages/apps/loyalty-points/src/loyalty-points.ts +12 -0
  640. package/packages/apps/loyalty-points/tests/1-list-payments.test.mjs +37 -0
  641. package/packages/apps/loyalty-points/tests/2-create-transaction.test.mjs +41 -0
  642. package/packages/apps/loyalty-points/tsconfig.json +6 -0
  643. package/packages/apps/mandae/CHANGELOG.md +1 -0
  644. package/packages/apps/mandae/README.md +1 -0
  645. package/packages/apps/mandae/lib/index.d.ts +1 -0
  646. package/packages/apps/mandae/lib/index.js +2 -0
  647. package/packages/apps/mandae/lib/index.js.map +1 -0
  648. package/packages/apps/mandae/lib/mandae.d.ts +2 -0
  649. package/packages/apps/mandae/lib/mandae.js +6 -0
  650. package/packages/apps/mandae/lib/mandae.js.map +1 -0
  651. package/packages/apps/mandae/lib-mjs/calculate-mandae.mjs +297 -0
  652. package/packages/apps/mandae/package.json +31 -0
  653. package/packages/apps/mandae/scripts/tests.sh +7 -0
  654. package/packages/apps/mandae/src/index.ts +1 -0
  655. package/packages/apps/mandae/src/mandae.ts +7 -0
  656. package/packages/apps/mandae/tests/calculate-shipping.test.mjs +37 -0
  657. package/packages/apps/mandae/tsconfig.json +6 -0
  658. package/packages/apps/melhor-envio/CHANGELOG.md +1 -0
  659. package/packages/apps/melhor-envio/README.md +1 -0
  660. package/packages/apps/melhor-envio/events.js +1 -0
  661. package/packages/apps/melhor-envio/lib/functions-lib/database.d.ts +19 -0
  662. package/packages/apps/melhor-envio/lib/functions-lib/database.js +115 -0
  663. package/packages/apps/melhor-envio/lib/functions-lib/database.js.map +1 -0
  664. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.d.ts +3 -0
  665. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js +116 -0
  666. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js.map +1 -0
  667. package/packages/apps/melhor-envio/lib/functions-lib/new-label.d.ts +42 -0
  668. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js +185 -0
  669. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js.map +1 -0
  670. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.d.ts +5 -0
  671. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js +40 -0
  672. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js.map +1 -0
  673. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.d.ts +2 -0
  674. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js +164 -0
  675. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js.map +1 -0
  676. package/packages/apps/melhor-envio/lib/index.d.ts +1 -0
  677. package/packages/apps/melhor-envio/lib/index.js +2 -0
  678. package/packages/apps/melhor-envio/lib/index.js.map +1 -0
  679. package/packages/apps/melhor-envio/lib/melhor-envio-events.d.ts +6 -0
  680. package/packages/apps/melhor-envio/lib/melhor-envio-events.js +17 -0
  681. package/packages/apps/melhor-envio/lib/melhor-envio-events.js.map +1 -0
  682. package/packages/apps/melhor-envio/lib/melhor-envio.d.ts +2 -0
  683. package/packages/apps/melhor-envio/lib/melhor-envio.js +6 -0
  684. package/packages/apps/melhor-envio/lib/melhor-envio.js.map +1 -0
  685. package/packages/apps/melhor-envio/lib-mjs/calculate-melhor-envio.mjs +347 -0
  686. package/packages/apps/melhor-envio/lib-mjs/functions/client-melhor-envio.mjs +14 -0
  687. package/packages/apps/melhor-envio/lib-mjs/functions/error-handling.mjs +62 -0
  688. package/packages/apps/melhor-envio/lib-mjs/functions/new-shipment.mjs +119 -0
  689. package/packages/apps/melhor-envio/package.json +36 -0
  690. package/packages/apps/melhor-envio/src/functions-lib/database.ts +141 -0
  691. package/packages/apps/melhor-envio/src/functions-lib/events-to-melhor-envio.ts +150 -0
  692. package/packages/apps/melhor-envio/src/functions-lib/new-label.ts +214 -0
  693. package/packages/apps/melhor-envio/src/functions-lib/order-is-valid.ts +51 -0
  694. package/packages/apps/melhor-envio/src/functions-lib/tracking-codes.ts +191 -0
  695. package/packages/apps/melhor-envio/src/index.ts +1 -0
  696. package/packages/apps/melhor-envio/src/melhor-envio-events.ts +23 -0
  697. package/packages/apps/melhor-envio/src/melhor-envio.ts +7 -0
  698. package/packages/apps/melhor-envio/tsconfig.json +6 -0
  699. package/packages/apps/mercadopago/CHANGELOG.md +1 -0
  700. package/packages/apps/mercadopago/README.md +1 -0
  701. package/packages/apps/mercadopago/assets/onload-expression.js +142 -0
  702. package/packages/apps/mercadopago/assets/onload-expression.min.js +1 -0
  703. package/packages/apps/mercadopago/lib/index.d.ts +1 -0
  704. package/packages/apps/mercadopago/lib/index.js +3 -0
  705. package/packages/apps/mercadopago/lib/index.js.map +1 -0
  706. package/packages/apps/mercadopago/lib/mercadopago.d.ts +90 -0
  707. package/packages/apps/mercadopago/lib/mercadopago.js +12 -0
  708. package/packages/apps/mercadopago/lib/mercadopago.js.map +1 -0
  709. package/packages/apps/mercadopago/lib/mp-create-transaction.d.ts +88 -0
  710. package/packages/apps/mercadopago/lib/mp-create-transaction.js +294 -0
  711. package/packages/apps/mercadopago/lib/mp-create-transaction.js.map +1 -0
  712. package/packages/apps/mercadopago/lib/mp-list-payments.d.ts +6 -0
  713. package/packages/apps/mercadopago/lib/mp-list-payments.js +185 -0
  714. package/packages/apps/mercadopago/lib/mp-list-payments.js.map +1 -0
  715. package/packages/apps/mercadopago/lib/mp-webhook.d.ts +5 -0
  716. package/packages/apps/mercadopago/lib/mp-webhook.js +119 -0
  717. package/packages/apps/mercadopago/lib/mp-webhook.js.map +1 -0
  718. package/packages/apps/mercadopago/package.json +38 -0
  719. package/packages/apps/mercadopago/scripts/build.sh +4 -0
  720. package/packages/apps/mercadopago/scripts/tests.sh +7 -0
  721. package/packages/apps/mercadopago/src/index.ts +2 -0
  722. package/packages/apps/mercadopago/src/mercadopago.ts +12 -0
  723. package/packages/apps/mercadopago/src/mp-create-transaction.ts +318 -0
  724. package/packages/apps/mercadopago/src/mp-list-payments.ts +210 -0
  725. package/packages/apps/mercadopago/src/mp-webhook.ts +137 -0
  726. package/packages/apps/mercadopago/tests/1-list-payments.test.mjs +37 -0
  727. package/packages/apps/mercadopago/tests/2-create-transaction.test.mjs +42 -0
  728. package/packages/apps/mercadopago/tsconfig.json +6 -0
  729. package/packages/apps/mercadopago/webhook.js +1 -0
  730. package/packages/apps/pagarme/CHANGELOG.md +1 -0
  731. package/packages/apps/pagarme/README.md +1 -0
  732. package/packages/apps/pagarme/assets/onload-expression.js +32 -0
  733. package/packages/apps/pagarme/assets/onload-expression.min.js +1 -0
  734. package/packages/apps/pagarme/lib/functions-lib/add-installments.d.ts +55 -0
  735. package/packages/apps/pagarme/lib/functions-lib/add-installments.js +52 -0
  736. package/packages/apps/pagarme/lib/functions-lib/add-installments.js.map +1 -0
  737. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.d.ts +2 -0
  738. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js +24 -0
  739. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js.map +1 -0
  740. package/packages/apps/pagarme/lib/index.d.ts +1 -0
  741. package/packages/apps/pagarme/lib/index.js +3 -0
  742. package/packages/apps/pagarme/lib/index.js.map +1 -0
  743. package/packages/apps/pagarme/lib/pagarme-create-transaction.d.ts +86 -0
  744. package/packages/apps/pagarme/lib/pagarme-create-transaction.js +300 -0
  745. package/packages/apps/pagarme/lib/pagarme-create-transaction.js.map +1 -0
  746. package/packages/apps/pagarme/lib/pagarme-list-payments.d.ts +6 -0
  747. package/packages/apps/pagarme/lib/pagarme-list-payments.js +161 -0
  748. package/packages/apps/pagarme/lib/pagarme-list-payments.js.map +1 -0
  749. package/packages/apps/pagarme/lib/pagarme-webhook.d.ts +4 -0
  750. package/packages/apps/pagarme/lib/pagarme-webhook.js +88 -0
  751. package/packages/apps/pagarme/lib/pagarme-webhook.js.map +1 -0
  752. package/packages/apps/pagarme/lib/pagarme.d.ts +90 -0
  753. package/packages/apps/pagarme/lib/pagarme.js +12 -0
  754. package/packages/apps/pagarme/lib/pagarme.js.map +1 -0
  755. package/packages/apps/pagarme/package.json +38 -0
  756. package/packages/apps/pagarme/scripts/build.sh +4 -0
  757. package/packages/apps/pagarme/src/functions-lib/add-installments.ts +65 -0
  758. package/packages/apps/pagarme/src/functions-lib/parse-status-to-ecom.ts +23 -0
  759. package/packages/apps/pagarme/src/index.ts +2 -0
  760. package/packages/apps/pagarme/src/pagarme-create-transaction.ts +335 -0
  761. package/packages/apps/pagarme/src/pagarme-list-payments.ts +191 -0
  762. package/packages/apps/pagarme/src/pagarme-webhook.ts +97 -0
  763. package/packages/apps/pagarme/src/pagarme.ts +12 -0
  764. package/packages/apps/pagarme/tsconfig.json +6 -0
  765. package/packages/apps/pagarme/webhook.js +1 -0
  766. package/packages/apps/pagarme-v5/CHANGELOG.md +1 -0
  767. package/packages/apps/pagarme-v5/README.md +1 -0
  768. package/packages/apps/pagarme-v5/assets/onload-expression.js +38 -0
  769. package/packages/apps/pagarme-v5/assets/onload-expression.min.js +1 -0
  770. package/packages/apps/pagarme-v5/events.js +1 -0
  771. package/packages/apps/pagarme-v5/lib/index.d.ts +1 -0
  772. package/packages/apps/pagarme-v5/lib/index.js +2 -0
  773. package/packages/apps/pagarme-v5/lib/index.js.map +1 -0
  774. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.d.ts +6 -0
  775. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js +21 -0
  776. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js.map +1 -0
  777. package/packages/apps/pagarme-v5/lib/pagarme-v5.d.ts +4 -0
  778. package/packages/apps/pagarme-v5/lib/pagarme-v5.js +12 -0
  779. package/packages/apps/pagarme-v5/lib/pagarme-v5.js.map +1 -0
  780. package/packages/apps/pagarme-v5/lib-mjs/create-pagarme5-transaction.mjs +208 -0
  781. package/packages/apps/pagarme-v5/lib-mjs/events-to-pagarme5.mjs +209 -0
  782. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/api-utils.mjs +220 -0
  783. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/firestore-utils.mjs +24 -0
  784. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/create-axios.mjs +12 -0
  785. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/handle-plans.mjs +69 -0
  786. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/parses-utils.mjs +61 -0
  787. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/payment-subscription.mjs +244 -0
  788. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/payments/add-installments.mjs +45 -0
  789. package/packages/apps/pagarme-v5/lib-mjs/list-pagarme5-payments.mjs +218 -0
  790. package/packages/apps/pagarme-v5/lib-mjs/pagarme5-webhooks.mjs +343 -0
  791. package/packages/apps/pagarme-v5/package.json +38 -0
  792. package/packages/apps/pagarme-v5/scripts/build.sh +4 -0
  793. package/packages/apps/pagarme-v5/scripts/tests.sh +9 -0
  794. package/packages/apps/pagarme-v5/src/index.ts +1 -0
  795. package/packages/apps/pagarme-v5/src/pagarme-v5-events.ts +27 -0
  796. package/packages/apps/pagarme-v5/src/pagarme-v5.ts +12 -0
  797. package/packages/apps/pagarme-v5/tests/1-list-payments.test.mjs +37 -0
  798. package/packages/apps/pagarme-v5/tests/2-create-transaction.test.mjs +56 -0
  799. package/packages/apps/pagarme-v5/tsconfig.json +6 -0
  800. package/packages/apps/paghiper/CHANGELOG.md +1 -0
  801. package/packages/apps/paghiper/README.md +1 -0
  802. package/packages/apps/paghiper/lib/functions-lib/create-axios.d.ts +2 -0
  803. package/packages/apps/paghiper/lib/functions-lib/create-axios.js +22 -0
  804. package/packages/apps/paghiper/lib/functions-lib/create-axios.js.map +1 -0
  805. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.d.ts +3 -0
  806. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js +162 -0
  807. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js.map +1 -0
  808. package/packages/apps/paghiper/lib/index.d.ts +1 -0
  809. package/packages/apps/paghiper/lib/index.js +2 -0
  810. package/packages/apps/paghiper/lib/index.js.map +1 -0
  811. package/packages/apps/paghiper/lib/paghiper-create-transaction.d.ts +75 -0
  812. package/packages/apps/paghiper/lib/paghiper-create-transaction.js +207 -0
  813. package/packages/apps/paghiper/lib/paghiper-create-transaction.js.map +1 -0
  814. package/packages/apps/paghiper/lib/paghiper-list-payments.d.ts +7 -0
  815. package/packages/apps/paghiper/lib/paghiper-list-payments.js +104 -0
  816. package/packages/apps/paghiper/lib/paghiper-list-payments.js.map +1 -0
  817. package/packages/apps/paghiper/lib/paghiper-webhook.d.ts +5 -0
  818. package/packages/apps/paghiper/lib/paghiper-webhook.js +18 -0
  819. package/packages/apps/paghiper/lib/paghiper-webhook.js.map +1 -0
  820. package/packages/apps/paghiper/lib/paghiper.d.ts +80 -0
  821. package/packages/apps/paghiper/lib/paghiper.js +12 -0
  822. package/packages/apps/paghiper/lib/paghiper.js.map +1 -0
  823. package/packages/apps/paghiper/package.json +36 -0
  824. package/packages/apps/paghiper/src/functions-lib/create-axios.ts +21 -0
  825. package/packages/apps/paghiper/src/functions-lib/handle-webhook.ts +185 -0
  826. package/packages/apps/paghiper/src/index.ts +1 -0
  827. package/packages/apps/paghiper/src/paghiper-create-transaction.ts +250 -0
  828. package/packages/apps/paghiper/src/paghiper-list-payments.ts +134 -0
  829. package/packages/apps/paghiper/src/paghiper-webhook.ts +17 -0
  830. package/packages/apps/paghiper/src/paghiper.ts +12 -0
  831. package/packages/apps/paghiper/tsconfig.json +6 -0
  832. package/packages/apps/paghiper/types/config-app.d.ts +34 -0
  833. package/packages/apps/paghiper/webhook.js +1 -0
  834. package/packages/apps/pix/CHANGELOG.md +1 -0
  835. package/packages/apps/pix/README.md +1 -0
  836. package/packages/apps/pix/lib/functions-lib/get-certificate.d.ts +2 -0
  837. package/packages/apps/pix/lib/functions-lib/get-certificate.js +21 -0
  838. package/packages/apps/pix/lib/functions-lib/get-certificate.js.map +1 -0
  839. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.d.ts +15 -0
  840. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js +65 -0
  841. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js.map +1 -0
  842. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.d.ts +6 -0
  843. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js +20 -0
  844. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js.map +1 -0
  845. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.d.ts +12 -0
  846. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js +36 -0
  847. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js.map +1 -0
  848. package/packages/apps/pix/lib/index.d.ts +1 -0
  849. package/packages/apps/pix/lib/index.js +3 -0
  850. package/packages/apps/pix/lib/index.js.map +1 -0
  851. package/packages/apps/pix/lib/pix-create-transaction.d.ts +76 -0
  852. package/packages/apps/pix/lib/pix-create-transaction.js +242 -0
  853. package/packages/apps/pix/lib/pix-create-transaction.js.map +1 -0
  854. package/packages/apps/pix/lib/pix-list-payments.d.ts +13 -0
  855. package/packages/apps/pix/lib/pix-list-payments.js +102 -0
  856. package/packages/apps/pix/lib/pix-list-payments.js.map +1 -0
  857. package/packages/apps/pix/lib/pix-webhook.d.ts +5 -0
  858. package/packages/apps/pix/lib/pix-webhook.js +146 -0
  859. package/packages/apps/pix/lib/pix-webhook.js.map +1 -0
  860. package/packages/apps/pix/lib/pix.d.ts +81 -0
  861. package/packages/apps/pix/lib/pix.js +12 -0
  862. package/packages/apps/pix/lib/pix.js.map +1 -0
  863. package/packages/apps/pix/package.json +36 -0
  864. package/packages/apps/pix/src/functions-lib/get-certificate.ts +24 -0
  865. package/packages/apps/pix/src/functions-lib/pix-auth/construtor.ts +87 -0
  866. package/packages/apps/pix/src/functions-lib/pix-auth/create-axios.ts +24 -0
  867. package/packages/apps/pix/src/functions-lib/pix-auth/oauth.ts +50 -0
  868. package/packages/apps/pix/src/index.ts +2 -0
  869. package/packages/apps/pix/src/pix-create-transaction.ts +285 -0
  870. package/packages/apps/pix/src/pix-list-payments.ts +120 -0
  871. package/packages/apps/pix/src/pix-webhook.ts +171 -0
  872. package/packages/apps/pix/src/pix.ts +12 -0
  873. package/packages/apps/pix/tsconfig.json +6 -0
  874. package/packages/apps/pix/webhook.js +1 -0
  875. package/packages/apps/tiny-erp/CHANGELOG.md +1 -0
  876. package/packages/apps/tiny-erp/README.md +1 -0
  877. package/packages/apps/tiny-erp/lib/event-to-tiny.js +115 -0
  878. package/packages/apps/tiny-erp/lib/event-to-tiny.js.map +1 -0
  879. package/packages/apps/tiny-erp/lib/index.js +2 -0
  880. package/packages/apps/tiny-erp/lib/index.js.map +1 -0
  881. package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js +79 -0
  882. package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js.map +1 -0
  883. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js +106 -0
  884. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js.map +1 -0
  885. package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js +58 -0
  886. package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js.map +1 -0
  887. package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js +7 -0
  888. package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js.map +1 -0
  889. package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js +99 -0
  890. package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js.map +1 -0
  891. package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js +169 -0
  892. package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js.map +1 -0
  893. package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js +54 -0
  894. package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js.map +1 -0
  895. package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js +197 -0
  896. package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js.map +1 -0
  897. package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js +279 -0
  898. package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js.map +1 -0
  899. package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js +146 -0
  900. package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js.map +1 -0
  901. package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js +34 -0
  902. package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js.map +1 -0
  903. package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js +39 -0
  904. package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js.map +1 -0
  905. package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js +47 -0
  906. package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js.map +1 -0
  907. package/packages/apps/tiny-erp/lib/tiny-erp.js +19 -0
  908. package/packages/apps/tiny-erp/lib/tiny-erp.js.map +1 -0
  909. package/packages/apps/tiny-erp/lib/tiny-webhook.js +95 -0
  910. package/packages/apps/tiny-erp/lib/tiny-webhook.js.map +1 -0
  911. package/packages/apps/tiny-erp/package.json +34 -0
  912. package/packages/apps/tiny-erp/src/event-to-tiny.ts +134 -0
  913. package/packages/apps/tiny-erp/src/index.ts +1 -0
  914. package/packages/apps/tiny-erp/src/integration/after-tiny-queue.ts +80 -0
  915. package/packages/apps/tiny-erp/src/integration/export-order-to-tiny.ts +113 -0
  916. package/packages/apps/tiny-erp/src/integration/export-product-to-tiny.ts +60 -0
  917. package/packages/apps/tiny-erp/src/integration/helpers/format-tiny-date.ts +6 -0
  918. package/packages/apps/tiny-erp/src/integration/import-order-from-tiny.ts +109 -0
  919. package/packages/apps/tiny-erp/src/integration/import-product-from-tiny.ts +176 -0
  920. package/packages/apps/tiny-erp/src/integration/parsers/order-from-tiny.ts +61 -0
  921. package/packages/apps/tiny-erp/src/integration/parsers/order-to-tiny.ts +212 -0
  922. package/packages/apps/tiny-erp/src/integration/parsers/product-from-tiny.ts +318 -0
  923. package/packages/apps/tiny-erp/src/integration/parsers/product-to-tiny.ts +158 -0
  924. package/packages/apps/tiny-erp/src/integration/parsers/status-from-tiny.ts +35 -0
  925. package/packages/apps/tiny-erp/src/integration/parsers/status-to-tiny.ts +42 -0
  926. package/packages/apps/tiny-erp/src/integration/post-tiny-erp.ts +52 -0
  927. package/packages/apps/tiny-erp/src/tiny-erp.ts +26 -0
  928. package/packages/apps/tiny-erp/src/tiny-webhook.ts +103 -0
  929. package/packages/apps/tiny-erp/tsconfig.json +3 -0
  930. package/packages/apps/webhooks/CHANGELOG.md +1 -0
  931. package/packages/apps/webhooks/README.md +1 -0
  932. package/packages/apps/webhooks/lib/app-webhooks.js +9 -0
  933. package/packages/apps/webhooks/lib/app-webhooks.js.map +1 -0
  934. package/packages/apps/webhooks/lib/events-to-webhooks-app.js +131 -0
  935. package/packages/apps/webhooks/lib/events-to-webhooks-app.js.map +1 -0
  936. package/packages/apps/webhooks/lib/index.js +2 -0
  937. package/packages/apps/webhooks/lib/index.js.map +1 -0
  938. package/packages/apps/webhooks/package.json +32 -0
  939. package/packages/apps/webhooks/src/app-webhooks.ts +14 -0
  940. package/packages/apps/webhooks/src/events-to-webhooks-app.ts +188 -0
  941. package/packages/apps/webhooks/src/index.ts +1 -0
  942. package/packages/apps/webhooks/tsconfig.json +3 -0
  943. package/packages/cli/CHANGELOG.md +1 -0
  944. package/packages/cli/README.md +1 -0
  945. package/packages/cli/bin/run.mjs +4 -0
  946. package/packages/cli/config/firebase.json +172 -0
  947. package/packages/cli/config/firestore.indexes.json +4 -0
  948. package/packages/cli/config/firestore.rules +11 -0
  949. package/packages/cli/config/remoteconfig.template.json +1 -0
  950. package/packages/cli/config/storage.rules +15 -0
  951. package/packages/cli/create-auth.js +5 -0
  952. package/packages/cli/lib/build.js +50 -0
  953. package/packages/cli/lib/cli.js +181 -0
  954. package/packages/cli/lib/create-auth.js +46 -0
  955. package/packages/cli/lib/login.js +38 -0
  956. package/packages/cli/lib/setup-gcloud.js +194 -0
  957. package/packages/cli/lib/setup-gh.js +59 -0
  958. package/packages/cli/package.json +36 -0
  959. package/packages/cli/src/build.ts +56 -0
  960. package/packages/cli/src/cli.ts +222 -0
  961. package/packages/cli/src/create-auth.ts +51 -0
  962. package/packages/cli/src/login.ts +45 -0
  963. package/packages/cli/src/setup-gcloud.ts +228 -0
  964. package/packages/cli/src/setup-gh.ts +83 -0
  965. package/packages/cli/tsconfig.json +6 -0
  966. package/packages/config/CHANGELOG.md +1 -0
  967. package/packages/config/README.md +1 -0
  968. package/packages/config/lib/config.d.ts +15 -0
  969. package/packages/config/lib/config.js +47 -0
  970. package/packages/config/lib/config.js.map +1 -0
  971. package/packages/config/lib/defaults.d.ts +4 -0
  972. package/packages/config/lib/defaults.js +8 -0
  973. package/packages/config/lib/defaults.js.map +1 -0
  974. package/packages/config/lib/env.d.ts +11 -0
  975. package/packages/config/lib/env.js +31 -0
  976. package/packages/config/lib/env.js.map +1 -0
  977. package/packages/config/package.json +33 -0
  978. package/packages/config/src/config.ts +65 -0
  979. package/packages/config/src/defaults.ts +7 -0
  980. package/packages/config/src/env.ts +46 -0
  981. package/packages/config/tsconfig.json +6 -0
  982. package/packages/emails/CHANGELOG.md +1 -0
  983. package/packages/emails/README.md +1 -0
  984. package/packages/emails/lib/index.d.ts +56 -0
  985. package/packages/emails/lib/index.js +83 -0
  986. package/packages/emails/lib/index.js.map +1 -0
  987. package/packages/emails/lib/parse-template-to-html.d.ts +3 -0
  988. package/packages/emails/lib/parse-template-to-html.js +16 -0
  989. package/packages/emails/lib/parse-template-to-html.js.map +1 -0
  990. package/packages/emails/lib/providers/sendgrid/index.d.ts +8 -0
  991. package/packages/emails/lib/providers/sendgrid/index.js +54 -0
  992. package/packages/emails/lib/providers/sendgrid/index.js.map +1 -0
  993. package/packages/emails/lib/providers/sendgrid/parse-to-data.d.ts +5 -0
  994. package/packages/emails/lib/providers/sendgrid/parse-to-data.js +55 -0
  995. package/packages/emails/lib/providers/sendgrid/parse-to-data.js.map +1 -0
  996. package/packages/emails/lib/providers/smtp/index.d.ts +13 -0
  997. package/packages/emails/lib/providers/smtp/index.js +79 -0
  998. package/packages/emails/lib/providers/smtp/index.js.map +1 -0
  999. package/packages/emails/package.json +35 -0
  1000. package/packages/emails/src/index.ts +144 -0
  1001. package/packages/emails/src/parse-template-to-html.ts +19 -0
  1002. package/packages/emails/src/providers/sendgrid/index.ts +78 -0
  1003. package/packages/emails/src/providers/sendgrid/parse-to-data.ts +92 -0
  1004. package/packages/emails/src/providers/smtp/index.ts +115 -0
  1005. package/packages/emails/tests/assets/customer.json +68 -0
  1006. package/packages/emails/tests/assets/order.json +190 -0
  1007. package/packages/emails/tests/assets/store.json +25 -0
  1008. package/packages/emails/tests/ex.config-sendgrid.json +19 -0
  1009. package/packages/emails/tests/ex.config-smtp.json +21 -0
  1010. package/packages/emails/tests/sendgrid.test.ts +155 -0
  1011. package/packages/emails/tests/smtp.test.ts +146 -0
  1012. package/packages/emails/tests/templates/new-order.ejs +37 -0
  1013. package/packages/emails/tsconfig.json +6 -0
  1014. package/packages/emails/types/index.d.ts +84 -0
  1015. package/packages/emails/types/sendgrid.d.ts +28 -0
  1016. package/packages/eslint/CHANGELOG.md +1 -0
  1017. package/packages/eslint/README.md +1 -0
  1018. package/packages/eslint/base.eslintrc.cjs +131 -0
  1019. package/packages/eslint/package.json +30 -0
  1020. package/packages/eslint/storefront.eslintrc.cjs +39 -0
  1021. package/packages/events/CHANGELOG.md +1 -0
  1022. package/packages/events/README.md +1 -0
  1023. package/packages/events/firebase.js +1 -0
  1024. package/packages/events/lib/firebase.js +37 -0
  1025. package/packages/events/lib/firebase.js.map +1 -0
  1026. package/packages/events/lib/index.js +2 -0
  1027. package/packages/events/lib/index.js.map +1 -0
  1028. package/packages/events/package.json +54 -0
  1029. package/packages/events/src/firebase.ts +37 -0
  1030. package/packages/events/src/index.ts +1 -0
  1031. package/packages/events/tsconfig.json +3 -0
  1032. package/packages/feeds/CHANGELOG.md +1 -0
  1033. package/packages/feeds/README.md +1 -0
  1034. package/packages/feeds/firebase.js +1 -0
  1035. package/packages/feeds/lib/firebase/serve-feeds.js +9 -0
  1036. package/packages/feeds/lib/firebase/serve-feeds.js.map +1 -0
  1037. package/packages/feeds/lib/firebase.js +14 -0
  1038. package/packages/feeds/lib/firebase.js.map +1 -0
  1039. package/packages/feeds/lib/index.js +1 -0
  1040. package/packages/feeds/lib/index.js.map +1 -0
  1041. package/packages/feeds/package.json +33 -0
  1042. package/packages/feeds/src/firebase/serve-feeds.ts +10 -0
  1043. package/packages/feeds/src/firebase.ts +15 -0
  1044. package/packages/feeds/src/index.ts +0 -0
  1045. package/packages/feeds/tsconfig.json +3 -0
  1046. package/packages/firebase/CHANGELOG.md +1 -0
  1047. package/packages/firebase/README.md +1 -0
  1048. package/packages/firebase/config.js +5 -0
  1049. package/packages/firebase/lib/config.d.ts +113 -0
  1050. package/packages/firebase/lib/config.js +169 -0
  1051. package/packages/firebase/lib/config.js.map +1 -0
  1052. package/packages/firebase/lib/const.d.ts +2 -0
  1053. package/packages/firebase/lib/const.js +6 -0
  1054. package/packages/firebase/lib/const.js.map +1 -0
  1055. package/packages/firebase/lib/env.d.ts +3 -0
  1056. package/packages/firebase/lib/env.js +4 -0
  1057. package/packages/firebase/lib/env.js.map +1 -0
  1058. package/packages/firebase/lib/handlers/check-store-events.d.ts +6 -0
  1059. package/packages/firebase/lib/handlers/check-store-events.js +190 -0
  1060. package/packages/firebase/lib/handlers/check-store-events.js.map +1 -0
  1061. package/packages/firebase/lib/helpers/firestore.d.ts +2 -0
  1062. package/packages/firebase/lib/helpers/firestore.js +24 -0
  1063. package/packages/firebase/lib/helpers/firestore.js.map +1 -0
  1064. package/packages/firebase/lib/helpers/pubsub.d.ts +9 -0
  1065. package/packages/firebase/lib/helpers/pubsub.js +32 -0
  1066. package/packages/firebase/lib/helpers/pubsub.js.map +1 -0
  1067. package/packages/firebase/lib/helpers/update-app-data.d.ts +9 -0
  1068. package/packages/firebase/lib/helpers/update-app-data.js +45 -0
  1069. package/packages/firebase/lib/helpers/update-app-data.js.map +1 -0
  1070. package/packages/firebase/lib/index.d.ts +2 -0
  1071. package/packages/firebase/lib/index.js +20 -0
  1072. package/packages/firebase/lib/index.js.map +1 -0
  1073. package/packages/firebase/lib/init.d.ts +1 -0
  1074. package/packages/firebase/lib/init.js +6 -0
  1075. package/packages/firebase/lib/init.js.map +1 -0
  1076. package/packages/firebase/package.json +44 -0
  1077. package/packages/firebase/src/config.ts +186 -0
  1078. package/packages/firebase/src/const.ts +5 -0
  1079. package/packages/firebase/src/env.ts +5 -0
  1080. package/packages/firebase/src/handlers/check-store-events.ts +223 -0
  1081. package/packages/firebase/src/helpers/firestore.ts +31 -0
  1082. package/packages/firebase/src/helpers/pubsub.ts +52 -0
  1083. package/packages/firebase/src/helpers/update-app-data.ts +49 -0
  1084. package/packages/firebase/src/index.ts +20 -0
  1085. package/packages/firebase/src/init.ts +5 -0
  1086. package/packages/firebase/tsconfig.json +6 -0
  1087. package/packages/i18n/CHANGELOG.md +1 -0
  1088. package/packages/i18n/README.md +1 -0
  1089. package/packages/i18n/lib/all.d.ts +8 -0
  1090. package/packages/i18n/lib/all.js +10 -0
  1091. package/packages/i18n/lib/all.js.map +1 -0
  1092. package/packages/i18n/lib/dirname.d.ts +2 -0
  1093. package/packages/i18n/lib/dirname.js +4 -0
  1094. package/packages/i18n/lib/dirname.js.map +1 -0
  1095. package/packages/i18n/lib/en_us/i19a.txt +1 -0
  1096. package/packages/i18n/lib/en_us/i19about.txt +1 -0
  1097. package/packages/i18n/lib/en_us/i19aboutCvvMsg.txt +1 -0
  1098. package/packages/i18n/lib/en_us/i19aboveOf.txt +1 -0
  1099. package/packages/i18n/lib/en_us/i19acceptAttachedFile.txt +1 -0
  1100. package/packages/i18n/lib/en_us/i19acceptCustomOptionByCustomer.txt +1 -0
  1101. package/packages/i18n/lib/en_us/i19accessMyAccount.txt +1 -0
  1102. package/packages/i18n/lib/en_us/i19activate.txt +1 -0
  1103. package/packages/i18n/lib/en_us/i19active.txt +1 -0
  1104. package/packages/i18n/lib/en_us/i19adRelevance.txt +1 -0
  1105. package/packages/i18n/lib/en_us/i19adType.txt +1 -0
  1106. package/packages/i18n/lib/en_us/i19add$1ToEarn.txt +1 -0
  1107. package/packages/i18n/lib/en_us/i19add.txt +1 -0
  1108. package/packages/i18n/lib/en_us/i19addApp.txt +1 -0
  1109. package/packages/i18n/lib/en_us/i19addCart.txt +1 -0
  1110. package/packages/i18n/lib/en_us/i19addClient.txt +1 -0
  1111. package/packages/i18n/lib/en_us/i19addDiscountCoupon.txt +1 -0
  1112. package/packages/i18n/lib/en_us/i19addGiftList.txt +1 -0
  1113. package/packages/i18n/lib/en_us/i19addGrid.txt +1 -0
  1114. package/packages/i18n/lib/en_us/i19addMoreProducts.txt +1 -0
  1115. package/packages/i18n/lib/en_us/i19addPreference.txt +1 -0
  1116. package/packages/i18n/lib/en_us/i19addProduct.txt +1 -0
  1117. package/packages/i18n/lib/en_us/i19addToCart.txt +1 -0
  1118. package/packages/i18n/lib/en_us/i19addToFavorites.txt +1 -0
  1119. package/packages/i18n/lib/en_us/i19addToPrice.txt +1 -0
  1120. package/packages/i18n/lib/en_us/i19addVariants.txt +1 -0
  1121. package/packages/i18n/lib/en_us/i19additional.txt +1 -0
  1122. package/packages/i18n/lib/en_us/i19additionalComments.txt +1 -0
  1123. package/packages/i18n/lib/en_us/i19additionalCost.txt +1 -0
  1124. package/packages/i18n/lib/en_us/i19additionalCostOption.txt +1 -0
  1125. package/packages/i18n/lib/en_us/i19additionalInfo.txt +1 -0
  1126. package/packages/i18n/lib/en_us/i19additionalNotes.txt +1 -0
  1127. package/packages/i18n/lib/en_us/i19address.txt +1 -0
  1128. package/packages/i18n/lib/en_us/i19addresses.txt +1 -0
  1129. package/packages/i18n/lib/en_us/i19addressesName.txt +1 -0
  1130. package/packages/i18n/lib/en_us/i19adminSettings.txt +1 -0
  1131. package/packages/i18n/lib/en_us/i19advanced.txt +1 -0
  1132. package/packages/i18n/lib/en_us/i19adwords.txt +1 -0
  1133. package/packages/i18n/lib/en_us/i19adwordsRemarketing.txt +1 -0
  1134. package/packages/i18n/lib/en_us/i19adwordsRemarketingCode.txt +1 -0
  1135. package/packages/i18n/lib/en_us/i19affiliateCoede.txt +1 -0
  1136. package/packages/i18n/lib/en_us/i19afterApproval.txt +1 -0
  1137. package/packages/i18n/lib/en_us/i19afterPayment.txt +1 -0
  1138. package/packages/i18n/lib/en_us/i19all.txt +1 -0
  1139. package/packages/i18n/lib/en_us/i19allCategories.txt +1 -0
  1140. package/packages/i18n/lib/en_us/i19allOptions.txt +1 -0
  1141. package/packages/i18n/lib/en_us/i19allProducts.txt +1 -0
  1142. package/packages/i18n/lib/en_us/i19alt.txt +1 -0
  1143. package/packages/i18n/lib/en_us/i19amount.txt +1 -0
  1144. package/packages/i18n/lib/en_us/i19another.txt +1 -0
  1145. package/packages/i18n/lib/en_us/i19anyPaymentMethodMsg.txt +1 -0
  1146. package/packages/i18n/lib/en_us/i19anyPrice.txt +1 -0
  1147. package/packages/i18n/lib/en_us/i19api.txt +1 -0
  1148. package/packages/i18n/lib/en_us/i19app.txt +1 -0
  1149. package/packages/i18n/lib/en_us/i19appAlreadyInstalledMsg.txt +1 -0
  1150. package/packages/i18n/lib/en_us/i19appConfiguration.txt +1 -0
  1151. package/packages/i18n/lib/en_us/i19appDevelopers.txt +1 -0
  1152. package/packages/i18n/lib/en_us/i19application.txt +1 -0
  1153. package/packages/i18n/lib/en_us/i19applications.txt +1 -0
  1154. package/packages/i18n/lib/en_us/i19applyDiscount.txt +1 -0
  1155. package/packages/i18n/lib/en_us/i19applyFilters.txt +1 -0
  1156. package/packages/i18n/lib/en_us/i19apps.txt +1 -0
  1157. package/packages/i18n/lib/en_us/i19areYouWantToDeleteAppQn.txt +1 -0
  1158. package/packages/i18n/lib/en_us/i19asOf.txt +1 -0
  1159. package/packages/i18n/lib/en_us/i19associateImage.txt +1 -0
  1160. package/packages/i18n/lib/en_us/i19associateImages.txt +1 -0
  1161. package/packages/i18n/lib/en_us/i19at.txt +1 -0
  1162. package/packages/i18n/lib/en_us/i19atSight.txt +1 -0
  1163. package/packages/i18n/lib/en_us/i19attachment.txt +1 -0
  1164. package/packages/i18n/lib/en_us/i19attention.txt +1 -0
  1165. package/packages/i18n/lib/en_us/i19authentication.txt +1 -0
  1166. package/packages/i18n/lib/en_us/i19author.txt +1 -0
  1167. package/packages/i18n/lib/en_us/i19authorizedStores.txt +1 -0
  1168. package/packages/i18n/lib/en_us/i19automaticallyTrackInventory.txt +1 -0
  1169. package/packages/i18n/lib/en_us/i19available.txt +1 -0
  1170. package/packages/i18n/lib/en_us/i19availableApps.txt +1 -0
  1171. package/packages/i18n/lib/en_us/i19availablePurchase.txt +1 -0
  1172. package/packages/i18n/lib/en_us/i19average.txt +1 -0
  1173. package/packages/i18n/lib/en_us/i19averageTicket.txt +1 -0
  1174. package/packages/i18n/lib/en_us/i19back.txt +1 -0
  1175. package/packages/i18n/lib/en_us/i19backToCart.txt +1 -0
  1176. package/packages/i18n/lib/en_us/i19backToProduct.txt +1 -0
  1177. package/packages/i18n/lib/en_us/i19bag.txt +1 -0
  1178. package/packages/i18n/lib/en_us/i19balanceOrPoints.txt +1 -0
  1179. package/packages/i18n/lib/en_us/i19banner.txt +1 -0
  1180. package/packages/i18n/lib/en_us/i19banners.txt +1 -0
  1181. package/packages/i18n/lib/en_us/i19bannersCollection.txt +1 -0
  1182. package/packages/i18n/lib/en_us/i19barcodes.txt +1 -0
  1183. package/packages/i18n/lib/en_us/i19basePrice.txt +1 -0
  1184. package/packages/i18n/lib/en_us/i19bearersDocument.txt +1 -0
  1185. package/packages/i18n/lib/en_us/i19best.txt +1 -0
  1186. package/packages/i18n/lib/en_us/i19bestSellers.txt +1 -0
  1187. package/packages/i18n/lib/en_us/i19biannual.txt +1 -0
  1188. package/packages/i18n/lib/en_us/i19billingAddress.txt +1 -0
  1189. package/packages/i18n/lib/en_us/i19bimonthly.txt +1 -0
  1190. package/packages/i18n/lib/en_us/i19birthdate.txt +1 -0
  1191. package/packages/i18n/lib/en_us/i19biweekly.txt +1 -0
  1192. package/packages/i18n/lib/en_us/i19block.txt +1 -0
  1193. package/packages/i18n/lib/en_us/i19borough.txt +1 -0
  1194. package/packages/i18n/lib/en_us/i19brand.txt +1 -0
  1195. package/packages/i18n/lib/en_us/i19brandBanners.txt +1 -0
  1196. package/packages/i18n/lib/en_us/i19brandFound.txt +1 -0
  1197. package/packages/i18n/lib/en_us/i19brandName.txt +1 -0
  1198. package/packages/i18n/lib/en_us/i19brands.txt +1 -0
  1199. package/packages/i18n/lib/en_us/i19brandsFound.txt +1 -0
  1200. package/packages/i18n/lib/en_us/i19brazil.txt +1 -0
  1201. package/packages/i18n/lib/en_us/i19browserIp.txt +1 -0
  1202. package/packages/i18n/lib/en_us/i19budgetOnly.txt +1 -0
  1203. package/packages/i18n/lib/en_us/i19buy.txt +1 -0
  1204. package/packages/i18n/lib/en_us/i19buyAgain.txt +1 -0
  1205. package/packages/i18n/lib/en_us/i19buyAlsoMsg.txt +1 -0
  1206. package/packages/i18n/lib/en_us/i19buyKit.txt +1 -0
  1207. package/packages/i18n/lib/en_us/i19buyNow.txt +1 -0
  1208. package/packages/i18n/lib/en_us/i19buyOnWhatsApp.txt +1 -0
  1209. package/packages/i18n/lib/en_us/i19buyTogether.txt +1 -0
  1210. package/packages/i18n/lib/en_us/i19buyTogetherWith.txt +1 -0
  1211. package/packages/i18n/lib/en_us/i19buyWith.txt +1 -0
  1212. package/packages/i18n/lib/en_us/i19buyer.txt +1 -0
  1213. package/packages/i18n/lib/en_us/i19buyers.txt +1 -0
  1214. package/packages/i18n/lib/en_us/i19buyersProfile.txt +1 -0
  1215. package/packages/i18n/lib/en_us/i19by.txt +1 -0
  1216. package/packages/i18n/lib/en_us/i19calculateShipping.txt +1 -0
  1217. package/packages/i18n/lib/en_us/i19callTo.txt +1 -0
  1218. package/packages/i18n/lib/en_us/i19callback.txt +1 -0
  1219. package/packages/i18n/lib/en_us/i19campaign.txt +1 -0
  1220. package/packages/i18n/lib/en_us/i19campaignAppliedMsg.txt +1 -0
  1221. package/packages/i18n/lib/en_us/i19cancel.txt +1 -0
  1222. package/packages/i18n/lib/en_us/i19cancelOrder.txt +1 -0
  1223. package/packages/i18n/lib/en_us/i19cancelReason.txt +1 -0
  1224. package/packages/i18n/lib/en_us/i19cancelled.txt +1 -0
  1225. package/packages/i18n/lib/en_us/i19cancelledAt.txt +1 -0
  1226. package/packages/i18n/lib/en_us/i19cardNumber.txt +1 -0
  1227. package/packages/i18n/lib/en_us/i19cartConfirmed.txt +1 -0
  1228. package/packages/i18n/lib/en_us/i19cartDetails.txt +1 -0
  1229. package/packages/i18n/lib/en_us/i19cartItems.txt +1 -0
  1230. package/packages/i18n/lib/en_us/i19cartReview.txt +1 -0
  1231. package/packages/i18n/lib/en_us/i19cartUpdated.txt +1 -0
  1232. package/packages/i18n/lib/en_us/i19categories.txt +1 -0
  1233. package/packages/i18n/lib/en_us/i19category.txt +1 -0
  1234. package/packages/i18n/lib/en_us/i19categoryBanners.txt +1 -0
  1235. package/packages/i18n/lib/en_us/i19categoryFound.txt +1 -0
  1236. package/packages/i18n/lib/en_us/i19categoryName.txt +1 -0
  1237. package/packages/i18n/lib/en_us/i19cellphone.txt +1 -0
  1238. package/packages/i18n/lib/en_us/i19changePaymentMethod.txt +1 -0
  1239. package/packages/i18n/lib/en_us/i19changeShippingMethod.txt +1 -0
  1240. package/packages/i18n/lib/en_us/i19channel.txt +1 -0
  1241. package/packages/i18n/lib/en_us/i19channelId.txt +1 -0
  1242. package/packages/i18n/lib/en_us/i19channelType.txt +1 -0
  1243. package/packages/i18n/lib/en_us/i19channels.txt +1 -0
  1244. package/packages/i18n/lib/en_us/i19checkout.txt +1 -0
  1245. package/packages/i18n/lib/en_us/i19checkoutDone.txt +1 -0
  1246. package/packages/i18n/lib/en_us/i19checkoutEnabled.txt +1 -0
  1247. package/packages/i18n/lib/en_us/i19checkoutLink.txt +1 -0
  1248. package/packages/i18n/lib/en_us/i19checkoutMobileLink.txt +1 -0
  1249. package/packages/i18n/lib/en_us/i19checkoutVisitor.txt +1 -0
  1250. package/packages/i18n/lib/en_us/i19checkoutVisitorMsg.txt +1 -0
  1251. package/packages/i18n/lib/en_us/i19chooseProductDetailsToBuy.txt +1 -0
  1252. package/packages/i18n/lib/en_us/i19chooseSubscriptionPeriod.txt +1 -0
  1253. package/packages/i18n/lib/en_us/i19city.txt +1 -0
  1254. package/packages/i18n/lib/en_us/i19clear.txt +1 -0
  1255. package/packages/i18n/lib/en_us/i19clearFilters.txt +1 -0
  1256. package/packages/i18n/lib/en_us/i19click.txt +1 -0
  1257. package/packages/i18n/lib/en_us/i19clickHere.txt +1 -0
  1258. package/packages/i18n/lib/en_us/i19close.txt +1 -0
  1259. package/packages/i18n/lib/en_us/i19closeFilters.txt +1 -0
  1260. package/packages/i18n/lib/en_us/i19closedAt.txt +1 -0
  1261. package/packages/i18n/lib/en_us/i19code.txt +1 -0
  1262. package/packages/i18n/lib/en_us/i19codeCopied.txt +1 -0
  1263. package/packages/i18n/lib/en_us/i19collection.txt +1 -0
  1264. package/packages/i18n/lib/en_us/i19collectionBanners.txt +1 -0
  1265. package/packages/i18n/lib/en_us/i19collectionItems.txt +1 -0
  1266. package/packages/i18n/lib/en_us/i19collectionName.txt +1 -0
  1267. package/packages/i18n/lib/en_us/i19collections.txt +1 -0
  1268. package/packages/i18n/lib/en_us/i19color.txt +1 -0
  1269. package/packages/i18n/lib/en_us/i19colors.txt +1 -0
  1270. package/packages/i18n/lib/en_us/i19community.txt +1 -0
  1271. package/packages/i18n/lib/en_us/i19companyRegistration.txt +1 -0
  1272. package/packages/i18n/lib/en_us/i19compareAtPrice.txt +1 -0
  1273. package/packages/i18n/lib/en_us/i19compareProducts.txt +1 -0
  1274. package/packages/i18n/lib/en_us/i19comparedPreviousPeriodMsg.txt +1 -0
  1275. package/packages/i18n/lib/en_us/i19complement.txt +1 -0
  1276. package/packages/i18n/lib/en_us/i19complementInformation.txt +1 -0
  1277. package/packages/i18n/lib/en_us/i19configuration.txt +1 -0
  1278. package/packages/i18n/lib/en_us/i19confirmPassword.txt +1 -0
  1279. package/packages/i18n/lib/en_us/i19confirmPurchase.txt +1 -0
  1280. package/packages/i18n/lib/en_us/i19connectionErrorMsg.txt +1 -0
  1281. package/packages/i18n/lib/en_us/i19connectionErrorProductMsg.txt +1 -0
  1282. package/packages/i18n/lib/en_us/i19contactPhone.txt +1 -0
  1283. package/packages/i18n/lib/en_us/i19contactUsMsg.txt +1 -0
  1284. package/packages/i18n/lib/en_us/i19content.txt +1 -0
  1285. package/packages/i18n/lib/en_us/i19continue.txt +1 -0
  1286. package/packages/i18n/lib/en_us/i19continueLoginOnPopup.txt +1 -0
  1287. package/packages/i18n/lib/en_us/i19continueShopping.txt +1 -0
  1288. package/packages/i18n/lib/en_us/i19control.txt +1 -0
  1289. package/packages/i18n/lib/en_us/i19copyCode.txt +1 -0
  1290. package/packages/i18n/lib/en_us/i19copyErrorMsg.txt +1 -0
  1291. package/packages/i18n/lib/en_us/i19copyright.txt +1 -0
  1292. package/packages/i18n/lib/en_us/i19corporateName.txt +1 -0
  1293. package/packages/i18n/lib/en_us/i19costDeclaredValue.txt +1 -0
  1294. package/packages/i18n/lib/en_us/i19costPrice.txt +1 -0
  1295. package/packages/i18n/lib/en_us/i19countryCode.txt +1 -0
  1296. package/packages/i18n/lib/en_us/i19couponAppliedMsg.txt +1 -0
  1297. package/packages/i18n/lib/en_us/i19createAnAccount.txt +1 -0
  1298. package/packages/i18n/lib/en_us/i19createTransaction.txt +1 -0
  1299. package/packages/i18n/lib/en_us/i19creation.txt +1 -0
  1300. package/packages/i18n/lib/en_us/i19credit.txt +1 -0
  1301. package/packages/i18n/lib/en_us/i19creditCard.txt +1 -0
  1302. package/packages/i18n/lib/en_us/i19creditCardBin.txt +1 -0
  1303. package/packages/i18n/lib/en_us/i19creditCardCompany.txt +1 -0
  1304. package/packages/i18n/lib/en_us/i19creditCardHolderName.txt +1 -0
  1305. package/packages/i18n/lib/en_us/i19creditCardLastDigits.txt +1 -0
  1306. package/packages/i18n/lib/en_us/i19creditorFees.txt +1 -0
  1307. package/packages/i18n/lib/en_us/i19creditorFeesIntermediator.txt +1 -0
  1308. package/packages/i18n/lib/en_us/i19creditorFeesOperational.txt +1 -0
  1309. package/packages/i18n/lib/en_us/i19currencyId.txt +1 -0
  1310. package/packages/i18n/lib/en_us/i19currencySymbol.txt +1 -0
  1311. package/packages/i18n/lib/en_us/i19custom.txt +1 -0
  1312. package/packages/i18n/lib/en_us/i19customFields.txt +1 -0
  1313. package/packages/i18n/lib/en_us/i19customPayment.txt +1 -0
  1314. package/packages/i18n/lib/en_us/i19customValue.txt +1 -0
  1315. package/packages/i18n/lib/en_us/i19customer.txt +1 -0
  1316. package/packages/i18n/lib/en_us/i19customerNotified.txt +1 -0
  1317. package/packages/i18n/lib/en_us/i19customerService.txt +1 -0
  1318. package/packages/i18n/lib/en_us/i19customizationAddToPrice.txt +1 -0
  1319. package/packages/i18n/lib/en_us/i19customizationAttachment.txt +1 -0
  1320. package/packages/i18n/lib/en_us/i19customizationChosen.txt +1 -0
  1321. package/packages/i18n/lib/en_us/i19customizations.txt +1 -0
  1322. package/packages/i18n/lib/en_us/i19dailyAverage.txt +1 -0
  1323. package/packages/i18n/lib/en_us/i19danger.txt +1 -0
  1324. package/packages/i18n/lib/en_us/i19dashboard.txt +1 -0
  1325. package/packages/i18n/lib/en_us/i19dateTime.txt +1 -0
  1326. package/packages/i18n/lib/en_us/i19day.txt +1 -0
  1327. package/packages/i18n/lib/en_us/i19days.txt +1 -0
  1328. package/packages/i18n/lib/en_us/i19declare.txt +1 -0
  1329. package/packages/i18n/lib/en_us/i19declaredValue.txt +1 -0
  1330. package/packages/i18n/lib/en_us/i19delete.txt +1 -0
  1331. package/packages/i18n/lib/en_us/i19deleteAll.txt +1 -0
  1332. package/packages/i18n/lib/en_us/i19delivery.txt +1 -0
  1333. package/packages/i18n/lib/en_us/i19deliveryCostOwnHandMsg.txt +1 -0
  1334. package/packages/i18n/lib/en_us/i19deliveryInMsg.txt +1 -0
  1335. package/packages/i18n/lib/en_us/i19deliveryReceipt.txt +1 -0
  1336. package/packages/i18n/lib/en_us/i19deliveryReceiptMsg.txt +1 -0
  1337. package/packages/i18n/lib/en_us/i19deliveryTime.txt +1 -0
  1338. package/packages/i18n/lib/en_us/i19deliveryTrack.txt +1 -0
  1339. package/packages/i18n/lib/en_us/i19deliveryWithOwnHandMsg.txt +1 -0
  1340. package/packages/i18n/lib/en_us/i19description.txt +1 -0
  1341. package/packages/i18n/lib/en_us/i19desktop.txt +1 -0
  1342. package/packages/i18n/lib/en_us/i19details.txt +1 -0
  1343. package/packages/i18n/lib/en_us/i19didYouMean.txt +1 -0
  1344. package/packages/i18n/lib/en_us/i19digits.txt +1 -0
  1345. package/packages/i18n/lib/en_us/i19directLinkPayment.txt +1 -0
  1346. package/packages/i18n/lib/en_us/i19disable.txt +1 -0
  1347. package/packages/i18n/lib/en_us/i19discount.txt +1 -0
  1348. package/packages/i18n/lib/en_us/i19discountCoupon.txt +1 -0
  1349. package/packages/i18n/lib/en_us/i19discountOf.txt +1 -0
  1350. package/packages/i18n/lib/en_us/i19discountValueMsg.txt +1 -0
  1351. package/packages/i18n/lib/en_us/i19displayName.txt +1 -0
  1352. package/packages/i18n/lib/en_us/i19doPaymentMsg.txt +1 -0
  1353. package/packages/i18n/lib/en_us/i19doYouWantToDeleteAppQn.txt +1 -0
  1354. package/packages/i18n/lib/en_us/i19doYouWantToReinstallAppQn.txt +1 -0
  1355. package/packages/i18n/lib/en_us/i19docCountry.txt +1 -0
  1356. package/packages/i18n/lib/en_us/i19docNumber.txt +1 -0
  1357. package/packages/i18n/lib/en_us/i19docs.txt +1 -0
  1358. package/packages/i18n/lib/en_us/i19domain.txt +1 -0
  1359. package/packages/i18n/lib/en_us/i19download.txt +1 -0
  1360. package/packages/i18n/lib/en_us/i19downloadTable.txt +1 -0
  1361. package/packages/i18n/lib/en_us/i19edit.txt +1 -0
  1362. package/packages/i18n/lib/en_us/i19editAdditionalCost.txt +1 -0
  1363. package/packages/i18n/lib/en_us/i19editComments.txt +1 -0
  1364. package/packages/i18n/lib/en_us/i19editDispatchAndFulfillment.txt +1 -0
  1365. package/packages/i18n/lib/en_us/i19editFeatures.txt +1 -0
  1366. package/packages/i18n/lib/en_us/i19editFilters.txt +1 -0
  1367. package/packages/i18n/lib/en_us/i19editGtinMpn.txt +1 -0
  1368. package/packages/i18n/lib/en_us/i19editHtmlDescription.txt +1 -0
  1369. package/packages/i18n/lib/en_us/i19editObservationInfo.txt +1 -0
  1370. package/packages/i18n/lib/en_us/i19editPaymentDetails.txt +1 -0
  1371. package/packages/i18n/lib/en_us/i19editProductDimensions.txt +1 -0
  1372. package/packages/i18n/lib/en_us/i19editSeoFields.txt +1 -0
  1373. package/packages/i18n/lib/en_us/i19editStorefront.txt +1 -0
  1374. package/packages/i18n/lib/en_us/i19editVariation.txt +1 -0
  1375. package/packages/i18n/lib/en_us/i19editing.txt +1 -0
  1376. package/packages/i18n/lib/en_us/i19email.txt +1 -0
  1377. package/packages/i18n/lib/en_us/i19emailAddress.txt +1 -0
  1378. package/packages/i18n/lib/en_us/i19emailCartTextMsg.txt +1 -0
  1379. package/packages/i18n/lib/en_us/i19emailCartTitleMsg.txt +1 -0
  1380. package/packages/i18n/lib/en_us/i19emailDeliveredTextMsg.txt +1 -0
  1381. package/packages/i18n/lib/en_us/i19emailDeliveredTitleMsg.txt +1 -0
  1382. package/packages/i18n/lib/en_us/i19emailInfoMsg.txt +1 -0
  1383. package/packages/i18n/lib/en_us/i19emailMarketing.txt +1 -0
  1384. package/packages/i18n/lib/en_us/i19emailMarketingOptInMsg.txt +1 -0
  1385. package/packages/i18n/lib/en_us/i19emailProfileNotFound.txt +1 -0
  1386. package/packages/i18n/lib/en_us/i19emailShippedTextMsg.txt +1 -0
  1387. package/packages/i18n/lib/en_us/i19emailShippedTitleMsg.txt +1 -0
  1388. package/packages/i18n/lib/en_us/i19emailWasSentMsg.txt +1 -0
  1389. package/packages/i18n/lib/en_us/i19emails.txt +1 -0
  1390. package/packages/i18n/lib/en_us/i19empty.txt +1 -0
  1391. package/packages/i18n/lib/en_us/i19emptyCart.txt +1 -0
  1392. package/packages/i18n/lib/en_us/i19emptyCartMsg.txt +1 -0
  1393. package/packages/i18n/lib/en_us/i19enabled.txt +1 -0
  1394. package/packages/i18n/lib/en_us/i19end.txt +1 -0
  1395. package/packages/i18n/lib/en_us/i19endDate.txt +1 -0
  1396. package/packages/i18n/lib/en_us/i19endpoint.txt +1 -0
  1397. package/packages/i18n/lib/en_us/i19endsIn.txt +1 -0
  1398. package/packages/i18n/lib/en_us/i19enterEmailCodeMsg.txt +1 -0
  1399. package/packages/i18n/lib/en_us/i19enterWithPassword.txt +1 -0
  1400. package/packages/i18n/lib/en_us/i19enterYourDocNumber.txt +1 -0
  1401. package/packages/i18n/lib/en_us/i19enterYourDocNumberMsg.txt +1 -0
  1402. package/packages/i18n/lib/en_us/i19enterYourEmail.txt +1 -0
  1403. package/packages/i18n/lib/en_us/i19enterYourEmailMsg.txt +1 -0
  1404. package/packages/i18n/lib/en_us/i19erp.txt +1 -0
  1405. package/packages/i18n/lib/en_us/i19error.txt +1 -0
  1406. package/packages/i18n/lib/en_us/i19errorMsg.txt +1 -0
  1407. package/packages/i18n/lib/en_us/i19events.txt +1 -0
  1408. package/packages/i18n/lib/en_us/i19export.txt +1 -0
  1409. package/packages/i18n/lib/en_us/i19exportToCsv.txt +1 -0
  1410. package/packages/i18n/lib/en_us/i19external.txt +1 -0
  1411. package/packages/i18n/lib/en_us/i19extra.txt +1 -0
  1412. package/packages/i18n/lib/en_us/i19extraCost.txt +1 -0
  1413. package/packages/i18n/lib/en_us/i19familyName.txt +1 -0
  1414. package/packages/i18n/lib/en_us/i19favorites.txt +1 -0
  1415. package/packages/i18n/lib/en_us/i19featuredApps.txt +1 -0
  1416. package/packages/i18n/lib/en_us/i19female.txt +1 -0
  1417. package/packages/i18n/lib/en_us/i19field.txt +1 -0
  1418. package/packages/i18n/lib/en_us/i19files.txt +1 -0
  1419. package/packages/i18n/lib/en_us/i19filter.txt +1 -0
  1420. package/packages/i18n/lib/en_us/i19filterOut.txt +1 -0
  1421. package/packages/i18n/lib/en_us/i19filterProducts.txt +1 -0
  1422. package/packages/i18n/lib/en_us/i19filterResults.txt +1 -0
  1423. package/packages/i18n/lib/en_us/i19finalPrice.txt +1 -0
  1424. package/packages/i18n/lib/en_us/i19finalPriceWithAdditional.txt +1 -0
  1425. package/packages/i18n/lib/en_us/i19financialStatus.txt +1 -0
  1426. package/packages/i18n/lib/en_us/i19firstSteps.txt +1 -0
  1427. package/packages/i18n/lib/en_us/i19followingAddress.txt +1 -0
  1428. package/packages/i18n/lib/en_us/i19for.txt +1 -0
  1429. package/packages/i18n/lib/en_us/i19free.txt +1 -0
  1430. package/packages/i18n/lib/en_us/i19freeShipping.txt +1 -0
  1431. package/packages/i18n/lib/en_us/i19freeShippingFrom.txt +1 -0
  1432. package/packages/i18n/lib/en_us/i19freebie.txt +1 -0
  1433. package/packages/i18n/lib/en_us/i19freight.txt +1 -0
  1434. package/packages/i18n/lib/en_us/i19freightCost.txt +1 -0
  1435. package/packages/i18n/lib/en_us/i19from.txt +1 -0
  1436. package/packages/i18n/lib/en_us/i19fulfillmentStatus.txt +1 -0
  1437. package/packages/i18n/lib/en_us/i19fullName.txt +1 -0
  1438. package/packages/i18n/lib/en_us/i19fullscreen.txt +1 -0
  1439. package/packages/i18n/lib/en_us/i19gateway.txt +1 -0
  1440. package/packages/i18n/lib/en_us/i19gender.txt +1 -0
  1441. package/packages/i18n/lib/en_us/i19genderX.txt +1 -0
  1442. package/packages/i18n/lib/en_us/i19general.txt +1 -0
  1443. package/packages/i18n/lib/en_us/i19generateBillet.txt +1 -0
  1444. package/packages/i18n/lib/en_us/i19get$1back.txt +1 -0
  1445. package/packages/i18n/lib/en_us/i19get.txt +1 -0
  1446. package/packages/i18n/lib/en_us/i19giftList.txt +1 -0
  1447. package/packages/i18n/lib/en_us/i19giftListAuthors.txt +1 -0
  1448. package/packages/i18n/lib/en_us/i19giftListAuthorsContact.txt +1 -0
  1449. package/packages/i18n/lib/en_us/i19giftListDescription.txt +1 -0
  1450. package/packages/i18n/lib/en_us/i19giftListEventDate.txt +1 -0
  1451. package/packages/i18n/lib/en_us/i19giftListInformation.txt +1 -0
  1452. package/packages/i18n/lib/en_us/i19giftListNotificationPurchaseMsg.txt +1 -0
  1453. package/packages/i18n/lib/en_us/i19giftListOwnerID.txt +1 -0
  1454. package/packages/i18n/lib/en_us/i19giftListPermalink.txt +1 -0
  1455. package/packages/i18n/lib/en_us/i19giftListTitle.txt +1 -0
  1456. package/packages/i18n/lib/en_us/i19giftListValidThru.txt +1 -0
  1457. package/packages/i18n/lib/en_us/i19giftListWaiting.txt +1 -0
  1458. package/packages/i18n/lib/en_us/i19giftTo.txt +1 -0
  1459. package/packages/i18n/lib/en_us/i19giftWrap.txt +1 -0
  1460. package/packages/i18n/lib/en_us/i19gitRepository.txt +1 -0
  1461. package/packages/i18n/lib/en_us/i19givenName.txt +1 -0
  1462. package/packages/i18n/lib/en_us/i19goToCart.txt +1 -0
  1463. package/packages/i18n/lib/en_us/i19goToStore.txt +1 -0
  1464. package/packages/i18n/lib/en_us/i19goToTop.txt +1 -0
  1465. package/packages/i18n/lib/en_us/i19googleAnalytics.txt +1 -0
  1466. package/packages/i18n/lib/en_us/i19googleProductCategoryId.txt +1 -0
  1467. package/packages/i18n/lib/en_us/i19gridId.txt +1 -0
  1468. package/packages/i18n/lib/en_us/i19gridName.txt +1 -0
  1469. package/packages/i18n/lib/en_us/i19grids.txt +1 -0
  1470. package/packages/i18n/lib/en_us/i19guestCheckoutMsg.txt +1 -0
  1471. package/packages/i18n/lib/en_us/i19hasCouponOrVoucherQn.txt +1 -0
  1472. package/packages/i18n/lib/en_us/i19height.txt +1 -0
  1473. package/packages/i18n/lib/en_us/i19hello.txt +1 -0
  1474. package/packages/i18n/lib/en_us/i19helloAgain.txt +1 -0
  1475. package/packages/i18n/lib/en_us/i19help.txt +1 -0
  1476. package/packages/i18n/lib/en_us/i19helpful.txt +1 -0
  1477. package/packages/i18n/lib/en_us/i19high.txt +1 -0
  1478. package/packages/i18n/lib/en_us/i19highPriority.txt +1 -0
  1479. package/packages/i18n/lib/en_us/i19highestPrice.txt +1 -0
  1480. package/packages/i18n/lib/en_us/i19holderName.txt +1 -0
  1481. package/packages/i18n/lib/en_us/i19home.txt +1 -0
  1482. package/packages/i18n/lib/en_us/i19hour.txt +1 -0
  1483. package/packages/i18n/lib/en_us/i19hours.txt +1 -0
  1484. package/packages/i18n/lib/en_us/i19iForgotMyPassword.txt +1 -0
  1485. package/packages/i18n/lib/en_us/i19iReadAndAccept.txt +1 -0
  1486. package/packages/i18n/lib/en_us/i19icon.txt +1 -0
  1487. package/packages/i18n/lib/en_us/i19id.txt +1 -0
  1488. package/packages/i18n/lib/en_us/i19idOfShippingLine.txt +1 -0
  1489. package/packages/i18n/lib/en_us/i19identification.txt +1 -0
  1490. package/packages/i18n/lib/en_us/i19identifyYourAccount.txt +1 -0
  1491. package/packages/i18n/lib/en_us/i19image.txt +1 -0
  1492. package/packages/i18n/lib/en_us/i19images.txt +1 -0
  1493. package/packages/i18n/lib/en_us/i19import.txt +1 -0
  1494. package/packages/i18n/lib/en_us/i19in.txt +1 -0
  1495. package/packages/i18n/lib/en_us/i19inStock.txt +1 -0
  1496. package/packages/i18n/lib/en_us/i19inStockAt.txt +1 -0
  1497. package/packages/i18n/lib/en_us/i19inactive.txt +1 -0
  1498. package/packages/i18n/lib/en_us/i19incorrect.txt +1 -0
  1499. package/packages/i18n/lib/en_us/i19incorrectEmailCodeMsg.txt +1 -0
  1500. package/packages/i18n/lib/en_us/i19incorrectFormat.txt +1 -0
  1501. package/packages/i18n/lib/en_us/i19info.txt +1 -0
  1502. package/packages/i18n/lib/en_us/i19inscriptionNumber.txt +1 -0
  1503. package/packages/i18n/lib/en_us/i19insert.txt +1 -0
  1504. package/packages/i18n/lib/en_us/i19install.txt +1 -0
  1505. package/packages/i18n/lib/en_us/i19installNow.txt +1 -0
  1506. package/packages/i18n/lib/en_us/i19installed.txt +1 -0
  1507. package/packages/i18n/lib/en_us/i19installedApps.txt +1 -0
  1508. package/packages/i18n/lib/en_us/i19installingApp.txt +1 -0
  1509. package/packages/i18n/lib/en_us/i19installment.txt +1 -0
  1510. package/packages/i18n/lib/en_us/i19installments.txt +1 -0
  1511. package/packages/i18n/lib/en_us/i19institutional.txt +1 -0
  1512. package/packages/i18n/lib/en_us/i19interestFree.txt +1 -0
  1513. package/packages/i18n/lib/en_us/i19intermediator.txt +1 -0
  1514. package/packages/i18n/lib/en_us/i19invalidCard.txt +1 -0
  1515. package/packages/i18n/lib/en_us/i19invalidCardMsg.txt +1 -0
  1516. package/packages/i18n/lib/en_us/i19invalidCouponMsg.txt +1 -0
  1517. package/packages/i18n/lib/en_us/i19invalidDomainName.txt +1 -0
  1518. package/packages/i18n/lib/en_us/i19invalidLoginInfoMsg.txt +1 -0
  1519. package/packages/i18n/lib/en_us/i19inventory.txt +1 -0
  1520. package/packages/i18n/lib/en_us/i19inventoryHistory.txt +1 -0
  1521. package/packages/i18n/lib/en_us/i19invoice.txt +1 -0
  1522. package/packages/i18n/lib/en_us/i19invoices.txt +1 -0
  1523. package/packages/i18n/lib/en_us/i19isFilter.txt +1 -0
  1524. package/packages/i18n/lib/en_us/i19isNotYou.txt +1 -0
  1525. package/packages/i18n/lib/en_us/i19item.txt +1 -0
  1526. package/packages/i18n/lib/en_us/i19items.txt +1 -0
  1527. package/packages/i18n/lib/en_us/i19itemsFound.txt +1 -0
  1528. package/packages/i18n/lib/en_us/i19jurifical.txt +1 -0
  1529. package/packages/i18n/lib/en_us/i19just.txt +1 -0
  1530. package/packages/i18n/lib/en_us/i19keywords.txt +1 -0
  1531. package/packages/i18n/lib/en_us/i19kit.txt +1 -0
  1532. package/packages/i18n/lib/en_us/i19label.txt +1 -0
  1533. package/packages/i18n/lib/en_us/i19labelOfCustomization.txt +1 -0
  1534. package/packages/i18n/lib/en_us/i19last.txt +1 -0
  1535. package/packages/i18n/lib/en_us/i19lastOptions.txt +1 -0
  1536. package/packages/i18n/lib/en_us/i19lastPurchase.txt +1 -0
  1537. package/packages/i18n/lib/en_us/i19lastSearchedTerms.txt +1 -0
  1538. package/packages/i18n/lib/en_us/i19lastVisitedProducts.txt +1 -0
  1539. package/packages/i18n/lib/en_us/i19latestOrders.txt +1 -0
  1540. package/packages/i18n/lib/en_us/i19launch.txt +1 -0
  1541. package/packages/i18n/lib/en_us/i19launching.txt +1 -0
  1542. package/packages/i18n/lib/en_us/i19length.txt +1 -0
  1543. package/packages/i18n/lib/en_us/i19lineAddress.txt +1 -0
  1544. package/packages/i18n/lib/en_us/i19list.txt +1 -0
  1545. package/packages/i18n/lib/en_us/i19listOfInvoices.txt +1 -0
  1546. package/packages/i18n/lib/en_us/i19listOfPayments.txt +1 -0
  1547. package/packages/i18n/lib/en_us/i19listSubscriptionInvoices.txt +1 -0
  1548. package/packages/i18n/lib/en_us/i19load.txt +1 -0
  1549. package/packages/i18n/lib/en_us/i19loadDataErrorMsg.txt +1 -0
  1550. package/packages/i18n/lib/en_us/i19loadMore.txt +1 -0
  1551. package/packages/i18n/lib/en_us/i19loadMoreProducts.txt +1 -0
  1552. package/packages/i18n/lib/en_us/i19loadProductErrorMsg.txt +1 -0
  1553. package/packages/i18n/lib/en_us/i19loading.txt +1 -0
  1554. package/packages/i18n/lib/en_us/i19locale.txt +1 -0
  1555. package/packages/i18n/lib/en_us/i19login.txt +1 -0
  1556. package/packages/i18n/lib/en_us/i19loginEnabled.txt +1 -0
  1557. package/packages/i18n/lib/en_us/i19loginErrorMsg.txt +1 -0
  1558. package/packages/i18n/lib/en_us/i19loginForOrderDetailsMsg.txt +1 -0
  1559. package/packages/i18n/lib/en_us/i19logo.txt +1 -0
  1560. package/packages/i18n/lib/en_us/i19logout.txt +1 -0
  1561. package/packages/i18n/lib/en_us/i19low.txt +1 -0
  1562. package/packages/i18n/lib/en_us/i19lowestPrice.txt +1 -0
  1563. package/packages/i18n/lib/en_us/i19loyaltyPoints.txt +1 -0
  1564. package/packages/i18n/lib/en_us/i19loyaltyPointsName.txt +1 -0
  1565. package/packages/i18n/lib/en_us/i19loyaltyPointsPointsValue.txt +1 -0
  1566. package/packages/i18n/lib/en_us/i19madeBy.txt +1 -0
  1567. package/packages/i18n/lib/en_us/i19mainEmail.txt +1 -0
  1568. package/packages/i18n/lib/en_us/i19male.txt +1 -0
  1569. package/packages/i18n/lib/en_us/i19manageStock.txt +1 -0
  1570. package/packages/i18n/lib/en_us/i19manageYourPurchaseHistory.txt +1 -0
  1571. package/packages/i18n/lib/en_us/i19marketing.txt +1 -0
  1572. package/packages/i18n/lib/en_us/i19marketplace.txt +1 -0
  1573. package/packages/i18n/lib/en_us/i19marketplaces.txt +1 -0
  1574. package/packages/i18n/lib/en_us/i19massEdit.txt +1 -0
  1575. package/packages/i18n/lib/en_us/i19maxQuantity.txt +1 -0
  1576. package/packages/i18n/lib/en_us/i19maximum.txt +1 -0
  1577. package/packages/i18n/lib/en_us/i19measurement.txt +1 -0
  1578. package/packages/i18n/lib/en_us/i19media.txt +1 -0
  1579. package/packages/i18n/lib/en_us/i19mediaGallery.txt +1 -0
  1580. package/packages/i18n/lib/en_us/i19menu.txt +1 -0
  1581. package/packages/i18n/lib/en_us/i19metaTagDescription.txt +1 -0
  1582. package/packages/i18n/lib/en_us/i19metafields.txt +1 -0
  1583. package/packages/i18n/lib/en_us/i19metafieldsMsg.txt +1 -0
  1584. package/packages/i18n/lib/en_us/i19middleName.txt +1 -0
  1585. package/packages/i18n/lib/en_us/i19milliseconds.txt +1 -0
  1586. package/packages/i18n/lib/en_us/i19minQuantity.txt +1 -0
  1587. package/packages/i18n/lib/en_us/i19minimum.txt +1 -0
  1588. package/packages/i18n/lib/en_us/i19minus.txt +1 -0
  1589. package/packages/i18n/lib/en_us/i19minute.txt +1 -0
  1590. package/packages/i18n/lib/en_us/i19minutes.txt +1 -0
  1591. package/packages/i18n/lib/en_us/i19mlCategoryId.txt +1 -0
  1592. package/packages/i18n/lib/en_us/i19mobile.txt +1 -0
  1593. package/packages/i18n/lib/en_us/i19mobileLink.txt +1 -0
  1594. package/packages/i18n/lib/en_us/i19modules.txt +1 -0
  1595. package/packages/i18n/lib/en_us/i19month.txt +1 -0
  1596. package/packages/i18n/lib/en_us/i19monthly.txt +1 -0
  1597. package/packages/i18n/lib/en_us/i19mostPopular.txt +1 -0
  1598. package/packages/i18n/lib/en_us/i19mostRelevant.txt +1 -0
  1599. package/packages/i18n/lib/en_us/i19motorcycleCourier.txt +1 -0
  1600. package/packages/i18n/lib/en_us/i19myAccount.txt +1 -0
  1601. package/packages/i18n/lib/en_us/i19myAccountAndOrders.txt +1 -0
  1602. package/packages/i18n/lib/en_us/i19myCart.txt +1 -0
  1603. package/packages/i18n/lib/en_us/i19myFavorites.txt +1 -0
  1604. package/packages/i18n/lib/en_us/i19myOrders.txt +1 -0
  1605. package/packages/i18n/lib/en_us/i19myShoppingCart.txt +1 -0
  1606. package/packages/i18n/lib/en_us/i19name.txt +1 -0
  1607. package/packages/i18n/lib/en_us/i19nameOnCard.txt +1 -0
  1608. package/packages/i18n/lib/en_us/i19namespace.txt +1 -0
  1609. package/packages/i18n/lib/en_us/i19namespaceMsg.txt +1 -0
  1610. package/packages/i18n/lib/en_us/i19nearTo.txt +1 -0
  1611. package/packages/i18n/lib/en_us/i19needHelpQn.txt +1 -0
  1612. package/packages/i18n/lib/en_us/i19new.txt +1 -0
  1613. package/packages/i18n/lib/en_us/i19newAddress.txt +1 -0
  1614. package/packages/i18n/lib/en_us/i19newOrders.txt +1 -0
  1615. package/packages/i18n/lib/en_us/i19newPassword.txt +1 -0
  1616. package/packages/i18n/lib/en_us/i19newPriceRange.txt +1 -0
  1617. package/packages/i18n/lib/en_us/i19newVersionAvailableMsg.txt +1 -0
  1618. package/packages/i18n/lib/en_us/i19newsletter.txt +1 -0
  1619. package/packages/i18n/lib/en_us/i19newsletterReport.txt +1 -0
  1620. package/packages/i18n/lib/en_us/i19next.txt +1 -0
  1621. package/packages/i18n/lib/en_us/i19nickname.txt +1 -0
  1622. package/packages/i18n/lib/en_us/i19no.txt +1 -0
  1623. package/packages/i18n/lib/en_us/i19noAdditional.txt +1 -0
  1624. package/packages/i18n/lib/en_us/i19noAppsAvailable.txt +1 -0
  1625. package/packages/i18n/lib/en_us/i19noBrand.txt +1 -0
  1626. package/packages/i18n/lib/en_us/i19noCategory.txt +1 -0
  1627. package/packages/i18n/lib/en_us/i19noCollection.txt +1 -0
  1628. package/packages/i18n/lib/en_us/i19noGrid.txt +1 -0
  1629. package/packages/i18n/lib/en_us/i19noItemSelected.txt +1 -0
  1630. package/packages/i18n/lib/en_us/i19noNewOrdersMsg.txt +1 -0
  1631. package/packages/i18n/lib/en_us/i19noNumber.txt +1 -0
  1632. package/packages/i18n/lib/en_us/i19noOrder.txt +1 -0
  1633. package/packages/i18n/lib/en_us/i19noPrice.txt +1 -0
  1634. package/packages/i18n/lib/en_us/i19noProductsFound.txt +1 -0
  1635. package/packages/i18n/lib/en_us/i19noProductsFoundFor$1.txt +1 -0
  1636. package/packages/i18n/lib/en_us/i19noProductsInBrandMsg.txt +1 -0
  1637. package/packages/i18n/lib/en_us/i19noProductsInCategoryMsg.txt +1 -0
  1638. package/packages/i18n/lib/en_us/i19noProfileFoundWithEmail.txt +1 -0
  1639. package/packages/i18n/lib/en_us/i19noSavedFavoritesMsg.txt +1 -0
  1640. package/packages/i18n/lib/en_us/i19noUser.txt +1 -0
  1641. package/packages/i18n/lib/en_us/i19normal.txt +1 -0
  1642. package/packages/i18n/lib/en_us/i19notConfigured.txt +1 -0
  1643. package/packages/i18n/lib/en_us/i19notFound.txt +1 -0
  1644. package/packages/i18n/lib/en_us/i19notes.txt +1 -0
  1645. package/packages/i18n/lib/en_us/i19notifications.txt +1 -0
  1646. package/packages/i18n/lib/en_us/i19notified.txt +1 -0
  1647. package/packages/i18n/lib/en_us/i19notifiedAdmins.txt +1 -0
  1648. package/packages/i18n/lib/en_us/i19notifiedAdminsMsg.txt +1 -0
  1649. package/packages/i18n/lib/en_us/i19notifyAboutOrders.txt +1 -0
  1650. package/packages/i18n/lib/en_us/i19number.txt +1 -0
  1651. package/packages/i18n/lib/en_us/i19oauthOnPopup.txt +1 -0
  1652. package/packages/i18n/lib/en_us/i19of.txt +1 -0
  1653. package/packages/i18n/lib/en_us/i19ofDiscount.txt +1 -0
  1654. package/packages/i18n/lib/en_us/i19offer.txt +1 -0
  1655. package/packages/i18n/lib/en_us/i19on.txt +1 -0
  1656. package/packages/i18n/lib/en_us/i19onFollowingAddress.txt +1 -0
  1657. package/packages/i18n/lib/en_us/i19onFreight.txt +1 -0
  1658. package/packages/i18n/lib/en_us/i19only.txt +1 -0
  1659. package/packages/i18n/lib/en_us/i19open.txt +1 -0
  1660. package/packages/i18n/lib/en_us/i19openAt.txt +1 -0
  1661. package/packages/i18n/lib/en_us/i19openCart.txt +1 -0
  1662. package/packages/i18n/lib/en_us/i19openGallery.txt +1 -0
  1663. package/packages/i18n/lib/en_us/i19operational.txt +1 -0
  1664. package/packages/i18n/lib/en_us/i19option.txt +1 -0
  1665. package/packages/i18n/lib/en_us/i19optionChosen.txt +1 -0
  1666. package/packages/i18n/lib/en_us/i19options.txt +1 -0
  1667. package/packages/i18n/lib/en_us/i19or.txt +1 -0
  1668. package/packages/i18n/lib/en_us/i19orProceedWith.txt +1 -0
  1669. package/packages/i18n/lib/en_us/i19order.txt +1 -0
  1670. package/packages/i18n/lib/en_us/i19orderCode.txt +1 -0
  1671. package/packages/i18n/lib/en_us/i19orderConfirmationMsg.txt +1 -0
  1672. package/packages/i18n/lib/en_us/i19orderCreated.txt +1 -0
  1673. package/packages/i18n/lib/en_us/i19orderDetails.txt +1 -0
  1674. package/packages/i18n/lib/en_us/i19orderItems.txt +1 -0
  1675. package/packages/i18n/lib/en_us/i19orderNotesInputMsg.txt +1 -0
  1676. package/packages/i18n/lib/en_us/i19orderNumber.txt +1 -0
  1677. package/packages/i18n/lib/en_us/i19orderObservations.txt +1 -0
  1678. package/packages/i18n/lib/en_us/i19orderStatus.txt +1 -0
  1679. package/packages/i18n/lib/en_us/i19orderValue.txt +1 -0
  1680. package/packages/i18n/lib/en_us/i19orders.txt +1 -0
  1681. package/packages/i18n/lib/en_us/i19ordersCount.txt +1 -0
  1682. package/packages/i18n/lib/en_us/i19ordersTotalValue.txt +1 -0
  1683. package/packages/i18n/lib/en_us/i19organization.txt +1 -0
  1684. package/packages/i18n/lib/en_us/i19otherCustomers.txt +1 -0
  1685. package/packages/i18n/lib/en_us/i19otherCustomersMsg.txt +1 -0
  1686. package/packages/i18n/lib/en_us/i19outOfDate.txt +1 -0
  1687. package/packages/i18n/lib/en_us/i19outOfStock.txt +1 -0
  1688. package/packages/i18n/lib/en_us/i19ownDelivery.txt +1 -0
  1689. package/packages/i18n/lib/en_us/i19ownHand.txt +1 -0
  1690. package/packages/i18n/lib/en_us/i19ownHandCost.txt +1 -0
  1691. package/packages/i18n/lib/en_us/i19package.txt +1 -0
  1692. package/packages/i18n/lib/en_us/i19packageDimensions.txt +1 -0
  1693. package/packages/i18n/lib/en_us/i19packageDimensionsInformation.txt +1 -0
  1694. package/packages/i18n/lib/en_us/i19packageInformation.txt +1 -0
  1695. package/packages/i18n/lib/en_us/i19packageWeight.txt +1 -0
  1696. package/packages/i18n/lib/en_us/i19pageLoaded.txt +1 -0
  1697. package/packages/i18n/lib/en_us/i19paid.txt +1 -0
  1698. package/packages/i18n/lib/en_us/i19paidTextMsg.txt +1 -0
  1699. package/packages/i18n/lib/en_us/i19parcelIn.txt +1 -0
  1700. package/packages/i18n/lib/en_us/i19parentCategory.txt +1 -0
  1701. package/packages/i18n/lib/en_us/i19partner.txt +1 -0
  1702. package/packages/i18n/lib/en_us/i19partners.txt +1 -0
  1703. package/packages/i18n/lib/en_us/i19partnersProgram.txt +1 -0
  1704. package/packages/i18n/lib/en_us/i19password.txt +1 -0
  1705. package/packages/i18n/lib/en_us/i19passwordChangedSuccessfully.txt +1 -0
  1706. package/packages/i18n/lib/en_us/i19patch.txt +1 -0
  1707. package/packages/i18n/lib/en_us/i19payer.txt +1 -0
  1708. package/packages/i18n/lib/en_us/i19payment.txt +1 -0
  1709. package/packages/i18n/lib/en_us/i19paymentConfirmed.txt +1 -0
  1710. package/packages/i18n/lib/en_us/i19paymentDetails.txt +1 -0
  1711. package/packages/i18n/lib/en_us/i19paymentError.txt +1 -0
  1712. package/packages/i18n/lib/en_us/i19paymentErrorMsg.txt +1 -0
  1713. package/packages/i18n/lib/en_us/i19paymentLink.txt +1 -0
  1714. package/packages/i18n/lib/en_us/i19paymentMethod.txt +1 -0
  1715. package/packages/i18n/lib/en_us/i19paymentMethodLabel.txt +1 -0
  1716. package/packages/i18n/lib/en_us/i19paymentMethods.txt +1 -0
  1717. package/packages/i18n/lib/en_us/i19paymentOptions.txt +1 -0
  1718. package/packages/i18n/lib/en_us/i19paymentRealized.txt +1 -0
  1719. package/packages/i18n/lib/en_us/i19perUnit.txt +1 -0
  1720. package/packages/i18n/lib/en_us/i19permalink.txt +1 -0
  1721. package/packages/i18n/lib/en_us/i19personalRegistration.txt +1 -0
  1722. package/packages/i18n/lib/en_us/i19phone.txt +1 -0
  1723. package/packages/i18n/lib/en_us/i19phones.txt +1 -0
  1724. package/packages/i18n/lib/en_us/i19photo.txt +1 -0
  1725. package/packages/i18n/lib/en_us/i19photos.txt +1 -0
  1726. package/packages/i18n/lib/en_us/i19pickUpAtTheStore.txt +1 -0
  1727. package/packages/i18n/lib/en_us/i19pickUpToday.txt +1 -0
  1728. package/packages/i18n/lib/en_us/i19pickup.txt +1 -0
  1729. package/packages/i18n/lib/en_us/i19picture.txt +1 -0
  1730. package/packages/i18n/lib/en_us/i19pictures.txt +1 -0
  1731. package/packages/i18n/lib/en_us/i19plus.txt +1 -0
  1732. package/packages/i18n/lib/en_us/i19pointsEarned.txt +1 -0
  1733. package/packages/i18n/lib/en_us/i19popularProducts.txt +1 -0
  1734. package/packages/i18n/lib/en_us/i19popup.txt +1 -0
  1735. package/packages/i18n/lib/en_us/i19post.txt +1 -0
  1736. package/packages/i18n/lib/en_us/i19posted.txt +1 -0
  1737. package/packages/i18n/lib/en_us/i19postingDeadline.txt +1 -0
  1738. package/packages/i18n/lib/en_us/i19postingIn.txt +1 -0
  1739. package/packages/i18n/lib/en_us/i19pressEnterToSave.txt +1 -0
  1740. package/packages/i18n/lib/en_us/i19previous.txt +1 -0
  1741. package/packages/i18n/lib/en_us/i19price.txt +1 -0
  1742. package/packages/i18n/lib/en_us/i19priceAlteration.txt +1 -0
  1743. package/packages/i18n/lib/en_us/i19priceEffectiveDate.txt +1 -0
  1744. package/packages/i18n/lib/en_us/i19priceEffectiveDateEnd.txt +1 -0
  1745. package/packages/i18n/lib/en_us/i19priceEffectiveDateStar.txt +1 -0
  1746. package/packages/i18n/lib/en_us/i19priceRange.txt +1 -0
  1747. package/packages/i18n/lib/en_us/i19priceTo.txt +1 -0
  1748. package/packages/i18n/lib/en_us/i19pricing.txt +1 -0
  1749. package/packages/i18n/lib/en_us/i19printBillet.txt +1 -0
  1750. package/packages/i18n/lib/en_us/i19privacy.txt +1 -0
  1751. package/packages/i18n/lib/en_us/i19privacyPolicy.txt +1 -0
  1752. package/packages/i18n/lib/en_us/i19private.txt +1 -0
  1753. package/packages/i18n/lib/en_us/i19privateMetafields.txt +1 -0
  1754. package/packages/i18n/lib/en_us/i19privateMetafieldsMsg.txt +1 -0
  1755. package/packages/i18n/lib/en_us/i19proceed.txt +1 -0
  1756. package/packages/i18n/lib/en_us/i19product.txt +1 -0
  1757. package/packages/i18n/lib/en_us/i19productDescription.txt +1 -0
  1758. package/packages/i18n/lib/en_us/i19productId.txt +1 -0
  1759. package/packages/i18n/lib/en_us/i19productImages.txt +1 -0
  1760. package/packages/i18n/lib/en_us/i19productName.txt +1 -0
  1761. package/packages/i18n/lib/en_us/i19productSpecifications.txt +1 -0
  1762. package/packages/i18n/lib/en_us/i19productionDeadline.txt +1 -0
  1763. package/packages/i18n/lib/en_us/i19productionTime.txt +1 -0
  1764. package/packages/i18n/lib/en_us/i19productionTimeCumulative.txt +1 -0
  1765. package/packages/i18n/lib/en_us/i19productionTimeDaysMsg.txt +1 -0
  1766. package/packages/i18n/lib/en_us/i19productionTimeMsg.txt +1 -0
  1767. package/packages/i18n/lib/en_us/i19productionTimeWorkingDays.txt +1 -0
  1768. package/packages/i18n/lib/en_us/i19products.txt +1 -0
  1769. package/packages/i18n/lib/en_us/i19productsAdded.txt +1 -0
  1770. package/packages/i18n/lib/en_us/i19productsAddedToCart.txt +1 -0
  1771. package/packages/i18n/lib/en_us/i19productsPurchased.txt +1 -0
  1772. package/packages/i18n/lib/en_us/i19profile.txt +1 -0
  1773. package/packages/i18n/lib/en_us/i19profileNotFound.txt +1 -0
  1774. package/packages/i18n/lib/en_us/i19province.txt +1 -0
  1775. package/packages/i18n/lib/en_us/i19provinceCode.txt +1 -0
  1776. package/packages/i18n/lib/en_us/i19put.txt +1 -0
  1777. package/packages/i18n/lib/en_us/i19quantity.txt +1 -0
  1778. package/packages/i18n/lib/en_us/i19quarterly.txt +1 -0
  1779. package/packages/i18n/lib/en_us/i19quickSetup.txt +1 -0
  1780. package/packages/i18n/lib/en_us/i19random.txt +1 -0
  1781. package/packages/i18n/lib/en_us/i19rating.txt +1 -0
  1782. package/packages/i18n/lib/en_us/i19read.txt +1 -0
  1783. package/packages/i18n/lib/en_us/i19receipt.txt +1 -0
  1784. package/packages/i18n/lib/en_us/i19receiptPrice.txt +1 -0
  1785. package/packages/i18n/lib/en_us/i19receiveNewsletter.txt +1 -0
  1786. package/packages/i18n/lib/en_us/i19receiveToday.txt +1 -0
  1787. package/packages/i18n/lib/en_us/i19receivedOrder.txt +1 -0
  1788. package/packages/i18n/lib/en_us/i19recipient.txt +1 -0
  1789. package/packages/i18n/lib/en_us/i19recommendations.txt +1 -0
  1790. package/packages/i18n/lib/en_us/i19recommendedForYou.txt +1 -0
  1791. package/packages/i18n/lib/en_us/i19recommendedProducts.txt +1 -0
  1792. package/packages/i18n/lib/en_us/i19recurrence.txt +1 -0
  1793. package/packages/i18n/lib/en_us/i19recurrent.txt +1 -0
  1794. package/packages/i18n/lib/en_us/i19redirectToPayment.txt +1 -0
  1795. package/packages/i18n/lib/en_us/i19reference.txt +1 -0
  1796. package/packages/i18n/lib/en_us/i19referenceCode.txt +1 -0
  1797. package/packages/i18n/lib/en_us/i19referral.txt +1 -0
  1798. package/packages/i18n/lib/en_us/i19referringSite.txt +1 -0
  1799. package/packages/i18n/lib/en_us/i19refine.txt +1 -0
  1800. package/packages/i18n/lib/en_us/i19refineSearch.txt +1 -0
  1801. package/packages/i18n/lib/en_us/i19registerDate.txt +1 -0
  1802. package/packages/i18n/lib/en_us/i19registerProduct.txt +1 -0
  1803. package/packages/i18n/lib/en_us/i19registerToBuy.txt +1 -0
  1804. package/packages/i18n/lib/en_us/i19registerToBuyMsg.txt +1 -0
  1805. package/packages/i18n/lib/en_us/i19registration.txt +1 -0
  1806. package/packages/i18n/lib/en_us/i19reinstall.txt +1 -0
  1807. package/packages/i18n/lib/en_us/i19relatedApps.txt +1 -0
  1808. package/packages/i18n/lib/en_us/i19relatedProducts.txt +1 -0
  1809. package/packages/i18n/lib/en_us/i19relatedSearch.txt +1 -0
  1810. package/packages/i18n/lib/en_us/i19releases.txt +1 -0
  1811. package/packages/i18n/lib/en_us/i19relevance.txt +1 -0
  1812. package/packages/i18n/lib/en_us/i19remove.txt +1 -0
  1813. package/packages/i18n/lib/en_us/i19removeFromFavorites.txt +1 -0
  1814. package/packages/i18n/lib/en_us/i19removed.txt +1 -0
  1815. package/packages/i18n/lib/en_us/i19reopenOrder.txt +1 -0
  1816. package/packages/i18n/lib/en_us/i19report.txt +1 -0
  1817. package/packages/i18n/lib/en_us/i19require.txt +1 -0
  1818. package/packages/i18n/lib/en_us/i19required.txt +1 -0
  1819. package/packages/i18n/lib/en_us/i19requiredEmail.txt +1 -0
  1820. package/packages/i18n/lib/en_us/i19requiredEmailMsg.txt +1 -0
  1821. package/packages/i18n/lib/en_us/i19requiredField.txt +1 -0
  1822. package/packages/i18n/lib/en_us/i19resource.txt +1 -0
  1823. package/packages/i18n/lib/en_us/i19resourceId.txt +1 -0
  1824. package/packages/i18n/lib/en_us/i19results.txt +1 -0
  1825. package/packages/i18n/lib/en_us/i19resultsFor.txt +1 -0
  1826. package/packages/i18n/lib/en_us/i19retail.txt +1 -0
  1827. package/packages/i18n/lib/en_us/i19retry.txt +1 -0
  1828. package/packages/i18n/lib/en_us/i19reviews.txt +1 -0
  1829. package/packages/i18n/lib/en_us/i19safeBuy.txt +1 -0
  1830. package/packages/i18n/lib/en_us/i19safeEnvMsg.txt +1 -0
  1831. package/packages/i18n/lib/en_us/i19sales.txt +1 -0
  1832. package/packages/i18n/lib/en_us/i19salesChannels.txt +1 -0
  1833. package/packages/i18n/lib/en_us/i19salesPrice.txt +1 -0
  1834. package/packages/i18n/lib/en_us/i19save.txt +1 -0
  1835. package/packages/i18n/lib/en_us/i19saveBrand.txt +1 -0
  1836. package/packages/i18n/lib/en_us/i19saveCard.txt +1 -0
  1837. package/packages/i18n/lib/en_us/i19saveCart.txt +1 -0
  1838. package/packages/i18n/lib/en_us/i19saveCategory.txt +1 -0
  1839. package/packages/i18n/lib/en_us/i19saveClient.txt +1 -0
  1840. package/packages/i18n/lib/en_us/i19saveCollection.txt +1 -0
  1841. package/packages/i18n/lib/en_us/i19saveGrid.txt +1 -0
  1842. package/packages/i18n/lib/en_us/i19saveProduct.txt +1 -0
  1843. package/packages/i18n/lib/en_us/i19saveText.txt +1 -0
  1844. package/packages/i18n/lib/en_us/i19saved.txt +1 -0
  1845. package/packages/i18n/lib/en_us/i19savedWithSuccess.txt +1 -0
  1846. package/packages/i18n/lib/en_us/i19scheduledDelivery.txt +1 -0
  1847. package/packages/i18n/lib/en_us/i19search.txt +1 -0
  1848. package/packages/i18n/lib/en_us/i19searchAgain.txt +1 -0
  1849. package/packages/i18n/lib/en_us/i19searchEngineListing.txt +1 -0
  1850. package/packages/i18n/lib/en_us/i19searchItems.txt +1 -0
  1851. package/packages/i18n/lib/en_us/i19searchOfflineErrorMsg.txt +1 -0
  1852. package/packages/i18n/lib/en_us/i19searchProducts.txt +1 -0
  1853. package/packages/i18n/lib/en_us/i19searchingFor.txt +1 -0
  1854. package/packages/i18n/lib/en_us/i19second.txt +1 -0
  1855. package/packages/i18n/lib/en_us/i19seconds.txt +1 -0
  1856. package/packages/i18n/lib/en_us/i19securityCode.txt +1 -0
  1857. package/packages/i18n/lib/en_us/i19seeAll$1Category.txt +1 -0
  1858. package/packages/i18n/lib/en_us/i19seeAll.txt +1 -0
  1859. package/packages/i18n/lib/en_us/i19seeAllApps.txt +1 -0
  1860. package/packages/i18n/lib/en_us/i19seeAllThemes.txt +1 -0
  1861. package/packages/i18n/lib/en_us/i19seeCart.txt +1 -0
  1862. package/packages/i18n/lib/en_us/i19seeMore.txt +1 -0
  1863. package/packages/i18n/lib/en_us/i19seeMoreCategories.txt +1 -0
  1864. package/packages/i18n/lib/en_us/i19seeMoreInfo.txt +1 -0
  1865. package/packages/i18n/lib/en_us/i19seeOrder.txt +1 -0
  1866. package/packages/i18n/lib/en_us/i19seeShoppingCart.txt +1 -0
  1867. package/packages/i18n/lib/en_us/i19select.txt +1 -0
  1868. package/packages/i18n/lib/en_us/i19selectVariation.txt +1 -0
  1869. package/packages/i18n/lib/en_us/i19selectVariationMsg.txt +1 -0
  1870. package/packages/i18n/lib/en_us/i19selected.txt +1 -0
  1871. package/packages/i18n/lib/en_us/i19selectedOffers.txt +1 -0
  1872. package/packages/i18n/lib/en_us/i19selectedOptions.txt +1 -0
  1873. package/packages/i18n/lib/en_us/i19seller.txt +1 -0
  1874. package/packages/i18n/lib/en_us/i19sellerRecommendations.txt +1 -0
  1875. package/packages/i18n/lib/en_us/i19sellerRecommendationsProducts.txt +1 -0
  1876. package/packages/i18n/lib/en_us/i19sellerRecommendationsTitle.txt +1 -0
  1877. package/packages/i18n/lib/en_us/i19sellerStatus.txt +1 -0
  1878. package/packages/i18n/lib/en_us/i19send.txt +1 -0
  1879. package/packages/i18n/lib/en_us/i19sendLoginCodeByEmail.txt +1 -0
  1880. package/packages/i18n/lib/en_us/i19sendLoginLinkByEmail.txt +1 -0
  1881. package/packages/i18n/lib/en_us/i19sender.txt +1 -0
  1882. package/packages/i18n/lib/en_us/i19senderFrom.txt +1 -0
  1883. package/packages/i18n/lib/en_us/i19seo.txt +1 -0
  1884. package/packages/i18n/lib/en_us/i19setDomainMsg.txt +1 -0
  1885. package/packages/i18n/lib/en_us/i19setStoreDomain.txt +1 -0
  1886. package/packages/i18n/lib/en_us/i19setUp.txt +1 -0
  1887. package/packages/i18n/lib/en_us/i19settings.txt +1 -0
  1888. package/packages/i18n/lib/en_us/i19share.txt +1 -0
  1889. package/packages/i18n/lib/en_us/i19shareOnFacebook.txt +1 -0
  1890. package/packages/i18n/lib/en_us/i19shareOnWhatsapp.txt +1 -0
  1891. package/packages/i18n/lib/en_us/i19shipped.txt +1 -0
  1892. package/packages/i18n/lib/en_us/i19shippedBy.txt +1 -0
  1893. package/packages/i18n/lib/en_us/i19shipping.txt +1 -0
  1894. package/packages/i18n/lib/en_us/i19shippingAdditionalPrice.txt +1 -0
  1895. package/packages/i18n/lib/en_us/i19shippingAddress.txt +1 -0
  1896. package/packages/i18n/lib/en_us/i19shippingCustomFields.txt +1 -0
  1897. package/packages/i18n/lib/en_us/i19shippingDiscount.txt +1 -0
  1898. package/packages/i18n/lib/en_us/i19shippingInvoices.txt +1 -0
  1899. package/packages/i18n/lib/en_us/i19shippingMethod.txt +1 -0
  1900. package/packages/i18n/lib/en_us/i19shippingMethodLabel.txt +1 -0
  1901. package/packages/i18n/lib/en_us/i19shippingNotes.txt +1 -0
  1902. package/packages/i18n/lib/en_us/i19shippingNotesMsg.txt +1 -0
  1903. package/packages/i18n/lib/en_us/i19shippingStatus.txt +1 -0
  1904. package/packages/i18n/lib/en_us/i19shippingTag.txt +1 -0
  1905. package/packages/i18n/lib/en_us/i19shippingTags.txt +1 -0
  1906. package/packages/i18n/lib/en_us/i19shippingTaxes.txt +1 -0
  1907. package/packages/i18n/lib/en_us/i19shippingTaxesMsg.txt +1 -0
  1908. package/packages/i18n/lib/en_us/i19shippingTo.txt +1 -0
  1909. package/packages/i18n/lib/en_us/i19shippingTotalCost.txt +1 -0
  1910. package/packages/i18n/lib/en_us/i19shopByCategory.txt +1 -0
  1911. package/packages/i18n/lib/en_us/i19shopByFranchise.txt +1 -0
  1912. package/packages/i18n/lib/en_us/i19shopNow.txt +1 -0
  1913. package/packages/i18n/lib/en_us/i19shoppingCart.txt +1 -0
  1914. package/packages/i18n/lib/en_us/i19short.txt +1 -0
  1915. package/packages/i18n/lib/en_us/i19shortDescription.txt +1 -0
  1916. package/packages/i18n/lib/en_us/i19show.txt +1 -0
  1917. package/packages/i18n/lib/en_us/i19showDescription.txt +1 -0
  1918. package/packages/i18n/lib/en_us/i19showReview.txt +1 -0
  1919. package/packages/i18n/lib/en_us/i19signIn.txt +1 -0
  1920. package/packages/i18n/lib/en_us/i19signInWith.txt +1 -0
  1921. package/packages/i18n/lib/en_us/i19signInWithAnotherEmail.txt +1 -0
  1922. package/packages/i18n/lib/en_us/i19signUp.txt +1 -0
  1923. package/packages/i18n/lib/en_us/i19signUpWith.txt +1 -0
  1924. package/packages/i18n/lib/en_us/i19signature.txt +1 -0
  1925. package/packages/i18n/lib/en_us/i19size.txt +1 -0
  1926. package/packages/i18n/lib/en_us/i19sizeGuide.txt +1 -0
  1927. package/packages/i18n/lib/en_us/i19sku.txt +1 -0
  1928. package/packages/i18n/lib/en_us/i19slug.txt +1 -0
  1929. package/packages/i18n/lib/en_us/i19socialLogin.txt +1 -0
  1930. package/packages/i18n/lib/en_us/i19socialMedia.txt +1 -0
  1931. package/packages/i18n/lib/en_us/i19sort.txt +1 -0
  1932. package/packages/i18n/lib/en_us/i19sortBy.txt +1 -0
  1933. package/packages/i18n/lib/en_us/i19source.txt +1 -0
  1934. package/packages/i18n/lib/en_us/i19sourceName.txt +1 -0
  1935. package/packages/i18n/lib/en_us/i19specifications.txt +1 -0
  1936. package/packages/i18n/lib/en_us/i19staffNotes.txt +1 -0
  1937. package/packages/i18n/lib/en_us/i19staffSignature.txt +1 -0
  1938. package/packages/i18n/lib/en_us/i19star.txt +1 -0
  1939. package/packages/i18n/lib/en_us/i19startDate.txt +1 -0
  1940. package/packages/i18n/lib/en_us/i19state.txt +1 -0
  1941. package/packages/i18n/lib/en_us/i19status.txt +1 -0
  1942. package/packages/i18n/lib/en_us/i19statusLink.txt +1 -0
  1943. package/packages/i18n/lib/en_us/i19statusMobileLink.txt +1 -0
  1944. package/packages/i18n/lib/en_us/i19store.txt +1 -0
  1945. package/packages/i18n/lib/en_us/i19storefront.txt +1 -0
  1946. package/packages/i18n/lib/en_us/i19street.txt +1 -0
  1947. package/packages/i18n/lib/en_us/i19submit.txt +1 -0
  1948. package/packages/i18n/lib/en_us/i19subresource.txt +1 -0
  1949. package/packages/i18n/lib/en_us/i19subresourceId.txt +1 -0
  1950. package/packages/i18n/lib/en_us/i19subscribe.txt +1 -0
  1951. package/packages/i18n/lib/en_us/i19subscription.txt +1 -0
  1952. package/packages/i18n/lib/en_us/i19subscriptionInvoices.txt +1 -0
  1953. package/packages/i18n/lib/en_us/i19subscriptions.txt +1 -0
  1954. package/packages/i18n/lib/en_us/i19subtitle.txt +1 -0
  1955. package/packages/i18n/lib/en_us/i19subtotal.txt +1 -0
  1956. package/packages/i18n/lib/en_us/i19success.txt +1 -0
  1957. package/packages/i18n/lib/en_us/i19successfullyInstalled.txt +1 -0
  1958. package/packages/i18n/lib/en_us/i19successfullyUninstalled.txt +1 -0
  1959. package/packages/i18n/lib/en_us/i19suggestedProducts.txt +1 -0
  1960. package/packages/i18n/lib/en_us/i19summary.txt +1 -0
  1961. package/packages/i18n/lib/en_us/i19support.txt +1 -0
  1962. package/packages/i18n/lib/en_us/i19table.txt +1 -0
  1963. package/packages/i18n/lib/en_us/i19tax.txt +1 -0
  1964. package/packages/i18n/lib/en_us/i19taxExempt.txt +1 -0
  1965. package/packages/i18n/lib/en_us/i19termSearched.txt +1 -0
  1966. package/packages/i18n/lib/en_us/i19test.txt +1 -0
  1967. package/packages/i18n/lib/en_us/i19thanks.txt +1 -0
  1968. package/packages/i18n/lib/en_us/i19thanksForPurchase.txt +1 -0
  1969. package/packages/i18n/lib/en_us/i19theme.txt +1 -0
  1970. package/packages/i18n/lib/en_us/i19themes.txt +1 -0
  1971. package/packages/i18n/lib/en_us/i19ticketCode.txt +1 -0
  1972. package/packages/i18n/lib/en_us/i19title.txt +1 -0
  1973. package/packages/i18n/lib/en_us/i19titleTag.txt +1 -0
  1974. package/packages/i18n/lib/en_us/i19to.txt +1 -0
  1975. package/packages/i18n/lib/en_us/i19toEarn.txt +1 -0
  1976. package/packages/i18n/lib/en_us/i19toPay.txt +1 -0
  1977. package/packages/i18n/lib/en_us/i19today.txt +1 -0
  1978. package/packages/i18n/lib/en_us/i19toggleMenu.txt +1 -0
  1979. package/packages/i18n/lib/en_us/i19token.txt +1 -0
  1980. package/packages/i18n/lib/en_us/i19total.txt +1 -0
  1981. package/packages/i18n/lib/en_us/i19totalAmount.txt +1 -0
  1982. package/packages/i18n/lib/en_us/i19totalCancelled.txt +1 -0
  1983. package/packages/i18n/lib/en_us/i19totalCancelledMsg.txt +1 -0
  1984. package/packages/i18n/lib/en_us/i19totalResultsFor.txt +1 -0
  1985. package/packages/i18n/lib/en_us/i19totalSpent.txt +1 -0
  1986. package/packages/i18n/lib/en_us/i19trackDelivery.txt +1 -0
  1987. package/packages/i18n/lib/en_us/i19trackingCodes.txt +1 -0
  1988. package/packages/i18n/lib/en_us/i19transactionCode.txt +1 -0
  1989. package/packages/i18n/lib/en_us/i19transactionId.txt +1 -0
  1990. package/packages/i18n/lib/en_us/i19transactionItems.txt +1 -0
  1991. package/packages/i18n/lib/en_us/i19transactionStatus.txt +1 -0
  1992. package/packages/i18n/lib/en_us/i19transactionStatusMsg.txt +1 -0
  1993. package/packages/i18n/lib/en_us/i19transactionType.txt +1 -0
  1994. package/packages/i18n/lib/en_us/i19trendingApps.txt +1 -0
  1995. package/packages/i18n/lib/en_us/i19triggers.txt +1 -0
  1996. package/packages/i18n/lib/en_us/i19triggersMsg.txt +1 -0
  1997. package/packages/i18n/lib/en_us/i19tryAgain.txt +1 -0
  1998. package/packages/i18n/lib/en_us/i19type.txt +1 -0
  1999. package/packages/i18n/lib/en_us/i19unable.txt +1 -0
  2000. package/packages/i18n/lib/en_us/i19unableToInstallApp.txt +1 -0
  2001. package/packages/i18n/lib/en_us/i19unableToUninstallApp.txt +1 -0
  2002. package/packages/i18n/lib/en_us/i19unavailable.txt +1 -0
  2003. package/packages/i18n/lib/en_us/i19uninstall.txt +1 -0
  2004. package/packages/i18n/lib/en_us/i19uninstallingApp.txt +1 -0
  2005. package/packages/i18n/lib/en_us/i19uninstallingAppWithSuccess.txt +1 -0
  2006. package/packages/i18n/lib/en_us/i19units.txt +1 -0
  2007. package/packages/i18n/lib/en_us/i19unitsInStock.txt +1 -0
  2008. package/packages/i18n/lib/en_us/i19unlimited.txt +1 -0
  2009. package/packages/i18n/lib/en_us/i19unsubscribe.txt +1 -0
  2010. package/packages/i18n/lib/en_us/i19untilTomorrow.txt +1 -0
  2011. package/packages/i18n/lib/en_us/i19upTo.txt +1 -0
  2012. package/packages/i18n/lib/en_us/i19update.txt +1 -0
  2013. package/packages/i18n/lib/en_us/i19updatedAt.txt +1 -0
  2014. package/packages/i18n/lib/en_us/i19upload.txt +1 -0
  2015. package/packages/i18n/lib/en_us/i19uploadLogo.txt +1 -0
  2016. package/packages/i18n/lib/en_us/i19uploadTable.txt +1 -0
  2017. package/packages/i18n/lib/en_us/i19uponRequest.txt +1 -0
  2018. package/packages/i18n/lib/en_us/i19url.txt +1 -0
  2019. package/packages/i18n/lib/en_us/i19use$1LoyaltyPoints.txt +1 -0
  2020. package/packages/i18n/lib/en_us/i19usedPoints.txt +1 -0
  2021. package/packages/i18n/lib/en_us/i19user.txt +1 -0
  2022. package/packages/i18n/lib/en_us/i19userFound.txt +1 -0
  2023. package/packages/i18n/lib/en_us/i19username.txt +1 -0
  2024. package/packages/i18n/lib/en_us/i19usersFound.txt +1 -0
  2025. package/packages/i18n/lib/en_us/i19utm.txt +1 -0
  2026. package/packages/i18n/lib/en_us/i19utmCampaign.txt +1 -0
  2027. package/packages/i18n/lib/en_us/i19utmContent.txt +1 -0
  2028. package/packages/i18n/lib/en_us/i19utmMedium.txt +1 -0
  2029. package/packages/i18n/lib/en_us/i19utmSource.txt +1 -0
  2030. package/packages/i18n/lib/en_us/i19utmTerm.txt +1 -0
  2031. package/packages/i18n/lib/en_us/i19valid.txt +1 -0
  2032. package/packages/i18n/lib/en_us/i19validThru.txt +1 -0
  2033. package/packages/i18n/lib/en_us/i19validate.txt +1 -0
  2034. package/packages/i18n/lib/en_us/i19value.txt +1 -0
  2035. package/packages/i18n/lib/en_us/i19variation.txt +1 -0
  2036. package/packages/i18n/lib/en_us/i19variationId.txt +1 -0
  2037. package/packages/i18n/lib/en_us/i19variationName.txt +1 -0
  2038. package/packages/i18n/lib/en_us/i19variations.txt +1 -0
  2039. package/packages/i18n/lib/en_us/i19verified.txt +1 -0
  2040. package/packages/i18n/lib/en_us/i19version.txt +1 -0
  2041. package/packages/i18n/lib/en_us/i19versionDate.txt +1 -0
  2042. package/packages/i18n/lib/en_us/i19video.txt +1 -0
  2043. package/packages/i18n/lib/en_us/i19videos.txt +1 -0
  2044. package/packages/i18n/lib/en_us/i19visible.txt +1 -0
  2045. package/packages/i18n/lib/en_us/i19visibleProducts.txt +1 -0
  2046. package/packages/i18n/lib/en_us/i19visitor.txt +1 -0
  2047. package/packages/i18n/lib/en_us/i19visitorCheckout.txt +1 -0
  2048. package/packages/i18n/lib/en_us/i19warning.txt +1 -0
  2049. package/packages/i18n/lib/en_us/i19warningToReinstallAppMsg.txt +1 -0
  2050. package/packages/i18n/lib/en_us/i19wasAnErrorOnLoginMsg.txt +1 -0
  2051. package/packages/i18n/lib/en_us/i19weFrom.txt +1 -0
  2052. package/packages/i18n/lib/en_us/i19weRecommendToYou.txt +1 -0
  2053. package/packages/i18n/lib/en_us/i19weUseYourDataToMsg.txt +1 -0
  2054. package/packages/i18n/lib/en_us/i19webhooks.txt +1 -0
  2055. package/packages/i18n/lib/en_us/i19webhooksApiExternalApiMsg.txt +1 -0
  2056. package/packages/i18n/lib/en_us/i19webhooksApiMsg.txt +1 -0
  2057. package/packages/i18n/lib/en_us/i19webhooksApiStoreApiMsg.txt +1 -0
  2058. package/packages/i18n/lib/en_us/i19webhooksMapBodyMsg.txt +1 -0
  2059. package/packages/i18n/lib/en_us/i19webhooksMsg.txt +1 -0
  2060. package/packages/i18n/lib/en_us/i19webhooksSendBodyMsg.txt +1 -0
  2061. package/packages/i18n/lib/en_us/i19weekly.txt +1 -0
  2062. package/packages/i18n/lib/en_us/i19weight.txt +1 -0
  2063. package/packages/i18n/lib/en_us/i19welcome.txt +1 -0
  2064. package/packages/i18n/lib/en_us/i19welcomeTextMsg.txt +1 -0
  2065. package/packages/i18n/lib/en_us/i19widgets.txt +1 -0
  2066. package/packages/i18n/lib/en_us/i19width.txt +1 -0
  2067. package/packages/i18n/lib/en_us/i19willReceiveMsg.txt +1 -0
  2068. package/packages/i18n/lib/en_us/i19with.txt +1 -0
  2069. package/packages/i18n/lib/en_us/i19withoutInstallmentRates.txt +1 -0
  2070. package/packages/i18n/lib/en_us/i19workingDays.txt +1 -0
  2071. package/packages/i18n/lib/en_us/i19write.txt +1 -0
  2072. package/packages/i18n/lib/en_us/i19writeReview.txt +1 -0
  2073. package/packages/i18n/lib/en_us/i19year.txt +1 -0
  2074. package/packages/i18n/lib/en_us/i19yearly.txt +1 -0
  2075. package/packages/i18n/lib/en_us/i19years.txt +1 -0
  2076. package/packages/i18n/lib/en_us/i19yes.txt +1 -0
  2077. package/packages/i18n/lib/en_us/i19youEarn.txt +1 -0
  2078. package/packages/i18n/lib/en_us/i19yourInstalledApps.txt +1 -0
  2079. package/packages/i18n/lib/en_us/i19zipCode.txt +1 -0
  2080. package/packages/i18n/lib/en_us/i19zipCodeRange.txt +1 -0
  2081. package/packages/i18n/lib/en_us.d.ts +1161 -0
  2082. package/packages/i18n/lib/en_us.js +1163 -0
  2083. package/packages/i18n/lib/en_us.js.map +1 -0
  2084. package/packages/i18n/lib/pt_br/i19a.txt +1 -0
  2085. package/packages/i18n/lib/pt_br/i19about.txt +1 -0
  2086. package/packages/i18n/lib/pt_br/i19aboutCvvMsg.txt +1 -0
  2087. package/packages/i18n/lib/pt_br/i19aboveOf.txt +1 -0
  2088. package/packages/i18n/lib/pt_br/i19acceptAttachedFile.txt +1 -0
  2089. package/packages/i18n/lib/pt_br/i19acceptCustomOptionByCustomer.txt +1 -0
  2090. package/packages/i18n/lib/pt_br/i19accessMyAccount.txt +1 -0
  2091. package/packages/i18n/lib/pt_br/i19activate.txt +1 -0
  2092. package/packages/i18n/lib/pt_br/i19active.txt +1 -0
  2093. package/packages/i18n/lib/pt_br/i19adRelevance.txt +1 -0
  2094. package/packages/i18n/lib/pt_br/i19adType.txt +1 -0
  2095. package/packages/i18n/lib/pt_br/i19add$1ToEarn.txt +1 -0
  2096. package/packages/i18n/lib/pt_br/i19add.txt +1 -0
  2097. package/packages/i18n/lib/pt_br/i19addApp.txt +1 -0
  2098. package/packages/i18n/lib/pt_br/i19addCart.txt +1 -0
  2099. package/packages/i18n/lib/pt_br/i19addClient.txt +1 -0
  2100. package/packages/i18n/lib/pt_br/i19addDiscountCoupon.txt +1 -0
  2101. package/packages/i18n/lib/pt_br/i19addGiftList.txt +1 -0
  2102. package/packages/i18n/lib/pt_br/i19addGrid.txt +1 -0
  2103. package/packages/i18n/lib/pt_br/i19addMoreProducts.txt +1 -0
  2104. package/packages/i18n/lib/pt_br/i19addPreference.txt +1 -0
  2105. package/packages/i18n/lib/pt_br/i19addProduct.txt +1 -0
  2106. package/packages/i18n/lib/pt_br/i19addToCart.txt +1 -0
  2107. package/packages/i18n/lib/pt_br/i19addToFavorites.txt +1 -0
  2108. package/packages/i18n/lib/pt_br/i19addToPrice.txt +1 -0
  2109. package/packages/i18n/lib/pt_br/i19addVariants.txt +1 -0
  2110. package/packages/i18n/lib/pt_br/i19additional.txt +1 -0
  2111. package/packages/i18n/lib/pt_br/i19additionalComments.txt +1 -0
  2112. package/packages/i18n/lib/pt_br/i19additionalCost.txt +1 -0
  2113. package/packages/i18n/lib/pt_br/i19additionalCostOption.txt +1 -0
  2114. package/packages/i18n/lib/pt_br/i19additionalInfo.txt +1 -0
  2115. package/packages/i18n/lib/pt_br/i19additionalNotes.txt +1 -0
  2116. package/packages/i18n/lib/pt_br/i19address.txt +1 -0
  2117. package/packages/i18n/lib/pt_br/i19addresses.txt +1 -0
  2118. package/packages/i18n/lib/pt_br/i19addressesName.txt +1 -0
  2119. package/packages/i18n/lib/pt_br/i19adminSettings.txt +1 -0
  2120. package/packages/i18n/lib/pt_br/i19advanced.txt +1 -0
  2121. package/packages/i18n/lib/pt_br/i19adwords.txt +1 -0
  2122. package/packages/i18n/lib/pt_br/i19adwordsRemarketing.txt +1 -0
  2123. package/packages/i18n/lib/pt_br/i19adwordsRemarketingCode.txt +1 -0
  2124. package/packages/i18n/lib/pt_br/i19affiliateCoede.txt +1 -0
  2125. package/packages/i18n/lib/pt_br/i19afterApproval.txt +1 -0
  2126. package/packages/i18n/lib/pt_br/i19afterPayment.txt +1 -0
  2127. package/packages/i18n/lib/pt_br/i19all.txt +1 -0
  2128. package/packages/i18n/lib/pt_br/i19allCategories.txt +1 -0
  2129. package/packages/i18n/lib/pt_br/i19allOptions.txt +1 -0
  2130. package/packages/i18n/lib/pt_br/i19allProducts.txt +1 -0
  2131. package/packages/i18n/lib/pt_br/i19alt.txt +1 -0
  2132. package/packages/i18n/lib/pt_br/i19amount.txt +1 -0
  2133. package/packages/i18n/lib/pt_br/i19another.txt +1 -0
  2134. package/packages/i18n/lib/pt_br/i19anyPaymentMethodMsg.txt +1 -0
  2135. package/packages/i18n/lib/pt_br/i19anyPrice.txt +1 -0
  2136. package/packages/i18n/lib/pt_br/i19api.txt +1 -0
  2137. package/packages/i18n/lib/pt_br/i19app.txt +1 -0
  2138. package/packages/i18n/lib/pt_br/i19appAlreadyInstalledMsg.txt +1 -0
  2139. package/packages/i18n/lib/pt_br/i19appConfiguration.txt +1 -0
  2140. package/packages/i18n/lib/pt_br/i19appDevelopers.txt +1 -0
  2141. package/packages/i18n/lib/pt_br/i19application.txt +1 -0
  2142. package/packages/i18n/lib/pt_br/i19applications.txt +1 -0
  2143. package/packages/i18n/lib/pt_br/i19applyDiscount.txt +1 -0
  2144. package/packages/i18n/lib/pt_br/i19applyFilters.txt +1 -0
  2145. package/packages/i18n/lib/pt_br/i19apps.txt +1 -0
  2146. package/packages/i18n/lib/pt_br/i19areYouWantToDeleteAppQn.txt +1 -0
  2147. package/packages/i18n/lib/pt_br/i19asOf.txt +1 -0
  2148. package/packages/i18n/lib/pt_br/i19associateImage.txt +1 -0
  2149. package/packages/i18n/lib/pt_br/i19associateImages.txt +1 -0
  2150. package/packages/i18n/lib/pt_br/i19at.txt +1 -0
  2151. package/packages/i18n/lib/pt_br/i19atSight.txt +1 -0
  2152. package/packages/i18n/lib/pt_br/i19attachment.txt +1 -0
  2153. package/packages/i18n/lib/pt_br/i19attention.txt +1 -0
  2154. package/packages/i18n/lib/pt_br/i19authentication.txt +1 -0
  2155. package/packages/i18n/lib/pt_br/i19author.txt +1 -0
  2156. package/packages/i18n/lib/pt_br/i19authorizedStores.txt +1 -0
  2157. package/packages/i18n/lib/pt_br/i19automaticallyTrackInventory.txt +1 -0
  2158. package/packages/i18n/lib/pt_br/i19available.txt +1 -0
  2159. package/packages/i18n/lib/pt_br/i19availableApps.txt +1 -0
  2160. package/packages/i18n/lib/pt_br/i19availablePurchase.txt +1 -0
  2161. package/packages/i18n/lib/pt_br/i19average.txt +1 -0
  2162. package/packages/i18n/lib/pt_br/i19averageTicket.txt +1 -0
  2163. package/packages/i18n/lib/pt_br/i19back.txt +1 -0
  2164. package/packages/i18n/lib/pt_br/i19backToCart.txt +1 -0
  2165. package/packages/i18n/lib/pt_br/i19backToProduct.txt +1 -0
  2166. package/packages/i18n/lib/pt_br/i19bag.txt +1 -0
  2167. package/packages/i18n/lib/pt_br/i19balanceOrPoints.txt +1 -0
  2168. package/packages/i18n/lib/pt_br/i19banner.txt +1 -0
  2169. package/packages/i18n/lib/pt_br/i19banners.txt +1 -0
  2170. package/packages/i18n/lib/pt_br/i19bannersCollection.txt +1 -0
  2171. package/packages/i18n/lib/pt_br/i19barcodes.txt +1 -0
  2172. package/packages/i18n/lib/pt_br/i19basePrice.txt +1 -0
  2173. package/packages/i18n/lib/pt_br/i19bearersDocument.txt +1 -0
  2174. package/packages/i18n/lib/pt_br/i19best.txt +1 -0
  2175. package/packages/i18n/lib/pt_br/i19bestSellers.txt +1 -0
  2176. package/packages/i18n/lib/pt_br/i19biannual.txt +1 -0
  2177. package/packages/i18n/lib/pt_br/i19billingAddress.txt +1 -0
  2178. package/packages/i18n/lib/pt_br/i19bimonthly.txt +1 -0
  2179. package/packages/i18n/lib/pt_br/i19birthdate.txt +1 -0
  2180. package/packages/i18n/lib/pt_br/i19biweekly.txt +1 -0
  2181. package/packages/i18n/lib/pt_br/i19block.txt +1 -0
  2182. package/packages/i18n/lib/pt_br/i19borough.txt +1 -0
  2183. package/packages/i18n/lib/pt_br/i19brand.txt +1 -0
  2184. package/packages/i18n/lib/pt_br/i19brandBanners.txt +1 -0
  2185. package/packages/i18n/lib/pt_br/i19brandFound.txt +1 -0
  2186. package/packages/i18n/lib/pt_br/i19brandName.txt +1 -0
  2187. package/packages/i18n/lib/pt_br/i19brands.txt +1 -0
  2188. package/packages/i18n/lib/pt_br/i19brandsFound.txt +1 -0
  2189. package/packages/i18n/lib/pt_br/i19brazil.txt +1 -0
  2190. package/packages/i18n/lib/pt_br/i19browserIp.txt +1 -0
  2191. package/packages/i18n/lib/pt_br/i19budgetOnly.txt +1 -0
  2192. package/packages/i18n/lib/pt_br/i19buy.txt +1 -0
  2193. package/packages/i18n/lib/pt_br/i19buyAgain.txt +1 -0
  2194. package/packages/i18n/lib/pt_br/i19buyAlsoMsg.txt +1 -0
  2195. package/packages/i18n/lib/pt_br/i19buyKit.txt +1 -0
  2196. package/packages/i18n/lib/pt_br/i19buyNow.txt +1 -0
  2197. package/packages/i18n/lib/pt_br/i19buyOnWhatsApp.txt +1 -0
  2198. package/packages/i18n/lib/pt_br/i19buyTogether.txt +1 -0
  2199. package/packages/i18n/lib/pt_br/i19buyTogetherWith.txt +1 -0
  2200. package/packages/i18n/lib/pt_br/i19buyWith.txt +1 -0
  2201. package/packages/i18n/lib/pt_br/i19buyer.txt +1 -0
  2202. package/packages/i18n/lib/pt_br/i19buyers.txt +1 -0
  2203. package/packages/i18n/lib/pt_br/i19buyersProfile.txt +1 -0
  2204. package/packages/i18n/lib/pt_br/i19by.txt +1 -0
  2205. package/packages/i18n/lib/pt_br/i19calculateShipping.txt +1 -0
  2206. package/packages/i18n/lib/pt_br/i19callTo.txt +1 -0
  2207. package/packages/i18n/lib/pt_br/i19callback.txt +1 -0
  2208. package/packages/i18n/lib/pt_br/i19campaign.txt +1 -0
  2209. package/packages/i18n/lib/pt_br/i19campaignAppliedMsg.txt +1 -0
  2210. package/packages/i18n/lib/pt_br/i19cancel.txt +1 -0
  2211. package/packages/i18n/lib/pt_br/i19cancelOrder.txt +1 -0
  2212. package/packages/i18n/lib/pt_br/i19cancelReason.txt +1 -0
  2213. package/packages/i18n/lib/pt_br/i19cancelled.txt +1 -0
  2214. package/packages/i18n/lib/pt_br/i19cancelledAt.txt +1 -0
  2215. package/packages/i18n/lib/pt_br/i19cardNumber.txt +1 -0
  2216. package/packages/i18n/lib/pt_br/i19cartConfirmed.txt +1 -0
  2217. package/packages/i18n/lib/pt_br/i19cartDetails.txt +1 -0
  2218. package/packages/i18n/lib/pt_br/i19cartItems.txt +1 -0
  2219. package/packages/i18n/lib/pt_br/i19cartReview.txt +1 -0
  2220. package/packages/i18n/lib/pt_br/i19cartUpdated.txt +1 -0
  2221. package/packages/i18n/lib/pt_br/i19categories.txt +1 -0
  2222. package/packages/i18n/lib/pt_br/i19category.txt +1 -0
  2223. package/packages/i18n/lib/pt_br/i19categoryBanners.txt +1 -0
  2224. package/packages/i18n/lib/pt_br/i19categoryFound.txt +1 -0
  2225. package/packages/i18n/lib/pt_br/i19categoryName.txt +1 -0
  2226. package/packages/i18n/lib/pt_br/i19cellphone.txt +1 -0
  2227. package/packages/i18n/lib/pt_br/i19changePaymentMethod.txt +1 -0
  2228. package/packages/i18n/lib/pt_br/i19changeShippingMethod.txt +1 -0
  2229. package/packages/i18n/lib/pt_br/i19channel.txt +1 -0
  2230. package/packages/i18n/lib/pt_br/i19channelId.txt +1 -0
  2231. package/packages/i18n/lib/pt_br/i19channelType.txt +1 -0
  2232. package/packages/i18n/lib/pt_br/i19channels.txt +1 -0
  2233. package/packages/i18n/lib/pt_br/i19checkout.txt +1 -0
  2234. package/packages/i18n/lib/pt_br/i19checkoutDone.txt +1 -0
  2235. package/packages/i18n/lib/pt_br/i19checkoutEnabled.txt +1 -0
  2236. package/packages/i18n/lib/pt_br/i19checkoutLink.txt +1 -0
  2237. package/packages/i18n/lib/pt_br/i19checkoutMobileLink.txt +1 -0
  2238. package/packages/i18n/lib/pt_br/i19checkoutVisitor.txt +1 -0
  2239. package/packages/i18n/lib/pt_br/i19checkoutVisitorMsg.txt +1 -0
  2240. package/packages/i18n/lib/pt_br/i19chooseProductDetailsToBuy.txt +1 -0
  2241. package/packages/i18n/lib/pt_br/i19chooseSubscriptionPeriod.txt +1 -0
  2242. package/packages/i18n/lib/pt_br/i19city.txt +1 -0
  2243. package/packages/i18n/lib/pt_br/i19clear.txt +1 -0
  2244. package/packages/i18n/lib/pt_br/i19clearFilters.txt +1 -0
  2245. package/packages/i18n/lib/pt_br/i19click.txt +1 -0
  2246. package/packages/i18n/lib/pt_br/i19clickHere.txt +1 -0
  2247. package/packages/i18n/lib/pt_br/i19close.txt +1 -0
  2248. package/packages/i18n/lib/pt_br/i19closeFilters.txt +1 -0
  2249. package/packages/i18n/lib/pt_br/i19closedAt.txt +1 -0
  2250. package/packages/i18n/lib/pt_br/i19code.txt +1 -0
  2251. package/packages/i18n/lib/pt_br/i19codeCopied.txt +1 -0
  2252. package/packages/i18n/lib/pt_br/i19collection.txt +1 -0
  2253. package/packages/i18n/lib/pt_br/i19collectionBanners.txt +1 -0
  2254. package/packages/i18n/lib/pt_br/i19collectionItems.txt +1 -0
  2255. package/packages/i18n/lib/pt_br/i19collectionName.txt +1 -0
  2256. package/packages/i18n/lib/pt_br/i19collections.txt +1 -0
  2257. package/packages/i18n/lib/pt_br/i19color.txt +1 -0
  2258. package/packages/i18n/lib/pt_br/i19colors.txt +1 -0
  2259. package/packages/i18n/lib/pt_br/i19community.txt +1 -0
  2260. package/packages/i18n/lib/pt_br/i19companyRegistration.txt +1 -0
  2261. package/packages/i18n/lib/pt_br/i19compareAtPrice.txt +1 -0
  2262. package/packages/i18n/lib/pt_br/i19compareProducts.txt +1 -0
  2263. package/packages/i18n/lib/pt_br/i19comparedPreviousPeriodMsg.txt +1 -0
  2264. package/packages/i18n/lib/pt_br/i19complement.txt +1 -0
  2265. package/packages/i18n/lib/pt_br/i19complementInformation.txt +1 -0
  2266. package/packages/i18n/lib/pt_br/i19configuration.txt +1 -0
  2267. package/packages/i18n/lib/pt_br/i19confirmPassword.txt +1 -0
  2268. package/packages/i18n/lib/pt_br/i19confirmPurchase.txt +1 -0
  2269. package/packages/i18n/lib/pt_br/i19connectionErrorMsg.txt +1 -0
  2270. package/packages/i18n/lib/pt_br/i19connectionErrorProductMsg.txt +1 -0
  2271. package/packages/i18n/lib/pt_br/i19contactPhone.txt +1 -0
  2272. package/packages/i18n/lib/pt_br/i19contactUsMsg.txt +1 -0
  2273. package/packages/i18n/lib/pt_br/i19content.txt +1 -0
  2274. package/packages/i18n/lib/pt_br/i19continue.txt +1 -0
  2275. package/packages/i18n/lib/pt_br/i19continueLoginOnPopup.txt +1 -0
  2276. package/packages/i18n/lib/pt_br/i19continueShopping.txt +1 -0
  2277. package/packages/i18n/lib/pt_br/i19control.txt +1 -0
  2278. package/packages/i18n/lib/pt_br/i19copyCode.txt +1 -0
  2279. package/packages/i18n/lib/pt_br/i19copyErrorMsg.txt +1 -0
  2280. package/packages/i18n/lib/pt_br/i19copyright.txt +1 -0
  2281. package/packages/i18n/lib/pt_br/i19corporateName.txt +1 -0
  2282. package/packages/i18n/lib/pt_br/i19costDeclaredValue.txt +1 -0
  2283. package/packages/i18n/lib/pt_br/i19costPrice.txt +1 -0
  2284. package/packages/i18n/lib/pt_br/i19countryCode.txt +1 -0
  2285. package/packages/i18n/lib/pt_br/i19couponAppliedMsg.txt +1 -0
  2286. package/packages/i18n/lib/pt_br/i19createAnAccount.txt +1 -0
  2287. package/packages/i18n/lib/pt_br/i19createTransaction.txt +1 -0
  2288. package/packages/i18n/lib/pt_br/i19creation.txt +1 -0
  2289. package/packages/i18n/lib/pt_br/i19credit.txt +1 -0
  2290. package/packages/i18n/lib/pt_br/i19creditCard.txt +1 -0
  2291. package/packages/i18n/lib/pt_br/i19creditCardBin.txt +1 -0
  2292. package/packages/i18n/lib/pt_br/i19creditCardCompany.txt +1 -0
  2293. package/packages/i18n/lib/pt_br/i19creditCardHolderName.txt +1 -0
  2294. package/packages/i18n/lib/pt_br/i19creditCardLastDigits.txt +1 -0
  2295. package/packages/i18n/lib/pt_br/i19creditorFees.txt +1 -0
  2296. package/packages/i18n/lib/pt_br/i19creditorFeesIntermediator.txt +1 -0
  2297. package/packages/i18n/lib/pt_br/i19creditorFeesOperational.txt +1 -0
  2298. package/packages/i18n/lib/pt_br/i19currencyId.txt +1 -0
  2299. package/packages/i18n/lib/pt_br/i19currencySymbol.txt +1 -0
  2300. package/packages/i18n/lib/pt_br/i19custom.txt +1 -0
  2301. package/packages/i18n/lib/pt_br/i19customFields.txt +1 -0
  2302. package/packages/i18n/lib/pt_br/i19customPayment.txt +1 -0
  2303. package/packages/i18n/lib/pt_br/i19customValue.txt +1 -0
  2304. package/packages/i18n/lib/pt_br/i19customer.txt +1 -0
  2305. package/packages/i18n/lib/pt_br/i19customerNotified.txt +1 -0
  2306. package/packages/i18n/lib/pt_br/i19customerService.txt +1 -0
  2307. package/packages/i18n/lib/pt_br/i19customizationAddToPrice.txt +1 -0
  2308. package/packages/i18n/lib/pt_br/i19customizationAttachment.txt +1 -0
  2309. package/packages/i18n/lib/pt_br/i19customizationChosen.txt +1 -0
  2310. package/packages/i18n/lib/pt_br/i19customizations.txt +1 -0
  2311. package/packages/i18n/lib/pt_br/i19dailyAverage.txt +1 -0
  2312. package/packages/i18n/lib/pt_br/i19danger.txt +1 -0
  2313. package/packages/i18n/lib/pt_br/i19dashboard.txt +1 -0
  2314. package/packages/i18n/lib/pt_br/i19dateTime.txt +1 -0
  2315. package/packages/i18n/lib/pt_br/i19day.txt +1 -0
  2316. package/packages/i18n/lib/pt_br/i19days.txt +1 -0
  2317. package/packages/i18n/lib/pt_br/i19declare.txt +1 -0
  2318. package/packages/i18n/lib/pt_br/i19declaredValue.txt +1 -0
  2319. package/packages/i18n/lib/pt_br/i19delete.txt +1 -0
  2320. package/packages/i18n/lib/pt_br/i19deleteAll.txt +1 -0
  2321. package/packages/i18n/lib/pt_br/i19delivery.txt +1 -0
  2322. package/packages/i18n/lib/pt_br/i19deliveryCostOwnHandMsg.txt +1 -0
  2323. package/packages/i18n/lib/pt_br/i19deliveryInMsg.txt +1 -0
  2324. package/packages/i18n/lib/pt_br/i19deliveryReceipt.txt +1 -0
  2325. package/packages/i18n/lib/pt_br/i19deliveryReceiptMsg.txt +1 -0
  2326. package/packages/i18n/lib/pt_br/i19deliveryTime.txt +1 -0
  2327. package/packages/i18n/lib/pt_br/i19deliveryTrack.txt +1 -0
  2328. package/packages/i18n/lib/pt_br/i19deliveryWithOwnHandMsg.txt +1 -0
  2329. package/packages/i18n/lib/pt_br/i19description.txt +1 -0
  2330. package/packages/i18n/lib/pt_br/i19desktop.txt +1 -0
  2331. package/packages/i18n/lib/pt_br/i19details.txt +1 -0
  2332. package/packages/i18n/lib/pt_br/i19didYouMean.txt +1 -0
  2333. package/packages/i18n/lib/pt_br/i19digits.txt +1 -0
  2334. package/packages/i18n/lib/pt_br/i19directLinkPayment.txt +1 -0
  2335. package/packages/i18n/lib/pt_br/i19disable.txt +1 -0
  2336. package/packages/i18n/lib/pt_br/i19discount.txt +1 -0
  2337. package/packages/i18n/lib/pt_br/i19discountCoupon.txt +1 -0
  2338. package/packages/i18n/lib/pt_br/i19discountOf.txt +1 -0
  2339. package/packages/i18n/lib/pt_br/i19discountValueMsg.txt +1 -0
  2340. package/packages/i18n/lib/pt_br/i19displayName.txt +1 -0
  2341. package/packages/i18n/lib/pt_br/i19doPaymentMsg.txt +1 -0
  2342. package/packages/i18n/lib/pt_br/i19doYouWantToDeleteAppQn.txt +1 -0
  2343. package/packages/i18n/lib/pt_br/i19doYouWantToReinstallAppQn.txt +1 -0
  2344. package/packages/i18n/lib/pt_br/i19docCountry.txt +1 -0
  2345. package/packages/i18n/lib/pt_br/i19docNumber.txt +1 -0
  2346. package/packages/i18n/lib/pt_br/i19docs.txt +1 -0
  2347. package/packages/i18n/lib/pt_br/i19domain.txt +1 -0
  2348. package/packages/i18n/lib/pt_br/i19download.txt +1 -0
  2349. package/packages/i18n/lib/pt_br/i19downloadTable.txt +1 -0
  2350. package/packages/i18n/lib/pt_br/i19edit.txt +1 -0
  2351. package/packages/i18n/lib/pt_br/i19editAdditionalCost.txt +1 -0
  2352. package/packages/i18n/lib/pt_br/i19editComments.txt +1 -0
  2353. package/packages/i18n/lib/pt_br/i19editDispatchAndFulfillment.txt +1 -0
  2354. package/packages/i18n/lib/pt_br/i19editFeatures.txt +1 -0
  2355. package/packages/i18n/lib/pt_br/i19editFilters.txt +1 -0
  2356. package/packages/i18n/lib/pt_br/i19editGtinMpn.txt +1 -0
  2357. package/packages/i18n/lib/pt_br/i19editHtmlDescription.txt +1 -0
  2358. package/packages/i18n/lib/pt_br/i19editObservationInfo.txt +1 -0
  2359. package/packages/i18n/lib/pt_br/i19editPaymentDetails.txt +1 -0
  2360. package/packages/i18n/lib/pt_br/i19editProductDimensions.txt +1 -0
  2361. package/packages/i18n/lib/pt_br/i19editSeoFields.txt +1 -0
  2362. package/packages/i18n/lib/pt_br/i19editStorefront.txt +1 -0
  2363. package/packages/i18n/lib/pt_br/i19editVariation.txt +1 -0
  2364. package/packages/i18n/lib/pt_br/i19editing.txt +1 -0
  2365. package/packages/i18n/lib/pt_br/i19email.txt +1 -0
  2366. package/packages/i18n/lib/pt_br/i19emailAddress.txt +1 -0
  2367. package/packages/i18n/lib/pt_br/i19emailCartTextMsg.txt +1 -0
  2368. package/packages/i18n/lib/pt_br/i19emailCartTitleMsg.txt +1 -0
  2369. package/packages/i18n/lib/pt_br/i19emailDeliveredTextMsg.txt +1 -0
  2370. package/packages/i18n/lib/pt_br/i19emailDeliveredTitleMsg.txt +1 -0
  2371. package/packages/i18n/lib/pt_br/i19emailInfoMsg.txt +1 -0
  2372. package/packages/i18n/lib/pt_br/i19emailMarketing.txt +1 -0
  2373. package/packages/i18n/lib/pt_br/i19emailMarketingOptInMsg.txt +1 -0
  2374. package/packages/i18n/lib/pt_br/i19emailProfileNotFoundMsg.txt +1 -0
  2375. package/packages/i18n/lib/pt_br/i19emailShippedTextMsg.txt +1 -0
  2376. package/packages/i18n/lib/pt_br/i19emailShippedTitleMsg.txt +1 -0
  2377. package/packages/i18n/lib/pt_br/i19emailWasSentMsg.txt +1 -0
  2378. package/packages/i18n/lib/pt_br/i19emails.txt +1 -0
  2379. package/packages/i18n/lib/pt_br/i19empty.txt +1 -0
  2380. package/packages/i18n/lib/pt_br/i19emptyCart.txt +1 -0
  2381. package/packages/i18n/lib/pt_br/i19emptyCartMsg.txt +1 -0
  2382. package/packages/i18n/lib/pt_br/i19enabled.txt +1 -0
  2383. package/packages/i18n/lib/pt_br/i19end.txt +1 -0
  2384. package/packages/i18n/lib/pt_br/i19endDate.txt +1 -0
  2385. package/packages/i18n/lib/pt_br/i19endpoint.txt +1 -0
  2386. package/packages/i18n/lib/pt_br/i19endsIn.txt +1 -0
  2387. package/packages/i18n/lib/pt_br/i19enterEmailCodeMsg.txt +1 -0
  2388. package/packages/i18n/lib/pt_br/i19enterWithPassword.txt +1 -0
  2389. package/packages/i18n/lib/pt_br/i19enterYourDocNumber.txt +1 -0
  2390. package/packages/i18n/lib/pt_br/i19enterYourDocNumberMsg.txt +1 -0
  2391. package/packages/i18n/lib/pt_br/i19enterYourEmail.txt +1 -0
  2392. package/packages/i18n/lib/pt_br/i19enterYourEmailMsg.txt +1 -0
  2393. package/packages/i18n/lib/pt_br/i19erp.txt +1 -0
  2394. package/packages/i18n/lib/pt_br/i19error.txt +1 -0
  2395. package/packages/i18n/lib/pt_br/i19errorMsg.txt +1 -0
  2396. package/packages/i18n/lib/pt_br/i19events.txt +1 -0
  2397. package/packages/i18n/lib/pt_br/i19export.txt +1 -0
  2398. package/packages/i18n/lib/pt_br/i19exportToCsv.txt +1 -0
  2399. package/packages/i18n/lib/pt_br/i19external.txt +1 -0
  2400. package/packages/i18n/lib/pt_br/i19extra.txt +1 -0
  2401. package/packages/i18n/lib/pt_br/i19extraCost.txt +1 -0
  2402. package/packages/i18n/lib/pt_br/i19familyName.txt +1 -0
  2403. package/packages/i18n/lib/pt_br/i19favorites.txt +1 -0
  2404. package/packages/i18n/lib/pt_br/i19featuredApps.txt +1 -0
  2405. package/packages/i18n/lib/pt_br/i19female.txt +1 -0
  2406. package/packages/i18n/lib/pt_br/i19field.txt +1 -0
  2407. package/packages/i18n/lib/pt_br/i19files.txt +1 -0
  2408. package/packages/i18n/lib/pt_br/i19filter.txt +1 -0
  2409. package/packages/i18n/lib/pt_br/i19filterOut.txt +1 -0
  2410. package/packages/i18n/lib/pt_br/i19filterProducts.txt +1 -0
  2411. package/packages/i18n/lib/pt_br/i19filterResults.txt +1 -0
  2412. package/packages/i18n/lib/pt_br/i19finalPrice.txt +1 -0
  2413. package/packages/i18n/lib/pt_br/i19finalPriceWithAdditional.txt +1 -0
  2414. package/packages/i18n/lib/pt_br/i19financialStatus.txt +1 -0
  2415. package/packages/i18n/lib/pt_br/i19firstSteps.txt +1 -0
  2416. package/packages/i18n/lib/pt_br/i19followingAddress.txt +1 -0
  2417. package/packages/i18n/lib/pt_br/i19for.txt +1 -0
  2418. package/packages/i18n/lib/pt_br/i19free.txt +1 -0
  2419. package/packages/i18n/lib/pt_br/i19freeShipping.txt +1 -0
  2420. package/packages/i18n/lib/pt_br/i19freeShippingFrom.txt +1 -0
  2421. package/packages/i18n/lib/pt_br/i19freebie.txt +1 -0
  2422. package/packages/i18n/lib/pt_br/i19freight.txt +1 -0
  2423. package/packages/i18n/lib/pt_br/i19freightCost.txt +1 -0
  2424. package/packages/i18n/lib/pt_br/i19from.txt +1 -0
  2425. package/packages/i18n/lib/pt_br/i19fulfillmentStatus.txt +1 -0
  2426. package/packages/i18n/lib/pt_br/i19fullName.txt +1 -0
  2427. package/packages/i18n/lib/pt_br/i19fullscreen.txt +1 -0
  2428. package/packages/i18n/lib/pt_br/i19gateway.txt +1 -0
  2429. package/packages/i18n/lib/pt_br/i19gender.txt +1 -0
  2430. package/packages/i18n/lib/pt_br/i19genderX.txt +1 -0
  2431. package/packages/i18n/lib/pt_br/i19general.txt +1 -0
  2432. package/packages/i18n/lib/pt_br/i19generateBillet.txt +1 -0
  2433. package/packages/i18n/lib/pt_br/i19get$1back.txt +1 -0
  2434. package/packages/i18n/lib/pt_br/i19get.txt +1 -0
  2435. package/packages/i18n/lib/pt_br/i19giftList.txt +1 -0
  2436. package/packages/i18n/lib/pt_br/i19giftListAuthors.txt +1 -0
  2437. package/packages/i18n/lib/pt_br/i19giftListAuthorsContact.txt +1 -0
  2438. package/packages/i18n/lib/pt_br/i19giftListDescription.txt +1 -0
  2439. package/packages/i18n/lib/pt_br/i19giftListEventDate.txt +1 -0
  2440. package/packages/i18n/lib/pt_br/i19giftListInformation.txt +1 -0
  2441. package/packages/i18n/lib/pt_br/i19giftListNotificationPurchaseMsg.txt +1 -0
  2442. package/packages/i18n/lib/pt_br/i19giftListOwnerID.txt +1 -0
  2443. package/packages/i18n/lib/pt_br/i19giftListPermalink.txt +1 -0
  2444. package/packages/i18n/lib/pt_br/i19giftListTitle.txt +1 -0
  2445. package/packages/i18n/lib/pt_br/i19giftListValidThru.txt +1 -0
  2446. package/packages/i18n/lib/pt_br/i19giftListWaiting.txt +1 -0
  2447. package/packages/i18n/lib/pt_br/i19giftTo.txt +1 -0
  2448. package/packages/i18n/lib/pt_br/i19giftWrap.txt +1 -0
  2449. package/packages/i18n/lib/pt_br/i19gitRepository.txt +1 -0
  2450. package/packages/i18n/lib/pt_br/i19givenName.txt +1 -0
  2451. package/packages/i18n/lib/pt_br/i19goToCart.txt +1 -0
  2452. package/packages/i18n/lib/pt_br/i19goToStore.txt +1 -0
  2453. package/packages/i18n/lib/pt_br/i19goToTop.txt +1 -0
  2454. package/packages/i18n/lib/pt_br/i19googleAnalytics.txt +1 -0
  2455. package/packages/i18n/lib/pt_br/i19googleProductCategoryId.txt +1 -0
  2456. package/packages/i18n/lib/pt_br/i19gridId.txt +1 -0
  2457. package/packages/i18n/lib/pt_br/i19gridName.txt +1 -0
  2458. package/packages/i18n/lib/pt_br/i19grids.txt +1 -0
  2459. package/packages/i18n/lib/pt_br/i19guestCheckoutMsg.txt +1 -0
  2460. package/packages/i18n/lib/pt_br/i19hasCouponOrVoucherQn.txt +1 -0
  2461. package/packages/i18n/lib/pt_br/i19height.txt +1 -0
  2462. package/packages/i18n/lib/pt_br/i19hello.txt +1 -0
  2463. package/packages/i18n/lib/pt_br/i19helloAgain.txt +1 -0
  2464. package/packages/i18n/lib/pt_br/i19help.txt +1 -0
  2465. package/packages/i18n/lib/pt_br/i19helpful.txt +1 -0
  2466. package/packages/i18n/lib/pt_br/i19high.txt +1 -0
  2467. package/packages/i18n/lib/pt_br/i19highPriority.txt +1 -0
  2468. package/packages/i18n/lib/pt_br/i19highestPrice.txt +1 -0
  2469. package/packages/i18n/lib/pt_br/i19holderName.txt +1 -0
  2470. package/packages/i18n/lib/pt_br/i19home.txt +1 -0
  2471. package/packages/i18n/lib/pt_br/i19hour.txt +1 -0
  2472. package/packages/i18n/lib/pt_br/i19hours.txt +1 -0
  2473. package/packages/i18n/lib/pt_br/i19iForgotMyPassword.txt +1 -0
  2474. package/packages/i18n/lib/pt_br/i19iReadAndAccept.txt +1 -0
  2475. package/packages/i18n/lib/pt_br/i19icon.txt +1 -0
  2476. package/packages/i18n/lib/pt_br/i19id.txt +1 -0
  2477. package/packages/i18n/lib/pt_br/i19idOfShippingMethod.txt +1 -0
  2478. package/packages/i18n/lib/pt_br/i19identification.txt +1 -0
  2479. package/packages/i18n/lib/pt_br/i19identifyYourAccount.txt +1 -0
  2480. package/packages/i18n/lib/pt_br/i19image.txt +1 -0
  2481. package/packages/i18n/lib/pt_br/i19images.txt +1 -0
  2482. package/packages/i18n/lib/pt_br/i19import.txt +1 -0
  2483. package/packages/i18n/lib/pt_br/i19in.txt +1 -0
  2484. package/packages/i18n/lib/pt_br/i19inStock.txt +1 -0
  2485. package/packages/i18n/lib/pt_br/i19inStockAt.txt +1 -0
  2486. package/packages/i18n/lib/pt_br/i19inactive.txt +1 -0
  2487. package/packages/i18n/lib/pt_br/i19incorrect.txt +1 -0
  2488. package/packages/i18n/lib/pt_br/i19incorrectEmailCodeMsg.txt +1 -0
  2489. package/packages/i18n/lib/pt_br/i19incorrectFormat.txt +1 -0
  2490. package/packages/i18n/lib/pt_br/i19info.txt +1 -0
  2491. package/packages/i18n/lib/pt_br/i19inscriptionNumber.txt +1 -0
  2492. package/packages/i18n/lib/pt_br/i19insert.txt +1 -0
  2493. package/packages/i18n/lib/pt_br/i19install.txt +1 -0
  2494. package/packages/i18n/lib/pt_br/i19installNow.txt +1 -0
  2495. package/packages/i18n/lib/pt_br/i19installed.txt +1 -0
  2496. package/packages/i18n/lib/pt_br/i19installedApps.txt +1 -0
  2497. package/packages/i18n/lib/pt_br/i19installingApp.txt +1 -0
  2498. package/packages/i18n/lib/pt_br/i19installment.txt +1 -0
  2499. package/packages/i18n/lib/pt_br/i19installments.txt +1 -0
  2500. package/packages/i18n/lib/pt_br/i19institutional.txt +1 -0
  2501. package/packages/i18n/lib/pt_br/i19interestFree.txt +1 -0
  2502. package/packages/i18n/lib/pt_br/i19intermediator.txt +1 -0
  2503. package/packages/i18n/lib/pt_br/i19invalidCard.txt +1 -0
  2504. package/packages/i18n/lib/pt_br/i19invalidCardMsg.txt +1 -0
  2505. package/packages/i18n/lib/pt_br/i19invalidCouponMsg.txt +1 -0
  2506. package/packages/i18n/lib/pt_br/i19invalidDomainName.txt +1 -0
  2507. package/packages/i18n/lib/pt_br/i19invalidLoginInfoMsg.txt +1 -0
  2508. package/packages/i18n/lib/pt_br/i19inventory.txt +1 -0
  2509. package/packages/i18n/lib/pt_br/i19inventoryHistory.txt +1 -0
  2510. package/packages/i18n/lib/pt_br/i19invoice.txt +1 -0
  2511. package/packages/i18n/lib/pt_br/i19invoices.txt +1 -0
  2512. package/packages/i18n/lib/pt_br/i19isFilter.txt +1 -0
  2513. package/packages/i18n/lib/pt_br/i19isNotYou.txt +1 -0
  2514. package/packages/i18n/lib/pt_br/i19item.txt +1 -0
  2515. package/packages/i18n/lib/pt_br/i19items.txt +1 -0
  2516. package/packages/i18n/lib/pt_br/i19itemsFound.txt +1 -0
  2517. package/packages/i18n/lib/pt_br/i19jurifical.txt +1 -0
  2518. package/packages/i18n/lib/pt_br/i19just.txt +1 -0
  2519. package/packages/i18n/lib/pt_br/i19keywords.txt +1 -0
  2520. package/packages/i18n/lib/pt_br/i19kit.txt +1 -0
  2521. package/packages/i18n/lib/pt_br/i19label.txt +1 -0
  2522. package/packages/i18n/lib/pt_br/i19labelOfCustomization.txt +1 -0
  2523. package/packages/i18n/lib/pt_br/i19last.txt +1 -0
  2524. package/packages/i18n/lib/pt_br/i19lastOptions.txt +1 -0
  2525. package/packages/i18n/lib/pt_br/i19lastPurchase.txt +1 -0
  2526. package/packages/i18n/lib/pt_br/i19lastSearchedTerms.txt +1 -0
  2527. package/packages/i18n/lib/pt_br/i19lastVisitedProducts.txt +1 -0
  2528. package/packages/i18n/lib/pt_br/i19latestOrders.txt +1 -0
  2529. package/packages/i18n/lib/pt_br/i19launch.txt +1 -0
  2530. package/packages/i18n/lib/pt_br/i19launching.txt +1 -0
  2531. package/packages/i18n/lib/pt_br/i19length.txt +1 -0
  2532. package/packages/i18n/lib/pt_br/i19lineAddress.txt +1 -0
  2533. package/packages/i18n/lib/pt_br/i19list.txt +1 -0
  2534. package/packages/i18n/lib/pt_br/i19listOfInvoices.txt +1 -0
  2535. package/packages/i18n/lib/pt_br/i19listOfPayments.txt +1 -0
  2536. package/packages/i18n/lib/pt_br/i19listSubscriptionInvoices.txt +1 -0
  2537. package/packages/i18n/lib/pt_br/i19load.txt +1 -0
  2538. package/packages/i18n/lib/pt_br/i19loadDataErrorMsg.txt +1 -0
  2539. package/packages/i18n/lib/pt_br/i19loadMore.txt +1 -0
  2540. package/packages/i18n/lib/pt_br/i19loadMoreProducts.txt +1 -0
  2541. package/packages/i18n/lib/pt_br/i19loadProductErrorMsg.txt +1 -0
  2542. package/packages/i18n/lib/pt_br/i19loading.txt +1 -0
  2543. package/packages/i18n/lib/pt_br/i19locale.txt +1 -0
  2544. package/packages/i18n/lib/pt_br/i19login.txt +1 -0
  2545. package/packages/i18n/lib/pt_br/i19loginEnabled.txt +1 -0
  2546. package/packages/i18n/lib/pt_br/i19loginErrorMsg.txt +1 -0
  2547. package/packages/i18n/lib/pt_br/i19loginForOrderDetailsMsg.txt +1 -0
  2548. package/packages/i18n/lib/pt_br/i19logo.txt +1 -0
  2549. package/packages/i18n/lib/pt_br/i19logout.txt +1 -0
  2550. package/packages/i18n/lib/pt_br/i19low.txt +1 -0
  2551. package/packages/i18n/lib/pt_br/i19lowestPrice.txt +1 -0
  2552. package/packages/i18n/lib/pt_br/i19loyaltyPoints.txt +1 -0
  2553. package/packages/i18n/lib/pt_br/i19loyaltyPointsName.txt +1 -0
  2554. package/packages/i18n/lib/pt_br/i19loyaltyPointsPointsValue.txt +1 -0
  2555. package/packages/i18n/lib/pt_br/i19madeBy.txt +1 -0
  2556. package/packages/i18n/lib/pt_br/i19mainEmail.txt +1 -0
  2557. package/packages/i18n/lib/pt_br/i19male.txt +1 -0
  2558. package/packages/i18n/lib/pt_br/i19manageStock.txt +1 -0
  2559. package/packages/i18n/lib/pt_br/i19manageYourPurchaseHistory.txt +1 -0
  2560. package/packages/i18n/lib/pt_br/i19marketing.txt +1 -0
  2561. package/packages/i18n/lib/pt_br/i19marketplace.txt +1 -0
  2562. package/packages/i18n/lib/pt_br/i19marketplaces.txt +1 -0
  2563. package/packages/i18n/lib/pt_br/i19massEdit.txt +1 -0
  2564. package/packages/i18n/lib/pt_br/i19maxQuantity.txt +1 -0
  2565. package/packages/i18n/lib/pt_br/i19maximum.txt +1 -0
  2566. package/packages/i18n/lib/pt_br/i19measurement.txt +1 -0
  2567. package/packages/i18n/lib/pt_br/i19media.txt +1 -0
  2568. package/packages/i18n/lib/pt_br/i19mediaGallery.txt +1 -0
  2569. package/packages/i18n/lib/pt_br/i19menu.txt +1 -0
  2570. package/packages/i18n/lib/pt_br/i19metaTagDescription.txt +1 -0
  2571. package/packages/i18n/lib/pt_br/i19metafields.txt +1 -0
  2572. package/packages/i18n/lib/pt_br/i19metafieldsMsg.txt +1 -0
  2573. package/packages/i18n/lib/pt_br/i19middleName.txt +1 -0
  2574. package/packages/i18n/lib/pt_br/i19milliseconds.txt +1 -0
  2575. package/packages/i18n/lib/pt_br/i19minQuantity.txt +1 -0
  2576. package/packages/i18n/lib/pt_br/i19minimum.txt +1 -0
  2577. package/packages/i18n/lib/pt_br/i19minus.txt +1 -0
  2578. package/packages/i18n/lib/pt_br/i19minute.txt +1 -0
  2579. package/packages/i18n/lib/pt_br/i19minutes.txt +1 -0
  2580. package/packages/i18n/lib/pt_br/i19mlCategoryId.txt +1 -0
  2581. package/packages/i18n/lib/pt_br/i19mobile.txt +1 -0
  2582. package/packages/i18n/lib/pt_br/i19mobileLink.txt +1 -0
  2583. package/packages/i18n/lib/pt_br/i19modules.txt +1 -0
  2584. package/packages/i18n/lib/pt_br/i19month.txt +1 -0
  2585. package/packages/i18n/lib/pt_br/i19monthly.txt +1 -0
  2586. package/packages/i18n/lib/pt_br/i19mostPopular.txt +1 -0
  2587. package/packages/i18n/lib/pt_br/i19mostRelevant.txt +1 -0
  2588. package/packages/i18n/lib/pt_br/i19motorcycleCourier.txt +1 -0
  2589. package/packages/i18n/lib/pt_br/i19myAccount.txt +1 -0
  2590. package/packages/i18n/lib/pt_br/i19myAccountAndOrders.txt +1 -0
  2591. package/packages/i18n/lib/pt_br/i19myCart.txt +1 -0
  2592. package/packages/i18n/lib/pt_br/i19myFavorites.txt +1 -0
  2593. package/packages/i18n/lib/pt_br/i19myOrders.txt +1 -0
  2594. package/packages/i18n/lib/pt_br/i19myShoppingCart.txt +1 -0
  2595. package/packages/i18n/lib/pt_br/i19name.txt +1 -0
  2596. package/packages/i18n/lib/pt_br/i19nameOnCard.txt +1 -0
  2597. package/packages/i18n/lib/pt_br/i19namespace.txt +1 -0
  2598. package/packages/i18n/lib/pt_br/i19namespaceMsg.txt +1 -0
  2599. package/packages/i18n/lib/pt_br/i19nearTo.txt +1 -0
  2600. package/packages/i18n/lib/pt_br/i19needHelpQn.txt +1 -0
  2601. package/packages/i18n/lib/pt_br/i19new.txt +1 -0
  2602. package/packages/i18n/lib/pt_br/i19newAddress.txt +1 -0
  2603. package/packages/i18n/lib/pt_br/i19newOrders.txt +1 -0
  2604. package/packages/i18n/lib/pt_br/i19newPassword.txt +1 -0
  2605. package/packages/i18n/lib/pt_br/i19newPriceRange.txt +1 -0
  2606. package/packages/i18n/lib/pt_br/i19newVersionAvailableMsg.txt +1 -0
  2607. package/packages/i18n/lib/pt_br/i19newsletter.txt +1 -0
  2608. package/packages/i18n/lib/pt_br/i19newsletterReport.txt +1 -0
  2609. package/packages/i18n/lib/pt_br/i19next.txt +1 -0
  2610. package/packages/i18n/lib/pt_br/i19nickname.txt +1 -0
  2611. package/packages/i18n/lib/pt_br/i19no.txt +1 -0
  2612. package/packages/i18n/lib/pt_br/i19noAdditional.txt +1 -0
  2613. package/packages/i18n/lib/pt_br/i19noAppsAvailable.txt +1 -0
  2614. package/packages/i18n/lib/pt_br/i19noBrand.txt +1 -0
  2615. package/packages/i18n/lib/pt_br/i19noCategory.txt +1 -0
  2616. package/packages/i18n/lib/pt_br/i19noCollection.txt +1 -0
  2617. package/packages/i18n/lib/pt_br/i19noGrid.txt +1 -0
  2618. package/packages/i18n/lib/pt_br/i19noItemSelected.txt +1 -0
  2619. package/packages/i18n/lib/pt_br/i19noNewOrdersMsg.txt +1 -0
  2620. package/packages/i18n/lib/pt_br/i19noNumber.txt +1 -0
  2621. package/packages/i18n/lib/pt_br/i19noOrder.txt +1 -0
  2622. package/packages/i18n/lib/pt_br/i19noPrice.txt +1 -0
  2623. package/packages/i18n/lib/pt_br/i19noProductsFound.txt +1 -0
  2624. package/packages/i18n/lib/pt_br/i19noProductsFoundFor$1.txt +1 -0
  2625. package/packages/i18n/lib/pt_br/i19noProductsInBrandMsg.txt +1 -0
  2626. package/packages/i18n/lib/pt_br/i19noProductsInCategoryMsg.txt +1 -0
  2627. package/packages/i18n/lib/pt_br/i19noProfileFoundWithEmail.txt +1 -0
  2628. package/packages/i18n/lib/pt_br/i19noSavedFavoritesMsg.txt +1 -0
  2629. package/packages/i18n/lib/pt_br/i19noUser.txt +1 -0
  2630. package/packages/i18n/lib/pt_br/i19normal.txt +1 -0
  2631. package/packages/i18n/lib/pt_br/i19notConfigured.txt +1 -0
  2632. package/packages/i18n/lib/pt_br/i19notFound.txt +1 -0
  2633. package/packages/i18n/lib/pt_br/i19notes.txt +1 -0
  2634. package/packages/i18n/lib/pt_br/i19notifications.txt +1 -0
  2635. package/packages/i18n/lib/pt_br/i19notified.txt +1 -0
  2636. package/packages/i18n/lib/pt_br/i19notifiedAdmins.txt +1 -0
  2637. package/packages/i18n/lib/pt_br/i19notifiedAdminsMsg.txt +1 -0
  2638. package/packages/i18n/lib/pt_br/i19notifyAboutOrders.txt +1 -0
  2639. package/packages/i18n/lib/pt_br/i19number.txt +1 -0
  2640. package/packages/i18n/lib/pt_br/i19oauthOnPopup.txt +1 -0
  2641. package/packages/i18n/lib/pt_br/i19of.txt +1 -0
  2642. package/packages/i18n/lib/pt_br/i19ofDiscount.txt +1 -0
  2643. package/packages/i18n/lib/pt_br/i19offer.txt +1 -0
  2644. package/packages/i18n/lib/pt_br/i19on.txt +1 -0
  2645. package/packages/i18n/lib/pt_br/i19onFollowingAddress.txt +1 -0
  2646. package/packages/i18n/lib/pt_br/i19onFreight.txt +1 -0
  2647. package/packages/i18n/lib/pt_br/i19only.txt +1 -0
  2648. package/packages/i18n/lib/pt_br/i19open.txt +1 -0
  2649. package/packages/i18n/lib/pt_br/i19openAt.txt +1 -0
  2650. package/packages/i18n/lib/pt_br/i19openCart.txt +1 -0
  2651. package/packages/i18n/lib/pt_br/i19openGallery.txt +1 -0
  2652. package/packages/i18n/lib/pt_br/i19operational.txt +1 -0
  2653. package/packages/i18n/lib/pt_br/i19option.txt +1 -0
  2654. package/packages/i18n/lib/pt_br/i19optionChosen.txt +1 -0
  2655. package/packages/i18n/lib/pt_br/i19options.txt +1 -0
  2656. package/packages/i18n/lib/pt_br/i19or.txt +1 -0
  2657. package/packages/i18n/lib/pt_br/i19orProceedWith.txt +1 -0
  2658. package/packages/i18n/lib/pt_br/i19order.txt +1 -0
  2659. package/packages/i18n/lib/pt_br/i19orderCode.txt +1 -0
  2660. package/packages/i18n/lib/pt_br/i19orderConfirmationMsg.txt +1 -0
  2661. package/packages/i18n/lib/pt_br/i19orderCreated.txt +1 -0
  2662. package/packages/i18n/lib/pt_br/i19orderDetails.txt +1 -0
  2663. package/packages/i18n/lib/pt_br/i19orderItems.txt +1 -0
  2664. package/packages/i18n/lib/pt_br/i19orderNotesInputMsg.txt +1 -0
  2665. package/packages/i18n/lib/pt_br/i19orderNumber.txt +1 -0
  2666. package/packages/i18n/lib/pt_br/i19orderObservations.txt +1 -0
  2667. package/packages/i18n/lib/pt_br/i19orderStatus.txt +1 -0
  2668. package/packages/i18n/lib/pt_br/i19orderValue.txt +1 -0
  2669. package/packages/i18n/lib/pt_br/i19orders.txt +1 -0
  2670. package/packages/i18n/lib/pt_br/i19ordersCount.txt +1 -0
  2671. package/packages/i18n/lib/pt_br/i19ordersTotalValue.txt +1 -0
  2672. package/packages/i18n/lib/pt_br/i19organization.txt +1 -0
  2673. package/packages/i18n/lib/pt_br/i19otherCustomers.txt +1 -0
  2674. package/packages/i18n/lib/pt_br/i19otherCustomersMsg.txt +1 -0
  2675. package/packages/i18n/lib/pt_br/i19outOfDate.txt +1 -0
  2676. package/packages/i18n/lib/pt_br/i19outOfStock.txt +1 -0
  2677. package/packages/i18n/lib/pt_br/i19ownDelivery.txt +1 -0
  2678. package/packages/i18n/lib/pt_br/i19ownHand.txt +1 -0
  2679. package/packages/i18n/lib/pt_br/i19ownHandCost.txt +1 -0
  2680. package/packages/i18n/lib/pt_br/i19package.txt +1 -0
  2681. package/packages/i18n/lib/pt_br/i19packageDimensions.txt +1 -0
  2682. package/packages/i18n/lib/pt_br/i19packageDimensionsInformation.txt +1 -0
  2683. package/packages/i18n/lib/pt_br/i19packageInformation.txt +1 -0
  2684. package/packages/i18n/lib/pt_br/i19packageWeight.txt +1 -0
  2685. package/packages/i18n/lib/pt_br/i19pageLoaded.txt +1 -0
  2686. package/packages/i18n/lib/pt_br/i19paid.txt +1 -0
  2687. package/packages/i18n/lib/pt_br/i19paidTextMsg.txt +1 -0
  2688. package/packages/i18n/lib/pt_br/i19parcelIn.txt +1 -0
  2689. package/packages/i18n/lib/pt_br/i19parentCategory.txt +1 -0
  2690. package/packages/i18n/lib/pt_br/i19partner.txt +1 -0
  2691. package/packages/i18n/lib/pt_br/i19partners.txt +1 -0
  2692. package/packages/i18n/lib/pt_br/i19partnersProgram.txt +1 -0
  2693. package/packages/i18n/lib/pt_br/i19password.txt +1 -0
  2694. package/packages/i18n/lib/pt_br/i19passwordChangedSuccessfully.txt +1 -0
  2695. package/packages/i18n/lib/pt_br/i19patch.txt +1 -0
  2696. package/packages/i18n/lib/pt_br/i19payer.txt +1 -0
  2697. package/packages/i18n/lib/pt_br/i19payment.txt +1 -0
  2698. package/packages/i18n/lib/pt_br/i19paymentConfirmed.txt +1 -0
  2699. package/packages/i18n/lib/pt_br/i19paymentDetails.txt +1 -0
  2700. package/packages/i18n/lib/pt_br/i19paymentError.txt +1 -0
  2701. package/packages/i18n/lib/pt_br/i19paymentErrorMsg.txt +1 -0
  2702. package/packages/i18n/lib/pt_br/i19paymentLink.txt +1 -0
  2703. package/packages/i18n/lib/pt_br/i19paymentMethod.txt +1 -0
  2704. package/packages/i18n/lib/pt_br/i19paymentMethodLabel.txt +1 -0
  2705. package/packages/i18n/lib/pt_br/i19paymentMethods.txt +1 -0
  2706. package/packages/i18n/lib/pt_br/i19paymentOptions.txt +1 -0
  2707. package/packages/i18n/lib/pt_br/i19paymentRealized.txt +1 -0
  2708. package/packages/i18n/lib/pt_br/i19perUnit.txt +1 -0
  2709. package/packages/i18n/lib/pt_br/i19permalink.txt +1 -0
  2710. package/packages/i18n/lib/pt_br/i19personalRegistration.txt +1 -0
  2711. package/packages/i18n/lib/pt_br/i19phone.txt +1 -0
  2712. package/packages/i18n/lib/pt_br/i19phones.txt +1 -0
  2713. package/packages/i18n/lib/pt_br/i19photo.txt +1 -0
  2714. package/packages/i18n/lib/pt_br/i19photos.txt +1 -0
  2715. package/packages/i18n/lib/pt_br/i19pickUpAtTheStore.txt +1 -0
  2716. package/packages/i18n/lib/pt_br/i19pickUpToday.txt +1 -0
  2717. package/packages/i18n/lib/pt_br/i19pickup.txt +1 -0
  2718. package/packages/i18n/lib/pt_br/i19picture.txt +1 -0
  2719. package/packages/i18n/lib/pt_br/i19pictures.txt +1 -0
  2720. package/packages/i18n/lib/pt_br/i19plus.txt +1 -0
  2721. package/packages/i18n/lib/pt_br/i19pointsEarned.txt +1 -0
  2722. package/packages/i18n/lib/pt_br/i19popularProducts.txt +1 -0
  2723. package/packages/i18n/lib/pt_br/i19popup.txt +1 -0
  2724. package/packages/i18n/lib/pt_br/i19post.txt +1 -0
  2725. package/packages/i18n/lib/pt_br/i19posted.txt +1 -0
  2726. package/packages/i18n/lib/pt_br/i19postingDeadline.txt +1 -0
  2727. package/packages/i18n/lib/pt_br/i19postingIn.txt +1 -0
  2728. package/packages/i18n/lib/pt_br/i19pressEnterToSave.txt +1 -0
  2729. package/packages/i18n/lib/pt_br/i19previous.txt +1 -0
  2730. package/packages/i18n/lib/pt_br/i19price.txt +1 -0
  2731. package/packages/i18n/lib/pt_br/i19priceAlteration.txt +1 -0
  2732. package/packages/i18n/lib/pt_br/i19priceEffectiveDate.txt +1 -0
  2733. package/packages/i18n/lib/pt_br/i19priceEffectiveDateEnd.txt +1 -0
  2734. package/packages/i18n/lib/pt_br/i19priceEffectiveDateStar.txt +1 -0
  2735. package/packages/i18n/lib/pt_br/i19priceRange.txt +1 -0
  2736. package/packages/i18n/lib/pt_br/i19priceTo.txt +1 -0
  2737. package/packages/i18n/lib/pt_br/i19pricing.txt +1 -0
  2738. package/packages/i18n/lib/pt_br/i19printBillet.txt +1 -0
  2739. package/packages/i18n/lib/pt_br/i19privacy.txt +1 -0
  2740. package/packages/i18n/lib/pt_br/i19privacyPolicy.txt +1 -0
  2741. package/packages/i18n/lib/pt_br/i19private.txt +1 -0
  2742. package/packages/i18n/lib/pt_br/i19privateMetafields.txt +1 -0
  2743. package/packages/i18n/lib/pt_br/i19privateMetafieldsMsg.txt +1 -0
  2744. package/packages/i18n/lib/pt_br/i19proceed.txt +1 -0
  2745. package/packages/i18n/lib/pt_br/i19product.txt +1 -0
  2746. package/packages/i18n/lib/pt_br/i19productDescription.txt +1 -0
  2747. package/packages/i18n/lib/pt_br/i19productId.txt +1 -0
  2748. package/packages/i18n/lib/pt_br/i19productImages.txt +1 -0
  2749. package/packages/i18n/lib/pt_br/i19productName.txt +1 -0
  2750. package/packages/i18n/lib/pt_br/i19productSpecifications.txt +1 -0
  2751. package/packages/i18n/lib/pt_br/i19productionDeadline.txt +1 -0
  2752. package/packages/i18n/lib/pt_br/i19productionTime.txt +1 -0
  2753. package/packages/i18n/lib/pt_br/i19productionTimeCumulative.txt +1 -0
  2754. package/packages/i18n/lib/pt_br/i19productionTimeDaysMsg.txt +1 -0
  2755. package/packages/i18n/lib/pt_br/i19productionTimeWorkingDays.txt +1 -0
  2756. package/packages/i18n/lib/pt_br/i19products.txt +1 -0
  2757. package/packages/i18n/lib/pt_br/i19productsAdded.txt +1 -0
  2758. package/packages/i18n/lib/pt_br/i19productsAddedToCart.txt +1 -0
  2759. package/packages/i18n/lib/pt_br/i19productsPurchased.txt +1 -0
  2760. package/packages/i18n/lib/pt_br/i19profile.txt +1 -0
  2761. package/packages/i18n/lib/pt_br/i19profileNotFound.txt +1 -0
  2762. package/packages/i18n/lib/pt_br/i19province.txt +1 -0
  2763. package/packages/i18n/lib/pt_br/i19provinceCode.txt +1 -0
  2764. package/packages/i18n/lib/pt_br/i19put.txt +1 -0
  2765. package/packages/i18n/lib/pt_br/i19quantity.txt +1 -0
  2766. package/packages/i18n/lib/pt_br/i19quarterly.txt +1 -0
  2767. package/packages/i18n/lib/pt_br/i19quickSetup.txt +1 -0
  2768. package/packages/i18n/lib/pt_br/i19random.txt +1 -0
  2769. package/packages/i18n/lib/pt_br/i19rating.txt +1 -0
  2770. package/packages/i18n/lib/pt_br/i19read.txt +1 -0
  2771. package/packages/i18n/lib/pt_br/i19receipt.txt +1 -0
  2772. package/packages/i18n/lib/pt_br/i19receiptPrice.txt +1 -0
  2773. package/packages/i18n/lib/pt_br/i19receiveNewsletter.txt +1 -0
  2774. package/packages/i18n/lib/pt_br/i19receiveToday.txt +1 -0
  2775. package/packages/i18n/lib/pt_br/i19receivedOrder.txt +1 -0
  2776. package/packages/i18n/lib/pt_br/i19recipient.txt +1 -0
  2777. package/packages/i18n/lib/pt_br/i19recommendations.txt +1 -0
  2778. package/packages/i18n/lib/pt_br/i19recommendedForYou.txt +1 -0
  2779. package/packages/i18n/lib/pt_br/i19recommendedProducts.txt +1 -0
  2780. package/packages/i18n/lib/pt_br/i19recurrence.txt +1 -0
  2781. package/packages/i18n/lib/pt_br/i19recurrent.txt +1 -0
  2782. package/packages/i18n/lib/pt_br/i19redirectToPayment.txt +1 -0
  2783. package/packages/i18n/lib/pt_br/i19reference.txt +1 -0
  2784. package/packages/i18n/lib/pt_br/i19referenceCode.txt +1 -0
  2785. package/packages/i18n/lib/pt_br/i19referral.txt +1 -0
  2786. package/packages/i18n/lib/pt_br/i19referringSite.txt +1 -0
  2787. package/packages/i18n/lib/pt_br/i19refine.txt +1 -0
  2788. package/packages/i18n/lib/pt_br/i19refineSearch.txt +1 -0
  2789. package/packages/i18n/lib/pt_br/i19registerDate.txt +1 -0
  2790. package/packages/i18n/lib/pt_br/i19registerProduct.txt +1 -0
  2791. package/packages/i18n/lib/pt_br/i19registerToBuy.txt +1 -0
  2792. package/packages/i18n/lib/pt_br/i19registerToBuyMsg.txt +1 -0
  2793. package/packages/i18n/lib/pt_br/i19registration.txt +1 -0
  2794. package/packages/i18n/lib/pt_br/i19reinstall.txt +1 -0
  2795. package/packages/i18n/lib/pt_br/i19relatedApps.txt +1 -0
  2796. package/packages/i18n/lib/pt_br/i19relatedProducts.txt +1 -0
  2797. package/packages/i18n/lib/pt_br/i19relatedSearch.txt +1 -0
  2798. package/packages/i18n/lib/pt_br/i19releases.txt +1 -0
  2799. package/packages/i18n/lib/pt_br/i19relevance.txt +1 -0
  2800. package/packages/i18n/lib/pt_br/i19remove.txt +1 -0
  2801. package/packages/i18n/lib/pt_br/i19removeFromFavorites.txt +1 -0
  2802. package/packages/i18n/lib/pt_br/i19removed.txt +1 -0
  2803. package/packages/i18n/lib/pt_br/i19reopenOrder.txt +1 -0
  2804. package/packages/i18n/lib/pt_br/i19report.txt +1 -0
  2805. package/packages/i18n/lib/pt_br/i19require.txt +1 -0
  2806. package/packages/i18n/lib/pt_br/i19required.txt +1 -0
  2807. package/packages/i18n/lib/pt_br/i19requiredEmail.txt +1 -0
  2808. package/packages/i18n/lib/pt_br/i19requiredEmailMsg.txt +1 -0
  2809. package/packages/i18n/lib/pt_br/i19requiredField.txt +1 -0
  2810. package/packages/i18n/lib/pt_br/i19resource.txt +1 -0
  2811. package/packages/i18n/lib/pt_br/i19resourceId.txt +1 -0
  2812. package/packages/i18n/lib/pt_br/i19results.txt +1 -0
  2813. package/packages/i18n/lib/pt_br/i19resultsFor.txt +1 -0
  2814. package/packages/i18n/lib/pt_br/i19retail.txt +1 -0
  2815. package/packages/i18n/lib/pt_br/i19retry.txt +1 -0
  2816. package/packages/i18n/lib/pt_br/i19reviews.txt +1 -0
  2817. package/packages/i18n/lib/pt_br/i19safeBuy.txt +1 -0
  2818. package/packages/i18n/lib/pt_br/i19safeEnvMsg.txt +1 -0
  2819. package/packages/i18n/lib/pt_br/i19sales.txt +1 -0
  2820. package/packages/i18n/lib/pt_br/i19salesChannels.txt +1 -0
  2821. package/packages/i18n/lib/pt_br/i19salesPrice.txt +1 -0
  2822. package/packages/i18n/lib/pt_br/i19save.txt +1 -0
  2823. package/packages/i18n/lib/pt_br/i19saveBrand.txt +1 -0
  2824. package/packages/i18n/lib/pt_br/i19saveCard.txt +1 -0
  2825. package/packages/i18n/lib/pt_br/i19saveCart.txt +1 -0
  2826. package/packages/i18n/lib/pt_br/i19saveCategory.txt +1 -0
  2827. package/packages/i18n/lib/pt_br/i19saveClient.txt +1 -0
  2828. package/packages/i18n/lib/pt_br/i19saveCollection.txt +1 -0
  2829. package/packages/i18n/lib/pt_br/i19saveGrid.txt +1 -0
  2830. package/packages/i18n/lib/pt_br/i19saveProduct.txt +1 -0
  2831. package/packages/i18n/lib/pt_br/i19saveText.txt +1 -0
  2832. package/packages/i18n/lib/pt_br/i19saved.txt +1 -0
  2833. package/packages/i18n/lib/pt_br/i19savedWithSuccess.txt +1 -0
  2834. package/packages/i18n/lib/pt_br/i19scheduledDelivery.txt +1 -0
  2835. package/packages/i18n/lib/pt_br/i19search.txt +1 -0
  2836. package/packages/i18n/lib/pt_br/i19searchAgain.txt +1 -0
  2837. package/packages/i18n/lib/pt_br/i19searchEngineListing.txt +1 -0
  2838. package/packages/i18n/lib/pt_br/i19searchItems.txt +1 -0
  2839. package/packages/i18n/lib/pt_br/i19searchOfflineErrorMsg.txt +1 -0
  2840. package/packages/i18n/lib/pt_br/i19searchProducts.txt +1 -0
  2841. package/packages/i18n/lib/pt_br/i19searchingFor.txt +1 -0
  2842. package/packages/i18n/lib/pt_br/i19second.txt +1 -0
  2843. package/packages/i18n/lib/pt_br/i19seconds.txt +1 -0
  2844. package/packages/i18n/lib/pt_br/i19securityCode.txt +1 -0
  2845. package/packages/i18n/lib/pt_br/i19seeAll$1Category.txt +1 -0
  2846. package/packages/i18n/lib/pt_br/i19seeAll.txt +1 -0
  2847. package/packages/i18n/lib/pt_br/i19seeAllApps.txt +1 -0
  2848. package/packages/i18n/lib/pt_br/i19seeAllThemes.txt +1 -0
  2849. package/packages/i18n/lib/pt_br/i19seeCart.txt +1 -0
  2850. package/packages/i18n/lib/pt_br/i19seeMore.txt +1 -0
  2851. package/packages/i18n/lib/pt_br/i19seeMoreCategory.txt +1 -0
  2852. package/packages/i18n/lib/pt_br/i19seeMoreInfo.txt +1 -0
  2853. package/packages/i18n/lib/pt_br/i19seeOrder.txt +1 -0
  2854. package/packages/i18n/lib/pt_br/i19seeShoppingCart.txt +1 -0
  2855. package/packages/i18n/lib/pt_br/i19select.txt +1 -0
  2856. package/packages/i18n/lib/pt_br/i19selectVariation.txt +1 -0
  2857. package/packages/i18n/lib/pt_br/i19selectVariationMsg.txt +1 -0
  2858. package/packages/i18n/lib/pt_br/i19selected.txt +1 -0
  2859. package/packages/i18n/lib/pt_br/i19selectedOffers.txt +1 -0
  2860. package/packages/i18n/lib/pt_br/i19selectedOptions.txt +1 -0
  2861. package/packages/i18n/lib/pt_br/i19seller.txt +1 -0
  2862. package/packages/i18n/lib/pt_br/i19sellerRecommendations.txt +1 -0
  2863. package/packages/i18n/lib/pt_br/i19sellerRecommendationsProducts.txt +1 -0
  2864. package/packages/i18n/lib/pt_br/i19sellerRecommendationsTitle.txt +1 -0
  2865. package/packages/i18n/lib/pt_br/i19sellerStatus.txt +1 -0
  2866. package/packages/i18n/lib/pt_br/i19sellerStatusMsg.txt +1 -0
  2867. package/packages/i18n/lib/pt_br/i19send.txt +1 -0
  2868. package/packages/i18n/lib/pt_br/i19sendLoginCodeByEmail.txt +1 -0
  2869. package/packages/i18n/lib/pt_br/i19sendLoginLinkByEmail.txt +1 -0
  2870. package/packages/i18n/lib/pt_br/i19sender.txt +1 -0
  2871. package/packages/i18n/lib/pt_br/i19senderFrom.txt +1 -0
  2872. package/packages/i18n/lib/pt_br/i19seo.txt +1 -0
  2873. package/packages/i18n/lib/pt_br/i19setDomainMsg.txt +1 -0
  2874. package/packages/i18n/lib/pt_br/i19setStoreDomain.txt +1 -0
  2875. package/packages/i18n/lib/pt_br/i19setUp.txt +1 -0
  2876. package/packages/i18n/lib/pt_br/i19settings.txt +1 -0
  2877. package/packages/i18n/lib/pt_br/i19share.txt +1 -0
  2878. package/packages/i18n/lib/pt_br/i19shareOnFacebook.txt +1 -0
  2879. package/packages/i18n/lib/pt_br/i19shareOnWhatsapp.txt +1 -0
  2880. package/packages/i18n/lib/pt_br/i19shipped.txt +1 -0
  2881. package/packages/i18n/lib/pt_br/i19shippedBy.txt +1 -0
  2882. package/packages/i18n/lib/pt_br/i19shipping.txt +1 -0
  2883. package/packages/i18n/lib/pt_br/i19shippingAdditionalPrice.txt +1 -0
  2884. package/packages/i18n/lib/pt_br/i19shippingAddress.txt +1 -0
  2885. package/packages/i18n/lib/pt_br/i19shippingCustomFields.txt +1 -0
  2886. package/packages/i18n/lib/pt_br/i19shippingDiscount.txt +1 -0
  2887. package/packages/i18n/lib/pt_br/i19shippingInvoices.txt +1 -0
  2888. package/packages/i18n/lib/pt_br/i19shippingMethod.txt +1 -0
  2889. package/packages/i18n/lib/pt_br/i19shippingMethodLabel.txt +1 -0
  2890. package/packages/i18n/lib/pt_br/i19shippingNotes.txt +1 -0
  2891. package/packages/i18n/lib/pt_br/i19shippingNotesMsg.txt +1 -0
  2892. package/packages/i18n/lib/pt_br/i19shippingStatus.txt +1 -0
  2893. package/packages/i18n/lib/pt_br/i19shippingTag.txt +1 -0
  2894. package/packages/i18n/lib/pt_br/i19shippingTags.txt +1 -0
  2895. package/packages/i18n/lib/pt_br/i19shippingTaxes.txt +1 -0
  2896. package/packages/i18n/lib/pt_br/i19shippingTaxesMsg.txt +1 -0
  2897. package/packages/i18n/lib/pt_br/i19shippingTo.txt +1 -0
  2898. package/packages/i18n/lib/pt_br/i19shippingTotalCost.txt +1 -0
  2899. package/packages/i18n/lib/pt_br/i19shopByCategory.txt +1 -0
  2900. package/packages/i18n/lib/pt_br/i19shopByFranchise.txt +1 -0
  2901. package/packages/i18n/lib/pt_br/i19shopNow.txt +1 -0
  2902. package/packages/i18n/lib/pt_br/i19shoppingCart.txt +1 -0
  2903. package/packages/i18n/lib/pt_br/i19short.txt +1 -0
  2904. package/packages/i18n/lib/pt_br/i19shortDescription.txt +1 -0
  2905. package/packages/i18n/lib/pt_br/i19show.txt +1 -0
  2906. package/packages/i18n/lib/pt_br/i19showDescription.txt +1 -0
  2907. package/packages/i18n/lib/pt_br/i19showReview.txt +1 -0
  2908. package/packages/i18n/lib/pt_br/i19signIn.txt +1 -0
  2909. package/packages/i18n/lib/pt_br/i19signInWith.txt +1 -0
  2910. package/packages/i18n/lib/pt_br/i19signInWithAnotherEmail.txt +1 -0
  2911. package/packages/i18n/lib/pt_br/i19signUp.txt +1 -0
  2912. package/packages/i18n/lib/pt_br/i19signUpWith.txt +1 -0
  2913. package/packages/i18n/lib/pt_br/i19signature.txt +1 -0
  2914. package/packages/i18n/lib/pt_br/i19size.txt +1 -0
  2915. package/packages/i18n/lib/pt_br/i19sizeGuide.txt +1 -0
  2916. package/packages/i18n/lib/pt_br/i19sku.txt +1 -0
  2917. package/packages/i18n/lib/pt_br/i19slug.txt +1 -0
  2918. package/packages/i18n/lib/pt_br/i19socialLogin.txt +1 -0
  2919. package/packages/i18n/lib/pt_br/i19socialMedia.txt +1 -0
  2920. package/packages/i18n/lib/pt_br/i19sort.txt +1 -0
  2921. package/packages/i18n/lib/pt_br/i19sortBy.txt +1 -0
  2922. package/packages/i18n/lib/pt_br/i19source.txt +1 -0
  2923. package/packages/i18n/lib/pt_br/i19sourceName.txt +1 -0
  2924. package/packages/i18n/lib/pt_br/i19specifications.txt +1 -0
  2925. package/packages/i18n/lib/pt_br/i19staffNotes.txt +1 -0
  2926. package/packages/i18n/lib/pt_br/i19staffSignature.txt +1 -0
  2927. package/packages/i18n/lib/pt_br/i19star.txt +1 -0
  2928. package/packages/i18n/lib/pt_br/i19startDate.txt +1 -0
  2929. package/packages/i18n/lib/pt_br/i19state.txt +1 -0
  2930. package/packages/i18n/lib/pt_br/i19status.txt +1 -0
  2931. package/packages/i18n/lib/pt_br/i19statusLink.txt +1 -0
  2932. package/packages/i18n/lib/pt_br/i19statusMobileLink.txt +1 -0
  2933. package/packages/i18n/lib/pt_br/i19store.txt +1 -0
  2934. package/packages/i18n/lib/pt_br/i19storefront.txt +1 -0
  2935. package/packages/i18n/lib/pt_br/i19street.txt +1 -0
  2936. package/packages/i18n/lib/pt_br/i19submit.txt +1 -0
  2937. package/packages/i18n/lib/pt_br/i19subresource.txt +1 -0
  2938. package/packages/i18n/lib/pt_br/i19subresourceId.txt +1 -0
  2939. package/packages/i18n/lib/pt_br/i19subscribe.txt +1 -0
  2940. package/packages/i18n/lib/pt_br/i19subscription.txt +1 -0
  2941. package/packages/i18n/lib/pt_br/i19subscriptionInvoices.txt +1 -0
  2942. package/packages/i18n/lib/pt_br/i19subscriptions.txt +1 -0
  2943. package/packages/i18n/lib/pt_br/i19subtitle.txt +1 -0
  2944. package/packages/i18n/lib/pt_br/i19subtotal.txt +1 -0
  2945. package/packages/i18n/lib/pt_br/i19success.txt +1 -0
  2946. package/packages/i18n/lib/pt_br/i19successfullyInstalled.txt +1 -0
  2947. package/packages/i18n/lib/pt_br/i19successfullyUninstalled.txt +1 -0
  2948. package/packages/i18n/lib/pt_br/i19suggestedProducts.txt +1 -0
  2949. package/packages/i18n/lib/pt_br/i19summary.txt +1 -0
  2950. package/packages/i18n/lib/pt_br/i19support.txt +1 -0
  2951. package/packages/i18n/lib/pt_br/i19table.txt +1 -0
  2952. package/packages/i18n/lib/pt_br/i19tax.txt +1 -0
  2953. package/packages/i18n/lib/pt_br/i19taxExempt.txt +1 -0
  2954. package/packages/i18n/lib/pt_br/i19termSearched.txt +1 -0
  2955. package/packages/i18n/lib/pt_br/i19test.txt +1 -0
  2956. package/packages/i18n/lib/pt_br/i19thanks.txt +1 -0
  2957. package/packages/i18n/lib/pt_br/i19thanksForPurchase.txt +1 -0
  2958. package/packages/i18n/lib/pt_br/i19theme.txt +1 -0
  2959. package/packages/i18n/lib/pt_br/i19themes.txt +1 -0
  2960. package/packages/i18n/lib/pt_br/i19ticketCode.txt +1 -0
  2961. package/packages/i18n/lib/pt_br/i19title.txt +1 -0
  2962. package/packages/i18n/lib/pt_br/i19titleTag.txt +1 -0
  2963. package/packages/i18n/lib/pt_br/i19to.txt +1 -0
  2964. package/packages/i18n/lib/pt_br/i19toEarn.txt +1 -0
  2965. package/packages/i18n/lib/pt_br/i19toPay.txt +1 -0
  2966. package/packages/i18n/lib/pt_br/i19today.txt +1 -0
  2967. package/packages/i18n/lib/pt_br/i19toggleMenu.txt +1 -0
  2968. package/packages/i18n/lib/pt_br/i19token.txt +1 -0
  2969. package/packages/i18n/lib/pt_br/i19total.txt +1 -0
  2970. package/packages/i18n/lib/pt_br/i19totalAmount.txt +1 -0
  2971. package/packages/i18n/lib/pt_br/i19totalCancelled.txt +1 -0
  2972. package/packages/i18n/lib/pt_br/i19totalCancelledMsg.txt +1 -0
  2973. package/packages/i18n/lib/pt_br/i19totalResultsFor.txt +1 -0
  2974. package/packages/i18n/lib/pt_br/i19totalSpent.txt +1 -0
  2975. package/packages/i18n/lib/pt_br/i19trackDelivery.txt +1 -0
  2976. package/packages/i18n/lib/pt_br/i19trackingCodes.txt +1 -0
  2977. package/packages/i18n/lib/pt_br/i19transactionCode.txt +1 -0
  2978. package/packages/i18n/lib/pt_br/i19transactionId.txt +1 -0
  2979. package/packages/i18n/lib/pt_br/i19transactionItems.txt +1 -0
  2980. package/packages/i18n/lib/pt_br/i19transactionStatus.txt +1 -0
  2981. package/packages/i18n/lib/pt_br/i19transactionStatusMsg.txt +1 -0
  2982. package/packages/i18n/lib/pt_br/i19transactionType.txt +1 -0
  2983. package/packages/i18n/lib/pt_br/i19trendingApps.txt +1 -0
  2984. package/packages/i18n/lib/pt_br/i19triggers.txt +1 -0
  2985. package/packages/i18n/lib/pt_br/i19triggersMsg.txt +1 -0
  2986. package/packages/i18n/lib/pt_br/i19tryAgain.txt +1 -0
  2987. package/packages/i18n/lib/pt_br/i19type.txt +1 -0
  2988. package/packages/i18n/lib/pt_br/i19unable.txt +1 -0
  2989. package/packages/i18n/lib/pt_br/i19unableToInstallApp.txt +1 -0
  2990. package/packages/i18n/lib/pt_br/i19unableToUninstallApp.txt +1 -0
  2991. package/packages/i18n/lib/pt_br/i19unavailable.txt +1 -0
  2992. package/packages/i18n/lib/pt_br/i19uninstall.txt +1 -0
  2993. package/packages/i18n/lib/pt_br/i19uninstallingApp.txt +1 -0
  2994. package/packages/i18n/lib/pt_br/i19uninstallingAppWithSuccess.txt +1 -0
  2995. package/packages/i18n/lib/pt_br/i19units.txt +1 -0
  2996. package/packages/i18n/lib/pt_br/i19unitsInStock.txt +1 -0
  2997. package/packages/i18n/lib/pt_br/i19unlimited.txt +1 -0
  2998. package/packages/i18n/lib/pt_br/i19unsubscribe.txt +1 -0
  2999. package/packages/i18n/lib/pt_br/i19untilTomorrow.txt +1 -0
  3000. package/packages/i18n/lib/pt_br/i19upTo.txt +1 -0
  3001. package/packages/i18n/lib/pt_br/i19update.txt +1 -0
  3002. package/packages/i18n/lib/pt_br/i19updatedAt.txt +1 -0
  3003. package/packages/i18n/lib/pt_br/i19upload.txt +1 -0
  3004. package/packages/i18n/lib/pt_br/i19uploadLogo.txt +1 -0
  3005. package/packages/i18n/lib/pt_br/i19uploadTable.txt +1 -0
  3006. package/packages/i18n/lib/pt_br/i19uponRequest.txt +1 -0
  3007. package/packages/i18n/lib/pt_br/i19url.txt +1 -0
  3008. package/packages/i18n/lib/pt_br/i19use$1LoyaltyPoints.txt +1 -0
  3009. package/packages/i18n/lib/pt_br/i19usedPoints.txt +1 -0
  3010. package/packages/i18n/lib/pt_br/i19user.txt +1 -0
  3011. package/packages/i18n/lib/pt_br/i19userFound.txt +1 -0
  3012. package/packages/i18n/lib/pt_br/i19username.txt +1 -0
  3013. package/packages/i18n/lib/pt_br/i19usersFound.txt +1 -0
  3014. package/packages/i18n/lib/pt_br/i19utm.txt +1 -0
  3015. package/packages/i18n/lib/pt_br/i19utmCampaign.txt +1 -0
  3016. package/packages/i18n/lib/pt_br/i19utmContent.txt +1 -0
  3017. package/packages/i18n/lib/pt_br/i19utmMedium.txt +1 -0
  3018. package/packages/i18n/lib/pt_br/i19utmSource.txt +1 -0
  3019. package/packages/i18n/lib/pt_br/i19utmTerm.txt +1 -0
  3020. package/packages/i18n/lib/pt_br/i19valid.txt +1 -0
  3021. package/packages/i18n/lib/pt_br/i19validThru.txt +1 -0
  3022. package/packages/i18n/lib/pt_br/i19validate.txt +1 -0
  3023. package/packages/i18n/lib/pt_br/i19value.txt +1 -0
  3024. package/packages/i18n/lib/pt_br/i19variation.txt +1 -0
  3025. package/packages/i18n/lib/pt_br/i19variationId.txt +1 -0
  3026. package/packages/i18n/lib/pt_br/i19variationName.txt +1 -0
  3027. package/packages/i18n/lib/pt_br/i19variations.txt +1 -0
  3028. package/packages/i18n/lib/pt_br/i19verified.txt +1 -0
  3029. package/packages/i18n/lib/pt_br/i19version.txt +1 -0
  3030. package/packages/i18n/lib/pt_br/i19versionDate.txt +1 -0
  3031. package/packages/i18n/lib/pt_br/i19video.txt +1 -0
  3032. package/packages/i18n/lib/pt_br/i19videos.txt +1 -0
  3033. package/packages/i18n/lib/pt_br/i19visible.txt +1 -0
  3034. package/packages/i18n/lib/pt_br/i19visibleProducts.txt +1 -0
  3035. package/packages/i18n/lib/pt_br/i19visitor.txt +1 -0
  3036. package/packages/i18n/lib/pt_br/i19visitorCheckout.txt +1 -0
  3037. package/packages/i18n/lib/pt_br/i19warning.txt +1 -0
  3038. package/packages/i18n/lib/pt_br/i19warningToReinstallAppMsg.txt +1 -0
  3039. package/packages/i18n/lib/pt_br/i19wasAnErrorOnLogin.txt +1 -0
  3040. package/packages/i18n/lib/pt_br/i19weFrom.txt +1 -0
  3041. package/packages/i18n/lib/pt_br/i19weRecommendToYou.txt +1 -0
  3042. package/packages/i18n/lib/pt_br/i19weUseYourDataToMsg.txt +1 -0
  3043. package/packages/i18n/lib/pt_br/i19webhooks.txt +1 -0
  3044. package/packages/i18n/lib/pt_br/i19webhooksApiExternalApiMsg.txt +1 -0
  3045. package/packages/i18n/lib/pt_br/i19webhooksApiMsg.txt +1 -0
  3046. package/packages/i18n/lib/pt_br/i19webhooksApiStoreApiMsg.txt +1 -0
  3047. package/packages/i18n/lib/pt_br/i19webhooksMapBodyMsg.txt +1 -0
  3048. package/packages/i18n/lib/pt_br/i19webhooksMsg.txt +1 -0
  3049. package/packages/i18n/lib/pt_br/i19webhooksSendBodyMsg.txt +1 -0
  3050. package/packages/i18n/lib/pt_br/i19weekly.txt +1 -0
  3051. package/packages/i18n/lib/pt_br/i19weight.txt +1 -0
  3052. package/packages/i18n/lib/pt_br/i19welcome.txt +1 -0
  3053. package/packages/i18n/lib/pt_br/i19welcomeTextMsg.txt +1 -0
  3054. package/packages/i18n/lib/pt_br/i19widgets.txt +1 -0
  3055. package/packages/i18n/lib/pt_br/i19width.txt +1 -0
  3056. package/packages/i18n/lib/pt_br/i19willReceiveMsg.txt +1 -0
  3057. package/packages/i18n/lib/pt_br/i19with.txt +1 -0
  3058. package/packages/i18n/lib/pt_br/i19withoutInstallmentRates.txt +1 -0
  3059. package/packages/i18n/lib/pt_br/i19workingDays.txt +1 -0
  3060. package/packages/i18n/lib/pt_br/i19write.txt +1 -0
  3061. package/packages/i18n/lib/pt_br/i19writeReview.txt +1 -0
  3062. package/packages/i18n/lib/pt_br/i19year.txt +1 -0
  3063. package/packages/i18n/lib/pt_br/i19yearly.txt +1 -0
  3064. package/packages/i18n/lib/pt_br/i19years.txt +1 -0
  3065. package/packages/i18n/lib/pt_br/i19yes.txt +1 -0
  3066. package/packages/i18n/lib/pt_br/i19youEarn.txt +1 -0
  3067. package/packages/i18n/lib/pt_br/i19yourInstalledApps.txt +1 -0
  3068. package/packages/i18n/lib/pt_br/i19zipCode.txt +1 -0
  3069. package/packages/i18n/lib/pt_br/i19zipCodeRange.txt +1 -0
  3070. package/packages/i18n/lib/pt_br.d.ts +1161 -0
  3071. package/packages/i18n/lib/pt_br.js +1163 -0
  3072. package/packages/i18n/lib/pt_br.js.map +1 -0
  3073. package/packages/i18n/package.json +34 -0
  3074. package/packages/i18n/scripts/build-txt.mjs +27 -0
  3075. package/packages/i18n/src/all.ts +9 -0
  3076. package/packages/i18n/src/dirname.ts +3 -0
  3077. package/packages/i18n/src/en_us.ts +1185 -0
  3078. package/packages/i18n/src/pt_br.ts +1185 -0
  3079. package/packages/i18n/tsconfig.json +6 -0
  3080. package/packages/modules/CHANGELOG.md +1 -0
  3081. package/packages/modules/README.md +1 -0
  3082. package/packages/modules/firebase.js +1 -0
  3083. package/packages/modules/lib/firebase/ajv.js +34 -0
  3084. package/packages/modules/lib/firebase/ajv.js.map +1 -0
  3085. package/packages/modules/lib/firebase/call-app-module.js +249 -0
  3086. package/packages/modules/lib/firebase/call-app-module.js.map +1 -0
  3087. package/packages/modules/lib/firebase/checkout.js +160 -0
  3088. package/packages/modules/lib/firebase/checkout.js.map +1 -0
  3089. package/packages/modules/lib/firebase/functions-checkout/fix-items.js +262 -0
  3090. package/packages/modules/lib/firebase/functions-checkout/fix-items.js.map +1 -0
  3091. package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js +39 -0
  3092. package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js.map +1 -0
  3093. package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js +125 -0
  3094. package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js.map +1 -0
  3095. package/packages/modules/lib/firebase/functions-checkout/new-order.js +191 -0
  3096. package/packages/modules/lib/firebase/functions-checkout/new-order.js.map +1 -0
  3097. package/packages/modules/lib/firebase/functions-checkout/request-to-module.js +77 -0
  3098. package/packages/modules/lib/firebase/functions-checkout/request-to-module.js.map +1 -0
  3099. package/packages/modules/lib/firebase/functions-checkout/utils.js +238 -0
  3100. package/packages/modules/lib/firebase/functions-checkout/utils.js.map +1 -0
  3101. package/packages/modules/lib/firebase/handle-module.js +171 -0
  3102. package/packages/modules/lib/firebase/handle-module.js.map +1 -0
  3103. package/packages/modules/lib/firebase/proxy-apps.js +1 -0
  3104. package/packages/modules/lib/firebase/proxy-apps.js.map +1 -0
  3105. package/packages/modules/lib/firebase/serve-modules-api.js +64 -0
  3106. package/packages/modules/lib/firebase/serve-modules-api.js.map +1 -0
  3107. package/packages/modules/lib/firebase.js +25 -0
  3108. package/packages/modules/lib/firebase.js.map +1 -0
  3109. package/packages/modules/lib/index.js +27 -0
  3110. package/packages/modules/lib/index.js.map +1 -0
  3111. package/packages/modules/package.json +61 -0
  3112. package/packages/modules/schemas/@checkout.cjs +1026 -0
  3113. package/packages/modules/schemas/apply_discount.cjs +377 -0
  3114. package/packages/modules/schemas/calculate_shipping.cjs +666 -0
  3115. package/packages/modules/schemas/create_transaction.cjs +1028 -0
  3116. package/packages/modules/schemas/list_payments.cjs +858 -0
  3117. package/packages/modules/scripts/build-types.sh +33 -0
  3118. package/packages/modules/src/firebase/ajv.ts +39 -0
  3119. package/packages/modules/src/firebase/call-app-module.ts +262 -0
  3120. package/packages/modules/src/firebase/checkout.ts +212 -0
  3121. package/packages/modules/src/firebase/functions-checkout/fix-items.ts +287 -0
  3122. package/packages/modules/src/firebase/functions-checkout/get-custumerId.ts +39 -0
  3123. package/packages/modules/src/firebase/functions-checkout/handle-order-transaction.ts +185 -0
  3124. package/packages/modules/src/firebase/functions-checkout/new-order.ts +268 -0
  3125. package/packages/modules/src/firebase/functions-checkout/request-to-module.ts +87 -0
  3126. package/packages/modules/src/firebase/functions-checkout/utils.ts +313 -0
  3127. package/packages/modules/src/firebase/handle-module.ts +208 -0
  3128. package/packages/modules/src/firebase/proxy-apps.ts +0 -0
  3129. package/packages/modules/src/firebase/serve-modules-api.ts +70 -0
  3130. package/packages/modules/src/firebase.ts +30 -0
  3131. package/packages/modules/src/index.ts +26 -0
  3132. package/packages/modules/src/types/index.d.ts +64 -0
  3133. package/packages/modules/tests/modules.test.mjs +26 -0
  3134. package/packages/modules/tsconfig.json +3 -0
  3135. package/packages/passport/CHANGELOG.md +1 -0
  3136. package/packages/passport/README.md +1 -0
  3137. package/packages/passport/firebase.js +1 -0
  3138. package/packages/passport/lib/firebase/authenticate-customer.js +81 -0
  3139. package/packages/passport/lib/firebase/authenticate-customer.js.map +1 -0
  3140. package/packages/passport/lib/firebase/serve-passport-api.js +35 -0
  3141. package/packages/passport/lib/firebase/serve-passport-api.js.map +1 -0
  3142. package/packages/passport/lib/firebase.js +28 -0
  3143. package/packages/passport/lib/firebase.js.map +1 -0
  3144. package/packages/passport/lib/index.js +2 -0
  3145. package/packages/passport/lib/index.js.map +1 -0
  3146. package/packages/passport/package.json +36 -0
  3147. package/packages/passport/src/firebase/authenticate-customer.ts +94 -0
  3148. package/packages/passport/src/firebase/serve-passport-api.ts +37 -0
  3149. package/packages/passport/src/firebase.ts +30 -0
  3150. package/packages/passport/src/index.ts +4 -0
  3151. package/packages/passport/tsconfig.json +3 -0
  3152. package/packages/ssr/CHANGELOG.md +1 -0
  3153. package/packages/ssr/README.md +1 -0
  3154. package/packages/ssr/cloudflare/README.md +3 -0
  3155. package/packages/ssr/cloudflare/swr-worker.js +179 -0
  3156. package/packages/ssr/events.js +1 -0
  3157. package/packages/ssr/firebase.js +1 -0
  3158. package/packages/ssr/lib/firebase.js +15 -0
  3159. package/packages/ssr/lib/firebase.js.map +1 -0
  3160. package/packages/ssr/lib/index.js +4 -0
  3161. package/packages/ssr/lib/index.js.map +1 -0
  3162. package/packages/ssr/lib/lib/analytics/send-to-ga4.js +44 -0
  3163. package/packages/ssr/lib/lib/analytics/send-to-ga4.js.map +1 -0
  3164. package/packages/ssr/lib/lib/analytics/send-to-meta.js +44 -0
  3165. package/packages/ssr/lib/lib/analytics/send-to-meta.js.map +1 -0
  3166. package/packages/ssr/lib/lib/analytics/send-to-tiktok.js +44 -0
  3167. package/packages/ssr/lib/lib/analytics/send-to-tiktok.js.map +1 -0
  3168. package/packages/ssr/lib/lib/analytics-events.js +80 -0
  3169. package/packages/ssr/lib/lib/analytics-events.js.map +1 -0
  3170. package/packages/ssr/lib/lib/cron-ssr-save-views.js +57 -0
  3171. package/packages/ssr/lib/lib/cron-ssr-save-views.js.map +1 -0
  3172. package/packages/ssr/lib/lib/serve-storefront.js +295 -0
  3173. package/packages/ssr/lib/lib/serve-storefront.js.map +1 -0
  3174. package/packages/ssr/lib/ssr-events.js +18 -0
  3175. package/packages/ssr/lib/ssr-events.js.map +1 -0
  3176. package/packages/ssr/package.json +50 -0
  3177. package/packages/ssr/src/cloudflare/swr-worker.ts +202 -0
  3178. package/packages/ssr/src/cloudflare/tsconfig.json +9 -0
  3179. package/packages/ssr/src/firebase.ts +15 -0
  3180. package/packages/ssr/src/index.ts +3 -0
  3181. package/packages/ssr/src/lib/analytics/send-to-ga4.ts +56 -0
  3182. package/packages/ssr/src/lib/analytics/send-to-meta.ts +50 -0
  3183. package/packages/ssr/src/lib/analytics/send-to-tiktok.ts +49 -0
  3184. package/packages/ssr/src/lib/analytics-events.ts +94 -0
  3185. package/packages/ssr/src/lib/cron-ssr-save-views.ts +56 -0
  3186. package/packages/ssr/src/lib/serve-storefront.ts +322 -0
  3187. package/packages/ssr/src/ssr-events.ts +17 -0
  3188. package/packages/ssr/src/tests/benchmark.sh +50 -0
  3189. package/packages/ssr/tsconfig.json +4 -0
  3190. package/packages/storefront/.auto-imports.d.ts +66 -0
  3191. package/packages/storefront/.eslintrc.cjs +3 -0
  3192. package/packages/storefront/astro.config.mjs +270 -0
  3193. package/packages/storefront/client.d.ts +34 -0
  3194. package/packages/storefront/config/astro/context-directive.mjs +46 -0
  3195. package/packages/storefront/config/astro/index.d.ts +10 -0
  3196. package/packages/storefront/config/astro/mock-pwa-info.mjs +5 -0
  3197. package/packages/storefront/config/storefront.cms.js +82 -0
  3198. package/packages/storefront/config/storefront.config.mjs +78 -0
  3199. package/packages/storefront/config/storefront.tailwind.cjs +279 -0
  3200. package/packages/storefront/config/storefront.unocss.cjs +136 -0
  3201. package/packages/storefront/dist/client/_astro/AccountPage.Osc6ffV0.js +1 -0
  3202. package/packages/storefront/dist/client/_astro/CartSidebar.LrfpXG2B.js +1 -0
  3203. package/packages/storefront/dist/client/_astro/HeroSlider.Zf6kCaqD.js +1 -0
  3204. package/packages/storefront/dist/client/_astro/PitchBar.N4d9fV8H.js +1 -0
  3205. package/packages/storefront/dist/client/_astro/Prices.eQ9Vd255.js +1 -0
  3206. package/packages/storefront/dist/client/_astro/ProductDetails.Ln_jf57U.js +7 -0
  3207. package/packages/storefront/dist/client/_astro/ProductShelf.X389bv9S.js +1 -0
  3208. package/packages/storefront/dist/client/_astro/ProductShelf.vj6lVDCr.js +1 -0
  3209. package/packages/storefront/dist/client/_astro/QuantitySelector.qSJQlvTe.js +1 -0
  3210. package/packages/storefront/dist/client/_astro/SearchModal.BrVoDBvg.js +1 -0
  3211. package/packages/storefront/dist/client/_astro/SearchShowcase.KAz3nwco.js +1 -0
  3212. package/packages/storefront/dist/client/_astro/ShopHeader.mFKGzhIu.js +7 -0
  3213. package/packages/storefront/dist/client/_astro/_plugin-vue_export-helper._suIQ7WC.js +1 -0
  3214. package/packages/storefront/dist/client/_astro/_slug_.cfRx-rdA.css +1 -0
  3215. package/packages/storefront/dist/client/_astro/afetch.5c8VmT0-.js +1 -0
  3216. package/packages/storefront/dist/client/_astro/client.PdegUP6S.js +1 -0
  3217. package/packages/storefront/dist/client/_astro/customer-session.KkTHFOXl.js +7 -0
  3218. package/packages/storefront/dist/client/_astro/ecom-icon_12falx.png +0 -0
  3219. package/packages/storefront/dist/client/_astro/ecom-icon_15pqnO.png +0 -0
  3220. package/packages/storefront/dist/client/_astro/ecom-icon_t3guw.png +0 -0
  3221. package/packages/storefront/dist/client/_astro/ecom-utils.Ld2zf-Ve.js +1 -0
  3222. package/packages/storefront/dist/client/_astro/firebase-app.cPMfoOsn.js +16 -0
  3223. package/packages/storefront/dist/client/_astro/format-money.Axn0YFLJ.js +1 -0
  3224. package/packages/storefront/dist/client/_astro/grid-title.GntHOijE.js +1 -0
  3225. package/packages/storefront/dist/client/_astro/headphone_T2Jjc.avif +0 -0
  3226. package/packages/storefront/dist/client/_astro/headphone_Z1CG18r.webp +0 -0
  3227. package/packages/storefront/dist/client/_astro/hoisted.3ec9NcvP.js +1 -0
  3228. package/packages/storefront/dist/client/_astro/hoisted.UnTlypMd.js +1 -0
  3229. package/packages/storefront/dist/client/_astro/i18n.3-NUtxYq.js +1 -0
  3230. package/packages/storefront/dist/client/_astro/img-sizes.gxAI9JNh.js +1 -0
  3231. package/packages/storefront/dist/client/_astro/img.pozlYdd3.js +1 -0
  3232. package/packages/storefront/dist/client/_astro/index-dd468b12.D5s8VdAL.js +1471 -0
  3233. package/packages/storefront/dist/client/_astro/index.TkCbiY_p.js +1 -0
  3234. package/packages/storefront/dist/client/_astro/index.m6fK0JXC.js +1 -0
  3235. package/packages/storefront/dist/client/_astro/logo_1UBsBq.webp +0 -0
  3236. package/packages/storefront/dist/client/_astro/logo_Z1K5PE9.png +0 -0
  3237. package/packages/storefront/dist/client/_astro/logo_Z1KIIl1.avif +0 -0
  3238. package/packages/storefront/dist/client/_astro/modules-info.mmwB1qIJ.js +1 -0
  3239. package/packages/storefront/dist/client/_astro/name.49dZlpDx.js +1 -0
  3240. package/packages/storefront/dist/client/_astro/passion_LHbe9.webp +0 -0
  3241. package/packages/storefront/dist/client/_astro/passion_Z23MeUb.avif +0 -0
  3242. package/packages/storefront/dist/client/_astro/photoswipe-lightbox.esm.dZBqKD9u.js +4 -0
  3243. package/packages/storefront/dist/client/_astro/photoswipe.0V7m2jWu.js +1 -0
  3244. package/packages/storefront/dist/client/_astro/photoswipe.esm.Ylh9TGkz.js +4 -0
  3245. package/packages/storefront/dist/client/_astro/price.Easct8WC.js +1 -0
  3246. package/packages/storefront/dist/client/_astro/rect8589_1TtOHY.png +0 -0
  3247. package/packages/storefront/dist/client/_astro/rect8589_1f5opX.webp +0 -0
  3248. package/packages/storefront/dist/client/_astro/rect8589_IUskt.webp +0 -0
  3249. package/packages/storefront/dist/client/_astro/rect8589_Uxfdf.png +0 -0
  3250. package/packages/storefront/dist/client/_astro/rect8589_Z15uApA.png +0 -0
  3251. package/packages/storefront/dist/client/_astro/rect8589_Z1Ap1Im.avif +0 -0
  3252. package/packages/storefront/dist/client/_astro/rect8589_Z1JT1HB.webp +0 -0
  3253. package/packages/storefront/dist/client/_astro/rect8589_ZY9mtN.avif +0 -0
  3254. package/packages/storefront/dist/client/_astro/rect8589_tMFW0.avif +0 -0
  3255. package/packages/storefront/dist/client/_astro/rect859_1TgQXS.avif +0 -0
  3256. package/packages/storefront/dist/client/_astro/rect859_2Nm1z.avif +0 -0
  3257. package/packages/storefront/dist/client/_astro/rect859_DIqwR.png +0 -0
  3258. package/packages/storefront/dist/client/_astro/rect859_Z1IKDb2.png +0 -0
  3259. package/packages/storefront/dist/client/_astro/rect859_Z29FI4V.webp +0 -0
  3260. package/packages/storefront/dist/client/_astro/rect859_Z2kFHGk.avif +0 -0
  3261. package/packages/storefront/dist/client/_astro/rect859_ZkpPFI.webp +0 -0
  3262. package/packages/storefront/dist/client/_astro/rect859_jXzBi.png +0 -0
  3263. package/packages/storefront/dist/client/_astro/rect859_x1l16.webp +0 -0
  3264. package/packages/storefront/dist/client/_astro/rect89_1TSfW7.avif +0 -0
  3265. package/packages/storefront/dist/client/_astro/rect89_Z1re32x.webp +0 -0
  3266. package/packages/storefront/dist/client/_astro/sf-utils.yjuG8NjM.js +1 -0
  3267. package/packages/storefront/dist/client/_astro/shopping-cart.Ean2uW2R.js +1 -0
  3268. package/packages/storefront/dist/client/_astro/use-analytics.Y7amTmnr.js +1 -0
  3269. package/packages/storefront/dist/client/_astro/use-product-card.zB4z32bC.js +1 -0
  3270. package/packages/storefront/dist/client/_astro/use-text-value.f9pDzruv.js +4 -0
  3271. package/packages/storefront/dist/client/admin/.gitkeep +2 -0
  3272. package/packages/storefront/dist/client/app/account/index.html +56 -0
  3273. package/packages/storefront/dist/client/app/index.html +96 -0
  3274. package/packages/storefront/dist/client/assets/.gitkeep +2 -0
  3275. package/packages/storefront/dist/client/headset-gamer-corsair-hs40-raptor-ca-9011122-naap-vinho/index.html +107 -0
  3276. package/packages/storefront/dist/client/img/icon.png +0 -0
  3277. package/packages/storefront/dist/client/img/large-icon.png +0 -0
  3278. package/packages/storefront/dist/client/img/uploads/banner2.webp +0 -0
  3279. package/packages/storefront/dist/client/img/uploads/ecom-icon.png +0 -0
  3280. package/packages/storefront/dist/client/img/uploads/headphone.webp +0 -0
  3281. package/packages/storefront/dist/client/img/uploads/logo.png +0 -0
  3282. package/packages/storefront/dist/client/img/uploads/og-image.png +0 -0
  3283. package/packages/storefront/dist/client/img/uploads/passion.webp +0 -0
  3284. package/packages/storefront/dist/client/img/uploads/rect8589.png +0 -0
  3285. package/packages/storefront/dist/client/img/uploads/rect859.png +0 -0
  3286. package/packages/storefront/dist/client/img/uploads/rect89.webp +0 -0
  3287. package/packages/storefront/dist/client/index.html +120 -0
  3288. package/packages/storefront/dist/client/macbook-apple-pro-15.4-intel-core-i7-2.6ghz-ram-16gb-ssd-512gb-mr972ll/a-prata/index.html +107 -0
  3289. package/packages/storefront/dist/client/mouse-gamer-corsair-optico-harpoon-rgb-ch-9301011-na/index.html +107 -0
  3290. package/packages/storefront/dist/client/robots.txt +7 -0
  3291. package/packages/storefront/dist/client/teclado-gamer-fortrek-mecanico-k5-rgb-outemu-blue-preto/index.html +107 -0
  3292. package/packages/storefront/dist/client/~fallback/index.html +74 -0
  3293. package/packages/storefront/dist/server/_empty-middleware.mjs +3 -0
  3294. package/packages/storefront/dist/server/chunks/CartSidebar_gCUGFy65.mjs +203 -0
  3295. package/packages/storefront/dist/server/chunks/SearchModal_2uYZ9tHy.mjs +350 -0
  3296. package/packages/storefront/dist/server/chunks/_.._FnNLvTNv.mjs +6 -0
  3297. package/packages/storefront/dist/server/chunks/account_iZ2QmK5E.mjs +6 -0
  3298. package/packages/storefront/dist/server/chunks/astro/assets-service_TpUb271h.mjs +466 -0
  3299. package/packages/storefront/dist/server/chunks/astro_PpArQAsY.mjs +2042 -0
  3300. package/packages/storefront/dist/server/chunks/index_1q5IpD39.mjs +6 -0
  3301. package/packages/storefront/dist/server/chunks/index_JEU6B2DI.mjs +6 -0
  3302. package/packages/storefront/dist/server/chunks/node_wOa5hJmt.mjs +6 -0
  3303. package/packages/storefront/dist/server/chunks/pages/__cEcxuEWe.mjs +8006 -0
  3304. package/packages/storefront/dist/server/chunks/pages/account_WliDuQOB.mjs +29 -0
  3305. package/packages/storefront/dist/server/chunks/pages/index_2bQLkQf-.mjs +317 -0
  3306. package/packages/storefront/dist/server/chunks/pages/node_ZaY4t9qW.mjs +112 -0
  3307. package/packages/storefront/dist/server/chunks/pages/~fallback_TL5hPXF_.mjs +41 -0
  3308. package/packages/storefront/dist/server/chunks/photoswipe_IcWDJiwc.mjs +3 -0
  3309. package/packages/storefront/dist/server/chunks/~fallback_wxuqpDXG.mjs +6 -0
  3310. package/packages/storefront/dist/server/entry.mjs +2279 -0
  3311. package/packages/storefront/dist/server/manifest_YgAgEwvF.mjs +196 -0
  3312. package/packages/storefront/dist/server/renderers.mjs +671 -0
  3313. package/packages/storefront/example.env +2 -0
  3314. package/packages/storefront/package.json +48 -3
  3315. package/packages/storefront/scripts/build-prod.sh +39 -0
  3316. package/packages/storefront/scripts/prepare-monorepo.sh +10 -0
  3317. package/packages/storefront/server.d.ts +27 -0
  3318. package/packages/storefront/src/analytics/event-to-fbq.ts +85 -0
  3319. package/packages/storefront/src/analytics/event-to-ttq.ts +94 -0
  3320. package/packages/storefront/src/env.d.ts +11 -0
  3321. package/packages/storefront/src/helpers/afetch.ts +44 -0
  3322. package/packages/storefront/src/helpers/browser-env.ts +15 -0
  3323. package/packages/storefront/src/helpers/server-data.ts +29 -0
  3324. package/packages/storefront/src/helpers/sf-utils.ts +69 -0
  3325. package/packages/storefront/src/images/Picture.runtime.astro +53 -0
  3326. package/packages/storefront/src/images/get-built-image.ts +81 -0
  3327. package/packages/storefront/src/images/get-built-picture.ts +6 -0
  3328. package/packages/storefront/src/images/picture-base.ts +135 -0
  3329. package/packages/storefront/src/images/use-ssr-picture.ts +196 -0
  3330. package/packages/storefront/src/lib/$storefront.d.ts +35 -0
  3331. package/packages/storefront/src/lib/assets/base.css +126 -0
  3332. package/packages/storefront/src/lib/assets/components.css +28 -0
  3333. package/packages/storefront/src/lib/assets/forms.css +214 -0
  3334. package/packages/storefront/src/lib/assets/reset.css +371 -0
  3335. package/packages/storefront/src/lib/assets/tooltip.css +45 -0
  3336. package/packages/storefront/src/lib/components/AccountLink.vue +44 -0
  3337. package/packages/storefront/src/lib/components/BannerPictures.astro +60 -0
  3338. package/packages/storefront/src/lib/components/Carousel.vue +263 -0
  3339. package/packages/storefront/src/lib/components/CarouselControl.vue +39 -0
  3340. package/packages/storefront/src/lib/components/CheckoutLink.vue +54 -0
  3341. package/packages/storefront/src/lib/components/ContentClearfix.vue +17 -0
  3342. package/packages/storefront/src/lib/components/Drawer.vue +162 -0
  3343. package/packages/storefront/src/lib/components/PaymentMethodFlag.vue +36 -0
  3344. package/packages/storefront/src/lib/components/Picture.astro +96 -0
  3345. package/packages/storefront/src/lib/components/QuantitySelector.vue +107 -0
  3346. package/packages/storefront/src/lib/components/QuantitySelectorControl.vue +35 -0
  3347. package/packages/storefront/src/lib/components/SharedData.astro +12 -0
  3348. package/packages/storefront/src/lib/components/SocialNetworkIcon.vue +30 -0
  3349. package/packages/storefront/src/lib/components/SocialNetworkLink.vue +35 -0
  3350. package/packages/storefront/src/lib/components/ViewTransitions.astro +422 -0
  3351. package/packages/storefront/src/lib/components/globals/AImg.vue +53 -0
  3352. package/packages/storefront/src/lib/components/globals/ALink.vue +28 -0
  3353. package/packages/storefront/src/lib/components/globals/Fade.vue +147 -0
  3354. package/packages/storefront/src/lib/components/globals/Skeleton.vue +29 -0
  3355. package/packages/storefront/src/lib/composables/use-banner.ts +38 -0
  3356. package/packages/storefront/src/lib/composables/use-breadcrumbs.ts +84 -0
  3357. package/packages/storefront/src/lib/composables/use-cart-item.ts +52 -0
  3358. package/packages/storefront/src/lib/composables/use-login-form.ts +80 -0
  3359. package/packages/storefront/src/lib/composables/use-pagination.ts +101 -0
  3360. package/packages/storefront/src/lib/composables/use-pitch-bar.ts +48 -0
  3361. package/packages/storefront/src/lib/composables/use-prices.ts +189 -0
  3362. package/packages/storefront/src/lib/composables/use-product-card.ts +115 -0
  3363. package/packages/storefront/src/lib/composables/use-product-shelf.ts +103 -0
  3364. package/packages/storefront/src/lib/composables/use-search-filters.ts +271 -0
  3365. package/packages/storefront/src/lib/composables/use-search-modal.ts +81 -0
  3366. package/packages/storefront/src/lib/composables/use-search-showcase.ts +201 -0
  3367. package/packages/storefront/src/lib/composables/use-shared-data.ts +48 -0
  3368. package/packages/storefront/src/lib/composables/use-shop-header-submenu.ts +64 -0
  3369. package/packages/storefront/src/lib/composables/use-shop-header.ts +219 -0
  3370. package/packages/storefront/src/lib/composables/use-sku-selector.ts +146 -0
  3371. package/packages/storefront/src/lib/composables/use-sticky-header.ts +137 -0
  3372. package/packages/storefront/src/lib/content.d.ts +58 -0
  3373. package/packages/storefront/src/lib/layouts/Base.astro +26 -0
  3374. package/packages/storefront/src/lib/layouts/BaseBody.astro +31 -0
  3375. package/packages/storefront/src/lib/layouts/BaseHead.astro +209 -0
  3376. package/packages/storefront/src/lib/layouts/use-page-header.ts +71 -0
  3377. package/packages/storefront/src/lib/layouts/use-page-main.ts +249 -0
  3378. package/packages/storefront/src/lib/pages/_vue.ts +35 -0
  3379. package/packages/storefront/src/lib/scripts/firebase-app.ts +15 -0
  3380. package/packages/storefront/src/lib/scripts/firestore.ts +27 -0
  3381. package/packages/storefront/src/lib/scripts/modules-info-preset.ts +63 -0
  3382. package/packages/storefront/src/lib/scripts/push-analytics-events.ts +103 -0
  3383. package/packages/storefront/src/lib/scripts/session-utm.ts +37 -0
  3384. package/packages/storefront/src/lib/scripts/vbeta-app.ts +243 -0
  3385. package/packages/storefront/src/lib/sf-lib.ts +7 -0
  3386. package/packages/storefront/src/lib/ssr-context.ts +253 -0
  3387. package/packages/storefront/src/lib/state/customer-session.ts +167 -0
  3388. package/packages/storefront/src/lib/state/modules-info.ts +203 -0
  3389. package/packages/storefront/src/lib/state/search-engine.ts +178 -0
  3390. package/packages/storefront/src/lib/state/shopping-cart/add-cart-item.ts +67 -0
  3391. package/packages/storefront/src/lib/state/shopping-cart/parse-product.ts +41 -0
  3392. package/packages/storefront/src/lib/state/shopping-cart.ts +122 -0
  3393. package/packages/storefront/src/lib/state/use-analytics.ts +302 -0
  3394. package/packages/storefront/src/lib/state/use-cms-preview.ts +38 -0
  3395. package/packages/storefront/src/lib/state/use-storage.ts +31 -0
  3396. package/packages/storefront/src/vue-globals.d.ts +34 -0
  3397. package/packages/storefront/tailwind.config.cjs +3 -0
  3398. package/packages/storefront/tsconfig.json +16 -0
  3399. package/packages/storefront/uno.config.cjs +3 -0
  3400. package/packages/test-base/CHANGELOG.md +1 -0
  3401. package/packages/test-base/README.md +7 -0
  3402. package/packages/test-base/lib/endpoints.js +23 -0
  3403. package/packages/test-base/lib/endpoints.js.map +1 -0
  3404. package/packages/test-base/lib/index.js +4 -0
  3405. package/packages/test-base/lib/index.js.map +1 -0
  3406. package/packages/test-base/lib/playloads.js +14 -0
  3407. package/packages/test-base/lib/playloads.js.map +1 -0
  3408. package/packages/test-base/package.json +28 -0
  3409. package/packages/test-base/payloads/calculate-shipping.json +37 -0
  3410. package/packages/test-base/payloads/create-transaction.json +116 -0
  3411. package/packages/test-base/payloads/list-payments.json +125 -0
  3412. package/packages/test-base/src/endpoints.ts +37 -0
  3413. package/packages/test-base/src/index.ts +3 -0
  3414. package/packages/test-base/src/playloads.ts +24 -0
  3415. package/packages/test-base/tsconfig.json +3 -0
  3416. package/packages/types/CHANGELOG.md +1 -0
  3417. package/packages/types/README.md +1 -0
  3418. package/packages/types/index.ts +194 -0
  3419. package/packages/types/modules/@checkout:params.d.ts +928 -0
  3420. package/packages/types/modules/apply_discount:params.d.ts +158 -0
  3421. package/packages/types/modules/apply_discount:response.d.ts +103 -0
  3422. package/packages/types/modules/calculate_shipping:params.d.ts +275 -0
  3423. package/packages/types/modules/calculate_shipping:response.d.ts +402 -0
  3424. package/packages/types/modules/create_transaction:params.d.ts +519 -0
  3425. package/packages/types/modules/create_transaction:response.d.ts +276 -0
  3426. package/packages/types/modules/list_payments:params.d.ts +327 -0
  3427. package/packages/types/modules/list_payments:response.d.ts +266 -0
  3428. package/packages/types/package.json +21 -0
  3429. package/pnpm-workspace.yaml +5 -1
  3430. package/store.renovate.json +72 -0
  3431. package/tsconfig.json +108 -0
  3432. package/tsconfig.test.json +11 -0
  3433. package/turbo.json +12 -2
  3434. package/vite.config.ts +12 -0
  3435. package/.eslintrc.js +0 -66
  3436. package/packages/api/dist/index.js +0 -22
  3437. package/packages/api/dist/index.js.map +0 -1
  3438. package/packages/api/src/index.ts +0 -27
  3439. package/src/index.js +0 -3
@@ -0,0 +1,2279 @@
1
+ import fs from 'node:fs';
2
+ import http from 'node:http';
3
+ import { TLSSocket } from 'node:tls';
4
+ import { appendForwardSlash as appendForwardSlash$1, joinPaths, trimSlashes, slash, prependForwardSlash, removeTrailingForwardSlash, collapseDuplicateSlashes } from '@astrojs/internal-helpers/path';
5
+ import { serialize, parse } from 'cookie';
6
+ import { l as levels, g as getEventPrefix, L as Logger, A as AstroIntegrationLogger, manifest } from './manifest_YgAgEwvF.mjs';
7
+ import 'kleur/colors';
8
+ import { A as AstroError, R as ResponseSentError, o as MiddlewareNoDataOrNextCalled, p as MiddlewareNotAResponse, G as GetStaticPathsRequired, q as InvalidGetStaticPathsReturn, t as InvalidGetStaticPathsEntry, v as GetStaticPathsExpectedParams, w as GetStaticPathsInvalidRouteParam, P as PageNumberParamNotFound, N as NoMatchingStaticPathFound, x as PrerenderDynamicEndpointPathCollide, y as LocalsNotAnObject, z as ASTRO_VERSION, C as ClientAddressNotAvailable, S as StaticClientAddressNotAvailable, B as renderEndpoint, D as ReservedSlotName, k as renderSlotToString, H as renderJSX, J as chunkToString, K as CantRenderPage, O as renderPage$1 } from './chunks/astro_PpArQAsY.mjs';
9
+ import 'clsx';
10
+ import buffer from 'node:buffer';
11
+ import crypto from 'node:crypto';
12
+ import https from 'https';
13
+ import path from 'node:path';
14
+ import { fileURLToPath } from 'node:url';
15
+ import os from 'os';
16
+ import send from 'send';
17
+ import enableDestroy from 'server-destroy';
18
+ import { renderers } from './renderers.mjs';
19
+
20
+ function getPathByLocale(locale, locales) {
21
+ for (const loopLocale of locales) {
22
+ if (typeof loopLocale === "string") {
23
+ if (loopLocale === locale) {
24
+ return loopLocale;
25
+ }
26
+ } else {
27
+ for (const code of loopLocale.codes) {
28
+ if (code === locale) {
29
+ return loopLocale.path;
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
35
+ function normalizeTheLocale(locale) {
36
+ return locale.replaceAll("_", "-").toLowerCase();
37
+ }
38
+ function toCodes(locales) {
39
+ const codes = [];
40
+ for (const locale of locales) {
41
+ if (typeof locale === "string") {
42
+ codes.push(locale);
43
+ } else {
44
+ for (const code of locale.codes) {
45
+ codes.push(code);
46
+ }
47
+ }
48
+ }
49
+ return codes;
50
+ }
51
+
52
+ const routeDataSymbol = Symbol.for("astro.routeData");
53
+ function pathnameHasLocale(pathname, locales) {
54
+ const segments = pathname.split("/");
55
+ for (const segment of segments) {
56
+ for (const locale of locales) {
57
+ if (typeof locale === "string") {
58
+ if (normalizeTheLocale(segment) === normalizeTheLocale(locale)) {
59
+ return true;
60
+ }
61
+ } else if (segment === locale.path) {
62
+ return true;
63
+ }
64
+ }
65
+ }
66
+ return false;
67
+ }
68
+ function createI18nMiddleware(i18n, base, trailingSlash) {
69
+ if (!i18n) {
70
+ return void 0;
71
+ }
72
+ return async (context, next) => {
73
+ if (!i18n) {
74
+ return await next();
75
+ }
76
+ const routeData = Reflect.get(context.request, routeDataSymbol);
77
+ if (routeData) {
78
+ if (routeData.type !== "page" && routeData.type !== "fallback") {
79
+ return await next();
80
+ }
81
+ }
82
+ const url = context.url;
83
+ const { locales, defaultLocale, fallback, routing } = i18n;
84
+ const response = await next();
85
+ if (response instanceof Response) {
86
+ const pathnameContainsDefaultLocale = url.pathname.includes(`/${defaultLocale}`);
87
+ if (i18n.routing === "prefix-other-locales" && pathnameContainsDefaultLocale) {
88
+ const newLocation = url.pathname.replace(`/${defaultLocale}`, "");
89
+ response.headers.set("Location", newLocation);
90
+ return new Response(null, {
91
+ status: 404,
92
+ headers: response.headers
93
+ });
94
+ } else if (i18n.routing === "prefix-always") {
95
+ if (url.pathname === base + "/" || url.pathname === base) {
96
+ if (trailingSlash === "always") {
97
+ return context.redirect(`${appendForwardSlash$1(joinPaths(base, i18n.defaultLocale))}`);
98
+ } else {
99
+ return context.redirect(`${joinPaths(base, i18n.defaultLocale)}`);
100
+ }
101
+ } else if (!pathnameHasLocale(url.pathname, i18n.locales)) {
102
+ return new Response(null, {
103
+ status: 404,
104
+ headers: response.headers
105
+ });
106
+ }
107
+ }
108
+ if (response.status >= 300 && fallback) {
109
+ const fallbackKeys = i18n.fallback ? Object.keys(i18n.fallback) : [];
110
+ const segments = url.pathname.split("/");
111
+ const urlLocale = segments.find((segment) => {
112
+ for (const locale of locales) {
113
+ if (typeof locale === "string") {
114
+ if (locale === segment) {
115
+ return true;
116
+ }
117
+ } else if (locale.path === segment) {
118
+ return true;
119
+ }
120
+ }
121
+ return false;
122
+ });
123
+ if (urlLocale && fallbackKeys.includes(urlLocale)) {
124
+ const fallbackLocale = fallback[urlLocale];
125
+ const pathFallbackLocale = getPathByLocale(fallbackLocale, locales);
126
+ let newPathname;
127
+ if (pathFallbackLocale === defaultLocale && routing === "prefix-other-locales") {
128
+ newPathname = url.pathname.replace(`/${urlLocale}`, ``);
129
+ } else {
130
+ newPathname = url.pathname.replace(`/${urlLocale}`, `/${pathFallbackLocale}`);
131
+ }
132
+ return context.redirect(newPathname);
133
+ }
134
+ }
135
+ }
136
+ return response;
137
+ };
138
+ }
139
+ const i18nPipelineHook = (ctx) => {
140
+ Reflect.set(ctx.request, routeDataSymbol, ctx.route);
141
+ };
142
+
143
+ const DELETED_EXPIRATION = /* @__PURE__ */ new Date(0);
144
+ const DELETED_VALUE = "deleted";
145
+ const responseSentSymbol$2 = Symbol.for("astro.responseSent");
146
+ class AstroCookie {
147
+ constructor(value) {
148
+ this.value = value;
149
+ }
150
+ json() {
151
+ if (this.value === void 0) {
152
+ throw new Error(`Cannot convert undefined to an object.`);
153
+ }
154
+ return JSON.parse(this.value);
155
+ }
156
+ number() {
157
+ return Number(this.value);
158
+ }
159
+ boolean() {
160
+ if (this.value === "false")
161
+ return false;
162
+ if (this.value === "0")
163
+ return false;
164
+ return Boolean(this.value);
165
+ }
166
+ }
167
+ class AstroCookies {
168
+ #request;
169
+ #requestValues;
170
+ #outgoing;
171
+ constructor(request) {
172
+ this.#request = request;
173
+ this.#requestValues = null;
174
+ this.#outgoing = null;
175
+ }
176
+ /**
177
+ * Astro.cookies.delete(key) is used to delete a cookie. Using this method will result
178
+ * in a Set-Cookie header added to the response.
179
+ * @param key The cookie to delete
180
+ * @param options Options related to this deletion, such as the path of the cookie.
181
+ */
182
+ delete(key, options) {
183
+ const serializeOptions = {
184
+ expires: DELETED_EXPIRATION
185
+ };
186
+ if (options?.domain) {
187
+ serializeOptions.domain = options.domain;
188
+ }
189
+ if (options?.path) {
190
+ serializeOptions.path = options.path;
191
+ }
192
+ this.#ensureOutgoingMap().set(key, [
193
+ DELETED_VALUE,
194
+ serialize(key, DELETED_VALUE, serializeOptions),
195
+ false
196
+ ]);
197
+ }
198
+ /**
199
+ * Astro.cookies.get(key) is used to get a cookie value. The cookie value is read from the
200
+ * request. If you have set a cookie via Astro.cookies.set(key, value), the value will be taken
201
+ * from that set call, overriding any values already part of the request.
202
+ * @param key The cookie to get.
203
+ * @returns An object containing the cookie value as well as convenience methods for converting its value.
204
+ */
205
+ get(key) {
206
+ if (this.#outgoing?.has(key)) {
207
+ let [serializedValue, , isSetValue] = this.#outgoing.get(key);
208
+ if (isSetValue) {
209
+ return new AstroCookie(serializedValue);
210
+ } else {
211
+ return void 0;
212
+ }
213
+ }
214
+ const values = this.#ensureParsed();
215
+ if (key in values) {
216
+ const value = values[key];
217
+ return new AstroCookie(value);
218
+ }
219
+ }
220
+ /**
221
+ * Astro.cookies.has(key) returns a boolean indicating whether this cookie is either
222
+ * part of the initial request or set via Astro.cookies.set(key)
223
+ * @param key The cookie to check for.
224
+ * @returns
225
+ */
226
+ has(key) {
227
+ if (this.#outgoing?.has(key)) {
228
+ let [, , isSetValue] = this.#outgoing.get(key);
229
+ return isSetValue;
230
+ }
231
+ const values = this.#ensureParsed();
232
+ return !!values[key];
233
+ }
234
+ /**
235
+ * Astro.cookies.set(key, value) is used to set a cookie's value. If provided
236
+ * an object it will be stringified via JSON.stringify(value). Additionally you
237
+ * can provide options customizing how this cookie will be set, such as setting httpOnly
238
+ * in order to prevent the cookie from being read in client-side JavaScript.
239
+ * @param key The name of the cookie to set.
240
+ * @param value A value, either a string or other primitive or an object.
241
+ * @param options Options for the cookie, such as the path and security settings.
242
+ */
243
+ set(key, value, options) {
244
+ let serializedValue;
245
+ if (typeof value === "string") {
246
+ serializedValue = value;
247
+ } else {
248
+ let toStringValue = value.toString();
249
+ if (toStringValue === Object.prototype.toString.call(value)) {
250
+ serializedValue = JSON.stringify(value);
251
+ } else {
252
+ serializedValue = toStringValue;
253
+ }
254
+ }
255
+ const serializeOptions = {};
256
+ if (options) {
257
+ Object.assign(serializeOptions, options);
258
+ }
259
+ this.#ensureOutgoingMap().set(key, [
260
+ serializedValue,
261
+ serialize(key, serializedValue, serializeOptions),
262
+ true
263
+ ]);
264
+ if (this.#request[responseSentSymbol$2]) {
265
+ throw new AstroError({
266
+ ...ResponseSentError
267
+ });
268
+ }
269
+ }
270
+ /**
271
+ * Astro.cookies.header() returns an iterator for the cookies that have previously
272
+ * been set by either Astro.cookies.set() or Astro.cookies.delete().
273
+ * This method is primarily used by adapters to set the header on outgoing responses.
274
+ * @returns
275
+ */
276
+ *headers() {
277
+ if (this.#outgoing == null)
278
+ return;
279
+ for (const [, value] of this.#outgoing) {
280
+ yield value[1];
281
+ }
282
+ }
283
+ #ensureParsed() {
284
+ if (!this.#requestValues) {
285
+ this.#parse();
286
+ }
287
+ if (!this.#requestValues) {
288
+ this.#requestValues = {};
289
+ }
290
+ return this.#requestValues;
291
+ }
292
+ #ensureOutgoingMap() {
293
+ if (!this.#outgoing) {
294
+ this.#outgoing = /* @__PURE__ */ new Map();
295
+ }
296
+ return this.#outgoing;
297
+ }
298
+ #parse() {
299
+ const raw = this.#request.headers.get("cookie");
300
+ if (!raw) {
301
+ return;
302
+ }
303
+ this.#requestValues = parse(raw);
304
+ }
305
+ }
306
+
307
+ const astroCookiesSymbol = Symbol.for("astro.cookies");
308
+ function attachCookiesToResponse(response, cookies) {
309
+ Reflect.set(response, astroCookiesSymbol, cookies);
310
+ }
311
+ function responseHasCookies(response) {
312
+ return Reflect.has(response, astroCookiesSymbol);
313
+ }
314
+ function getFromResponse(response) {
315
+ let cookies = Reflect.get(response, astroCookiesSymbol);
316
+ if (cookies != null) {
317
+ return cookies;
318
+ } else {
319
+ return void 0;
320
+ }
321
+ }
322
+ function* getSetCookiesFromResponse(response) {
323
+ const cookies = getFromResponse(response);
324
+ if (!cookies) {
325
+ return [];
326
+ }
327
+ for (const headerValue of cookies.headers()) {
328
+ yield headerValue;
329
+ }
330
+ return [];
331
+ }
332
+
333
+ const consoleLogDestination = {
334
+ write(event) {
335
+ let dest = console.error;
336
+ if (levels[event.level] < levels["error"]) {
337
+ dest = console.log;
338
+ }
339
+ if (event.label === "SKIP_FORMAT") {
340
+ dest(event.message);
341
+ } else {
342
+ dest(getEventPrefix(event) + " " + event.message);
343
+ }
344
+ return true;
345
+ }
346
+ };
347
+
348
+ async function callMiddleware(onRequest, apiContext, responseFunction) {
349
+ let nextCalled = false;
350
+ let responseFunctionPromise = void 0;
351
+ const next = async () => {
352
+ nextCalled = true;
353
+ responseFunctionPromise = responseFunction();
354
+ return responseFunctionPromise;
355
+ };
356
+ let middlewarePromise = onRequest(apiContext, next);
357
+ return await Promise.resolve(middlewarePromise).then(async (value) => {
358
+ if (nextCalled) {
359
+ if (typeof value !== "undefined") {
360
+ if (value instanceof Response === false) {
361
+ throw new AstroError(MiddlewareNotAResponse);
362
+ }
363
+ return ensureCookiesAttached(apiContext, value);
364
+ } else {
365
+ if (responseFunctionPromise) {
366
+ return responseFunctionPromise;
367
+ } else {
368
+ throw new AstroError(MiddlewareNotAResponse);
369
+ }
370
+ }
371
+ } else if (typeof value === "undefined") {
372
+ throw new AstroError(MiddlewareNoDataOrNextCalled);
373
+ } else if (value instanceof Response === false) {
374
+ throw new AstroError(MiddlewareNotAResponse);
375
+ } else {
376
+ return ensureCookiesAttached(apiContext, value);
377
+ }
378
+ });
379
+ }
380
+ function ensureCookiesAttached(apiContext, response) {
381
+ if (apiContext.cookies !== void 0 && !responseHasCookies(response)) {
382
+ attachCookiesToResponse(response, apiContext.cookies);
383
+ }
384
+ return response;
385
+ }
386
+
387
+ function routeIsRedirect(route) {
388
+ return route?.type === "redirect";
389
+ }
390
+ function routeIsFallback(route) {
391
+ return route?.type === "fallback";
392
+ }
393
+ function redirectRouteGenerate(redirectRoute, data) {
394
+ const routeData = redirectRoute.redirectRoute;
395
+ const route = redirectRoute.redirect;
396
+ if (typeof routeData !== "undefined") {
397
+ return routeData?.generate(data) || routeData?.pathname || "/";
398
+ } else if (typeof route === "string") {
399
+ let target = route;
400
+ for (const param of Object.keys(data)) {
401
+ const paramValue = data[param];
402
+ target = target.replace(`[${param}]`, paramValue);
403
+ target = target.replace(`[...${param}]`, paramValue);
404
+ }
405
+ return target;
406
+ } else if (typeof route === "undefined") {
407
+ return "/";
408
+ }
409
+ return route.destination;
410
+ }
411
+ function redirectRouteStatus(redirectRoute, method = "GET") {
412
+ const routeData = redirectRoute.redirectRoute;
413
+ if (typeof routeData?.redirect === "object") {
414
+ return routeData.redirect.status;
415
+ } else if (method !== "GET") {
416
+ return 308;
417
+ }
418
+ return 301;
419
+ }
420
+
421
+ const RedirectComponentInstance = {
422
+ default() {
423
+ return new Response(null, {
424
+ status: 301
425
+ });
426
+ }
427
+ };
428
+ const RedirectSinglePageBuiltModule = {
429
+ page: () => Promise.resolve(RedirectComponentInstance),
430
+ onRequest: (_, next) => next(),
431
+ renderers: []
432
+ };
433
+
434
+ const VALID_PARAM_TYPES = ["string", "number", "undefined"];
435
+ function validateGetStaticPathsParameter([key, value], route) {
436
+ if (!VALID_PARAM_TYPES.includes(typeof value)) {
437
+ throw new AstroError({
438
+ ...GetStaticPathsInvalidRouteParam,
439
+ message: GetStaticPathsInvalidRouteParam.message(key, value, typeof value),
440
+ location: {
441
+ file: route
442
+ }
443
+ });
444
+ }
445
+ }
446
+ function validateDynamicRouteModule(mod, {
447
+ ssr,
448
+ route
449
+ }) {
450
+ if ((!ssr || route.prerender) && !mod.getStaticPaths) {
451
+ throw new AstroError({
452
+ ...GetStaticPathsRequired,
453
+ location: { file: route.component }
454
+ });
455
+ }
456
+ }
457
+ function validateGetStaticPathsResult(result, logger, route) {
458
+ if (!Array.isArray(result)) {
459
+ throw new AstroError({
460
+ ...InvalidGetStaticPathsReturn,
461
+ message: InvalidGetStaticPathsReturn.message(typeof result),
462
+ location: {
463
+ file: route.component
464
+ }
465
+ });
466
+ }
467
+ result.forEach((pathObject) => {
468
+ if (typeof pathObject === "object" && Array.isArray(pathObject) || pathObject === null) {
469
+ throw new AstroError({
470
+ ...InvalidGetStaticPathsEntry,
471
+ message: InvalidGetStaticPathsEntry.message(
472
+ Array.isArray(pathObject) ? "array" : typeof pathObject
473
+ )
474
+ });
475
+ }
476
+ if (pathObject.params === void 0 || pathObject.params === null || pathObject.params && Object.keys(pathObject.params).length === 0) {
477
+ throw new AstroError({
478
+ ...GetStaticPathsExpectedParams,
479
+ location: {
480
+ file: route.component
481
+ }
482
+ });
483
+ }
484
+ for (const [key, val] of Object.entries(pathObject.params)) {
485
+ if (!(typeof val === "undefined" || typeof val === "string" || typeof val === "number")) {
486
+ logger.warn(
487
+ "router",
488
+ `getStaticPaths() returned an invalid path param: "${key}". A string, number or undefined value was expected, but got \`${JSON.stringify(
489
+ val
490
+ )}\`.`
491
+ );
492
+ }
493
+ if (typeof val === "string" && val === "") {
494
+ logger.warn(
495
+ "router",
496
+ `getStaticPaths() returned an invalid path param: "${key}". \`undefined\` expected for an optional param, but got empty string.`
497
+ );
498
+ }
499
+ }
500
+ });
501
+ }
502
+
503
+ function getParams(array) {
504
+ const fn = (match) => {
505
+ const params = {};
506
+ array.forEach((key, i) => {
507
+ if (key.startsWith("...")) {
508
+ params[key.slice(3)] = match[i + 1] ? decodeURIComponent(match[i + 1]) : void 0;
509
+ } else {
510
+ params[key] = decodeURIComponent(match[i + 1]);
511
+ }
512
+ });
513
+ return params;
514
+ };
515
+ return fn;
516
+ }
517
+ function stringifyParams(params, route) {
518
+ const validatedParams = Object.entries(params).reduce((acc, next) => {
519
+ validateGetStaticPathsParameter(next, route.component);
520
+ const [key, value] = next;
521
+ if (value !== void 0) {
522
+ acc[key] = typeof value === "string" ? trimSlashes(value) : value.toString();
523
+ }
524
+ return acc;
525
+ }, {});
526
+ return JSON.stringify(route.generate(validatedParams));
527
+ }
528
+
529
+ function generatePaginateFunction(routeMatch) {
530
+ return function paginateUtility(data, args = {}) {
531
+ let { pageSize: _pageSize, params: _params, props: _props } = args;
532
+ const pageSize = _pageSize || 10;
533
+ const paramName = "page";
534
+ const additionalParams = _params || {};
535
+ const additionalProps = _props || {};
536
+ let includesFirstPageNumber;
537
+ if (routeMatch.params.includes(`...${paramName}`)) {
538
+ includesFirstPageNumber = false;
539
+ } else if (routeMatch.params.includes(`${paramName}`)) {
540
+ includesFirstPageNumber = true;
541
+ } else {
542
+ throw new AstroError({
543
+ ...PageNumberParamNotFound,
544
+ message: PageNumberParamNotFound.message(paramName)
545
+ });
546
+ }
547
+ const lastPage = Math.max(1, Math.ceil(data.length / pageSize));
548
+ const result = [...Array(lastPage).keys()].map((num) => {
549
+ const pageNum = num + 1;
550
+ const start = pageSize === Infinity ? 0 : (pageNum - 1) * pageSize;
551
+ const end = Math.min(start + pageSize, data.length);
552
+ const params = {
553
+ ...additionalParams,
554
+ [paramName]: includesFirstPageNumber || pageNum > 1 ? String(pageNum) : void 0
555
+ };
556
+ const current = correctIndexRoute(routeMatch.generate({ ...params }));
557
+ const next = pageNum === lastPage ? void 0 : correctIndexRoute(routeMatch.generate({ ...params, page: String(pageNum + 1) }));
558
+ const prev = pageNum === 1 ? void 0 : correctIndexRoute(
559
+ routeMatch.generate({
560
+ ...params,
561
+ page: !includesFirstPageNumber && pageNum - 1 === 1 ? void 0 : String(pageNum - 1)
562
+ })
563
+ );
564
+ return {
565
+ params,
566
+ props: {
567
+ ...additionalProps,
568
+ page: {
569
+ data: data.slice(start, end),
570
+ start,
571
+ end: end - 1,
572
+ size: pageSize,
573
+ total: data.length,
574
+ currentPage: pageNum,
575
+ lastPage,
576
+ url: { current, next, prev }
577
+ }
578
+ }
579
+ };
580
+ });
581
+ return result;
582
+ };
583
+ }
584
+ function correctIndexRoute(route) {
585
+ if (route === "") {
586
+ return "/";
587
+ }
588
+ return route;
589
+ }
590
+
591
+ async function callGetStaticPaths({
592
+ mod,
593
+ route,
594
+ routeCache,
595
+ logger,
596
+ ssr
597
+ }) {
598
+ const cached = routeCache.get(route);
599
+ if (!mod) {
600
+ throw new Error("This is an error caused by Astro and not your code. Please file an issue.");
601
+ }
602
+ if (cached?.staticPaths) {
603
+ return cached.staticPaths;
604
+ }
605
+ validateDynamicRouteModule(mod, { ssr, route });
606
+ if (ssr && !route.prerender) {
607
+ const entry = Object.assign([], { keyed: /* @__PURE__ */ new Map() });
608
+ routeCache.set(route, { ...cached, staticPaths: entry });
609
+ return entry;
610
+ }
611
+ let staticPaths = [];
612
+ if (!mod.getStaticPaths) {
613
+ throw new Error("Unexpected Error.");
614
+ }
615
+ staticPaths = await mod.getStaticPaths({
616
+ // Q: Why the cast?
617
+ // A: So users downstream can have nicer typings, we have to make some sacrifice in our internal typings, which necessitate a cast here
618
+ paginate: generatePaginateFunction(route)
619
+ });
620
+ validateGetStaticPathsResult(staticPaths, logger, route);
621
+ const keyedStaticPaths = staticPaths;
622
+ keyedStaticPaths.keyed = /* @__PURE__ */ new Map();
623
+ for (const sp of keyedStaticPaths) {
624
+ const paramsKey = stringifyParams(sp.params, route);
625
+ keyedStaticPaths.keyed.set(paramsKey, sp);
626
+ }
627
+ routeCache.set(route, { ...cached, staticPaths: keyedStaticPaths });
628
+ return keyedStaticPaths;
629
+ }
630
+ class RouteCache {
631
+ logger;
632
+ cache = {};
633
+ mode;
634
+ constructor(logger, mode = "production") {
635
+ this.logger = logger;
636
+ this.mode = mode;
637
+ }
638
+ /** Clear the cache. */
639
+ clearAll() {
640
+ this.cache = {};
641
+ }
642
+ set(route, entry) {
643
+ if (this.mode === "production" && this.cache[route.component]?.staticPaths) {
644
+ this.logger.warn(null, `Internal Warning: route cache overwritten. (${route.component})`);
645
+ }
646
+ this.cache[route.component] = entry;
647
+ }
648
+ get(route) {
649
+ return this.cache[route.component];
650
+ }
651
+ }
652
+ function findPathItemByKey(staticPaths, params, route, logger) {
653
+ const paramsKey = stringifyParams(params, route);
654
+ const matchedStaticPath = staticPaths.keyed.get(paramsKey);
655
+ if (matchedStaticPath) {
656
+ return matchedStaticPath;
657
+ }
658
+ logger.debug("router", `findPathItemByKey() - Unexpected cache miss looking for ${paramsKey}`);
659
+ }
660
+
661
+ async function getParamsAndProps(opts) {
662
+ const { logger, mod, route, routeCache, pathname, ssr } = opts;
663
+ if (!route || route.pathname) {
664
+ return [{}, {}];
665
+ }
666
+ const params = getRouteParams(route, pathname) ?? {};
667
+ if (routeIsRedirect(route) || routeIsFallback(route)) {
668
+ return [params, {}];
669
+ }
670
+ if (mod) {
671
+ validatePrerenderEndpointCollision(route, mod, params);
672
+ }
673
+ const staticPaths = await callGetStaticPaths({
674
+ mod,
675
+ route,
676
+ routeCache,
677
+ logger,
678
+ ssr
679
+ });
680
+ const matchedStaticPath = findPathItemByKey(staticPaths, params, route, logger);
681
+ if (!matchedStaticPath && (ssr ? route.prerender : true)) {
682
+ throw new AstroError({
683
+ ...NoMatchingStaticPathFound,
684
+ message: NoMatchingStaticPathFound.message(pathname),
685
+ hint: NoMatchingStaticPathFound.hint([route.component])
686
+ });
687
+ }
688
+ const props = matchedStaticPath?.props ? { ...matchedStaticPath.props } : {};
689
+ return [params, props];
690
+ }
691
+ function getRouteParams(route, pathname) {
692
+ if (route.params.length) {
693
+ const paramsMatch = route.pattern.exec(decodeURIComponent(pathname));
694
+ if (paramsMatch) {
695
+ return getParams(route.params)(paramsMatch);
696
+ }
697
+ }
698
+ }
699
+ function validatePrerenderEndpointCollision(route, mod, params) {
700
+ if (route.type === "endpoint" && mod.getStaticPaths) {
701
+ const lastSegment = route.segments[route.segments.length - 1];
702
+ const paramValues = Object.values(params);
703
+ const lastParam = paramValues[paramValues.length - 1];
704
+ if (lastSegment.length === 1 && lastSegment[0].dynamic && lastParam === void 0) {
705
+ throw new AstroError({
706
+ ...PrerenderDynamicEndpointPathCollide,
707
+ message: PrerenderDynamicEndpointPathCollide.message(route.route),
708
+ hint: PrerenderDynamicEndpointPathCollide.hint(route.component),
709
+ location: {
710
+ file: route.component
711
+ }
712
+ });
713
+ }
714
+ }
715
+ }
716
+
717
+ const clientLocalsSymbol$2 = Symbol.for("astro.locals");
718
+ async function createRenderContext(options) {
719
+ const request = options.request;
720
+ const pathname = options.pathname ?? new URL(request.url).pathname;
721
+ const [params, props] = await getParamsAndProps({
722
+ mod: options.mod,
723
+ route: options.route,
724
+ routeCache: options.env.routeCache,
725
+ pathname,
726
+ logger: options.env.logger,
727
+ ssr: options.env.ssr
728
+ });
729
+ const context = {
730
+ ...options,
731
+ pathname,
732
+ params,
733
+ props,
734
+ locales: options.locales,
735
+ routing: options.routing,
736
+ defaultLocale: options.defaultLocale
737
+ };
738
+ Object.defineProperty(context, "locals", {
739
+ enumerable: true,
740
+ get() {
741
+ return Reflect.get(request, clientLocalsSymbol$2);
742
+ },
743
+ set(val) {
744
+ if (typeof val !== "object") {
745
+ throw new AstroError(LocalsNotAnObject);
746
+ } else {
747
+ Reflect.set(request, clientLocalsSymbol$2, val);
748
+ }
749
+ }
750
+ });
751
+ return context;
752
+ }
753
+ function parseLocale(header) {
754
+ if (header === "*") {
755
+ return [{ locale: header, qualityValue: void 0 }];
756
+ }
757
+ const result = [];
758
+ const localeValues = header.split(",").map((str) => str.trim());
759
+ for (const localeValue of localeValues) {
760
+ const split = localeValue.split(";").map((str) => str.trim());
761
+ const localeName = split[0];
762
+ const qualityValue = split[1];
763
+ if (!split) {
764
+ continue;
765
+ }
766
+ if (qualityValue && qualityValue.startsWith("q=")) {
767
+ const qualityValueAsFloat = Number.parseFloat(qualityValue.slice("q=".length));
768
+ if (Number.isNaN(qualityValueAsFloat) || qualityValueAsFloat > 1) {
769
+ result.push({
770
+ locale: localeName,
771
+ qualityValue: void 0
772
+ });
773
+ } else {
774
+ result.push({
775
+ locale: localeName,
776
+ qualityValue: qualityValueAsFloat
777
+ });
778
+ }
779
+ } else {
780
+ result.push({
781
+ locale: localeName,
782
+ qualityValue: void 0
783
+ });
784
+ }
785
+ }
786
+ return result;
787
+ }
788
+ function sortAndFilterLocales(browserLocaleList, locales) {
789
+ const normalizedLocales = toCodes(locales).map(normalizeTheLocale);
790
+ return browserLocaleList.filter((browserLocale) => {
791
+ if (browserLocale.locale !== "*") {
792
+ return normalizedLocales.includes(normalizeTheLocale(browserLocale.locale));
793
+ }
794
+ return true;
795
+ }).sort((a, b) => {
796
+ if (a.qualityValue && b.qualityValue) {
797
+ if (a.qualityValue > b.qualityValue) {
798
+ return -1;
799
+ } else if (a.qualityValue < b.qualityValue) {
800
+ return 1;
801
+ }
802
+ }
803
+ return 0;
804
+ });
805
+ }
806
+ function computePreferredLocale(request, locales) {
807
+ const acceptHeader = request.headers.get("Accept-Language");
808
+ let result = void 0;
809
+ if (acceptHeader) {
810
+ const browserLocaleList = sortAndFilterLocales(parseLocale(acceptHeader), locales);
811
+ const firstResult = browserLocaleList.at(0);
812
+ if (firstResult && firstResult.locale !== "*") {
813
+ for (const currentLocale of locales) {
814
+ if (typeof currentLocale === "string") {
815
+ if (normalizeTheLocale(currentLocale) === normalizeTheLocale(firstResult.locale)) {
816
+ result = currentLocale;
817
+ }
818
+ } else {
819
+ for (const currentCode of currentLocale.codes) {
820
+ if (normalizeTheLocale(currentCode) === normalizeTheLocale(firstResult.locale)) {
821
+ result = currentLocale.path;
822
+ }
823
+ }
824
+ }
825
+ }
826
+ }
827
+ }
828
+ return result;
829
+ }
830
+ function computePreferredLocaleList(request, locales) {
831
+ const acceptHeader = request.headers.get("Accept-Language");
832
+ let result = [];
833
+ if (acceptHeader) {
834
+ const browserLocaleList = sortAndFilterLocales(parseLocale(acceptHeader), locales);
835
+ if (browserLocaleList.length === 1 && browserLocaleList.at(0).locale === "*") {
836
+ return locales.map((locale) => {
837
+ if (typeof locale === "string") {
838
+ return locale;
839
+ } else {
840
+ return locale.codes.at(0);
841
+ }
842
+ });
843
+ } else if (browserLocaleList.length > 0) {
844
+ for (const browserLocale of browserLocaleList) {
845
+ for (const loopLocale of locales) {
846
+ if (typeof loopLocale === "string") {
847
+ if (normalizeTheLocale(loopLocale) === normalizeTheLocale(browserLocale.locale)) {
848
+ result.push(loopLocale);
849
+ }
850
+ } else {
851
+ for (const code of loopLocale.codes) {
852
+ if (code === browserLocale.locale) {
853
+ result.push(loopLocale.path);
854
+ }
855
+ }
856
+ }
857
+ }
858
+ }
859
+ }
860
+ }
861
+ return result;
862
+ }
863
+ function computeCurrentLocale(request, locales, routingStrategy, defaultLocale) {
864
+ const requestUrl = new URL(request.url);
865
+ for (const segment of requestUrl.pathname.split("/")) {
866
+ for (const locale of locales) {
867
+ if (typeof locale === "string") {
868
+ if (normalizeTheLocale(locale) === normalizeTheLocale(segment)) {
869
+ return locale;
870
+ }
871
+ } else {
872
+ if (locale.path === segment) {
873
+ return locale.codes.at(0);
874
+ }
875
+ }
876
+ }
877
+ }
878
+ if (routingStrategy === "prefix-other-locales") {
879
+ return defaultLocale;
880
+ }
881
+ return void 0;
882
+ }
883
+
884
+ function createEnvironment(options) {
885
+ return options;
886
+ }
887
+
888
+ const clientAddressSymbol$2 = Symbol.for("astro.clientAddress");
889
+ const clientLocalsSymbol$1 = Symbol.for("astro.locals");
890
+ function createAPIContext({
891
+ request,
892
+ params,
893
+ site,
894
+ props,
895
+ adapterName,
896
+ locales,
897
+ routingStrategy,
898
+ defaultLocale
899
+ }) {
900
+ let preferredLocale = void 0;
901
+ let preferredLocaleList = void 0;
902
+ let currentLocale = void 0;
903
+ const context = {
904
+ cookies: new AstroCookies(request),
905
+ request,
906
+ params,
907
+ site: site ? new URL(site) : void 0,
908
+ generator: `Astro v${ASTRO_VERSION}`,
909
+ props,
910
+ redirect(path, status) {
911
+ return new Response(null, {
912
+ status: status || 302,
913
+ headers: {
914
+ Location: path
915
+ }
916
+ });
917
+ },
918
+ get preferredLocale() {
919
+ if (preferredLocale) {
920
+ return preferredLocale;
921
+ }
922
+ if (locales) {
923
+ preferredLocale = computePreferredLocale(request, locales);
924
+ return preferredLocale;
925
+ }
926
+ return void 0;
927
+ },
928
+ get preferredLocaleList() {
929
+ if (preferredLocaleList) {
930
+ return preferredLocaleList;
931
+ }
932
+ if (locales) {
933
+ preferredLocaleList = computePreferredLocaleList(request, locales);
934
+ return preferredLocaleList;
935
+ }
936
+ return void 0;
937
+ },
938
+ get currentLocale() {
939
+ if (currentLocale) {
940
+ return currentLocale;
941
+ }
942
+ if (locales) {
943
+ currentLocale = computeCurrentLocale(request, locales, routingStrategy, defaultLocale);
944
+ }
945
+ return currentLocale;
946
+ },
947
+ url: new URL(request.url),
948
+ get clientAddress() {
949
+ if (clientAddressSymbol$2 in request) {
950
+ return Reflect.get(request, clientAddressSymbol$2);
951
+ }
952
+ if (adapterName) {
953
+ throw new AstroError({
954
+ ...ClientAddressNotAvailable,
955
+ message: ClientAddressNotAvailable.message(adapterName)
956
+ });
957
+ } else {
958
+ throw new AstroError(StaticClientAddressNotAvailable);
959
+ }
960
+ },
961
+ get locals() {
962
+ let locals = Reflect.get(request, clientLocalsSymbol$1);
963
+ if (locals === void 0) {
964
+ locals = {};
965
+ Reflect.set(request, clientLocalsSymbol$1, locals);
966
+ }
967
+ if (typeof locals !== "object") {
968
+ throw new AstroError(LocalsNotAnObject);
969
+ }
970
+ return locals;
971
+ },
972
+ // We define a custom property, so we can check the value passed to locals
973
+ set locals(val) {
974
+ if (typeof val !== "object") {
975
+ throw new AstroError(LocalsNotAnObject);
976
+ } else {
977
+ Reflect.set(request, clientLocalsSymbol$1, val);
978
+ }
979
+ }
980
+ };
981
+ return context;
982
+ }
983
+ async function callEndpoint(mod, env, ctx, onRequest) {
984
+ const context = createAPIContext({
985
+ request: ctx.request,
986
+ params: ctx.params,
987
+ props: ctx.props,
988
+ site: env.site,
989
+ adapterName: env.adapterName,
990
+ routingStrategy: ctx.routing,
991
+ defaultLocale: ctx.defaultLocale,
992
+ locales: ctx.locales
993
+ });
994
+ let response;
995
+ if (onRequest) {
996
+ response = await callMiddleware(onRequest, context, async () => {
997
+ return await renderEndpoint(mod, context, env.ssr, env.logger);
998
+ });
999
+ } else {
1000
+ response = await renderEndpoint(mod, context, env.ssr, env.logger);
1001
+ }
1002
+ attachCookiesToResponse(response, context.cookies);
1003
+ return response;
1004
+ }
1005
+
1006
+ function sequence(...handlers) {
1007
+ const filtered = handlers.filter((h) => !!h);
1008
+ const length = filtered.length;
1009
+ if (!length) {
1010
+ const handler = defineMiddleware((context, next) => {
1011
+ return next();
1012
+ });
1013
+ return handler;
1014
+ }
1015
+ return defineMiddleware((context, next) => {
1016
+ return applyHandle(0, context);
1017
+ function applyHandle(i, handleContext) {
1018
+ const handle = filtered[i];
1019
+ const result = handle(handleContext, async () => {
1020
+ if (i < length - 1) {
1021
+ return applyHandle(i + 1, handleContext);
1022
+ } else {
1023
+ return next();
1024
+ }
1025
+ });
1026
+ return result;
1027
+ }
1028
+ });
1029
+ }
1030
+
1031
+ function defineMiddleware(fn) {
1032
+ return fn;
1033
+ }
1034
+
1035
+ function createAssetLink(href, base, assetsPrefix) {
1036
+ if (assetsPrefix) {
1037
+ return joinPaths(assetsPrefix, slash(href));
1038
+ } else if (base) {
1039
+ return prependForwardSlash(joinPaths(base, slash(href)));
1040
+ } else {
1041
+ return href;
1042
+ }
1043
+ }
1044
+ function createStylesheetElement(stylesheet, base, assetsPrefix) {
1045
+ if (stylesheet.type === "inline") {
1046
+ return {
1047
+ props: {},
1048
+ children: stylesheet.content
1049
+ };
1050
+ } else {
1051
+ return {
1052
+ props: {
1053
+ rel: "stylesheet",
1054
+ href: createAssetLink(stylesheet.src, base, assetsPrefix)
1055
+ },
1056
+ children: ""
1057
+ };
1058
+ }
1059
+ }
1060
+ function createStylesheetElementSet(stylesheets, base, assetsPrefix) {
1061
+ return new Set(stylesheets.map((s) => createStylesheetElement(s, base, assetsPrefix)));
1062
+ }
1063
+ function createModuleScriptElement(script, base, assetsPrefix) {
1064
+ if (script.type === "external") {
1065
+ return createModuleScriptElementWithSrc(script.value, base, assetsPrefix);
1066
+ } else {
1067
+ return {
1068
+ props: {
1069
+ type: "module"
1070
+ },
1071
+ children: script.value
1072
+ };
1073
+ }
1074
+ }
1075
+ function createModuleScriptElementWithSrc(src, base, assetsPrefix) {
1076
+ return {
1077
+ props: {
1078
+ type: "module",
1079
+ src: createAssetLink(src, base, assetsPrefix)
1080
+ },
1081
+ children: ""
1082
+ };
1083
+ }
1084
+
1085
+ function matchRoute(pathname, manifest) {
1086
+ const decodedPathname = decodeURI(pathname);
1087
+ return manifest.routes.find((route) => {
1088
+ return route.pattern.test(decodedPathname) || route.fallbackRoutes.some((fallbackRoute) => fallbackRoute.pattern.test(decodedPathname));
1089
+ });
1090
+ }
1091
+
1092
+ const clientAddressSymbol$1 = Symbol.for("astro.clientAddress");
1093
+ const responseSentSymbol$1 = Symbol.for("astro.responseSent");
1094
+ function getFunctionExpression(slot) {
1095
+ if (!slot)
1096
+ return;
1097
+ if (slot.expressions?.length !== 1)
1098
+ return;
1099
+ return slot.expressions[0];
1100
+ }
1101
+ class Slots {
1102
+ #result;
1103
+ #slots;
1104
+ #logger;
1105
+ constructor(result, slots, logger) {
1106
+ this.#result = result;
1107
+ this.#slots = slots;
1108
+ this.#logger = logger;
1109
+ if (slots) {
1110
+ for (const key of Object.keys(slots)) {
1111
+ if (this[key] !== void 0) {
1112
+ throw new AstroError({
1113
+ ...ReservedSlotName,
1114
+ message: ReservedSlotName.message(key)
1115
+ });
1116
+ }
1117
+ Object.defineProperty(this, key, {
1118
+ get() {
1119
+ return true;
1120
+ },
1121
+ enumerable: true
1122
+ });
1123
+ }
1124
+ }
1125
+ }
1126
+ has(name) {
1127
+ if (!this.#slots)
1128
+ return false;
1129
+ return Boolean(this.#slots[name]);
1130
+ }
1131
+ async render(name, args = []) {
1132
+ if (!this.#slots || !this.has(name))
1133
+ return;
1134
+ const result = this.#result;
1135
+ if (!Array.isArray(args)) {
1136
+ this.#logger.warn(
1137
+ null,
1138
+ `Expected second parameter to be an array, received a ${typeof args}. If you're trying to pass an array as a single argument and getting unexpected results, make sure you're passing your array as a item of an array. Ex: Astro.slots.render('default', [["Hello", "World"]])`
1139
+ );
1140
+ } else if (args.length > 0) {
1141
+ const slotValue = this.#slots[name];
1142
+ const component = typeof slotValue === "function" ? await slotValue(result) : await slotValue;
1143
+ const expression = getFunctionExpression(component);
1144
+ if (expression) {
1145
+ const slot = async () => typeof expression === "function" ? expression(...args) : expression;
1146
+ return await renderSlotToString(result, slot).then((res) => {
1147
+ return res != null ? String(res) : res;
1148
+ });
1149
+ }
1150
+ if (typeof component === "function") {
1151
+ return await renderJSX(result, component(...args)).then(
1152
+ (res) => res != null ? String(res) : res
1153
+ );
1154
+ }
1155
+ }
1156
+ const content = await renderSlotToString(result, this.#slots[name]);
1157
+ const outHTML = chunkToString(result, content);
1158
+ return outHTML;
1159
+ }
1160
+ }
1161
+ function createResult(args) {
1162
+ const { params, request, resolve, locals } = args;
1163
+ const url = new URL(request.url);
1164
+ const headers = new Headers();
1165
+ headers.set("Content-Type", "text/html");
1166
+ const response = {
1167
+ status: args.status,
1168
+ statusText: "OK",
1169
+ headers
1170
+ };
1171
+ Object.defineProperty(response, "headers", {
1172
+ value: response.headers,
1173
+ enumerable: true,
1174
+ writable: false
1175
+ });
1176
+ let cookies = args.cookies;
1177
+ let preferredLocale = void 0;
1178
+ let preferredLocaleList = void 0;
1179
+ let currentLocale = void 0;
1180
+ const result = {
1181
+ styles: args.styles ?? /* @__PURE__ */ new Set(),
1182
+ scripts: args.scripts ?? /* @__PURE__ */ new Set(),
1183
+ links: args.links ?? /* @__PURE__ */ new Set(),
1184
+ componentMetadata: args.componentMetadata ?? /* @__PURE__ */ new Map(),
1185
+ renderers: args.renderers,
1186
+ clientDirectives: args.clientDirectives,
1187
+ compressHTML: args.compressHTML,
1188
+ partial: args.partial,
1189
+ pathname: args.pathname,
1190
+ cookies,
1191
+ /** This function returns the `Astro` faux-global */
1192
+ createAstro(astroGlobal, props, slots) {
1193
+ const astroSlots = new Slots(result, slots, args.logger);
1194
+ const Astro = {
1195
+ // @ts-expect-error
1196
+ __proto__: astroGlobal,
1197
+ get clientAddress() {
1198
+ if (!(clientAddressSymbol$1 in request)) {
1199
+ if (args.adapterName) {
1200
+ throw new AstroError({
1201
+ ...ClientAddressNotAvailable,
1202
+ message: ClientAddressNotAvailable.message(args.adapterName)
1203
+ });
1204
+ } else {
1205
+ throw new AstroError(StaticClientAddressNotAvailable);
1206
+ }
1207
+ }
1208
+ return Reflect.get(request, clientAddressSymbol$1);
1209
+ },
1210
+ get cookies() {
1211
+ if (cookies) {
1212
+ return cookies;
1213
+ }
1214
+ cookies = new AstroCookies(request);
1215
+ result.cookies = cookies;
1216
+ return cookies;
1217
+ },
1218
+ get preferredLocale() {
1219
+ if (preferredLocale) {
1220
+ return preferredLocale;
1221
+ }
1222
+ if (args.locales) {
1223
+ preferredLocale = computePreferredLocale(request, args.locales);
1224
+ return preferredLocale;
1225
+ }
1226
+ return void 0;
1227
+ },
1228
+ get preferredLocaleList() {
1229
+ if (preferredLocaleList) {
1230
+ return preferredLocaleList;
1231
+ }
1232
+ if (args.locales) {
1233
+ preferredLocaleList = computePreferredLocaleList(request, args.locales);
1234
+ return preferredLocaleList;
1235
+ }
1236
+ return void 0;
1237
+ },
1238
+ get currentLocale() {
1239
+ if (currentLocale) {
1240
+ return currentLocale;
1241
+ }
1242
+ if (args.locales) {
1243
+ currentLocale = computeCurrentLocale(
1244
+ request,
1245
+ args.locales,
1246
+ args.routingStrategy,
1247
+ args.defaultLocale
1248
+ );
1249
+ if (currentLocale) {
1250
+ return currentLocale;
1251
+ }
1252
+ }
1253
+ return void 0;
1254
+ },
1255
+ params,
1256
+ props,
1257
+ locals,
1258
+ request,
1259
+ url,
1260
+ redirect(path, status) {
1261
+ if (request[responseSentSymbol$1]) {
1262
+ throw new AstroError({
1263
+ ...ResponseSentError
1264
+ });
1265
+ }
1266
+ return new Response(null, {
1267
+ status: status || 302,
1268
+ headers: {
1269
+ Location: path
1270
+ }
1271
+ });
1272
+ },
1273
+ response,
1274
+ slots: astroSlots
1275
+ };
1276
+ return Astro;
1277
+ },
1278
+ resolve,
1279
+ response,
1280
+ _metadata: {
1281
+ hasHydrationScript: false,
1282
+ hasRenderedHead: false,
1283
+ hasDirectives: /* @__PURE__ */ new Set(),
1284
+ headInTree: false,
1285
+ extraHead: [],
1286
+ propagators: /* @__PURE__ */ new Set()
1287
+ }
1288
+ };
1289
+ return result;
1290
+ }
1291
+
1292
+ async function renderPage({ mod, renderContext, env, cookies }) {
1293
+ if (routeIsRedirect(renderContext.route)) {
1294
+ return new Response(null, {
1295
+ status: redirectRouteStatus(renderContext.route, renderContext.request.method),
1296
+ headers: {
1297
+ location: redirectRouteGenerate(renderContext.route, renderContext.params)
1298
+ }
1299
+ });
1300
+ } else if (routeIsFallback(renderContext.route)) {
1301
+ return new Response(null, {
1302
+ status: 404
1303
+ });
1304
+ } else if (!mod) {
1305
+ throw new AstroError(CantRenderPage);
1306
+ }
1307
+ const Component = mod.default;
1308
+ if (!Component)
1309
+ throw new Error(`Expected an exported Astro component but received typeof ${typeof Component}`);
1310
+ const result = createResult({
1311
+ adapterName: env.adapterName,
1312
+ links: renderContext.links,
1313
+ styles: renderContext.styles,
1314
+ logger: env.logger,
1315
+ params: renderContext.params,
1316
+ pathname: renderContext.pathname,
1317
+ componentMetadata: renderContext.componentMetadata,
1318
+ resolve: env.resolve,
1319
+ renderers: env.renderers,
1320
+ clientDirectives: env.clientDirectives,
1321
+ compressHTML: env.compressHTML,
1322
+ request: renderContext.request,
1323
+ partial: !!mod.partial,
1324
+ site: env.site,
1325
+ scripts: renderContext.scripts,
1326
+ ssr: env.ssr,
1327
+ status: renderContext.status ?? 200,
1328
+ cookies,
1329
+ locals: renderContext.locals ?? {},
1330
+ locales: renderContext.locales,
1331
+ defaultLocale: renderContext.defaultLocale,
1332
+ routingStrategy: renderContext.routing
1333
+ });
1334
+ const response = await renderPage$1(
1335
+ result,
1336
+ Component,
1337
+ renderContext.props,
1338
+ {},
1339
+ env.streaming,
1340
+ renderContext.route
1341
+ );
1342
+ if (result.cookies) {
1343
+ attachCookiesToResponse(response, result.cookies);
1344
+ }
1345
+ return response;
1346
+ }
1347
+
1348
+ class Pipeline {
1349
+ env;
1350
+ #onRequest;
1351
+ #hooks = {
1352
+ before: []
1353
+ };
1354
+ /**
1355
+ * The handler accepts the *original* `Request` and result returned by the endpoint.
1356
+ * It must return a `Response`.
1357
+ */
1358
+ #endpointHandler;
1359
+ /**
1360
+ * When creating a pipeline, an environment is mandatory.
1361
+ * The environment won't change for the whole lifetime of the pipeline.
1362
+ */
1363
+ constructor(env) {
1364
+ this.env = env;
1365
+ }
1366
+ setEnvironment() {
1367
+ }
1368
+ /**
1369
+ * When rendering a route, an "endpoint" will a type that needs to be handled and transformed into a `Response`.
1370
+ *
1371
+ * Each consumer might have different needs; use this function to set up the handler.
1372
+ */
1373
+ setEndpointHandler(handler) {
1374
+ this.#endpointHandler = handler;
1375
+ }
1376
+ /**
1377
+ * A middleware function that will be called before each request.
1378
+ */
1379
+ setMiddlewareFunction(onRequest) {
1380
+ this.#onRequest = onRequest;
1381
+ }
1382
+ /**
1383
+ * Removes the current middleware function. Subsequent requests won't trigger any middleware.
1384
+ */
1385
+ unsetMiddlewareFunction() {
1386
+ this.#onRequest = void 0;
1387
+ }
1388
+ /**
1389
+ * Returns the current environment
1390
+ */
1391
+ getEnvironment() {
1392
+ return this.env;
1393
+ }
1394
+ /**
1395
+ * The main function of the pipeline. Use this function to render any route known to Astro;
1396
+ */
1397
+ async renderRoute(renderContext, componentInstance) {
1398
+ for (const hook of this.#hooks.before) {
1399
+ hook(renderContext, componentInstance);
1400
+ }
1401
+ const result = await this.#tryRenderRoute(
1402
+ renderContext,
1403
+ this.env,
1404
+ componentInstance,
1405
+ this.#onRequest
1406
+ );
1407
+ if (renderContext.route.type === "endpoint") {
1408
+ if (!this.#endpointHandler) {
1409
+ throw new Error(
1410
+ "You created a pipeline that does not know how to handle the result coming from an endpoint."
1411
+ );
1412
+ }
1413
+ return this.#endpointHandler(renderContext.request, result);
1414
+ } else {
1415
+ return result;
1416
+ }
1417
+ }
1418
+ /**
1419
+ * It attempts to render a route. A route can be a:
1420
+ * - page
1421
+ * - redirect
1422
+ * - endpoint
1423
+ *
1424
+ * ## Errors
1425
+ *
1426
+ * It throws an error if the page can't be rendered.
1427
+ */
1428
+ async #tryRenderRoute(renderContext, env, mod, onRequest) {
1429
+ const apiContext = createAPIContext({
1430
+ request: renderContext.request,
1431
+ params: renderContext.params,
1432
+ props: renderContext.props,
1433
+ site: env.site,
1434
+ adapterName: env.adapterName,
1435
+ locales: renderContext.locales,
1436
+ routingStrategy: renderContext.routing,
1437
+ defaultLocale: renderContext.defaultLocale
1438
+ });
1439
+ switch (renderContext.route.type) {
1440
+ case "page":
1441
+ case "fallback":
1442
+ case "redirect": {
1443
+ if (onRequest) {
1444
+ return await callMiddleware(onRequest, apiContext, () => {
1445
+ return renderPage({
1446
+ mod,
1447
+ renderContext,
1448
+ env,
1449
+ cookies: apiContext.cookies
1450
+ });
1451
+ });
1452
+ } else {
1453
+ return await renderPage({
1454
+ mod,
1455
+ renderContext,
1456
+ env,
1457
+ cookies: apiContext.cookies
1458
+ });
1459
+ }
1460
+ }
1461
+ case "endpoint": {
1462
+ return await callEndpoint(mod, env, renderContext, onRequest);
1463
+ }
1464
+ default:
1465
+ throw new Error(`Couldn't find route of type [${renderContext.route.type}]`);
1466
+ }
1467
+ }
1468
+ /**
1469
+ * Store a function that will be called before starting the rendering phase.
1470
+ * @param fn
1471
+ */
1472
+ onBeforeRenderRoute(fn) {
1473
+ this.#hooks.before.push(fn);
1474
+ }
1475
+ }
1476
+
1477
+ class EndpointNotFoundError extends Error {
1478
+ originalResponse;
1479
+ constructor(originalResponse) {
1480
+ super();
1481
+ this.originalResponse = originalResponse;
1482
+ }
1483
+ }
1484
+ class SSRRoutePipeline extends Pipeline {
1485
+ constructor(env) {
1486
+ super(env);
1487
+ this.setEndpointHandler(this.#ssrEndpointHandler);
1488
+ }
1489
+ // This function is responsible for handling the result coming from an endpoint.
1490
+ async #ssrEndpointHandler(request, response) {
1491
+ if (response.headers.get("X-Astro-Response") === "Not-Found") {
1492
+ throw new EndpointNotFoundError(response);
1493
+ }
1494
+ return response;
1495
+ }
1496
+ }
1497
+
1498
+ const clientLocalsSymbol = Symbol.for("astro.locals");
1499
+ const responseSentSymbol = Symbol.for("astro.responseSent");
1500
+ const STATUS_CODES = /* @__PURE__ */ new Set([404, 500]);
1501
+ class App {
1502
+ /**
1503
+ * The current environment of the application
1504
+ */
1505
+ #manifest;
1506
+ #manifestData;
1507
+ #routeDataToRouteInfo;
1508
+ #logger = new Logger({
1509
+ dest: consoleLogDestination,
1510
+ level: "info"
1511
+ });
1512
+ #baseWithoutTrailingSlash;
1513
+ #pipeline;
1514
+ #adapterLogger;
1515
+ #renderOptionsDeprecationWarningShown = false;
1516
+ constructor(manifest, streaming = true) {
1517
+ this.#manifest = manifest;
1518
+ this.#manifestData = {
1519
+ routes: manifest.routes.map((route) => route.routeData)
1520
+ };
1521
+ this.#routeDataToRouteInfo = new Map(manifest.routes.map((route) => [route.routeData, route]));
1522
+ this.#baseWithoutTrailingSlash = removeTrailingForwardSlash(this.#manifest.base);
1523
+ this.#pipeline = new SSRRoutePipeline(this.#createEnvironment(streaming));
1524
+ this.#adapterLogger = new AstroIntegrationLogger(
1525
+ this.#logger.options,
1526
+ this.#manifest.adapterName
1527
+ );
1528
+ }
1529
+ getAdapterLogger() {
1530
+ return this.#adapterLogger;
1531
+ }
1532
+ /**
1533
+ * Creates an environment by reading the stored manifest
1534
+ *
1535
+ * @param streaming
1536
+ * @private
1537
+ */
1538
+ #createEnvironment(streaming = false) {
1539
+ return createEnvironment({
1540
+ adapterName: this.#manifest.adapterName,
1541
+ logger: this.#logger,
1542
+ mode: "production",
1543
+ compressHTML: this.#manifest.compressHTML,
1544
+ renderers: this.#manifest.renderers,
1545
+ clientDirectives: this.#manifest.clientDirectives,
1546
+ resolve: async (specifier) => {
1547
+ if (!(specifier in this.#manifest.entryModules)) {
1548
+ throw new Error(`Unable to resolve [${specifier}]`);
1549
+ }
1550
+ const bundlePath = this.#manifest.entryModules[specifier];
1551
+ switch (true) {
1552
+ case bundlePath.startsWith("data:"):
1553
+ case bundlePath.length === 0: {
1554
+ return bundlePath;
1555
+ }
1556
+ default: {
1557
+ return createAssetLink(bundlePath, this.#manifest.base, this.#manifest.assetsPrefix);
1558
+ }
1559
+ }
1560
+ },
1561
+ routeCache: new RouteCache(this.#logger),
1562
+ site: this.#manifest.site,
1563
+ ssr: true,
1564
+ streaming
1565
+ });
1566
+ }
1567
+ set setManifestData(newManifestData) {
1568
+ this.#manifestData = newManifestData;
1569
+ }
1570
+ removeBase(pathname) {
1571
+ if (pathname.startsWith(this.#manifest.base)) {
1572
+ return pathname.slice(this.#baseWithoutTrailingSlash.length + 1);
1573
+ }
1574
+ return pathname;
1575
+ }
1576
+ #getPathnameFromRequest(request) {
1577
+ const url = new URL(request.url);
1578
+ const pathname = prependForwardSlash(this.removeBase(url.pathname));
1579
+ return pathname;
1580
+ }
1581
+ match(request) {
1582
+ const url = new URL(request.url);
1583
+ if (this.#manifest.assets.has(url.pathname))
1584
+ return void 0;
1585
+ const pathname = prependForwardSlash(this.removeBase(url.pathname));
1586
+ const routeData = matchRoute(pathname, this.#manifestData);
1587
+ if (!routeData || routeData.prerender)
1588
+ return void 0;
1589
+ return routeData;
1590
+ }
1591
+ async render(request, routeDataOrOptions, maybeLocals) {
1592
+ let routeData;
1593
+ let locals;
1594
+ if (routeDataOrOptions && ("routeData" in routeDataOrOptions || "locals" in routeDataOrOptions)) {
1595
+ if ("routeData" in routeDataOrOptions) {
1596
+ routeData = routeDataOrOptions.routeData;
1597
+ }
1598
+ if ("locals" in routeDataOrOptions) {
1599
+ locals = routeDataOrOptions.locals;
1600
+ }
1601
+ } else {
1602
+ routeData = routeDataOrOptions;
1603
+ locals = maybeLocals;
1604
+ if (routeDataOrOptions || locals) {
1605
+ this.#logRenderOptionsDeprecationWarning();
1606
+ }
1607
+ }
1608
+ if (request.url !== collapseDuplicateSlashes(request.url)) {
1609
+ request = new Request(collapseDuplicateSlashes(request.url), request);
1610
+ }
1611
+ if (!routeData) {
1612
+ routeData = this.match(request);
1613
+ }
1614
+ if (!routeData) {
1615
+ return this.#renderError(request, { status: 404 });
1616
+ }
1617
+ Reflect.set(request, clientLocalsSymbol, locals ?? {});
1618
+ const pathname = this.#getPathnameFromRequest(request);
1619
+ const defaultStatus = this.#getDefaultStatusCode(routeData, pathname);
1620
+ const mod = await this.#getModuleForRoute(routeData);
1621
+ const pageModule = await mod.page();
1622
+ const url = new URL(request.url);
1623
+ const renderContext = await this.#createRenderContext(
1624
+ url,
1625
+ request,
1626
+ routeData,
1627
+ mod,
1628
+ defaultStatus
1629
+ );
1630
+ let response;
1631
+ try {
1632
+ let i18nMiddleware = createI18nMiddleware(
1633
+ this.#manifest.i18n,
1634
+ this.#manifest.base,
1635
+ this.#manifest.trailingSlash
1636
+ );
1637
+ if (i18nMiddleware) {
1638
+ if (mod.onRequest) {
1639
+ this.#pipeline.setMiddlewareFunction(sequence(i18nMiddleware, mod.onRequest));
1640
+ } else {
1641
+ this.#pipeline.setMiddlewareFunction(i18nMiddleware);
1642
+ }
1643
+ this.#pipeline.onBeforeRenderRoute(i18nPipelineHook);
1644
+ } else {
1645
+ if (mod.onRequest) {
1646
+ this.#pipeline.setMiddlewareFunction(mod.onRequest);
1647
+ }
1648
+ }
1649
+ response = await this.#pipeline.renderRoute(renderContext, pageModule);
1650
+ } catch (err) {
1651
+ if (err instanceof EndpointNotFoundError) {
1652
+ return this.#renderError(request, { status: 404, response: err.originalResponse });
1653
+ } else {
1654
+ this.#logger.error(null, err.stack || err.message || String(err));
1655
+ return this.#renderError(request, { status: 500 });
1656
+ }
1657
+ }
1658
+ if (routeData.type === "page" || routeData.type === "redirect") {
1659
+ if (STATUS_CODES.has(response.status)) {
1660
+ return this.#renderError(request, {
1661
+ response,
1662
+ status: response.status
1663
+ });
1664
+ }
1665
+ Reflect.set(response, responseSentSymbol, true);
1666
+ return response;
1667
+ }
1668
+ return response;
1669
+ }
1670
+ #logRenderOptionsDeprecationWarning() {
1671
+ if (this.#renderOptionsDeprecationWarningShown)
1672
+ return;
1673
+ this.#logger.warn(
1674
+ "deprecated",
1675
+ `The adapter ${this.#manifest.adapterName} is using a deprecated signature of the 'app.render()' method. From Astro 4.0, locals and routeData are provided as properties on an optional object to this method. Using the old signature will cause an error in Astro 5.0. See https://github.com/withastro/astro/pull/9199 for more information.`
1676
+ );
1677
+ this.#renderOptionsDeprecationWarningShown = true;
1678
+ }
1679
+ setCookieHeaders(response) {
1680
+ return getSetCookiesFromResponse(response);
1681
+ }
1682
+ /**
1683
+ * Creates the render context of the current route
1684
+ */
1685
+ async #createRenderContext(url, request, routeData, page, status = 200) {
1686
+ if (routeData.type === "endpoint") {
1687
+ const pathname = "/" + this.removeBase(url.pathname);
1688
+ const mod = await page.page();
1689
+ const handler = mod;
1690
+ return await createRenderContext({
1691
+ request,
1692
+ pathname,
1693
+ route: routeData,
1694
+ status,
1695
+ env: this.#pipeline.env,
1696
+ mod: handler,
1697
+ locales: this.#manifest.i18n?.locales,
1698
+ routing: this.#manifest.i18n?.routing,
1699
+ defaultLocale: this.#manifest.i18n?.defaultLocale
1700
+ });
1701
+ } else {
1702
+ const pathname = prependForwardSlash(this.removeBase(url.pathname));
1703
+ const info = this.#routeDataToRouteInfo.get(routeData);
1704
+ const links = /* @__PURE__ */ new Set();
1705
+ const styles = createStylesheetElementSet(info.styles);
1706
+ let scripts = /* @__PURE__ */ new Set();
1707
+ for (const script of info.scripts) {
1708
+ if ("stage" in script) {
1709
+ if (script.stage === "head-inline") {
1710
+ scripts.add({
1711
+ props: {},
1712
+ children: script.children
1713
+ });
1714
+ }
1715
+ } else {
1716
+ scripts.add(createModuleScriptElement(script));
1717
+ }
1718
+ }
1719
+ const mod = await page.page();
1720
+ return await createRenderContext({
1721
+ request,
1722
+ pathname,
1723
+ componentMetadata: this.#manifest.componentMetadata,
1724
+ scripts,
1725
+ styles,
1726
+ links,
1727
+ route: routeData,
1728
+ status,
1729
+ mod,
1730
+ env: this.#pipeline.env,
1731
+ locales: this.#manifest.i18n?.locales,
1732
+ routing: this.#manifest.i18n?.routing,
1733
+ defaultLocale: this.#manifest.i18n?.defaultLocale
1734
+ });
1735
+ }
1736
+ }
1737
+ /**
1738
+ * If it is a known error code, try sending the according page (e.g. 404.astro / 500.astro).
1739
+ * This also handles pre-rendered /404 or /500 routes
1740
+ */
1741
+ async #renderError(request, { status, response: originalResponse, skipMiddleware = false }) {
1742
+ const errorRoutePath = `/${status}${this.#manifest.trailingSlash === "always" ? "/" : ""}`;
1743
+ const errorRouteData = matchRoute(errorRoutePath, this.#manifestData);
1744
+ const url = new URL(request.url);
1745
+ if (errorRouteData) {
1746
+ if (errorRouteData.prerender) {
1747
+ const maybeDotHtml = errorRouteData.route.endsWith(`/${status}`) ? ".html" : "";
1748
+ const statusURL = new URL(
1749
+ `${this.#baseWithoutTrailingSlash}/${status}${maybeDotHtml}`,
1750
+ url
1751
+ );
1752
+ const response2 = await fetch(statusURL.toString());
1753
+ const override = { status };
1754
+ return this.#mergeResponses(response2, originalResponse, override);
1755
+ }
1756
+ const mod = await this.#getModuleForRoute(errorRouteData);
1757
+ try {
1758
+ const newRenderContext = await this.#createRenderContext(
1759
+ url,
1760
+ request,
1761
+ errorRouteData,
1762
+ mod,
1763
+ status
1764
+ );
1765
+ const page = await mod.page();
1766
+ if (skipMiddleware === false && mod.onRequest) {
1767
+ this.#pipeline.setMiddlewareFunction(mod.onRequest);
1768
+ }
1769
+ if (skipMiddleware) {
1770
+ this.#pipeline.unsetMiddlewareFunction();
1771
+ }
1772
+ const response2 = await this.#pipeline.renderRoute(newRenderContext, page);
1773
+ return this.#mergeResponses(response2, originalResponse);
1774
+ } catch {
1775
+ if (skipMiddleware === false && mod.onRequest) {
1776
+ return this.#renderError(request, {
1777
+ status,
1778
+ response: originalResponse,
1779
+ skipMiddleware: true
1780
+ });
1781
+ }
1782
+ }
1783
+ }
1784
+ const response = this.#mergeResponses(new Response(null, { status }), originalResponse);
1785
+ Reflect.set(response, responseSentSymbol, true);
1786
+ return response;
1787
+ }
1788
+ #mergeResponses(newResponse, originalResponse, override) {
1789
+ if (!originalResponse) {
1790
+ if (override !== void 0) {
1791
+ return new Response(newResponse.body, {
1792
+ status: override.status,
1793
+ statusText: newResponse.statusText,
1794
+ headers: newResponse.headers
1795
+ });
1796
+ }
1797
+ return newResponse;
1798
+ }
1799
+ const status = override?.status ? override.status : originalResponse.status === 200 ? newResponse.status : originalResponse.status;
1800
+ try {
1801
+ originalResponse.headers.delete("Content-type");
1802
+ } catch {
1803
+ }
1804
+ return new Response(newResponse.body, {
1805
+ status,
1806
+ statusText: status === 200 ? newResponse.statusText : originalResponse.statusText,
1807
+ // If you're looking at here for possible bugs, it means that it's not a bug.
1808
+ // With the middleware, users can meddle with headers, and we should pass to the 404/500.
1809
+ // If users see something weird, it's because they are setting some headers they should not.
1810
+ //
1811
+ // Although, we don't want it to replace the content-type, because the error page must return `text/html`
1812
+ headers: new Headers([
1813
+ ...Array.from(newResponse.headers),
1814
+ ...Array.from(originalResponse.headers)
1815
+ ])
1816
+ });
1817
+ }
1818
+ #getDefaultStatusCode(routeData, pathname) {
1819
+ if (!routeData.pattern.exec(pathname)) {
1820
+ for (const fallbackRoute of routeData.fallbackRoutes) {
1821
+ if (fallbackRoute.pattern.test(pathname)) {
1822
+ return 302;
1823
+ }
1824
+ }
1825
+ }
1826
+ const route = removeTrailingForwardSlash(routeData.route);
1827
+ if (route.endsWith("/404"))
1828
+ return 404;
1829
+ if (route.endsWith("/500"))
1830
+ return 500;
1831
+ return 200;
1832
+ }
1833
+ async #getModuleForRoute(route) {
1834
+ if (route.type === "redirect") {
1835
+ return RedirectSinglePageBuiltModule;
1836
+ } else {
1837
+ if (this.#manifest.pageMap) {
1838
+ const importComponentInstance = this.#manifest.pageMap.get(route.component);
1839
+ if (!importComponentInstance) {
1840
+ throw new Error(
1841
+ `Unexpectedly unable to find a component instance for route ${route.route}`
1842
+ );
1843
+ }
1844
+ const pageModule = await importComponentInstance();
1845
+ return pageModule;
1846
+ } else if (this.#manifest.pageModule) {
1847
+ const importComponentInstance = this.#manifest.pageModule;
1848
+ return importComponentInstance;
1849
+ } else {
1850
+ throw new Error(
1851
+ "Astro couldn't find the correct page to render, probably because it wasn't correctly mapped for SSR usage. This is an internal error, please file an issue."
1852
+ );
1853
+ }
1854
+ }
1855
+ }
1856
+ }
1857
+
1858
+ function apply() {
1859
+ if (!globalThis.crypto) {
1860
+ Object.defineProperty(globalThis, "crypto", {
1861
+ value: crypto.webcrypto
1862
+ });
1863
+ }
1864
+ if (!globalThis.File) {
1865
+ Object.defineProperty(globalThis, "File", {
1866
+ value: buffer.File
1867
+ });
1868
+ }
1869
+ }
1870
+
1871
+ const clientAddressSymbol = Symbol.for("astro.clientAddress");
1872
+ function createRequestFromNodeRequest(req, options) {
1873
+ const protocol = req.socket instanceof TLSSocket || req.headers["x-forwarded-proto"] === "https" ? "https" : "http";
1874
+ const hostname = req.headers.host || req.headers[":authority"];
1875
+ const url = `${protocol}://${hostname}${req.url}`;
1876
+ const headers = makeRequestHeaders(req);
1877
+ const method = req.method || "GET";
1878
+ let bodyProps = {};
1879
+ const bodyAllowed = method !== "HEAD" && method !== "GET" && !options?.emptyBody;
1880
+ if (bodyAllowed) {
1881
+ bodyProps = makeRequestBody(req);
1882
+ }
1883
+ const request = new Request(url, {
1884
+ method,
1885
+ headers,
1886
+ ...bodyProps
1887
+ });
1888
+ if (req.socket?.remoteAddress) {
1889
+ Reflect.set(request, clientAddressSymbol, req.socket.remoteAddress);
1890
+ }
1891
+ return request;
1892
+ }
1893
+ function makeRequestHeaders(req) {
1894
+ const headers = new Headers();
1895
+ for (const [name, value] of Object.entries(req.headers)) {
1896
+ if (value === void 0) {
1897
+ continue;
1898
+ }
1899
+ if (Array.isArray(value)) {
1900
+ for (const item of value) {
1901
+ headers.append(name, item);
1902
+ }
1903
+ } else {
1904
+ headers.append(name, value);
1905
+ }
1906
+ }
1907
+ return headers;
1908
+ }
1909
+ function makeRequestBody(req) {
1910
+ if (req.body !== void 0) {
1911
+ if (typeof req.body === "string" && req.body.length > 0) {
1912
+ return { body: Buffer.from(req.body) };
1913
+ }
1914
+ if (typeof req.body === "object" && req.body !== null && Object.keys(req.body).length > 0) {
1915
+ return { body: Buffer.from(JSON.stringify(req.body)) };
1916
+ }
1917
+ if (typeof req.body === "object" && req.body !== null && typeof req.body[Symbol.asyncIterator] !== "undefined") {
1918
+ return asyncIterableToBodyProps(req.body);
1919
+ }
1920
+ }
1921
+ return asyncIterableToBodyProps(req);
1922
+ }
1923
+ function asyncIterableToBodyProps(iterable) {
1924
+ return {
1925
+ // Node uses undici for the Request implementation. Undici accepts
1926
+ // a non-standard async iterable for the body.
1927
+ // @ts-expect-error
1928
+ body: iterable,
1929
+ // The duplex property is required when using a ReadableStream or async
1930
+ // iterable for the body. The type definitions do not include the duplex
1931
+ // property because they are not up-to-date.
1932
+ // @ts-expect-error
1933
+ duplex: "half"
1934
+ };
1935
+ }
1936
+ class NodeApp extends App {
1937
+ match(req) {
1938
+ if (!(req instanceof Request)) {
1939
+ req = createRequestFromNodeRequest(req, {
1940
+ emptyBody: true
1941
+ });
1942
+ }
1943
+ return super.match(req);
1944
+ }
1945
+ render(req, routeDataOrOptions, maybeLocals) {
1946
+ if (!(req instanceof Request)) {
1947
+ req = createRequestFromNodeRequest(req);
1948
+ }
1949
+ return super.render(req, routeDataOrOptions, maybeLocals);
1950
+ }
1951
+ }
1952
+
1953
+ const createOutgoingHttpHeaders = (headers) => {
1954
+ if (!headers) {
1955
+ return void 0;
1956
+ }
1957
+ const nodeHeaders = Object.fromEntries(headers.entries());
1958
+ if (Object.keys(nodeHeaders).length === 0) {
1959
+ return void 0;
1960
+ }
1961
+ if (headers.has("set-cookie")) {
1962
+ const cookieHeaders = headers.getSetCookie();
1963
+ if (cookieHeaders.length > 1) {
1964
+ nodeHeaders["set-cookie"] = cookieHeaders;
1965
+ }
1966
+ }
1967
+ return nodeHeaders;
1968
+ };
1969
+
1970
+ function nodeMiddleware_default(app, mode) {
1971
+ return async function(...args) {
1972
+ let error = null;
1973
+ let locals;
1974
+ let [req, res, next] = args;
1975
+ if (mode === "middleware") {
1976
+ let { [3]: _locals } = args;
1977
+ locals = _locals;
1978
+ }
1979
+ if (args[0] instanceof Error) {
1980
+ [error, req, res, next] = args;
1981
+ if (mode === "middleware") {
1982
+ let { [4]: _locals } = args;
1983
+ locals = _locals;
1984
+ }
1985
+ if (error) {
1986
+ if (next) {
1987
+ return next(error);
1988
+ } else {
1989
+ throw error;
1990
+ }
1991
+ }
1992
+ }
1993
+ try {
1994
+ const routeData = app.match(req);
1995
+ if (routeData) {
1996
+ try {
1997
+ const response = await app.render(req, { routeData, locals });
1998
+ await writeWebResponse(app, res, response);
1999
+ } catch (err) {
2000
+ if (next) {
2001
+ next(err);
2002
+ } else {
2003
+ throw err;
2004
+ }
2005
+ }
2006
+ } else if (next) {
2007
+ return next();
2008
+ } else {
2009
+ const response = await app.render(req);
2010
+ await writeWebResponse(app, res, response);
2011
+ }
2012
+ } catch (err) {
2013
+ const logger = app.getAdapterLogger();
2014
+ logger.error(`Could not render ${req.url}`);
2015
+ console.error(err);
2016
+ if (!res.headersSent) {
2017
+ res.writeHead(500, `Server error`);
2018
+ res.end();
2019
+ }
2020
+ }
2021
+ };
2022
+ }
2023
+ async function writeWebResponse(app, res, webResponse) {
2024
+ const { status, headers } = webResponse;
2025
+ if (app.setCookieHeaders) {
2026
+ const setCookieHeaders = Array.from(app.setCookieHeaders(webResponse));
2027
+ if (setCookieHeaders.length) {
2028
+ for (const setCookieHeader of setCookieHeaders) {
2029
+ webResponse.headers.append("set-cookie", setCookieHeader);
2030
+ }
2031
+ }
2032
+ }
2033
+ const nodeHeaders = createOutgoingHttpHeaders(headers);
2034
+ res.writeHead(status, nodeHeaders);
2035
+ if (webResponse.body) {
2036
+ try {
2037
+ const reader = webResponse.body.getReader();
2038
+ res.on("close", () => {
2039
+ reader.cancel();
2040
+ });
2041
+ let result = await reader.read();
2042
+ while (!result.done) {
2043
+ res.write(result.value);
2044
+ result = await reader.read();
2045
+ }
2046
+ } catch (err) {
2047
+ console.error(err?.stack || err?.message || String(err));
2048
+ res.write("Internal server error");
2049
+ }
2050
+ }
2051
+ res.end();
2052
+ }
2053
+
2054
+ const wildcardHosts = /* @__PURE__ */ new Set(["0.0.0.0", "::", "0000:0000:0000:0000:0000:0000:0000:0000"]);
2055
+ function getNetworkAddress(protocol = "http", hostname, port, base) {
2056
+ const NetworkAddress = {
2057
+ local: [],
2058
+ network: []
2059
+ };
2060
+ Object.values(os.networkInterfaces()).flatMap((nInterface) => nInterface ?? []).filter(
2061
+ (detail) => detail && detail.address && (detail.family === "IPv4" || // @ts-expect-error Node 18.0 - 18.3 returns number
2062
+ detail.family === 4)
2063
+ ).forEach((detail) => {
2064
+ let host = detail.address.replace(
2065
+ "127.0.0.1",
2066
+ hostname === void 0 || wildcardHosts.has(hostname) ? "localhost" : hostname
2067
+ );
2068
+ if (host.includes(":")) {
2069
+ host = `[${host}]`;
2070
+ }
2071
+ const url = `${protocol}://${host}:${port}${base ? base : ""}`;
2072
+ if (detail.address.includes("127.0.0.1")) {
2073
+ NetworkAddress.local.push(url);
2074
+ } else {
2075
+ NetworkAddress.network.push(url);
2076
+ }
2077
+ });
2078
+ return NetworkAddress;
2079
+ }
2080
+
2081
+ function parsePathname(pathname, host, port) {
2082
+ try {
2083
+ const urlPathname = new URL(pathname, `http://${host}:${port}`).pathname;
2084
+ return decodeURI(encodeURI(urlPathname));
2085
+ } catch (err) {
2086
+ return void 0;
2087
+ }
2088
+ }
2089
+ function createServer({ client, port, host, removeBase, assets }, handler) {
2090
+ const assetsPrefix = `/${assets}/`;
2091
+ function isImmutableAsset(pathname) {
2092
+ return pathname.startsWith(assetsPrefix);
2093
+ }
2094
+ const listener = (req, res) => {
2095
+ if (req.url) {
2096
+ let pathname = removeBase(req.url);
2097
+ pathname = pathname[0] === "/" ? pathname : "/" + pathname;
2098
+ const encodedURI = parsePathname(pathname, host, port);
2099
+ if (!encodedURI) {
2100
+ res.writeHead(400);
2101
+ res.end("Bad request.");
2102
+ return res;
2103
+ }
2104
+ const stream = send(req, encodedURI, {
2105
+ root: fileURLToPath(client),
2106
+ dotfiles: pathname.startsWith("/.well-known/") ? "allow" : "deny"
2107
+ });
2108
+ let forwardError = false;
2109
+ stream.on("error", (err) => {
2110
+ if (forwardError) {
2111
+ console.error(err.toString());
2112
+ res.writeHead(500);
2113
+ res.end("Internal server error");
2114
+ return;
2115
+ }
2116
+ handler(req, res);
2117
+ });
2118
+ stream.on("headers", (_res) => {
2119
+ if (isImmutableAsset(encodedURI)) {
2120
+ _res.setHeader("Cache-Control", "public, max-age=31536000, immutable");
2121
+ }
2122
+ });
2123
+ stream.on("directory", () => {
2124
+ let location;
2125
+ if (req.url.includes("?")) {
2126
+ const [url = "", search] = req.url.split("?");
2127
+ location = `${url}/?${search}`;
2128
+ } else {
2129
+ location = req.url + "/";
2130
+ }
2131
+ res.statusCode = 301;
2132
+ res.setHeader("Location", location);
2133
+ res.end(location);
2134
+ });
2135
+ stream.on("file", () => {
2136
+ forwardError = true;
2137
+ });
2138
+ stream.pipe(res);
2139
+ } else {
2140
+ handler(req, res);
2141
+ }
2142
+ };
2143
+ let httpServer;
2144
+ if (process.env.SERVER_CERT_PATH && process.env.SERVER_KEY_PATH) {
2145
+ httpServer = https.createServer(
2146
+ {
2147
+ key: fs.readFileSync(process.env.SERVER_KEY_PATH),
2148
+ cert: fs.readFileSync(process.env.SERVER_CERT_PATH)
2149
+ },
2150
+ listener
2151
+ );
2152
+ } else {
2153
+ httpServer = http.createServer(listener);
2154
+ }
2155
+ httpServer.listen(port, host);
2156
+ enableDestroy(httpServer);
2157
+ const closed = new Promise((resolve, reject) => {
2158
+ httpServer.addListener("close", resolve);
2159
+ httpServer.addListener("error", reject);
2160
+ });
2161
+ return {
2162
+ host,
2163
+ port,
2164
+ closed() {
2165
+ return closed;
2166
+ },
2167
+ server: httpServer,
2168
+ stop: async () => {
2169
+ await new Promise((resolve, reject) => {
2170
+ httpServer.destroy((err) => err ? reject(err) : resolve(void 0));
2171
+ });
2172
+ }
2173
+ };
2174
+ }
2175
+
2176
+ function resolvePaths(options) {
2177
+ const clientURLRaw = new URL(options.client);
2178
+ const serverURLRaw = new URL(options.server);
2179
+ const rel = path.relative(fileURLToPath(serverURLRaw), fileURLToPath(clientURLRaw));
2180
+ const serverEntryURL = new URL(import.meta.url);
2181
+ const clientURL = new URL(appendForwardSlash(rel), serverEntryURL);
2182
+ return {
2183
+ client: clientURL
2184
+ };
2185
+ }
2186
+ function appendForwardSlash(pth) {
2187
+ return pth.endsWith("/") ? pth : pth + "/";
2188
+ }
2189
+ function getResolvedHostForHttpServer(host) {
2190
+ if (host === false) {
2191
+ return "127.0.0.1";
2192
+ } else if (host === true) {
2193
+ return void 0;
2194
+ } else {
2195
+ return host;
2196
+ }
2197
+ }
2198
+ function startServer$1(app, options) {
2199
+ const logger = app.getAdapterLogger();
2200
+ const port = process.env.PORT ? Number(process.env.PORT) : options.port ?? 8080;
2201
+ const { client } = resolvePaths(options);
2202
+ const handler = nodeMiddleware_default(app, options.mode);
2203
+ const host = getResolvedHostForHttpServer(
2204
+ process.env.HOST !== void 0 && process.env.HOST !== "" ? process.env.HOST : options.host
2205
+ );
2206
+ const server = createServer(
2207
+ {
2208
+ client,
2209
+ port,
2210
+ host,
2211
+ removeBase: app.removeBase.bind(app),
2212
+ assets: options.assets
2213
+ },
2214
+ handler
2215
+ );
2216
+ const protocol = server.server instanceof https.Server ? "https" : "http";
2217
+ const address = getNetworkAddress(protocol, host, port);
2218
+ if (host === void 0) {
2219
+ logger.info(
2220
+ `Server listening on
2221
+ local: ${address.local[0]}
2222
+ network: ${address.network[0]}
2223
+ `
2224
+ );
2225
+ } else {
2226
+ logger.info(`Server listening on ${address.local[0]}`);
2227
+ }
2228
+ return {
2229
+ server,
2230
+ done: server.closed()
2231
+ };
2232
+ }
2233
+
2234
+ apply();
2235
+ function createExports(manifest, options) {
2236
+ const app = new NodeApp(manifest);
2237
+ return {
2238
+ options,
2239
+ handler: nodeMiddleware_default(app, options.mode),
2240
+ startServer: () => startServer$1(app, options)
2241
+ };
2242
+ }
2243
+ function start(manifest, options) {
2244
+ if (options.mode !== "standalone" || process.env.ASTRO_NODE_AUTOSTART === "disabled") {
2245
+ return;
2246
+ }
2247
+ const app = new NodeApp(manifest);
2248
+ startServer$1(app, options);
2249
+ }
2250
+
2251
+ const adapter = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
2252
+ __proto__: null,
2253
+ createExports,
2254
+ start
2255
+ }, Symbol.toStringTag, { value: 'Module' }));
2256
+
2257
+ const _page0 = () => import('./chunks/node_wOa5hJmt.mjs');
2258
+ const _page1 = () => import('./chunks/index_1q5IpD39.mjs');
2259
+ const _page2 = () => import('./chunks/~fallback_wxuqpDXG.mjs');
2260
+ const _page3 = () => import('./chunks/index_JEU6B2DI.mjs');
2261
+ const _page4 = () => import('./chunks/account_iZ2QmK5E.mjs');
2262
+ const _page5 = () => import('./chunks/_.._FnNLvTNv.mjs');const pageMap = new Map([["../../node_modules/.pnpm/astro@4.0.7_@types+node@18.19.3_typescript@5.2.2/node_modules/astro/dist/assets/endpoint/node.js", _page0],["src/pages/index.astro", _page1],["src/pages/~fallback.astro", _page2],["src/pages/app/index.astro", _page3],["src/pages/app/account.astro", _page4],["src/pages/[...slug].astro", _page5]]);
2263
+ const _manifest = Object.assign(manifest, {
2264
+ pageMap,
2265
+ renderers,
2266
+ });
2267
+ const _args = {"mode":"middleware","client":"file:///home/leo/code/ecomplus/cloud-commerce/packages/storefront/dist/client/","server":"file:///home/leo/code/ecomplus/cloud-commerce/packages/storefront/dist/server/","host":false,"port":4321,"assets":"_astro"};
2268
+
2269
+ const _exports = createExports(_manifest, _args);
2270
+ const handler = _exports['handler'];
2271
+ const startServer = _exports['startServer'];
2272
+ const options = _exports['options'];
2273
+
2274
+ const _start = 'start';
2275
+ if(_start in adapter) {
2276
+ adapter[_start](_manifest, _args);
2277
+ }
2278
+
2279
+ export { handler, options, pageMap, startServer };