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,1471 @@
1
+ var st={};/**
2
+ * @license
3
+ * Copyright 2017 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */const Nt=function(n){const e=[];let t=0;for(let r=0;r<n.length;r++){let i=n.charCodeAt(r);i<128?e[t++]=i:i<2048?(e[t++]=i>>6|192,e[t++]=i&63|128):(i&64512)===55296&&r+1<n.length&&(n.charCodeAt(r+1)&64512)===56320?(i=65536+((i&1023)<<10)+(n.charCodeAt(++r)&1023),e[t++]=i>>18|240,e[t++]=i>>12&63|128,e[t++]=i>>6&63|128,e[t++]=i&63|128):(e[t++]=i>>12|224,e[t++]=i>>6&63|128,e[t++]=i&63|128)}return e},Tn=function(n){const e=[];let t=0,r=0;for(;t<n.length;){const i=n[t++];if(i<128)e[r++]=String.fromCharCode(i);else if(i>191&&i<224){const s=n[t++];e[r++]=String.fromCharCode((i&31)<<6|s&63)}else if(i>239&&i<365){const s=n[t++],o=n[t++],c=n[t++],a=((i&7)<<18|(s&63)<<12|(o&63)<<6|c&63)-65536;e[r++]=String.fromCharCode(55296+(a>>10)),e[r++]=String.fromCharCode(56320+(a&1023))}else{const s=n[t++],o=n[t++];e[r++]=String.fromCharCode((i&15)<<12|(s&63)<<6|o&63)}}return e.join("")},Dt={byteToCharMap_:null,charToByteMap_:null,byteToCharMapWebSafe_:null,charToByteMapWebSafe_:null,ENCODED_VALS_BASE:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",get ENCODED_VALS(){return this.ENCODED_VALS_BASE+"+/="},get ENCODED_VALS_WEBSAFE(){return this.ENCODED_VALS_BASE+"-_."},HAS_NATIVE_SUPPORT:typeof atob=="function",encodeByteArray(n,e){if(!Array.isArray(n))throw Error("encodeByteArray takes an array as a parameter");this.init_();const t=e?this.byteToCharMapWebSafe_:this.byteToCharMap_,r=[];for(let i=0;i<n.length;i+=3){const s=n[i],o=i+1<n.length,c=o?n[i+1]:0,a=i+2<n.length,l=a?n[i+2]:0,u=s>>2,f=(s&3)<<4|c>>4;let g=(c&15)<<2|l>>6,I=l&63;a||(I=64,o||(g=64)),r.push(t[u],t[f],t[g],t[I])}return r.join("")},encodeString(n,e){return this.HAS_NATIVE_SUPPORT&&!e?btoa(n):this.encodeByteArray(Nt(n),e)},decodeString(n,e){return this.HAS_NATIVE_SUPPORT&&!e?atob(n):Tn(this.decodeStringToByteArray(n,e))},decodeStringToByteArray(n,e){this.init_();const t=e?this.charToByteMapWebSafe_:this.charToByteMap_,r=[];for(let i=0;i<n.length;){const s=t[n.charAt(i++)],c=i<n.length?t[n.charAt(i)]:0;++i;const l=i<n.length?t[n.charAt(i)]:64;++i;const f=i<n.length?t[n.charAt(i)]:64;if(++i,s==null||c==null||l==null||f==null)throw new Sn;const g=s<<2|c>>4;if(r.push(g),l!==64){const I=c<<4&240|l>>2;if(r.push(I),f!==64){const V=l<<6&192|f;r.push(V)}}}return r},init_(){if(!this.byteToCharMap_){this.byteToCharMap_={},this.charToByteMap_={},this.byteToCharMapWebSafe_={},this.charToByteMapWebSafe_={};for(let n=0;n<this.ENCODED_VALS.length;n++)this.byteToCharMap_[n]=this.ENCODED_VALS.charAt(n),this.charToByteMap_[this.byteToCharMap_[n]]=n,this.byteToCharMapWebSafe_[n]=this.ENCODED_VALS_WEBSAFE.charAt(n),this.charToByteMapWebSafe_[this.byteToCharMapWebSafe_[n]]=n,n>=this.ENCODED_VALS_BASE.length&&(this.charToByteMap_[this.ENCODED_VALS_WEBSAFE.charAt(n)]=n,this.charToByteMapWebSafe_[this.ENCODED_VALS.charAt(n)]=n)}}};class Sn extends Error{constructor(){super(...arguments),this.name="DecodeBase64StringError"}}const An=function(n){const e=Nt(n);return Dt.encodeByteArray(e,!0)},Lt=function(n){return An(n).replace(/\./g,"")},Mt=function(n){try{return Dt.decodeString(n,!0)}catch(e){console.error("base64Decode failed: ",e)}return null};/**
17
+ * @license
18
+ * Copyright 2022 Google LLC
19
+ *
20
+ * Licensed under the Apache License, Version 2.0 (the "License");
21
+ * you may not use this file except in compliance with the License.
22
+ * You may obtain a copy of the License at
23
+ *
24
+ * http://www.apache.org/licenses/LICENSE-2.0
25
+ *
26
+ * Unless required by applicable law or agreed to in writing, software
27
+ * distributed under the License is distributed on an "AS IS" BASIS,
28
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29
+ * See the License for the specific language governing permissions and
30
+ * limitations under the License.
31
+ */function Cn(){if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("Unable to locate global object.")}/**
32
+ * @license
33
+ * Copyright 2022 Google LLC
34
+ *
35
+ * Licensed under the Apache License, Version 2.0 (the "License");
36
+ * you may not use this file except in compliance with the License.
37
+ * You may obtain a copy of the License at
38
+ *
39
+ * http://www.apache.org/licenses/LICENSE-2.0
40
+ *
41
+ * Unless required by applicable law or agreed to in writing, software
42
+ * distributed under the License is distributed on an "AS IS" BASIS,
43
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44
+ * See the License for the specific language governing permissions and
45
+ * limitations under the License.
46
+ */const kn=()=>Cn().__FIREBASE_DEFAULTS__,Rn=()=>{if(typeof process>"u"||typeof st>"u")return;const n=st.__FIREBASE_DEFAULTS__;if(n)return JSON.parse(n)},Pn=()=>{if(typeof document>"u")return;let n;try{n=document.cookie.match(/__FIREBASE_DEFAULTS__=([^;]+)/)}catch{return}const e=n&&Mt(n[1]);return e&&JSON.parse(e)},We=()=>{try{return kn()||Rn()||Pn()}catch(n){console.info(`Unable to get __FIREBASE_DEFAULTS__ due to: ${n}`);return}},On=n=>{var e,t;return(t=(e=We())===null||e===void 0?void 0:e.emulatorHosts)===null||t===void 0?void 0:t[n]},Ut=()=>{var n;return(n=We())===null||n===void 0?void 0:n.config},Ft=n=>{var e;return(e=We())===null||e===void 0?void 0:e[`_${n}`]};/**
47
+ * @license
48
+ * Copyright 2017 Google LLC
49
+ *
50
+ * Licensed under the Apache License, Version 2.0 (the "License");
51
+ * you may not use this file except in compliance with the License.
52
+ * You may obtain a copy of the License at
53
+ *
54
+ * http://www.apache.org/licenses/LICENSE-2.0
55
+ *
56
+ * Unless required by applicable law or agreed to in writing, software
57
+ * distributed under the License is distributed on an "AS IS" BASIS,
58
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
59
+ * See the License for the specific language governing permissions and
60
+ * limitations under the License.
61
+ */class Nn{constructor(){this.reject=()=>{},this.resolve=()=>{},this.promise=new Promise((e,t)=>{this.resolve=e,this.reject=t})}wrapCallback(e){return(t,r)=>{t?this.reject(t):this.resolve(r),typeof e=="function"&&(this.promise.catch(()=>{}),e.length===1?e(t):e(t,r))}}}/**
62
+ * @license
63
+ * Copyright 2017 Google LLC
64
+ *
65
+ * Licensed under the Apache License, Version 2.0 (the "License");
66
+ * you may not use this file except in compliance with the License.
67
+ * You may obtain a copy of the License at
68
+ *
69
+ * http://www.apache.org/licenses/LICENSE-2.0
70
+ *
71
+ * Unless required by applicable law or agreed to in writing, software
72
+ * distributed under the License is distributed on an "AS IS" BASIS,
73
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
74
+ * See the License for the specific language governing permissions and
75
+ * limitations under the License.
76
+ */function p(){return typeof navigator<"u"&&typeof navigator.userAgent=="string"?navigator.userAgent:""}function Dn(){return typeof window<"u"&&!!(window.cordova||window.phonegap||window.PhoneGap)&&/ios|iphone|ipod|ipad|android|blackberry|iemobile/i.test(p())}function Ln(){const n=typeof chrome=="object"?chrome.runtime:typeof browser=="object"?browser.runtime:void 0;return typeof n=="object"&&n.id!==void 0}function Mn(){return typeof navigator=="object"&&navigator.product==="ReactNative"}function Un(){const n=p();return n.indexOf("MSIE ")>=0||n.indexOf("Trident/")>=0}function Fn(){try{return typeof indexedDB=="object"}catch{return!1}}function Bn(){return new Promise((n,e)=>{try{let t=!0;const r="validate-browser-context-for-indexeddb-analytics-module",i=self.indexedDB.open(r);i.onsuccess=()=>{i.result.close(),t||self.indexedDB.deleteDatabase(r),n(!0)},i.onupgradeneeded=()=>{t=!1},i.onerror=()=>{var s;e(((s=i.error)===null||s===void 0?void 0:s.message)||"")}}catch(t){e(t)}})}/**
77
+ * @license
78
+ * Copyright 2017 Google LLC
79
+ *
80
+ * Licensed under the Apache License, Version 2.0 (the "License");
81
+ * you may not use this file except in compliance with the License.
82
+ * You may obtain a copy of the License at
83
+ *
84
+ * http://www.apache.org/licenses/LICENSE-2.0
85
+ *
86
+ * Unless required by applicable law or agreed to in writing, software
87
+ * distributed under the License is distributed on an "AS IS" BASIS,
88
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
89
+ * See the License for the specific language governing permissions and
90
+ * limitations under the License.
91
+ */const xn="FirebaseError";class N extends Error{constructor(e,t,r){super(t),this.code=e,this.customData=r,this.name=xn,Object.setPrototypeOf(this,N.prototype),Error.captureStackTrace&&Error.captureStackTrace(this,te.prototype.create)}}class te{constructor(e,t,r){this.service=e,this.serviceName=t,this.errors=r}create(e,...t){const r=t[0]||{},i=`${this.service}/${e}`,s=this.errors[e],o=s?Vn(s,r):"Error",c=`${this.serviceName}: ${o} (${i}).`;return new N(i,c,r)}}function Vn(n,e){return n.replace(Hn,(t,r)=>{const i=e[r];return i!=null?String(i):`<${r}?>`})}const Hn=/\{\$([^}]+)}/g;function $n(n){for(const e in n)if(Object.prototype.hasOwnProperty.call(n,e))return!1;return!0}function he(n,e){if(n===e)return!0;const t=Object.keys(n),r=Object.keys(e);for(const i of t){if(!r.includes(i))return!1;const s=n[i],o=e[i];if(ot(s)&&ot(o)){if(!he(s,o))return!1}else if(s!==o)return!1}for(const i of r)if(!t.includes(i))return!1;return!0}function ot(n){return n!==null&&typeof n=="object"}/**
92
+ * @license
93
+ * Copyright 2017 Google LLC
94
+ *
95
+ * Licensed under the Apache License, Version 2.0 (the "License");
96
+ * you may not use this file except in compliance with the License.
97
+ * You may obtain a copy of the License at
98
+ *
99
+ * http://www.apache.org/licenses/LICENSE-2.0
100
+ *
101
+ * Unless required by applicable law or agreed to in writing, software
102
+ * distributed under the License is distributed on an "AS IS" BASIS,
103
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
104
+ * See the License for the specific language governing permissions and
105
+ * limitations under the License.
106
+ */function ne(n){const e=[];for(const[t,r]of Object.entries(n))Array.isArray(r)?r.forEach(i=>{e.push(encodeURIComponent(t)+"="+encodeURIComponent(i))}):e.push(encodeURIComponent(t)+"="+encodeURIComponent(r));return e.length?"&"+e.join("&"):""}function G(n){const e={};return n.replace(/^\?/,"").split("&").forEach(r=>{if(r){const[i,s]=r.split("=");e[decodeURIComponent(i)]=decodeURIComponent(s)}}),e}function K(n){const e=n.indexOf("?");if(!e)return"";const t=n.indexOf("#",e);return n.substring(e,t>0?t:void 0)}function Wn(n,e){const t=new jn(n,e);return t.subscribe.bind(t)}class jn{constructor(e,t){this.observers=[],this.unsubscribes=[],this.observerCount=0,this.task=Promise.resolve(),this.finalized=!1,this.onNoObservers=t,this.task.then(()=>{e(this)}).catch(r=>{this.error(r)})}next(e){this.forEachObserver(t=>{t.next(e)})}error(e){this.forEachObserver(t=>{t.error(e)}),this.close(e)}complete(){this.forEachObserver(e=>{e.complete()}),this.close()}subscribe(e,t,r){let i;if(e===void 0&&t===void 0&&r===void 0)throw new Error("Missing Observer.");zn(e,["next","error","complete"])?i=e:i={next:e,error:t,complete:r},i.next===void 0&&(i.next=Re),i.error===void 0&&(i.error=Re),i.complete===void 0&&(i.complete=Re);const s=this.unsubscribeOne.bind(this,this.observers.length);return this.finalized&&this.task.then(()=>{try{this.finalError?i.error(this.finalError):i.complete()}catch{}}),this.observers.push(i),s}unsubscribeOne(e){this.observers===void 0||this.observers[e]===void 0||(delete this.observers[e],this.observerCount-=1,this.observerCount===0&&this.onNoObservers!==void 0&&this.onNoObservers(this))}forEachObserver(e){if(!this.finalized)for(let t=0;t<this.observers.length;t++)this.sendOne(t,e)}sendOne(e,t){this.task.then(()=>{if(this.observers!==void 0&&this.observers[e]!==void 0)try{t(this.observers[e])}catch(r){typeof console<"u"&&console.error&&console.error(r)}})}close(e){this.finalized||(this.finalized=!0,e!==void 0&&(this.finalError=e),this.task.then(()=>{this.observers=void 0,this.onNoObservers=void 0}))}}function zn(n,e){if(typeof n!="object"||n===null)return!1;for(const t of e)if(t in n&&typeof n[t]=="function")return!0;return!1}function Re(){}/**
107
+ * @license
108
+ * Copyright 2021 Google LLC
109
+ *
110
+ * Licensed under the Apache License, Version 2.0 (the "License");
111
+ * you may not use this file except in compliance with the License.
112
+ * You may obtain a copy of the License at
113
+ *
114
+ * http://www.apache.org/licenses/LICENSE-2.0
115
+ *
116
+ * Unless required by applicable law or agreed to in writing, software
117
+ * distributed under the License is distributed on an "AS IS" BASIS,
118
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
119
+ * See the License for the specific language governing permissions and
120
+ * limitations under the License.
121
+ */function b(n){return n&&n._delegate?n._delegate:n}class j{constructor(e,t,r){this.name=e,this.instanceFactory=t,this.type=r,this.multipleInstances=!1,this.serviceProps={},this.instantiationMode="LAZY",this.onInstanceCreated=null}setInstantiationMode(e){return this.instantiationMode=e,this}setMultipleInstances(e){return this.multipleInstances=e,this}setServiceProps(e){return this.serviceProps=e,this}setInstanceCreatedCallback(e){return this.onInstanceCreated=e,this}}/**
122
+ * @license
123
+ * Copyright 2019 Google LLC
124
+ *
125
+ * Licensed under the Apache License, Version 2.0 (the "License");
126
+ * you may not use this file except in compliance with the License.
127
+ * You may obtain a copy of the License at
128
+ *
129
+ * http://www.apache.org/licenses/LICENSE-2.0
130
+ *
131
+ * Unless required by applicable law or agreed to in writing, software
132
+ * distributed under the License is distributed on an "AS IS" BASIS,
133
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
134
+ * See the License for the specific language governing permissions and
135
+ * limitations under the License.
136
+ */const L="[DEFAULT]";/**
137
+ * @license
138
+ * Copyright 2019 Google LLC
139
+ *
140
+ * Licensed under the Apache License, Version 2.0 (the "License");
141
+ * you may not use this file except in compliance with the License.
142
+ * You may obtain a copy of the License at
143
+ *
144
+ * http://www.apache.org/licenses/LICENSE-2.0
145
+ *
146
+ * Unless required by applicable law or agreed to in writing, software
147
+ * distributed under the License is distributed on an "AS IS" BASIS,
148
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
149
+ * See the License for the specific language governing permissions and
150
+ * limitations under the License.
151
+ */class Gn{constructor(e,t){this.name=e,this.container=t,this.component=null,this.instances=new Map,this.instancesDeferred=new Map,this.instancesOptions=new Map,this.onInitCallbacks=new Map}get(e){const t=this.normalizeInstanceIdentifier(e);if(!this.instancesDeferred.has(t)){const r=new Nn;if(this.instancesDeferred.set(t,r),this.isInitialized(t)||this.shouldAutoInitialize())try{const i=this.getOrInitializeService({instanceIdentifier:t});i&&r.resolve(i)}catch{}}return this.instancesDeferred.get(t).promise}getImmediate(e){var t;const r=this.normalizeInstanceIdentifier(e?.identifier),i=(t=e?.optional)!==null&&t!==void 0?t:!1;if(this.isInitialized(r)||this.shouldAutoInitialize())try{return this.getOrInitializeService({instanceIdentifier:r})}catch(s){if(i)return null;throw s}else{if(i)return null;throw Error(`Service ${this.name} is not available`)}}getComponent(){return this.component}setComponent(e){if(e.name!==this.name)throw Error(`Mismatching Component ${e.name} for Provider ${this.name}.`);if(this.component)throw Error(`Component for ${this.name} has already been provided`);if(this.component=e,!!this.shouldAutoInitialize()){if(qn(e))try{this.getOrInitializeService({instanceIdentifier:L})}catch{}for(const[t,r]of this.instancesDeferred.entries()){const i=this.normalizeInstanceIdentifier(t);try{const s=this.getOrInitializeService({instanceIdentifier:i});r.resolve(s)}catch{}}}}clearInstance(e=L){this.instancesDeferred.delete(e),this.instancesOptions.delete(e),this.instances.delete(e)}async delete(){const e=Array.from(this.instances.values());await Promise.all([...e.filter(t=>"INTERNAL"in t).map(t=>t.INTERNAL.delete()),...e.filter(t=>"_delete"in t).map(t=>t._delete())])}isComponentSet(){return this.component!=null}isInitialized(e=L){return this.instances.has(e)}getOptions(e=L){return this.instancesOptions.get(e)||{}}initialize(e={}){const{options:t={}}=e,r=this.normalizeInstanceIdentifier(e.instanceIdentifier);if(this.isInitialized(r))throw Error(`${this.name}(${r}) has already been initialized`);if(!this.isComponentSet())throw Error(`Component ${this.name} has not been registered yet`);const i=this.getOrInitializeService({instanceIdentifier:r,options:t});for(const[s,o]of this.instancesDeferred.entries()){const c=this.normalizeInstanceIdentifier(s);r===c&&o.resolve(i)}return i}onInit(e,t){var r;const i=this.normalizeInstanceIdentifier(t),s=(r=this.onInitCallbacks.get(i))!==null&&r!==void 0?r:new Set;s.add(e),this.onInitCallbacks.set(i,s);const o=this.instances.get(i);return o&&e(o,i),()=>{s.delete(e)}}invokeOnInitCallbacks(e,t){const r=this.onInitCallbacks.get(t);if(r)for(const i of r)try{i(e,t)}catch{}}getOrInitializeService({instanceIdentifier:e,options:t={}}){let r=this.instances.get(e);if(!r&&this.component&&(r=this.component.instanceFactory(this.container,{instanceIdentifier:Kn(e),options:t}),this.instances.set(e,r),this.instancesOptions.set(e,t),this.invokeOnInitCallbacks(r,e),this.component.onInstanceCreated))try{this.component.onInstanceCreated(this.container,e,r)}catch{}return r||null}normalizeInstanceIdentifier(e=L){return this.component?this.component.multipleInstances?e:L:e}shouldAutoInitialize(){return!!this.component&&this.component.instantiationMode!=="EXPLICIT"}}function Kn(n){return n===L?void 0:n}function qn(n){return n.instantiationMode==="EAGER"}/**
152
+ * @license
153
+ * Copyright 2019 Google LLC
154
+ *
155
+ * Licensed under the Apache License, Version 2.0 (the "License");
156
+ * you may not use this file except in compliance with the License.
157
+ * You may obtain a copy of the License at
158
+ *
159
+ * http://www.apache.org/licenses/LICENSE-2.0
160
+ *
161
+ * Unless required by applicable law or agreed to in writing, software
162
+ * distributed under the License is distributed on an "AS IS" BASIS,
163
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
164
+ * See the License for the specific language governing permissions and
165
+ * limitations under the License.
166
+ */class Jn{constructor(e){this.name=e,this.providers=new Map}addComponent(e){const t=this.getProvider(e.name);if(t.isComponentSet())throw new Error(`Component ${e.name} has already been registered with ${this.name}`);t.setComponent(e)}addOrOverwriteComponent(e){this.getProvider(e.name).isComponentSet()&&this.providers.delete(e.name),this.addComponent(e)}getProvider(e){if(this.providers.has(e))return this.providers.get(e);const t=new Gn(e,this);return this.providers.set(e,t),t}getProviders(){return Array.from(this.providers.values())}}/**
167
+ * @license
168
+ * Copyright 2017 Google LLC
169
+ *
170
+ * Licensed under the Apache License, Version 2.0 (the "License");
171
+ * you may not use this file except in compliance with the License.
172
+ * You may obtain a copy of the License at
173
+ *
174
+ * http://www.apache.org/licenses/LICENSE-2.0
175
+ *
176
+ * Unless required by applicable law or agreed to in writing, software
177
+ * distributed under the License is distributed on an "AS IS" BASIS,
178
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
179
+ * See the License for the specific language governing permissions and
180
+ * limitations under the License.
181
+ */var h;(function(n){n[n.DEBUG=0]="DEBUG",n[n.VERBOSE=1]="VERBOSE",n[n.INFO=2]="INFO",n[n.WARN=3]="WARN",n[n.ERROR=4]="ERROR",n[n.SILENT=5]="SILENT"})(h||(h={}));const Yn={debug:h.DEBUG,verbose:h.VERBOSE,info:h.INFO,warn:h.WARN,error:h.ERROR,silent:h.SILENT},Xn=h.INFO,Qn={[h.DEBUG]:"log",[h.VERBOSE]:"log",[h.INFO]:"info",[h.WARN]:"warn",[h.ERROR]:"error"},Zn=(n,e,...t)=>{if(e<n.logLevel)return;const r=new Date().toISOString(),i=Qn[e];if(i)console[i](`[${r}] ${n.name}:`,...t);else throw new Error(`Attempted to log a message with an invalid logType (value: ${e})`)};class Bt{constructor(e){this.name=e,this._logLevel=Xn,this._logHandler=Zn,this._userLogHandler=null}get logLevel(){return this._logLevel}set logLevel(e){if(!(e in h))throw new TypeError(`Invalid value "${e}" assigned to \`logLevel\``);this._logLevel=e}setLogLevel(e){this._logLevel=typeof e=="string"?Yn[e]:e}get logHandler(){return this._logHandler}set logHandler(e){if(typeof e!="function")throw new TypeError("Value assigned to `logHandler` must be a function");this._logHandler=e}get userLogHandler(){return this._userLogHandler}set userLogHandler(e){this._userLogHandler=e}debug(...e){this._userLogHandler&&this._userLogHandler(this,h.DEBUG,...e),this._logHandler(this,h.DEBUG,...e)}log(...e){this._userLogHandler&&this._userLogHandler(this,h.VERBOSE,...e),this._logHandler(this,h.VERBOSE,...e)}info(...e){this._userLogHandler&&this._userLogHandler(this,h.INFO,...e),this._logHandler(this,h.INFO,...e)}warn(...e){this._userLogHandler&&this._userLogHandler(this,h.WARN,...e),this._logHandler(this,h.WARN,...e)}error(...e){this._userLogHandler&&this._userLogHandler(this,h.ERROR,...e),this._logHandler(this,h.ERROR,...e)}}const er=(n,e)=>e.some(t=>n instanceof t);let at,ct;function tr(){return at||(at=[IDBDatabase,IDBObjectStore,IDBIndex,IDBCursor,IDBTransaction])}function nr(){return ct||(ct=[IDBCursor.prototype.advance,IDBCursor.prototype.continue,IDBCursor.prototype.continuePrimaryKey])}const xt=new WeakMap,Ue=new WeakMap,Vt=new WeakMap,Pe=new WeakMap,je=new WeakMap;function rr(n){const e=new Promise((t,r)=>{const i=()=>{n.removeEventListener("success",s),n.removeEventListener("error",o)},s=()=>{t(P(n.result)),i()},o=()=>{r(n.error),i()};n.addEventListener("success",s),n.addEventListener("error",o)});return e.then(t=>{t instanceof IDBCursor&&xt.set(t,n)}).catch(()=>{}),je.set(e,n),e}function ir(n){if(Ue.has(n))return;const e=new Promise((t,r)=>{const i=()=>{n.removeEventListener("complete",s),n.removeEventListener("error",o),n.removeEventListener("abort",o)},s=()=>{t(),i()},o=()=>{r(n.error||new DOMException("AbortError","AbortError")),i()};n.addEventListener("complete",s),n.addEventListener("error",o),n.addEventListener("abort",o)});Ue.set(n,e)}let Fe={get(n,e,t){if(n instanceof IDBTransaction){if(e==="done")return Ue.get(n);if(e==="objectStoreNames")return n.objectStoreNames||Vt.get(n);if(e==="store")return t.objectStoreNames[1]?void 0:t.objectStore(t.objectStoreNames[0])}return P(n[e])},set(n,e,t){return n[e]=t,!0},has(n,e){return n instanceof IDBTransaction&&(e==="done"||e==="store")?!0:e in n}};function sr(n){Fe=n(Fe)}function or(n){return n===IDBDatabase.prototype.transaction&&!("objectStoreNames"in IDBTransaction.prototype)?function(e,...t){const r=n.call(Oe(this),e,...t);return Vt.set(r,e.sort?e.sort():[e]),P(r)}:nr().includes(n)?function(...e){return n.apply(Oe(this),e),P(xt.get(this))}:function(...e){return P(n.apply(Oe(this),e))}}function ar(n){return typeof n=="function"?or(n):(n instanceof IDBTransaction&&ir(n),er(n,tr())?new Proxy(n,Fe):n)}function P(n){if(n instanceof IDBRequest)return rr(n);if(Pe.has(n))return Pe.get(n);const e=ar(n);return e!==n&&(Pe.set(n,e),je.set(e,n)),e}const Oe=n=>je.get(n);function cr(n,e,{blocked:t,upgrade:r,blocking:i,terminated:s}={}){const o=indexedDB.open(n,e),c=P(o);return r&&o.addEventListener("upgradeneeded",a=>{r(P(o.result),a.oldVersion,a.newVersion,P(o.transaction),a)}),t&&o.addEventListener("blocked",a=>t(a.oldVersion,a.newVersion,a)),c.then(a=>{s&&a.addEventListener("close",()=>s()),i&&a.addEventListener("versionchange",l=>i(l.oldVersion,l.newVersion,l))}).catch(()=>{}),c}const lr=["get","getKey","getAll","getAllKeys","count"],dr=["put","add","delete","clear"],Ne=new Map;function lt(n,e){if(!(n instanceof IDBDatabase&&!(e in n)&&typeof e=="string"))return;if(Ne.get(e))return Ne.get(e);const t=e.replace(/FromIndex$/,""),r=e!==t,i=dr.includes(t);if(!(t in(r?IDBIndex:IDBObjectStore).prototype)||!(i||lr.includes(t)))return;const s=async function(o,...c){const a=this.transaction(o,i?"readwrite":"readonly");let l=a.store;return r&&(l=l.index(c.shift())),(await Promise.all([l[t](...c),i&&a.done]))[0]};return Ne.set(e,s),s}sr(n=>({...n,get:(e,t,r)=>lt(e,t)||n.get(e,t,r),has:(e,t)=>!!lt(e,t)||n.has(e,t)}));/**
182
+ * @license
183
+ * Copyright 2019 Google LLC
184
+ *
185
+ * Licensed under the Apache License, Version 2.0 (the "License");
186
+ * you may not use this file except in compliance with the License.
187
+ * You may obtain a copy of the License at
188
+ *
189
+ * http://www.apache.org/licenses/LICENSE-2.0
190
+ *
191
+ * Unless required by applicable law or agreed to in writing, software
192
+ * distributed under the License is distributed on an "AS IS" BASIS,
193
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
194
+ * See the License for the specific language governing permissions and
195
+ * limitations under the License.
196
+ */class ur{constructor(e){this.container=e}getPlatformInfoString(){return this.container.getProviders().map(t=>{if(hr(t)){const r=t.getImmediate();return`${r.library}/${r.version}`}else return null}).filter(t=>t).join(" ")}}function hr(n){const e=n.getComponent();return e?.type==="VERSION"}const Be="@firebase/app",dt="0.9.25";/**
197
+ * @license
198
+ * Copyright 2019 Google LLC
199
+ *
200
+ * Licensed under the Apache License, Version 2.0 (the "License");
201
+ * you may not use this file except in compliance with the License.
202
+ * You may obtain a copy of the License at
203
+ *
204
+ * http://www.apache.org/licenses/LICENSE-2.0
205
+ *
206
+ * Unless required by applicable law or agreed to in writing, software
207
+ * distributed under the License is distributed on an "AS IS" BASIS,
208
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
209
+ * See the License for the specific language governing permissions and
210
+ * limitations under the License.
211
+ */const U=new Bt("@firebase/app"),fr="@firebase/app-compat",pr="@firebase/analytics-compat",gr="@firebase/analytics",mr="@firebase/app-check-compat",_r="@firebase/app-check",vr="@firebase/auth",Ir="@firebase/auth-compat",yr="@firebase/database",Er="@firebase/database-compat",wr="@firebase/functions",br="@firebase/functions-compat",Tr="@firebase/installations",Sr="@firebase/installations-compat",Ar="@firebase/messaging",Cr="@firebase/messaging-compat",kr="@firebase/performance",Rr="@firebase/performance-compat",Pr="@firebase/remote-config",Or="@firebase/remote-config-compat",Nr="@firebase/storage",Dr="@firebase/storage-compat",Lr="@firebase/firestore",Mr="@firebase/firestore-compat",Ur="firebase",Fr="10.7.1";/**
212
+ * @license
213
+ * Copyright 2019 Google LLC
214
+ *
215
+ * Licensed under the Apache License, Version 2.0 (the "License");
216
+ * you may not use this file except in compliance with the License.
217
+ * You may obtain a copy of the License at
218
+ *
219
+ * http://www.apache.org/licenses/LICENSE-2.0
220
+ *
221
+ * Unless required by applicable law or agreed to in writing, software
222
+ * distributed under the License is distributed on an "AS IS" BASIS,
223
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
224
+ * See the License for the specific language governing permissions and
225
+ * limitations under the License.
226
+ */const xe="[DEFAULT]",Br={[Be]:"fire-core",[fr]:"fire-core-compat",[gr]:"fire-analytics",[pr]:"fire-analytics-compat",[_r]:"fire-app-check",[mr]:"fire-app-check-compat",[vr]:"fire-auth",[Ir]:"fire-auth-compat",[yr]:"fire-rtdb",[Er]:"fire-rtdb-compat",[wr]:"fire-fn",[br]:"fire-fn-compat",[Tr]:"fire-iid",[Sr]:"fire-iid-compat",[Ar]:"fire-fcm",[Cr]:"fire-fcm-compat",[kr]:"fire-perf",[Rr]:"fire-perf-compat",[Pr]:"fire-rc",[Or]:"fire-rc-compat",[Nr]:"fire-gcs",[Dr]:"fire-gcs-compat",[Lr]:"fire-fst",[Mr]:"fire-fst-compat","fire-js":"fire-js",[Ur]:"fire-js-all"};/**
227
+ * @license
228
+ * Copyright 2019 Google LLC
229
+ *
230
+ * Licensed under the Apache License, Version 2.0 (the "License");
231
+ * you may not use this file except in compliance with the License.
232
+ * You may obtain a copy of the License at
233
+ *
234
+ * http://www.apache.org/licenses/LICENSE-2.0
235
+ *
236
+ * Unless required by applicable law or agreed to in writing, software
237
+ * distributed under the License is distributed on an "AS IS" BASIS,
238
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
239
+ * See the License for the specific language governing permissions and
240
+ * limitations under the License.
241
+ */const fe=new Map,Ve=new Map;function xr(n,e){try{n.container.addComponent(e)}catch(t){U.debug(`Component ${e.name} failed to register with FirebaseApp ${n.name}`,t)}}function Y(n){const e=n.name;if(Ve.has(e))return U.debug(`There were multiple attempts to register component ${e}.`),!1;Ve.set(e,n);for(const t of fe.values())xr(t,n);return!0}function Ht(n,e){const t=n.container.getProvider("heartbeat").getImmediate({optional:!0});return t&&t.triggerHeartbeat(),n.container.getProvider(e)}/**
242
+ * @license
243
+ * Copyright 2019 Google LLC
244
+ *
245
+ * Licensed under the Apache License, Version 2.0 (the "License");
246
+ * you may not use this file except in compliance with the License.
247
+ * You may obtain a copy of the License at
248
+ *
249
+ * http://www.apache.org/licenses/LICENSE-2.0
250
+ *
251
+ * Unless required by applicable law or agreed to in writing, software
252
+ * distributed under the License is distributed on an "AS IS" BASIS,
253
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
254
+ * See the License for the specific language governing permissions and
255
+ * limitations under the License.
256
+ */const Vr={"no-app":"No Firebase App '{$appName}' has been created - call initializeApp() first","bad-app-name":"Illegal App name: '{$appName}","duplicate-app":"Firebase App named '{$appName}' already exists with different options or config","app-deleted":"Firebase App named '{$appName}' already deleted","no-options":"Need to provide options, when not being deployed to hosting via source.","invalid-app-argument":"firebase.{$appName}() takes either no argument or a Firebase App instance.","invalid-log-argument":"First argument to `onLog` must be null or a function.","idb-open":"Error thrown when opening IndexedDB. Original error: {$originalErrorMessage}.","idb-get":"Error thrown when reading from IndexedDB. Original error: {$originalErrorMessage}.","idb-set":"Error thrown when writing to IndexedDB. Original error: {$originalErrorMessage}.","idb-delete":"Error thrown when deleting from IndexedDB. Original error: {$originalErrorMessage}."},O=new te("app","Firebase",Vr);/**
257
+ * @license
258
+ * Copyright 2019 Google LLC
259
+ *
260
+ * Licensed under the Apache License, Version 2.0 (the "License");
261
+ * you may not use this file except in compliance with the License.
262
+ * You may obtain a copy of the License at
263
+ *
264
+ * http://www.apache.org/licenses/LICENSE-2.0
265
+ *
266
+ * Unless required by applicable law or agreed to in writing, software
267
+ * distributed under the License is distributed on an "AS IS" BASIS,
268
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
269
+ * See the License for the specific language governing permissions and
270
+ * limitations under the License.
271
+ */class Hr{constructor(e,t,r){this._isDeleted=!1,this._options=Object.assign({},e),this._config=Object.assign({},t),this._name=t.name,this._automaticDataCollectionEnabled=t.automaticDataCollectionEnabled,this._container=r,this.container.addComponent(new j("app",()=>this,"PUBLIC"))}get automaticDataCollectionEnabled(){return this.checkDestroyed(),this._automaticDataCollectionEnabled}set automaticDataCollectionEnabled(e){this.checkDestroyed(),this._automaticDataCollectionEnabled=e}get name(){return this.checkDestroyed(),this._name}get options(){return this.checkDestroyed(),this._options}get config(){return this.checkDestroyed(),this._config}get container(){return this._container}get isDeleted(){return this._isDeleted}set isDeleted(e){this._isDeleted=e}checkDestroyed(){if(this.isDeleted)throw O.create("app-deleted",{appName:this._name})}}/**
272
+ * @license
273
+ * Copyright 2019 Google LLC
274
+ *
275
+ * Licensed under the Apache License, Version 2.0 (the "License");
276
+ * you may not use this file except in compliance with the License.
277
+ * You may obtain a copy of the License at
278
+ *
279
+ * http://www.apache.org/licenses/LICENSE-2.0
280
+ *
281
+ * Unless required by applicable law or agreed to in writing, software
282
+ * distributed under the License is distributed on an "AS IS" BASIS,
283
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
284
+ * See the License for the specific language governing permissions and
285
+ * limitations under the License.
286
+ */const re=Fr;function $r(n,e={}){let t=n;typeof e!="object"&&(e={name:e});const r=Object.assign({name:xe,automaticDataCollectionEnabled:!1},e),i=r.name;if(typeof i!="string"||!i)throw O.create("bad-app-name",{appName:String(i)});if(t||(t=Ut()),!t)throw O.create("no-options");const s=fe.get(i);if(s){if(he(t,s.options)&&he(r,s.config))return s;throw O.create("duplicate-app",{appName:i})}const o=new Jn(i);for(const a of Ve.values())o.addComponent(a);const c=new Hr(t,r,o);return fe.set(i,c),c}function Wr(n=xe){const e=fe.get(n);if(!e&&n===xe&&Ut())return $r();if(!e)throw O.create("no-app",{appName:n});return e}function q(n,e,t){var r;let i=(r=Br[n])!==null&&r!==void 0?r:n;t&&(i+=`-${t}`);const s=i.match(/\s|\//),o=e.match(/\s|\//);if(s||o){const c=[`Unable to register library "${i}" with version "${e}":`];s&&c.push(`library name "${i}" contains illegal characters (whitespace or "/")`),s&&o&&c.push("and"),o&&c.push(`version name "${e}" contains illegal characters (whitespace or "/")`),U.warn(c.join(" "));return}Y(new j(`${i}-version`,()=>({library:i,version:e}),"VERSION"))}/**
287
+ * @license
288
+ * Copyright 2021 Google LLC
289
+ *
290
+ * Licensed under the Apache License, Version 2.0 (the "License");
291
+ * you may not use this file except in compliance with the License.
292
+ * You may obtain a copy of the License at
293
+ *
294
+ * http://www.apache.org/licenses/LICENSE-2.0
295
+ *
296
+ * Unless required by applicable law or agreed to in writing, software
297
+ * distributed under the License is distributed on an "AS IS" BASIS,
298
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
299
+ * See the License for the specific language governing permissions and
300
+ * limitations under the License.
301
+ */const jr="firebase-heartbeat-database",zr=1,X="firebase-heartbeat-store";let De=null;function $t(){return De||(De=cr(jr,zr,{upgrade:(n,e)=>{switch(e){case 0:n.createObjectStore(X)}}}).catch(n=>{throw O.create("idb-open",{originalErrorMessage:n.message})})),De}async function Gr(n){try{return await(await $t()).transaction(X).objectStore(X).get(Wt(n))}catch(e){if(e instanceof N)U.warn(e.message);else{const t=O.create("idb-get",{originalErrorMessage:e?.message});U.warn(t.message)}}}async function ut(n,e){try{const r=(await $t()).transaction(X,"readwrite");await r.objectStore(X).put(e,Wt(n)),await r.done}catch(t){if(t instanceof N)U.warn(t.message);else{const r=O.create("idb-set",{originalErrorMessage:t?.message});U.warn(r.message)}}}function Wt(n){return`${n.name}!${n.options.appId}`}/**
302
+ * @license
303
+ * Copyright 2021 Google LLC
304
+ *
305
+ * Licensed under the Apache License, Version 2.0 (the "License");
306
+ * you may not use this file except in compliance with the License.
307
+ * You may obtain a copy of the License at
308
+ *
309
+ * http://www.apache.org/licenses/LICENSE-2.0
310
+ *
311
+ * Unless required by applicable law or agreed to in writing, software
312
+ * distributed under the License is distributed on an "AS IS" BASIS,
313
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
314
+ * See the License for the specific language governing permissions and
315
+ * limitations under the License.
316
+ */const Kr=1024,qr=30*24*60*60*1e3;class Jr{constructor(e){this.container=e,this._heartbeatsCache=null;const t=this.container.getProvider("app").getImmediate();this._storage=new Xr(t),this._heartbeatsCachePromise=this._storage.read().then(r=>(this._heartbeatsCache=r,r))}async triggerHeartbeat(){var e,t;const i=this.container.getProvider("platform-logger").getImmediate().getPlatformInfoString(),s=ht();if(!(((e=this._heartbeatsCache)===null||e===void 0?void 0:e.heartbeats)==null&&(this._heartbeatsCache=await this._heartbeatsCachePromise,((t=this._heartbeatsCache)===null||t===void 0?void 0:t.heartbeats)==null))&&!(this._heartbeatsCache.lastSentHeartbeatDate===s||this._heartbeatsCache.heartbeats.some(o=>o.date===s)))return this._heartbeatsCache.heartbeats.push({date:s,agent:i}),this._heartbeatsCache.heartbeats=this._heartbeatsCache.heartbeats.filter(o=>{const c=new Date(o.date).valueOf();return Date.now()-c<=qr}),this._storage.overwrite(this._heartbeatsCache)}async getHeartbeatsHeader(){var e;if(this._heartbeatsCache===null&&await this._heartbeatsCachePromise,((e=this._heartbeatsCache)===null||e===void 0?void 0:e.heartbeats)==null||this._heartbeatsCache.heartbeats.length===0)return"";const t=ht(),{heartbeatsToSend:r,unsentEntries:i}=Yr(this._heartbeatsCache.heartbeats),s=Lt(JSON.stringify({version:2,heartbeats:r}));return this._heartbeatsCache.lastSentHeartbeatDate=t,i.length>0?(this._heartbeatsCache.heartbeats=i,await this._storage.overwrite(this._heartbeatsCache)):(this._heartbeatsCache.heartbeats=[],this._storage.overwrite(this._heartbeatsCache)),s}}function ht(){return new Date().toISOString().substring(0,10)}function Yr(n,e=Kr){const t=[];let r=n.slice();for(const i of n){const s=t.find(o=>o.agent===i.agent);if(s){if(s.dates.push(i.date),ft(t)>e){s.dates.pop();break}}else if(t.push({agent:i.agent,dates:[i.date]}),ft(t)>e){t.pop();break}r=r.slice(1)}return{heartbeatsToSend:t,unsentEntries:r}}class Xr{constructor(e){this.app=e,this._canUseIndexedDBPromise=this.runIndexedDBEnvironmentCheck()}async runIndexedDBEnvironmentCheck(){return Fn()?Bn().then(()=>!0).catch(()=>!1):!1}async read(){if(await this._canUseIndexedDBPromise){const t=await Gr(this.app);return t?.heartbeats?t:{heartbeats:[]}}else return{heartbeats:[]}}async overwrite(e){var t;if(await this._canUseIndexedDBPromise){const i=await this.read();return ut(this.app,{lastSentHeartbeatDate:(t=e.lastSentHeartbeatDate)!==null&&t!==void 0?t:i.lastSentHeartbeatDate,heartbeats:e.heartbeats})}else return}async add(e){var t;if(await this._canUseIndexedDBPromise){const i=await this.read();return ut(this.app,{lastSentHeartbeatDate:(t=e.lastSentHeartbeatDate)!==null&&t!==void 0?t:i.lastSentHeartbeatDate,heartbeats:[...i.heartbeats,...e.heartbeats]})}else return}}function ft(n){return Lt(JSON.stringify({version:2,heartbeats:n})).length}/**
317
+ * @license
318
+ * Copyright 2019 Google LLC
319
+ *
320
+ * Licensed under the Apache License, Version 2.0 (the "License");
321
+ * you may not use this file except in compliance with the License.
322
+ * You may obtain a copy of the License at
323
+ *
324
+ * http://www.apache.org/licenses/LICENSE-2.0
325
+ *
326
+ * Unless required by applicable law or agreed to in writing, software
327
+ * distributed under the License is distributed on an "AS IS" BASIS,
328
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
329
+ * See the License for the specific language governing permissions and
330
+ * limitations under the License.
331
+ */function Qr(n){Y(new j("platform-logger",e=>new ur(e),"PRIVATE")),Y(new j("heartbeat",e=>new Jr(e),"PRIVATE")),q(Be,dt,n),q(Be,dt,"esm2017"),q("fire-js","")}Qr("");function ze(n,e){var t={};for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&e.indexOf(r)<0&&(t[r]=n[r]);if(n!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,r=Object.getOwnPropertySymbols(n);i<r.length;i++)e.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(n,r[i])&&(t[r[i]]=n[r[i]]);return t}function jt(){return{"dependent-sdk-initialized-before-auth":"Another Firebase SDK was initialized and is trying to use Auth before Auth is initialized. Please be sure to call `initializeAuth` or `getAuth` before starting any other Firebase SDK."}}const Zr=jt,zt=new te("auth","Firebase",jt());/**
332
+ * @license
333
+ * Copyright 2020 Google LLC
334
+ *
335
+ * Licensed under the Apache License, Version 2.0 (the "License");
336
+ * you may not use this file except in compliance with the License.
337
+ * You may obtain a copy of the License at
338
+ *
339
+ * http://www.apache.org/licenses/LICENSE-2.0
340
+ *
341
+ * Unless required by applicable law or agreed to in writing, software
342
+ * distributed under the License is distributed on an "AS IS" BASIS,
343
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
344
+ * See the License for the specific language governing permissions and
345
+ * limitations under the License.
346
+ */const pe=new Bt("@firebase/auth");function ei(n,...e){pe.logLevel<=h.WARN&&pe.warn(`Auth (${re}): ${n}`,...e)}function ce(n,...e){pe.logLevel<=h.ERROR&&pe.error(`Auth (${re}): ${n}`,...e)}/**
347
+ * @license
348
+ * Copyright 2020 Google LLC
349
+ *
350
+ * Licensed under the Apache License, Version 2.0 (the "License");
351
+ * you may not use this file except in compliance with the License.
352
+ * You may obtain a copy of the License at
353
+ *
354
+ * http://www.apache.org/licenses/LICENSE-2.0
355
+ *
356
+ * Unless required by applicable law or agreed to in writing, software
357
+ * distributed under the License is distributed on an "AS IS" BASIS,
358
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
359
+ * See the License for the specific language governing permissions and
360
+ * limitations under the License.
361
+ */function m(n,...e){throw Ge(n,...e)}function _(n,...e){return Ge(n,...e)}function ti(n,e,t){const r=Object.assign(Object.assign({},Zr()),{[e]:t});return new te("auth","Firebase",r).create(e,{appName:n.name})}function Ge(n,...e){if(typeof n!="string"){const t=e[0],r=[...e.slice(1)];return r[0]&&(r[0].appName=n.name),n._errorFactory.create(t,...r)}return zt.create(n,...e)}function d(n,e,...t){if(!n)throw Ge(e,...t)}function y(n){const e="INTERNAL ASSERTION FAILED: "+n;throw ce(e),new Error(e)}function w(n,e){n||y(e)}/**
362
+ * @license
363
+ * Copyright 2020 Google LLC
364
+ *
365
+ * Licensed under the Apache License, Version 2.0 (the "License");
366
+ * you may not use this file except in compliance with the License.
367
+ * You may obtain a copy of the License at
368
+ *
369
+ * http://www.apache.org/licenses/LICENSE-2.0
370
+ *
371
+ * Unless required by applicable law or agreed to in writing, software
372
+ * distributed under the License is distributed on an "AS IS" BASIS,
373
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
374
+ * See the License for the specific language governing permissions and
375
+ * limitations under the License.
376
+ */function ge(){var n;return typeof self<"u"&&((n=self.location)===null||n===void 0?void 0:n.href)||""}function ni(){return pt()==="http:"||pt()==="https:"}function pt(){var n;return typeof self<"u"&&((n=self.location)===null||n===void 0?void 0:n.protocol)||null}/**
377
+ * @license
378
+ * Copyright 2020 Google LLC
379
+ *
380
+ * Licensed under the Apache License, Version 2.0 (the "License");
381
+ * you may not use this file except in compliance with the License.
382
+ * You may obtain a copy of the License at
383
+ *
384
+ * http://www.apache.org/licenses/LICENSE-2.0
385
+ *
386
+ * Unless required by applicable law or agreed to in writing, software
387
+ * distributed under the License is distributed on an "AS IS" BASIS,
388
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
389
+ * See the License for the specific language governing permissions and
390
+ * limitations under the License.
391
+ */function ri(){return typeof navigator<"u"&&navigator&&"onLine"in navigator&&typeof navigator.onLine=="boolean"&&(ni()||Ln()||"connection"in navigator)?navigator.onLine:!0}function ii(){if(typeof navigator>"u")return null;const n=navigator;return n.languages&&n.languages[0]||n.language||null}/**
392
+ * @license
393
+ * Copyright 2020 Google LLC
394
+ *
395
+ * Licensed under the Apache License, Version 2.0 (the "License");
396
+ * you may not use this file except in compliance with the License.
397
+ * You may obtain a copy of the License at
398
+ *
399
+ * http://www.apache.org/licenses/LICENSE-2.0
400
+ *
401
+ * Unless required by applicable law or agreed to in writing, software
402
+ * distributed under the License is distributed on an "AS IS" BASIS,
403
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
404
+ * See the License for the specific language governing permissions and
405
+ * limitations under the License.
406
+ */class ie{constructor(e,t){this.shortDelay=e,this.longDelay=t,w(t>e,"Short delay should be less than long delay!"),this.isMobile=Dn()||Mn()}get(){return ri()?this.isMobile?this.longDelay:this.shortDelay:Math.min(5e3,this.shortDelay)}}/**
407
+ * @license
408
+ * Copyright 2020 Google LLC
409
+ *
410
+ * Licensed under the Apache License, Version 2.0 (the "License");
411
+ * you may not use this file except in compliance with the License.
412
+ * You may obtain a copy of the License at
413
+ *
414
+ * http://www.apache.org/licenses/LICENSE-2.0
415
+ *
416
+ * Unless required by applicable law or agreed to in writing, software
417
+ * distributed under the License is distributed on an "AS IS" BASIS,
418
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
419
+ * See the License for the specific language governing permissions and
420
+ * limitations under the License.
421
+ */function Ke(n,e){w(n.emulator,"Emulator should always be set here");const{url:t}=n.emulator;return e?`${t}${e.startsWith("/")?e.slice(1):e}`:t}/**
422
+ * @license
423
+ * Copyright 2020 Google LLC
424
+ *
425
+ * Licensed under the Apache License, Version 2.0 (the "License");
426
+ * you may not use this file except in compliance with the License.
427
+ * You may obtain a copy of the License at
428
+ *
429
+ * http://www.apache.org/licenses/LICENSE-2.0
430
+ *
431
+ * Unless required by applicable law or agreed to in writing, software
432
+ * distributed under the License is distributed on an "AS IS" BASIS,
433
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
434
+ * See the License for the specific language governing permissions and
435
+ * limitations under the License.
436
+ */class Gt{static initialize(e,t,r){this.fetchImpl=e,t&&(this.headersImpl=t),r&&(this.responseImpl=r)}static fetch(){if(this.fetchImpl)return this.fetchImpl;if(typeof self<"u"&&"fetch"in self)return self.fetch;if(typeof globalThis<"u"&&globalThis.fetch)return globalThis.fetch;if(typeof fetch<"u")return fetch;y("Could not find fetch implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill")}static headers(){if(this.headersImpl)return this.headersImpl;if(typeof self<"u"&&"Headers"in self)return self.Headers;if(typeof globalThis<"u"&&globalThis.Headers)return globalThis.Headers;if(typeof Headers<"u")return Headers;y("Could not find Headers implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill")}static response(){if(this.responseImpl)return this.responseImpl;if(typeof self<"u"&&"Response"in self)return self.Response;if(typeof globalThis<"u"&&globalThis.Response)return globalThis.Response;if(typeof Response<"u")return Response;y("Could not find Response implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill")}}/**
437
+ * @license
438
+ * Copyright 2020 Google LLC
439
+ *
440
+ * Licensed under the Apache License, Version 2.0 (the "License");
441
+ * you may not use this file except in compliance with the License.
442
+ * You may obtain a copy of the License at
443
+ *
444
+ * http://www.apache.org/licenses/LICENSE-2.0
445
+ *
446
+ * Unless required by applicable law or agreed to in writing, software
447
+ * distributed under the License is distributed on an "AS IS" BASIS,
448
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
449
+ * See the License for the specific language governing permissions and
450
+ * limitations under the License.
451
+ */const si={CREDENTIAL_MISMATCH:"custom-token-mismatch",MISSING_CUSTOM_TOKEN:"internal-error",INVALID_IDENTIFIER:"invalid-email",MISSING_CONTINUE_URI:"internal-error",INVALID_PASSWORD:"wrong-password",MISSING_PASSWORD:"missing-password",INVALID_LOGIN_CREDENTIALS:"invalid-credential",EMAIL_EXISTS:"email-already-in-use",PASSWORD_LOGIN_DISABLED:"operation-not-allowed",INVALID_IDP_RESPONSE:"invalid-credential",INVALID_PENDING_TOKEN:"invalid-credential",FEDERATED_USER_ID_ALREADY_LINKED:"credential-already-in-use",MISSING_REQ_TYPE:"internal-error",EMAIL_NOT_FOUND:"user-not-found",RESET_PASSWORD_EXCEED_LIMIT:"too-many-requests",EXPIRED_OOB_CODE:"expired-action-code",INVALID_OOB_CODE:"invalid-action-code",MISSING_OOB_CODE:"internal-error",CREDENTIAL_TOO_OLD_LOGIN_AGAIN:"requires-recent-login",INVALID_ID_TOKEN:"invalid-user-token",TOKEN_EXPIRED:"user-token-expired",USER_NOT_FOUND:"user-token-expired",TOO_MANY_ATTEMPTS_TRY_LATER:"too-many-requests",PASSWORD_DOES_NOT_MEET_REQUIREMENTS:"password-does-not-meet-requirements",INVALID_CODE:"invalid-verification-code",INVALID_SESSION_INFO:"invalid-verification-id",INVALID_TEMPORARY_PROOF:"invalid-credential",MISSING_SESSION_INFO:"missing-verification-id",SESSION_EXPIRED:"code-expired",MISSING_ANDROID_PACKAGE_NAME:"missing-android-pkg-name",UNAUTHORIZED_DOMAIN:"unauthorized-continue-uri",INVALID_OAUTH_CLIENT_ID:"invalid-oauth-client-id",ADMIN_ONLY_OPERATION:"admin-restricted-operation",INVALID_MFA_PENDING_CREDENTIAL:"invalid-multi-factor-session",MFA_ENROLLMENT_NOT_FOUND:"multi-factor-info-not-found",MISSING_MFA_ENROLLMENT_ID:"missing-multi-factor-info",MISSING_MFA_PENDING_CREDENTIAL:"missing-multi-factor-session",SECOND_FACTOR_EXISTS:"second-factor-already-in-use",SECOND_FACTOR_LIMIT_EXCEEDED:"maximum-second-factor-count-exceeded",BLOCKING_FUNCTION_ERROR_RESPONSE:"internal-error",RECAPTCHA_NOT_ENABLED:"recaptcha-not-enabled",MISSING_RECAPTCHA_TOKEN:"missing-recaptcha-token",INVALID_RECAPTCHA_TOKEN:"invalid-recaptcha-token",INVALID_RECAPTCHA_ACTION:"invalid-recaptcha-action",MISSING_CLIENT_TYPE:"missing-client-type",MISSING_RECAPTCHA_VERSION:"missing-recaptcha-version",INVALID_RECAPTCHA_VERSION:"invalid-recaptcha-version",INVALID_REQ_TYPE:"invalid-req-type"};/**
452
+ * @license
453
+ * Copyright 2020 Google LLC
454
+ *
455
+ * Licensed under the Apache License, Version 2.0 (the "License");
456
+ * you may not use this file except in compliance with the License.
457
+ * You may obtain a copy of the License at
458
+ *
459
+ * http://www.apache.org/licenses/LICENSE-2.0
460
+ *
461
+ * Unless required by applicable law or agreed to in writing, software
462
+ * distributed under the License is distributed on an "AS IS" BASIS,
463
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
464
+ * See the License for the specific language governing permissions and
465
+ * limitations under the License.
466
+ */const oi=new ie(3e4,6e4);function D(n,e){return n.tenantId&&!e.tenantId?Object.assign(Object.assign({},e),{tenantId:n.tenantId}):e}async function T(n,e,t,r,i={}){return Kt(n,i,async()=>{let s={},o={};r&&(e==="GET"?o=r:s={body:JSON.stringify(r)});const c=ne(Object.assign({key:n.config.apiKey},o)).slice(1),a=await n._getAdditionalHeaders();return a["Content-Type"]="application/json",n.languageCode&&(a["X-Firebase-Locale"]=n.languageCode),Gt.fetch()(qt(n,n.config.apiHost,t,c),Object.assign({method:e,headers:a,referrerPolicy:"no-referrer"},s))})}async function Kt(n,e,t){n._canInitEmulator=!1;const r=Object.assign(Object.assign({},si),e);try{const i=new ci(n),s=await Promise.race([t(),i.promise]);i.clearNetworkTimeout();const o=await s.json();if("needConfirmation"in o)throw ae(n,"account-exists-with-different-credential",o);if(s.ok&&!("errorMessage"in o))return o;{const c=s.ok?o.errorMessage:o.error.message,[a,l]=c.split(" : ");if(a==="FEDERATED_USER_ID_ALREADY_LINKED")throw ae(n,"credential-already-in-use",o);if(a==="EMAIL_EXISTS")throw ae(n,"email-already-in-use",o);if(a==="USER_DISABLED")throw ae(n,"user-disabled",o);const u=r[a]||a.toLowerCase().replace(/[_\s]+/g,"-");if(l)throw ti(n,u,l);m(n,u)}}catch(i){if(i instanceof N)throw i;m(n,"network-request-failed",{message:String(i)})}}async function ye(n,e,t,r,i={}){const s=await T(n,e,t,r,i);return"mfaPendingCredential"in s&&m(n,"multi-factor-auth-required",{_serverResponse:s}),s}function qt(n,e,t,r){const i=`${e}${t}?${r}`;return n.config.emulator?Ke(n.config,i):`${n.config.apiScheme}://${i}`}function ai(n){switch(n){case"ENFORCE":return"ENFORCE";case"AUDIT":return"AUDIT";case"OFF":return"OFF";default:return"ENFORCEMENT_STATE_UNSPECIFIED"}}class ci{constructor(e){this.auth=e,this.timer=null,this.promise=new Promise((t,r)=>{this.timer=setTimeout(()=>r(_(this.auth,"network-request-failed")),oi.get())})}clearNetworkTimeout(){clearTimeout(this.timer)}}function ae(n,e,t){const r={appName:n.name};t.email&&(r.email=t.email),t.phoneNumber&&(r.phoneNumber=t.phoneNumber);const i=_(n,e,r);return i.customData._tokenResponse=t,i}function gt(n){return n!==void 0&&n.enterprise!==void 0}class li{constructor(e){if(this.siteKey="",this.recaptchaEnforcementState=[],e.recaptchaKey===void 0)throw new Error("recaptchaKey undefined");this.siteKey=e.recaptchaKey.split("/")[3],this.recaptchaEnforcementState=e.recaptchaEnforcementState}getProviderEnforcementState(e){if(!this.recaptchaEnforcementState||this.recaptchaEnforcementState.length===0)return null;for(const t of this.recaptchaEnforcementState)if(t.provider&&t.provider===e)return ai(t.enforcementState);return null}isProviderEnabled(e){return this.getProviderEnforcementState(e)==="ENFORCE"||this.getProviderEnforcementState(e)==="AUDIT"}}async function di(n,e){return T(n,"GET","/v2/recaptchaConfig",D(n,e))}/**
467
+ * @license
468
+ * Copyright 2020 Google LLC
469
+ *
470
+ * Licensed under the Apache License, Version 2.0 (the "License");
471
+ * you may not use this file except in compliance with the License.
472
+ * You may obtain a copy of the License at
473
+ *
474
+ * http://www.apache.org/licenses/LICENSE-2.0
475
+ *
476
+ * Unless required by applicable law or agreed to in writing, software
477
+ * distributed under the License is distributed on an "AS IS" BASIS,
478
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
479
+ * See the License for the specific language governing permissions and
480
+ * limitations under the License.
481
+ */async function ui(n,e){return T(n,"POST","/v1/accounts:delete",e)}async function hi(n,e){return T(n,"POST","/v1/accounts:lookup",e)}/**
482
+ * @license
483
+ * Copyright 2020 Google LLC
484
+ *
485
+ * Licensed under the Apache License, Version 2.0 (the "License");
486
+ * you may not use this file except in compliance with the License.
487
+ * You may obtain a copy of the License at
488
+ *
489
+ * http://www.apache.org/licenses/LICENSE-2.0
490
+ *
491
+ * Unless required by applicable law or agreed to in writing, software
492
+ * distributed under the License is distributed on an "AS IS" BASIS,
493
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
494
+ * See the License for the specific language governing permissions and
495
+ * limitations under the License.
496
+ */function J(n){if(n)try{const e=new Date(Number(n));if(!isNaN(e.getTime()))return e.toUTCString()}catch{}}async function fi(n,e=!1){const t=b(n),r=await t.getIdToken(e),i=qe(r);d(i&&i.exp&&i.auth_time&&i.iat,t.auth,"internal-error");const s=typeof i.firebase=="object"?i.firebase:void 0,o=s?.sign_in_provider;return{claims:i,token:r,authTime:J(Le(i.auth_time)),issuedAtTime:J(Le(i.iat)),expirationTime:J(Le(i.exp)),signInProvider:o||null,signInSecondFactor:s?.sign_in_second_factor||null}}function Le(n){return Number(n)*1e3}function qe(n){const[e,t,r]=n.split(".");if(e===void 0||t===void 0||r===void 0)return ce("JWT malformed, contained fewer than 3 sections"),null;try{const i=Mt(t);return i?JSON.parse(i):(ce("Failed to decode base64 JWT payload"),null)}catch(i){return ce("Caught error parsing JWT payload as JSON",i?.toString()),null}}function pi(n){const e=qe(n);return d(e,"internal-error"),d(typeof e.exp<"u","internal-error"),d(typeof e.iat<"u","internal-error"),Number(e.exp)-Number(e.iat)}/**
497
+ * @license
498
+ * Copyright 2020 Google LLC
499
+ *
500
+ * Licensed under the Apache License, Version 2.0 (the "License");
501
+ * you may not use this file except in compliance with the License.
502
+ * You may obtain a copy of the License at
503
+ *
504
+ * http://www.apache.org/licenses/LICENSE-2.0
505
+ *
506
+ * Unless required by applicable law or agreed to in writing, software
507
+ * distributed under the License is distributed on an "AS IS" BASIS,
508
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
509
+ * See the License for the specific language governing permissions and
510
+ * limitations under the License.
511
+ */async function Q(n,e,t=!1){if(t)return e;try{return await e}catch(r){throw r instanceof N&&gi(r)&&n.auth.currentUser===n&&await n.auth.signOut(),r}}function gi({code:n}){return n==="auth/user-disabled"||n==="auth/user-token-expired"}/**
512
+ * @license
513
+ * Copyright 2020 Google LLC
514
+ *
515
+ * Licensed under the Apache License, Version 2.0 (the "License");
516
+ * you may not use this file except in compliance with the License.
517
+ * You may obtain a copy of the License at
518
+ *
519
+ * http://www.apache.org/licenses/LICENSE-2.0
520
+ *
521
+ * Unless required by applicable law or agreed to in writing, software
522
+ * distributed under the License is distributed on an "AS IS" BASIS,
523
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
524
+ * See the License for the specific language governing permissions and
525
+ * limitations under the License.
526
+ */class mi{constructor(e){this.user=e,this.isRunning=!1,this.timerId=null,this.errorBackoff=3e4}_start(){this.isRunning||(this.isRunning=!0,this.schedule())}_stop(){this.isRunning&&(this.isRunning=!1,this.timerId!==null&&clearTimeout(this.timerId))}getInterval(e){var t;if(e){const r=this.errorBackoff;return this.errorBackoff=Math.min(this.errorBackoff*2,96e4),r}else{this.errorBackoff=3e4;const i=((t=this.user.stsTokenManager.expirationTime)!==null&&t!==void 0?t:0)-Date.now()-3e5;return Math.max(0,i)}}schedule(e=!1){if(!this.isRunning)return;const t=this.getInterval(e);this.timerId=setTimeout(async()=>{await this.iteration()},t)}async iteration(){try{await this.user.getIdToken(!0)}catch(e){e?.code==="auth/network-request-failed"&&this.schedule(!0);return}this.schedule()}}/**
527
+ * @license
528
+ * Copyright 2020 Google LLC
529
+ *
530
+ * Licensed under the Apache License, Version 2.0 (the "License");
531
+ * you may not use this file except in compliance with the License.
532
+ * You may obtain a copy of the License at
533
+ *
534
+ * http://www.apache.org/licenses/LICENSE-2.0
535
+ *
536
+ * Unless required by applicable law or agreed to in writing, software
537
+ * distributed under the License is distributed on an "AS IS" BASIS,
538
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
539
+ * See the License for the specific language governing permissions and
540
+ * limitations under the License.
541
+ */class Jt{constructor(e,t){this.createdAt=e,this.lastLoginAt=t,this._initializeTime()}_initializeTime(){this.lastSignInTime=J(this.lastLoginAt),this.creationTime=J(this.createdAt)}_copy(e){this.createdAt=e.createdAt,this.lastLoginAt=e.lastLoginAt,this._initializeTime()}toJSON(){return{createdAt:this.createdAt,lastLoginAt:this.lastLoginAt}}}/**
542
+ * @license
543
+ * Copyright 2019 Google LLC
544
+ *
545
+ * Licensed under the Apache License, Version 2.0 (the "License");
546
+ * you may not use this file except in compliance with the License.
547
+ * You may obtain a copy of the License at
548
+ *
549
+ * http://www.apache.org/licenses/LICENSE-2.0
550
+ *
551
+ * Unless required by applicable law or agreed to in writing, software
552
+ * distributed under the License is distributed on an "AS IS" BASIS,
553
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
554
+ * See the License for the specific language governing permissions and
555
+ * limitations under the License.
556
+ */async function me(n){var e;const t=n.auth,r=await n.getIdToken(),i=await Q(n,hi(t,{idToken:r}));d(i?.users.length,t,"internal-error");const s=i.users[0];n._notifyReloadListener(s);const o=!((e=s.providerUserInfo)===null||e===void 0)&&e.length?Ii(s.providerUserInfo):[],c=vi(n.providerData,o),a=n.isAnonymous,l=!(n.email&&s.passwordHash)&&!c?.length,u=a?l:!1,f={uid:s.localId,displayName:s.displayName||null,photoURL:s.photoUrl||null,email:s.email||null,emailVerified:s.emailVerified||!1,phoneNumber:s.phoneNumber||null,tenantId:s.tenantId||null,providerData:c,metadata:new Jt(s.createdAt,s.lastLoginAt),isAnonymous:u};Object.assign(n,f)}async function _i(n){const e=b(n);await me(e),await e.auth._persistUserIfCurrent(e),e.auth._notifyListenersIfCurrent(e)}function vi(n,e){return[...n.filter(r=>!e.some(i=>i.providerId===r.providerId)),...e]}function Ii(n){return n.map(e=>{var{providerId:t}=e,r=ze(e,["providerId"]);return{providerId:t,uid:r.rawId||"",displayName:r.displayName||null,email:r.email||null,phoneNumber:r.phoneNumber||null,photoURL:r.photoUrl||null}})}/**
557
+ * @license
558
+ * Copyright 2020 Google LLC
559
+ *
560
+ * Licensed under the Apache License, Version 2.0 (the "License");
561
+ * you may not use this file except in compliance with the License.
562
+ * You may obtain a copy of the License at
563
+ *
564
+ * http://www.apache.org/licenses/LICENSE-2.0
565
+ *
566
+ * Unless required by applicable law or agreed to in writing, software
567
+ * distributed under the License is distributed on an "AS IS" BASIS,
568
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
569
+ * See the License for the specific language governing permissions and
570
+ * limitations under the License.
571
+ */async function yi(n,e){const t=await Kt(n,{},async()=>{const r=ne({grant_type:"refresh_token",refresh_token:e}).slice(1),{tokenApiHost:i,apiKey:s}=n.config,o=qt(n,i,"/v1/token",`key=${s}`),c=await n._getAdditionalHeaders();return c["Content-Type"]="application/x-www-form-urlencoded",Gt.fetch()(o,{method:"POST",headers:c,body:r})});return{accessToken:t.access_token,expiresIn:t.expires_in,refreshToken:t.refresh_token}}async function Ei(n,e){return T(n,"POST","/v2/accounts:revokeToken",D(n,e))}/**
572
+ * @license
573
+ * Copyright 2020 Google LLC
574
+ *
575
+ * Licensed under the Apache License, Version 2.0 (the "License");
576
+ * you may not use this file except in compliance with the License.
577
+ * You may obtain a copy of the License at
578
+ *
579
+ * http://www.apache.org/licenses/LICENSE-2.0
580
+ *
581
+ * Unless required by applicable law or agreed to in writing, software
582
+ * distributed under the License is distributed on an "AS IS" BASIS,
583
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
584
+ * See the License for the specific language governing permissions and
585
+ * limitations under the License.
586
+ */class Z{constructor(){this.refreshToken=null,this.accessToken=null,this.expirationTime=null}get isExpired(){return!this.expirationTime||Date.now()>this.expirationTime-3e4}updateFromServerResponse(e){d(e.idToken,"internal-error"),d(typeof e.idToken<"u","internal-error"),d(typeof e.refreshToken<"u","internal-error");const t="expiresIn"in e&&typeof e.expiresIn<"u"?Number(e.expiresIn):pi(e.idToken);this.updateTokensAndExpiration(e.idToken,e.refreshToken,t)}async getToken(e,t=!1){return d(!this.accessToken||this.refreshToken,e,"user-token-expired"),!t&&this.accessToken&&!this.isExpired?this.accessToken:this.refreshToken?(await this.refresh(e,this.refreshToken),this.accessToken):null}clearRefreshToken(){this.refreshToken=null}async refresh(e,t){const{accessToken:r,refreshToken:i,expiresIn:s}=await yi(e,t);this.updateTokensAndExpiration(r,i,Number(s))}updateTokensAndExpiration(e,t,r){this.refreshToken=t||null,this.accessToken=e||null,this.expirationTime=Date.now()+r*1e3}static fromJSON(e,t){const{refreshToken:r,accessToken:i,expirationTime:s}=t,o=new Z;return r&&(d(typeof r=="string","internal-error",{appName:e}),o.refreshToken=r),i&&(d(typeof i=="string","internal-error",{appName:e}),o.accessToken=i),s&&(d(typeof s=="number","internal-error",{appName:e}),o.expirationTime=s),o}toJSON(){return{refreshToken:this.refreshToken,accessToken:this.accessToken,expirationTime:this.expirationTime}}_assign(e){this.accessToken=e.accessToken,this.refreshToken=e.refreshToken,this.expirationTime=e.expirationTime}_clone(){return Object.assign(new Z,this.toJSON())}_performRefresh(){return y("not implemented")}}/**
587
+ * @license
588
+ * Copyright 2020 Google LLC
589
+ *
590
+ * Licensed under the Apache License, Version 2.0 (the "License");
591
+ * you may not use this file except in compliance with the License.
592
+ * You may obtain a copy of the License at
593
+ *
594
+ * http://www.apache.org/licenses/LICENSE-2.0
595
+ *
596
+ * Unless required by applicable law or agreed to in writing, software
597
+ * distributed under the License is distributed on an "AS IS" BASIS,
598
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
599
+ * See the License for the specific language governing permissions and
600
+ * limitations under the License.
601
+ */function S(n,e){d(typeof n=="string"||typeof n>"u","internal-error",{appName:e})}class M{constructor(e){var{uid:t,auth:r,stsTokenManager:i}=e,s=ze(e,["uid","auth","stsTokenManager"]);this.providerId="firebase",this.proactiveRefresh=new mi(this),this.reloadUserInfo=null,this.reloadListener=null,this.uid=t,this.auth=r,this.stsTokenManager=i,this.accessToken=i.accessToken,this.displayName=s.displayName||null,this.email=s.email||null,this.emailVerified=s.emailVerified||!1,this.phoneNumber=s.phoneNumber||null,this.photoURL=s.photoURL||null,this.isAnonymous=s.isAnonymous||!1,this.tenantId=s.tenantId||null,this.providerData=s.providerData?[...s.providerData]:[],this.metadata=new Jt(s.createdAt||void 0,s.lastLoginAt||void 0)}async getIdToken(e){const t=await Q(this,this.stsTokenManager.getToken(this.auth,e));return d(t,this.auth,"internal-error"),this.accessToken!==t&&(this.accessToken=t,await this.auth._persistUserIfCurrent(this),this.auth._notifyListenersIfCurrent(this)),t}getIdTokenResult(e){return fi(this,e)}reload(){return _i(this)}_assign(e){this!==e&&(d(this.uid===e.uid,this.auth,"internal-error"),this.displayName=e.displayName,this.photoURL=e.photoURL,this.email=e.email,this.emailVerified=e.emailVerified,this.phoneNumber=e.phoneNumber,this.isAnonymous=e.isAnonymous,this.tenantId=e.tenantId,this.providerData=e.providerData.map(t=>Object.assign({},t)),this.metadata._copy(e.metadata),this.stsTokenManager._assign(e.stsTokenManager))}_clone(e){const t=new M(Object.assign(Object.assign({},this),{auth:e,stsTokenManager:this.stsTokenManager._clone()}));return t.metadata._copy(this.metadata),t}_onReload(e){d(!this.reloadListener,this.auth,"internal-error"),this.reloadListener=e,this.reloadUserInfo&&(this._notifyReloadListener(this.reloadUserInfo),this.reloadUserInfo=null)}_notifyReloadListener(e){this.reloadListener?this.reloadListener(e):this.reloadUserInfo=e}_startProactiveRefresh(){this.proactiveRefresh._start()}_stopProactiveRefresh(){this.proactiveRefresh._stop()}async _updateTokensIfNecessary(e,t=!1){let r=!1;e.idToken&&e.idToken!==this.stsTokenManager.accessToken&&(this.stsTokenManager.updateFromServerResponse(e),r=!0),t&&await me(this),await this.auth._persistUserIfCurrent(this),r&&this.auth._notifyListenersIfCurrent(this)}async delete(){const e=await this.getIdToken();return await Q(this,ui(this.auth,{idToken:e})),this.stsTokenManager.clearRefreshToken(),this.auth.signOut()}toJSON(){return Object.assign(Object.assign({uid:this.uid,email:this.email||void 0,emailVerified:this.emailVerified,displayName:this.displayName||void 0,isAnonymous:this.isAnonymous,photoURL:this.photoURL||void 0,phoneNumber:this.phoneNumber||void 0,tenantId:this.tenantId||void 0,providerData:this.providerData.map(e=>Object.assign({},e)),stsTokenManager:this.stsTokenManager.toJSON(),_redirectEventId:this._redirectEventId},this.metadata.toJSON()),{apiKey:this.auth.config.apiKey,appName:this.auth.name})}get refreshToken(){return this.stsTokenManager.refreshToken||""}static _fromJSON(e,t){var r,i,s,o,c,a,l,u;const f=(r=t.displayName)!==null&&r!==void 0?r:void 0,g=(i=t.email)!==null&&i!==void 0?i:void 0,I=(s=t.phoneNumber)!==null&&s!==void 0?s:void 0,V=(o=t.photoURL)!==null&&o!==void 0?o:void 0,Ze=(c=t.tenantId)!==null&&c!==void 0?c:void 0,Se=(a=t._redirectEventId)!==null&&a!==void 0?a:void 0,et=(l=t.createdAt)!==null&&l!==void 0?l:void 0,tt=(u=t.lastLoginAt)!==null&&u!==void 0?u:void 0,{uid:Ae,emailVerified:nt,isAnonymous:rt,providerData:Ce,stsTokenManager:it}=t;d(Ae&&it,e,"internal-error");const wn=Z.fromJSON(this.name,it);d(typeof Ae=="string",e,"internal-error"),S(f,e.name),S(g,e.name),d(typeof nt=="boolean",e,"internal-error"),d(typeof rt=="boolean",e,"internal-error"),S(I,e.name),S(V,e.name),S(Ze,e.name),S(Se,e.name),S(et,e.name),S(tt,e.name);const ke=new M({uid:Ae,auth:e,email:g,emailVerified:nt,displayName:f,isAnonymous:rt,photoURL:V,phoneNumber:I,tenantId:Ze,stsTokenManager:wn,createdAt:et,lastLoginAt:tt});return Ce&&Array.isArray(Ce)&&(ke.providerData=Ce.map(bn=>Object.assign({},bn))),Se&&(ke._redirectEventId=Se),ke}static async _fromIdTokenResponse(e,t,r=!1){const i=new Z;i.updateFromServerResponse(t);const s=new M({uid:t.localId,auth:e,stsTokenManager:i,isAnonymous:r});return await me(s),s}}/**
602
+ * @license
603
+ * Copyright 2020 Google LLC
604
+ *
605
+ * Licensed under the Apache License, Version 2.0 (the "License");
606
+ * you may not use this file except in compliance with the License.
607
+ * You may obtain a copy of the License at
608
+ *
609
+ * http://www.apache.org/licenses/LICENSE-2.0
610
+ *
611
+ * Unless required by applicable law or agreed to in writing, software
612
+ * distributed under the License is distributed on an "AS IS" BASIS,
613
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
614
+ * See the License for the specific language governing permissions and
615
+ * limitations under the License.
616
+ */const mt=new Map;function E(n){w(n instanceof Function,"Expected a class definition");let e=mt.get(n);return e?(w(e instanceof n,"Instance stored in cache mismatched with class"),e):(e=new n,mt.set(n,e),e)}/**
617
+ * @license
618
+ * Copyright 2019 Google LLC
619
+ *
620
+ * Licensed under the Apache License, Version 2.0 (the "License");
621
+ * you may not use this file except in compliance with the License.
622
+ * You may obtain a copy of the License at
623
+ *
624
+ * http://www.apache.org/licenses/LICENSE-2.0
625
+ *
626
+ * Unless required by applicable law or agreed to in writing, software
627
+ * distributed under the License is distributed on an "AS IS" BASIS,
628
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
629
+ * See the License for the specific language governing permissions and
630
+ * limitations under the License.
631
+ */class Yt{constructor(){this.type="NONE",this.storage={}}async _isAvailable(){return!0}async _set(e,t){this.storage[e]=t}async _get(e){const t=this.storage[e];return t===void 0?null:t}async _remove(e){delete this.storage[e]}_addListener(e,t){}_removeListener(e,t){}}Yt.type="NONE";const _t=Yt;/**
632
+ * @license
633
+ * Copyright 2019 Google LLC
634
+ *
635
+ * Licensed under the Apache License, Version 2.0 (the "License");
636
+ * you may not use this file except in compliance with the License.
637
+ * You may obtain a copy of the License at
638
+ *
639
+ * http://www.apache.org/licenses/LICENSE-2.0
640
+ *
641
+ * Unless required by applicable law or agreed to in writing, software
642
+ * distributed under the License is distributed on an "AS IS" BASIS,
643
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
644
+ * See the License for the specific language governing permissions and
645
+ * limitations under the License.
646
+ */function le(n,e,t){return`firebase:${n}:${e}:${t}`}class ${constructor(e,t,r){this.persistence=e,this.auth=t,this.userKey=r;const{config:i,name:s}=this.auth;this.fullUserKey=le(this.userKey,i.apiKey,s),this.fullPersistenceKey=le("persistence",i.apiKey,s),this.boundEventHandler=t._onStorageEvent.bind(t),this.persistence._addListener(this.fullUserKey,this.boundEventHandler)}setCurrentUser(e){return this.persistence._set(this.fullUserKey,e.toJSON())}async getCurrentUser(){const e=await this.persistence._get(this.fullUserKey);return e?M._fromJSON(this.auth,e):null}removeCurrentUser(){return this.persistence._remove(this.fullUserKey)}savePersistenceForRedirect(){return this.persistence._set(this.fullPersistenceKey,this.persistence.type)}async setPersistence(e){if(this.persistence===e)return;const t=await this.getCurrentUser();if(await this.removeCurrentUser(),this.persistence=e,t)return this.setCurrentUser(t)}delete(){this.persistence._removeListener(this.fullUserKey,this.boundEventHandler)}static async create(e,t,r="authUser"){if(!t.length)return new $(E(_t),e,r);const i=(await Promise.all(t.map(async l=>{if(await l._isAvailable())return l}))).filter(l=>l);let s=i[0]||E(_t);const o=le(r,e.config.apiKey,e.name);let c=null;for(const l of t)try{const u=await l._get(o);if(u){const f=M._fromJSON(e,u);l!==s&&(c=f),s=l;break}}catch{}const a=i.filter(l=>l._shouldAllowMigration);return!s._shouldAllowMigration||!a.length?new $(s,e,r):(s=a[0],c&&await s._set(o,c.toJSON()),await Promise.all(t.map(async l=>{if(l!==s)try{await l._remove(o)}catch{}})),new $(s,e,r))}}/**
647
+ * @license
648
+ * Copyright 2020 Google LLC
649
+ *
650
+ * Licensed under the Apache License, Version 2.0 (the "License");
651
+ * you may not use this file except in compliance with the License.
652
+ * You may obtain a copy of the License at
653
+ *
654
+ * http://www.apache.org/licenses/LICENSE-2.0
655
+ *
656
+ * Unless required by applicable law or agreed to in writing, software
657
+ * distributed under the License is distributed on an "AS IS" BASIS,
658
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
659
+ * See the License for the specific language governing permissions and
660
+ * limitations under the License.
661
+ */function vt(n){const e=n.toLowerCase();if(e.includes("opera/")||e.includes("opr/")||e.includes("opios/"))return"Opera";if(Zt(e))return"IEMobile";if(e.includes("msie")||e.includes("trident/"))return"IE";if(e.includes("edge/"))return"Edge";if(Xt(e))return"Firefox";if(e.includes("silk/"))return"Silk";if(tn(e))return"Blackberry";if(nn(e))return"Webos";if(Je(e))return"Safari";if((e.includes("chrome/")||Qt(e))&&!e.includes("edge/"))return"Chrome";if(en(e))return"Android";{const t=/([a-zA-Z\d\.]+)\/[a-zA-Z\d\.]*$/,r=n.match(t);if(r?.length===2)return r[1]}return"Other"}function Xt(n=p()){return/firefox\//i.test(n)}function Je(n=p()){const e=n.toLowerCase();return e.includes("safari/")&&!e.includes("chrome/")&&!e.includes("crios/")&&!e.includes("android")}function Qt(n=p()){return/crios\//i.test(n)}function Zt(n=p()){return/iemobile/i.test(n)}function en(n=p()){return/android/i.test(n)}function tn(n=p()){return/blackberry/i.test(n)}function nn(n=p()){return/webos/i.test(n)}function Ee(n=p()){return/iphone|ipad|ipod/i.test(n)||/macintosh/i.test(n)&&/mobile/i.test(n)}function wi(n=p()){var e;return Ee(n)&&!!(!((e=window.navigator)===null||e===void 0)&&e.standalone)}function bi(){return Un()&&document.documentMode===10}function rn(n=p()){return Ee(n)||en(n)||nn(n)||tn(n)||/windows phone/i.test(n)||Zt(n)}function Ti(){try{return!!(window&&window!==window.top)}catch{return!1}}/**
662
+ * @license
663
+ * Copyright 2020 Google LLC
664
+ *
665
+ * Licensed under the Apache License, Version 2.0 (the "License");
666
+ * you may not use this file except in compliance with the License.
667
+ * You may obtain a copy of the License at
668
+ *
669
+ * http://www.apache.org/licenses/LICENSE-2.0
670
+ *
671
+ * Unless required by applicable law or agreed to in writing, software
672
+ * distributed under the License is distributed on an "AS IS" BASIS,
673
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
674
+ * See the License for the specific language governing permissions and
675
+ * limitations under the License.
676
+ */function sn(n,e=[]){let t;switch(n){case"Browser":t=vt(p());break;case"Worker":t=`${vt(p())}-${n}`;break;default:t=n}const r=e.length?e.join(","):"FirebaseCore-web";return`${t}/JsCore/${re}/${r}`}/**
677
+ * @license
678
+ * Copyright 2022 Google LLC
679
+ *
680
+ * Licensed under the Apache License, Version 2.0 (the "License");
681
+ * you may not use this file except in compliance with the License.
682
+ * You may obtain a copy of the License at
683
+ *
684
+ * http://www.apache.org/licenses/LICENSE-2.0
685
+ *
686
+ * Unless required by applicable law or agreed to in writing, software
687
+ * distributed under the License is distributed on an "AS IS" BASIS,
688
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
689
+ * See the License for the specific language governing permissions and
690
+ * limitations under the License.
691
+ */class Si{constructor(e){this.auth=e,this.queue=[]}pushCallback(e,t){const r=s=>new Promise((o,c)=>{try{const a=e(s);o(a)}catch(a){c(a)}});r.onAbort=t,this.queue.push(r);const i=this.queue.length-1;return()=>{this.queue[i]=()=>Promise.resolve()}}async runMiddleware(e){if(this.auth.currentUser===e)return;const t=[];try{for(const r of this.queue)await r(e),r.onAbort&&t.push(r.onAbort)}catch(r){t.reverse();for(const i of t)try{i()}catch{}throw this.auth._errorFactory.create("login-blocked",{originalMessage:r?.message})}}}/**
692
+ * @license
693
+ * Copyright 2023 Google LLC
694
+ *
695
+ * Licensed under the Apache License, Version 2.0 (the "License");
696
+ * you may not use this file except in compliance with the License.
697
+ * You may obtain a copy of the License at
698
+ *
699
+ * http://www.apache.org/licenses/LICENSE-2.0
700
+ *
701
+ * Unless required by applicable law or agreed to in writing, software
702
+ * distributed under the License is distributed on an "AS IS" BASIS,
703
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
704
+ * See the License for the specific language governing permissions and
705
+ * limitations under the License.
706
+ */async function Ai(n,e={}){return T(n,"GET","/v2/passwordPolicy",D(n,e))}/**
707
+ * @license
708
+ * Copyright 2023 Google LLC
709
+ *
710
+ * Licensed under the Apache License, Version 2.0 (the "License");
711
+ * you may not use this file except in compliance with the License.
712
+ * You may obtain a copy of the License at
713
+ *
714
+ * http://www.apache.org/licenses/LICENSE-2.0
715
+ *
716
+ * Unless required by applicable law or agreed to in writing, software
717
+ * distributed under the License is distributed on an "AS IS" BASIS,
718
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
719
+ * See the License for the specific language governing permissions and
720
+ * limitations under the License.
721
+ */const Ci=6;class ki{constructor(e){var t,r,i,s;const o=e.customStrengthOptions;this.customStrengthOptions={},this.customStrengthOptions.minPasswordLength=(t=o.minPasswordLength)!==null&&t!==void 0?t:Ci,o.maxPasswordLength&&(this.customStrengthOptions.maxPasswordLength=o.maxPasswordLength),o.containsLowercaseCharacter!==void 0&&(this.customStrengthOptions.containsLowercaseLetter=o.containsLowercaseCharacter),o.containsUppercaseCharacter!==void 0&&(this.customStrengthOptions.containsUppercaseLetter=o.containsUppercaseCharacter),o.containsNumericCharacter!==void 0&&(this.customStrengthOptions.containsNumericCharacter=o.containsNumericCharacter),o.containsNonAlphanumericCharacter!==void 0&&(this.customStrengthOptions.containsNonAlphanumericCharacter=o.containsNonAlphanumericCharacter),this.enforcementState=e.enforcementState,this.enforcementState==="ENFORCEMENT_STATE_UNSPECIFIED"&&(this.enforcementState="OFF"),this.allowedNonAlphanumericCharacters=(i=(r=e.allowedNonAlphanumericCharacters)===null||r===void 0?void 0:r.join(""))!==null&&i!==void 0?i:"",this.forceUpgradeOnSignin=(s=e.forceUpgradeOnSignin)!==null&&s!==void 0?s:!1,this.schemaVersion=e.schemaVersion}validatePassword(e){var t,r,i,s,o,c;const a={isValid:!0,passwordPolicy:this};return this.validatePasswordLengthOptions(e,a),this.validatePasswordCharacterOptions(e,a),a.isValid&&(a.isValid=(t=a.meetsMinPasswordLength)!==null&&t!==void 0?t:!0),a.isValid&&(a.isValid=(r=a.meetsMaxPasswordLength)!==null&&r!==void 0?r:!0),a.isValid&&(a.isValid=(i=a.containsLowercaseLetter)!==null&&i!==void 0?i:!0),a.isValid&&(a.isValid=(s=a.containsUppercaseLetter)!==null&&s!==void 0?s:!0),a.isValid&&(a.isValid=(o=a.containsNumericCharacter)!==null&&o!==void 0?o:!0),a.isValid&&(a.isValid=(c=a.containsNonAlphanumericCharacter)!==null&&c!==void 0?c:!0),a}validatePasswordLengthOptions(e,t){const r=this.customStrengthOptions.minPasswordLength,i=this.customStrengthOptions.maxPasswordLength;r&&(t.meetsMinPasswordLength=e.length>=r),i&&(t.meetsMaxPasswordLength=e.length<=i)}validatePasswordCharacterOptions(e,t){this.updatePasswordCharacterOptionsStatuses(t,!1,!1,!1,!1);let r;for(let i=0;i<e.length;i++)r=e.charAt(i),this.updatePasswordCharacterOptionsStatuses(t,r>="a"&&r<="z",r>="A"&&r<="Z",r>="0"&&r<="9",this.allowedNonAlphanumericCharacters.includes(r))}updatePasswordCharacterOptionsStatuses(e,t,r,i,s){this.customStrengthOptions.containsLowercaseLetter&&(e.containsLowercaseLetter||(e.containsLowercaseLetter=t)),this.customStrengthOptions.containsUppercaseLetter&&(e.containsUppercaseLetter||(e.containsUppercaseLetter=r)),this.customStrengthOptions.containsNumericCharacter&&(e.containsNumericCharacter||(e.containsNumericCharacter=i)),this.customStrengthOptions.containsNonAlphanumericCharacter&&(e.containsNonAlphanumericCharacter||(e.containsNonAlphanumericCharacter=s))}}/**
722
+ * @license
723
+ * Copyright 2020 Google LLC
724
+ *
725
+ * Licensed under the Apache License, Version 2.0 (the "License");
726
+ * you may not use this file except in compliance with the License.
727
+ * You may obtain a copy of the License at
728
+ *
729
+ * http://www.apache.org/licenses/LICENSE-2.0
730
+ *
731
+ * Unless required by applicable law or agreed to in writing, software
732
+ * distributed under the License is distributed on an "AS IS" BASIS,
733
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
734
+ * See the License for the specific language governing permissions and
735
+ * limitations under the License.
736
+ */class Ri{constructor(e,t,r,i){this.app=e,this.heartbeatServiceProvider=t,this.appCheckServiceProvider=r,this.config=i,this.currentUser=null,this.emulatorConfig=null,this.operations=Promise.resolve(),this.authStateSubscription=new It(this),this.idTokenSubscription=new It(this),this.beforeStateQueue=new Si(this),this.redirectUser=null,this.isProactiveRefreshEnabled=!1,this.EXPECTED_PASSWORD_POLICY_SCHEMA_VERSION=1,this._canInitEmulator=!0,this._isInitialized=!1,this._deleted=!1,this._initializationPromise=null,this._popupRedirectResolver=null,this._errorFactory=zt,this._agentRecaptchaConfig=null,this._tenantRecaptchaConfigs={},this._projectPasswordPolicy=null,this._tenantPasswordPolicies={},this.lastNotifiedUid=void 0,this.languageCode=null,this.tenantId=null,this.settings={appVerificationDisabledForTesting:!1},this.frameworks=[],this.name=e.name,this.clientVersion=i.sdkClientVersion}_initializeWithPersistence(e,t){return t&&(this._popupRedirectResolver=E(t)),this._initializationPromise=this.queue(async()=>{var r,i;if(!this._deleted&&(this.persistenceManager=await $.create(this,e),!this._deleted)){if(!((r=this._popupRedirectResolver)===null||r===void 0)&&r._shouldInitProactively)try{await this._popupRedirectResolver._initialize(this)}catch{}await this.initializeCurrentUser(t),this.lastNotifiedUid=((i=this.currentUser)===null||i===void 0?void 0:i.uid)||null,!this._deleted&&(this._isInitialized=!0)}}),this._initializationPromise}async _onStorageEvent(){if(this._deleted)return;const e=await this.assertedPersistence.getCurrentUser();if(!(!this.currentUser&&!e)){if(this.currentUser&&e&&this.currentUser.uid===e.uid){this._currentUser._assign(e),await this.currentUser.getIdToken();return}await this._updateCurrentUser(e,!0)}}async initializeCurrentUser(e){var t;const r=await this.assertedPersistence.getCurrentUser();let i=r,s=!1;if(e&&this.config.authDomain){await this.getOrInitRedirectPersistenceManager();const o=(t=this.redirectUser)===null||t===void 0?void 0:t._redirectEventId,c=i?._redirectEventId,a=await this.tryRedirectSignIn(e);(!o||o===c)&&a?.user&&(i=a.user,s=!0)}if(!i)return this.directlySetCurrentUser(null);if(!i._redirectEventId){if(s)try{await this.beforeStateQueue.runMiddleware(i)}catch(o){i=r,this._popupRedirectResolver._overrideRedirectResult(this,()=>Promise.reject(o))}return i?this.reloadAndSetCurrentUserOrClear(i):this.directlySetCurrentUser(null)}return d(this._popupRedirectResolver,this,"argument-error"),await this.getOrInitRedirectPersistenceManager(),this.redirectUser&&this.redirectUser._redirectEventId===i._redirectEventId?this.directlySetCurrentUser(i):this.reloadAndSetCurrentUserOrClear(i)}async tryRedirectSignIn(e){let t=null;try{t=await this._popupRedirectResolver._completeRedirectFn(this,e,!0)}catch{await this._setRedirectUser(null)}return t}async reloadAndSetCurrentUserOrClear(e){try{await me(e)}catch(t){if(t?.code!=="auth/network-request-failed")return this.directlySetCurrentUser(null)}return this.directlySetCurrentUser(e)}useDeviceLanguage(){this.languageCode=ii()}async _delete(){this._deleted=!0}async updateCurrentUser(e){const t=e?b(e):null;return t&&d(t.auth.config.apiKey===this.config.apiKey,this,"invalid-user-token"),this._updateCurrentUser(t&&t._clone(this))}async _updateCurrentUser(e,t=!1){if(!this._deleted)return e&&d(this.tenantId===e.tenantId,this,"tenant-id-mismatch"),t||await this.beforeStateQueue.runMiddleware(e),this.queue(async()=>{await this.directlySetCurrentUser(e),this.notifyAuthListeners()})}async signOut(){return await this.beforeStateQueue.runMiddleware(null),(this.redirectPersistenceManager||this._popupRedirectResolver)&&await this._setRedirectUser(null),this._updateCurrentUser(null,!0)}setPersistence(e){return this.queue(async()=>{await this.assertedPersistence.setPersistence(E(e))})}_getRecaptchaConfig(){return this.tenantId==null?this._agentRecaptchaConfig:this._tenantRecaptchaConfigs[this.tenantId]}async validatePassword(e){this._getPasswordPolicyInternal()||await this._updatePasswordPolicy();const t=this._getPasswordPolicyInternal();return t.schemaVersion!==this.EXPECTED_PASSWORD_POLICY_SCHEMA_VERSION?Promise.reject(this._errorFactory.create("unsupported-password-policy-schema-version",{})):t.validatePassword(e)}_getPasswordPolicyInternal(){return this.tenantId===null?this._projectPasswordPolicy:this._tenantPasswordPolicies[this.tenantId]}async _updatePasswordPolicy(){const e=await Ai(this),t=new ki(e);this.tenantId===null?this._projectPasswordPolicy=t:this._tenantPasswordPolicies[this.tenantId]=t}_getPersistence(){return this.assertedPersistence.persistence.type}_updateErrorMap(e){this._errorFactory=new te("auth","Firebase",e())}onAuthStateChanged(e,t,r){return this.registerStateListener(this.authStateSubscription,e,t,r)}beforeAuthStateChanged(e,t){return this.beforeStateQueue.pushCallback(e,t)}onIdTokenChanged(e,t,r){return this.registerStateListener(this.idTokenSubscription,e,t,r)}authStateReady(){return new Promise((e,t)=>{if(this.currentUser)e();else{const r=this.onAuthStateChanged(()=>{r(),e()},t)}})}async revokeAccessToken(e){if(this.currentUser){const t=await this.currentUser.getIdToken(),r={providerId:"apple.com",tokenType:"ACCESS_TOKEN",token:e,idToken:t};this.tenantId!=null&&(r.tenantId=this.tenantId),await Ei(this,r)}}toJSON(){var e;return{apiKey:this.config.apiKey,authDomain:this.config.authDomain,appName:this.name,currentUser:(e=this._currentUser)===null||e===void 0?void 0:e.toJSON()}}async _setRedirectUser(e,t){const r=await this.getOrInitRedirectPersistenceManager(t);return e===null?r.removeCurrentUser():r.setCurrentUser(e)}async getOrInitRedirectPersistenceManager(e){if(!this.redirectPersistenceManager){const t=e&&E(e)||this._popupRedirectResolver;d(t,this,"argument-error"),this.redirectPersistenceManager=await $.create(this,[E(t._redirectPersistence)],"redirectUser"),this.redirectUser=await this.redirectPersistenceManager.getCurrentUser()}return this.redirectPersistenceManager}async _redirectUserForId(e){var t,r;return this._isInitialized&&await this.queue(async()=>{}),((t=this._currentUser)===null||t===void 0?void 0:t._redirectEventId)===e?this._currentUser:((r=this.redirectUser)===null||r===void 0?void 0:r._redirectEventId)===e?this.redirectUser:null}async _persistUserIfCurrent(e){if(e===this.currentUser)return this.queue(async()=>this.directlySetCurrentUser(e))}_notifyListenersIfCurrent(e){e===this.currentUser&&this.notifyAuthListeners()}_key(){return`${this.config.authDomain}:${this.config.apiKey}:${this.name}`}_startProactiveRefresh(){this.isProactiveRefreshEnabled=!0,this.currentUser&&this._currentUser._startProactiveRefresh()}_stopProactiveRefresh(){this.isProactiveRefreshEnabled=!1,this.currentUser&&this._currentUser._stopProactiveRefresh()}get _currentUser(){return this.currentUser}notifyAuthListeners(){var e,t;if(!this._isInitialized)return;this.idTokenSubscription.next(this.currentUser);const r=(t=(e=this.currentUser)===null||e===void 0?void 0:e.uid)!==null&&t!==void 0?t:null;this.lastNotifiedUid!==r&&(this.lastNotifiedUid=r,this.authStateSubscription.next(this.currentUser))}registerStateListener(e,t,r,i){if(this._deleted)return()=>{};const s=typeof t=="function"?t:t.next.bind(t);let o=!1;const c=this._isInitialized?Promise.resolve():this._initializationPromise;if(d(c,this,"internal-error"),c.then(()=>{o||s(this.currentUser)}),typeof t=="function"){const a=e.addObserver(t,r,i);return()=>{o=!0,a()}}else{const a=e.addObserver(t);return()=>{o=!0,a()}}}async directlySetCurrentUser(e){this.currentUser&&this.currentUser!==e&&this._currentUser._stopProactiveRefresh(),e&&this.isProactiveRefreshEnabled&&e._startProactiveRefresh(),this.currentUser=e,e?await this.assertedPersistence.setCurrentUser(e):await this.assertedPersistence.removeCurrentUser()}queue(e){return this.operations=this.operations.then(e,e),this.operations}get assertedPersistence(){return d(this.persistenceManager,this,"internal-error"),this.persistenceManager}_logFramework(e){!e||this.frameworks.includes(e)||(this.frameworks.push(e),this.frameworks.sort(),this.clientVersion=sn(this.config.clientPlatform,this._getFrameworks()))}_getFrameworks(){return this.frameworks}async _getAdditionalHeaders(){var e;const t={"X-Client-Version":this.clientVersion};this.app.options.appId&&(t["X-Firebase-gmpid"]=this.app.options.appId);const r=await((e=this.heartbeatServiceProvider.getImmediate({optional:!0}))===null||e===void 0?void 0:e.getHeartbeatsHeader());r&&(t["X-Firebase-Client"]=r);const i=await this._getAppCheckToken();return i&&(t["X-Firebase-AppCheck"]=i),t}async _getAppCheckToken(){var e;const t=await((e=this.appCheckServiceProvider.getImmediate({optional:!0}))===null||e===void 0?void 0:e.getToken());return t?.error&&ei(`Error while retrieving App Check token: ${t.error}`),t?.token}}function B(n){return b(n)}class It{constructor(e){this.auth=e,this.observer=null,this.addObserver=Wn(t=>this.observer=t)}get next(){return d(this.observer,this.auth,"internal-error"),this.observer.next.bind(this.observer)}}/**
737
+ * @license
738
+ * Copyright 2020 Google LLC
739
+ *
740
+ * Licensed under the Apache License, Version 2.0 (the "License");
741
+ * you may not use this file except in compliance with the License.
742
+ * You may obtain a copy of the License at
743
+ *
744
+ * http://www.apache.org/licenses/LICENSE-2.0
745
+ *
746
+ * Unless required by applicable law or agreed to in writing, software
747
+ * distributed under the License is distributed on an "AS IS" BASIS,
748
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
749
+ * See the License for the specific language governing permissions and
750
+ * limitations under the License.
751
+ */function Pi(){var n,e;return(e=(n=document.getElementsByTagName("head"))===null||n===void 0?void 0:n[0])!==null&&e!==void 0?e:document}function on(n){return new Promise((e,t)=>{const r=document.createElement("script");r.setAttribute("src",n),r.onload=e,r.onerror=i=>{const s=_("internal-error");s.customData=i,t(s)},r.type="text/javascript",r.charset="UTF-8",Pi().appendChild(r)})}function Oi(n){return`__${n}${Math.floor(Math.random()*1e6)}`}const Ni="https://www.google.com/recaptcha/enterprise.js?render=",Di="recaptcha-enterprise",Li="NO_RECAPTCHA";class Mi{constructor(e){this.type=Di,this.auth=B(e)}async verify(e="verify",t=!1){async function r(s){if(!t){if(s.tenantId==null&&s._agentRecaptchaConfig!=null)return s._agentRecaptchaConfig.siteKey;if(s.tenantId!=null&&s._tenantRecaptchaConfigs[s.tenantId]!==void 0)return s._tenantRecaptchaConfigs[s.tenantId].siteKey}return new Promise(async(o,c)=>{di(s,{clientType:"CLIENT_TYPE_WEB",version:"RECAPTCHA_ENTERPRISE"}).then(a=>{if(a.recaptchaKey===void 0)c(new Error("recaptcha Enterprise site key undefined"));else{const l=new li(a);return s.tenantId==null?s._agentRecaptchaConfig=l:s._tenantRecaptchaConfigs[s.tenantId]=l,o(l.siteKey)}}).catch(a=>{c(a)})})}function i(s,o,c){const a=window.grecaptcha;gt(a)?a.enterprise.ready(()=>{a.enterprise.execute(s,{action:e}).then(l=>{o(l)}).catch(()=>{o(Li)})}):c(Error("No reCAPTCHA enterprise script loaded."))}return new Promise((s,o)=>{r(this.auth).then(c=>{if(!t&&gt(window.grecaptcha))i(c,s,o);else{if(typeof window>"u"){o(new Error("RecaptchaVerifier is only supported in browser"));return}on(Ni+c).then(()=>{i(c,s,o)}).catch(a=>{o(a)})}}).catch(c=>{o(c)})})}}async function yt(n,e,t,r=!1){const i=new Mi(n);let s;try{s=await i.verify(t)}catch{s=await i.verify(t,!0)}const o=Object.assign({},e);return r?Object.assign(o,{captchaResp:s}):Object.assign(o,{captchaResponse:s}),Object.assign(o,{clientType:"CLIENT_TYPE_WEB"}),Object.assign(o,{recaptchaVersion:"RECAPTCHA_ENTERPRISE"}),o}async function He(n,e,t,r){var i;if(!((i=n._getRecaptchaConfig())===null||i===void 0)&&i.isProviderEnabled("EMAIL_PASSWORD_PROVIDER")){const s=await yt(n,e,t,t==="getOobCode");return r(n,s)}else return r(n,e).catch(async s=>{if(s.code==="auth/missing-recaptcha-token"){console.log(`${t} is protected by reCAPTCHA Enterprise for this project. Automatically triggering the reCAPTCHA flow and restarting the flow.`);const o=await yt(n,e,t,t==="getOobCode");return r(n,o)}else return Promise.reject(s)})}/**
752
+ * @license
753
+ * Copyright 2020 Google LLC
754
+ *
755
+ * Licensed under the Apache License, Version 2.0 (the "License");
756
+ * you may not use this file except in compliance with the License.
757
+ * You may obtain a copy of the License at
758
+ *
759
+ * http://www.apache.org/licenses/LICENSE-2.0
760
+ *
761
+ * Unless required by applicable law or agreed to in writing, software
762
+ * distributed under the License is distributed on an "AS IS" BASIS,
763
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
764
+ * See the License for the specific language governing permissions and
765
+ * limitations under the License.
766
+ */function Ui(n,e){const t=Ht(n,"auth");if(t.isInitialized()){const i=t.getImmediate(),s=t.getOptions();if(he(s,e??{}))return i;m(i,"already-initialized")}return t.initialize({options:e})}function Fi(n,e){const t=e?.persistence||[],r=(Array.isArray(t)?t:[t]).map(E);e?.errorMap&&n._updateErrorMap(e.errorMap),n._initializeWithPersistence(r,e?.popupRedirectResolver)}function Bi(n,e,t){const r=B(n);d(r._canInitEmulator,r,"emulator-config-failed"),d(/^https?:\/\//.test(e),r,"invalid-emulator-scheme");const i=!!t?.disableWarnings,s=an(e),{host:o,port:c}=xi(e),a=c===null?"":`:${c}`;r.config.emulator={url:`${s}//${o}${a}/`},r.settings.appVerificationDisabledForTesting=!0,r.emulatorConfig=Object.freeze({host:o,port:c,protocol:s.replace(":",""),options:Object.freeze({disableWarnings:i})}),i||Vi()}function an(n){const e=n.indexOf(":");return e<0?"":n.substr(0,e+1)}function xi(n){const e=an(n),t=/(\/\/)?([^?#/]+)/.exec(n.substr(e.length));if(!t)return{host:"",port:null};const r=t[2].split("@").pop()||"",i=/^(\[[^\]]+\])(:|$)/.exec(r);if(i){const s=i[1];return{host:s,port:Et(r.substr(s.length+1))}}else{const[s,o]=r.split(":");return{host:s,port:Et(o)}}}function Et(n){if(!n)return null;const e=Number(n);return isNaN(e)?null:e}function Vi(){function n(){const e=document.createElement("p"),t=e.style;e.innerText="Running in emulator mode. Do not use with production credentials.",t.position="fixed",t.width="100%",t.backgroundColor="#ffffff",t.border=".1em solid #000000",t.color="#b50000",t.bottom="0px",t.left="0px",t.margin="0px",t.zIndex="10000",t.textAlign="center",e.classList.add("firebase-emulator-warning"),document.body.appendChild(e)}typeof console<"u"&&typeof console.info=="function"&&console.info("WARNING: You are using the Auth Emulator, which is intended for local testing only. Do not use with production credentials."),typeof window<"u"&&typeof document<"u"&&(document.readyState==="loading"?window.addEventListener("DOMContentLoaded",n):n())}/**
767
+ * @license
768
+ * Copyright 2020 Google LLC
769
+ *
770
+ * Licensed under the Apache License, Version 2.0 (the "License");
771
+ * you may not use this file except in compliance with the License.
772
+ * You may obtain a copy of the License at
773
+ *
774
+ * http://www.apache.org/licenses/LICENSE-2.0
775
+ *
776
+ * Unless required by applicable law or agreed to in writing, software
777
+ * distributed under the License is distributed on an "AS IS" BASIS,
778
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
779
+ * See the License for the specific language governing permissions and
780
+ * limitations under the License.
781
+ */class Ye{constructor(e,t){this.providerId=e,this.signInMethod=t}toJSON(){return y("not implemented")}_getIdTokenResponse(e){return y("not implemented")}_linkToIdToken(e,t){return y("not implemented")}_getReauthenticationResolver(e){return y("not implemented")}}async function Hi(n,e){return T(n,"POST","/v1/accounts:signUp",e)}/**
782
+ * @license
783
+ * Copyright 2020 Google LLC
784
+ *
785
+ * Licensed under the Apache License, Version 2.0 (the "License");
786
+ * you may not use this file except in compliance with the License.
787
+ * You may obtain a copy of the License at
788
+ *
789
+ * http://www.apache.org/licenses/LICENSE-2.0
790
+ *
791
+ * Unless required by applicable law or agreed to in writing, software
792
+ * distributed under the License is distributed on an "AS IS" BASIS,
793
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
794
+ * See the License for the specific language governing permissions and
795
+ * limitations under the License.
796
+ */async function $i(n,e){return ye(n,"POST","/v1/accounts:signInWithPassword",D(n,e))}async function Wi(n,e){return T(n,"POST","/v1/accounts:sendOobCode",D(n,e))}async function ji(n,e){return Wi(n,e)}/**
797
+ * @license
798
+ * Copyright 2020 Google LLC
799
+ *
800
+ * Licensed under the Apache License, Version 2.0 (the "License");
801
+ * you may not use this file except in compliance with the License.
802
+ * You may obtain a copy of the License at
803
+ *
804
+ * http://www.apache.org/licenses/LICENSE-2.0
805
+ *
806
+ * Unless required by applicable law or agreed to in writing, software
807
+ * distributed under the License is distributed on an "AS IS" BASIS,
808
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
809
+ * See the License for the specific language governing permissions and
810
+ * limitations under the License.
811
+ */async function zi(n,e){return ye(n,"POST","/v1/accounts:signInWithEmailLink",D(n,e))}async function Gi(n,e){return ye(n,"POST","/v1/accounts:signInWithEmailLink",D(n,e))}/**
812
+ * @license
813
+ * Copyright 2020 Google LLC
814
+ *
815
+ * Licensed under the Apache License, Version 2.0 (the "License");
816
+ * you may not use this file except in compliance with the License.
817
+ * You may obtain a copy of the License at
818
+ *
819
+ * http://www.apache.org/licenses/LICENSE-2.0
820
+ *
821
+ * Unless required by applicable law or agreed to in writing, software
822
+ * distributed under the License is distributed on an "AS IS" BASIS,
823
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
824
+ * See the License for the specific language governing permissions and
825
+ * limitations under the License.
826
+ */class ee extends Ye{constructor(e,t,r,i=null){super("password",r),this._email=e,this._password=t,this._tenantId=i}static _fromEmailAndPassword(e,t){return new ee(e,t,"password")}static _fromEmailAndCode(e,t,r=null){return new ee(e,t,"emailLink",r)}toJSON(){return{email:this._email,password:this._password,signInMethod:this.signInMethod,tenantId:this._tenantId}}static fromJSON(e){const t=typeof e=="string"?JSON.parse(e):e;if(t?.email&&t?.password){if(t.signInMethod==="password")return this._fromEmailAndPassword(t.email,t.password);if(t.signInMethod==="emailLink")return this._fromEmailAndCode(t.email,t.password,t.tenantId)}return null}async _getIdTokenResponse(e){switch(this.signInMethod){case"password":const t={returnSecureToken:!0,email:this._email,password:this._password,clientType:"CLIENT_TYPE_WEB"};return He(e,t,"signInWithPassword",$i);case"emailLink":return zi(e,{email:this._email,oobCode:this._password});default:m(e,"internal-error")}}async _linkToIdToken(e,t){switch(this.signInMethod){case"password":const r={idToken:t,returnSecureToken:!0,email:this._email,password:this._password,clientType:"CLIENT_TYPE_WEB"};return He(e,r,"signUpPassword",Hi);case"emailLink":return Gi(e,{idToken:t,email:this._email,oobCode:this._password});default:m(e,"internal-error")}}_getReauthenticationResolver(e){return this._getIdTokenResponse(e)}}/**
827
+ * @license
828
+ * Copyright 2020 Google LLC
829
+ *
830
+ * Licensed under the Apache License, Version 2.0 (the "License");
831
+ * you may not use this file except in compliance with the License.
832
+ * You may obtain a copy of the License at
833
+ *
834
+ * http://www.apache.org/licenses/LICENSE-2.0
835
+ *
836
+ * Unless required by applicable law or agreed to in writing, software
837
+ * distributed under the License is distributed on an "AS IS" BASIS,
838
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
839
+ * See the License for the specific language governing permissions and
840
+ * limitations under the License.
841
+ */async function W(n,e){return ye(n,"POST","/v1/accounts:signInWithIdp",D(n,e))}/**
842
+ * @license
843
+ * Copyright 2020 Google LLC
844
+ *
845
+ * Licensed under the Apache License, Version 2.0 (the "License");
846
+ * you may not use this file except in compliance with the License.
847
+ * You may obtain a copy of the License at
848
+ *
849
+ * http://www.apache.org/licenses/LICENSE-2.0
850
+ *
851
+ * Unless required by applicable law or agreed to in writing, software
852
+ * distributed under the License is distributed on an "AS IS" BASIS,
853
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
854
+ * See the License for the specific language governing permissions and
855
+ * limitations under the License.
856
+ */const Ki="http://localhost";class F extends Ye{constructor(){super(...arguments),this.pendingToken=null}static _fromParams(e){const t=new F(e.providerId,e.signInMethod);return e.idToken||e.accessToken?(e.idToken&&(t.idToken=e.idToken),e.accessToken&&(t.accessToken=e.accessToken),e.nonce&&!e.pendingToken&&(t.nonce=e.nonce),e.pendingToken&&(t.pendingToken=e.pendingToken)):e.oauthToken&&e.oauthTokenSecret?(t.accessToken=e.oauthToken,t.secret=e.oauthTokenSecret):m("argument-error"),t}toJSON(){return{idToken:this.idToken,accessToken:this.accessToken,secret:this.secret,nonce:this.nonce,pendingToken:this.pendingToken,providerId:this.providerId,signInMethod:this.signInMethod}}static fromJSON(e){const t=typeof e=="string"?JSON.parse(e):e,{providerId:r,signInMethod:i}=t,s=ze(t,["providerId","signInMethod"]);if(!r||!i)return null;const o=new F(r,i);return o.idToken=s.idToken||void 0,o.accessToken=s.accessToken||void 0,o.secret=s.secret,o.nonce=s.nonce,o.pendingToken=s.pendingToken||null,o}_getIdTokenResponse(e){const t=this.buildRequest();return W(e,t)}_linkToIdToken(e,t){const r=this.buildRequest();return r.idToken=t,W(e,r)}_getReauthenticationResolver(e){const t=this.buildRequest();return t.autoCreate=!1,W(e,t)}buildRequest(){const e={requestUri:Ki,returnSecureToken:!0};if(this.pendingToken)e.pendingToken=this.pendingToken;else{const t={};this.idToken&&(t.id_token=this.idToken),this.accessToken&&(t.access_token=this.accessToken),this.secret&&(t.oauth_token_secret=this.secret),t.providerId=this.providerId,this.nonce&&!this.pendingToken&&(t.nonce=this.nonce),e.postBody=ne(t)}return e}}/**
857
+ * @license
858
+ * Copyright 2020 Google LLC
859
+ *
860
+ * Licensed under the Apache License, Version 2.0 (the "License");
861
+ * you may not use this file except in compliance with the License.
862
+ * You may obtain a copy of the License at
863
+ *
864
+ * http://www.apache.org/licenses/LICENSE-2.0
865
+ *
866
+ * Unless required by applicable law or agreed to in writing, software
867
+ * distributed under the License is distributed on an "AS IS" BASIS,
868
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
869
+ * See the License for the specific language governing permissions and
870
+ * limitations under the License.
871
+ */function qi(n){switch(n){case"recoverEmail":return"RECOVER_EMAIL";case"resetPassword":return"PASSWORD_RESET";case"signIn":return"EMAIL_SIGNIN";case"verifyEmail":return"VERIFY_EMAIL";case"verifyAndChangeEmail":return"VERIFY_AND_CHANGE_EMAIL";case"revertSecondFactorAddition":return"REVERT_SECOND_FACTOR_ADDITION";default:return null}}function Ji(n){const e=G(K(n)).link,t=e?G(K(e)).deep_link_id:null,r=G(K(n)).deep_link_id;return(r?G(K(r)).link:null)||r||t||e||n}class we{constructor(e){var t,r,i,s,o,c;const a=G(K(e)),l=(t=a.apiKey)!==null&&t!==void 0?t:null,u=(r=a.oobCode)!==null&&r!==void 0?r:null,f=qi((i=a.mode)!==null&&i!==void 0?i:null);d(l&&u&&f,"argument-error"),this.apiKey=l,this.operation=f,this.code=u,this.continueUrl=(s=a.continueUrl)!==null&&s!==void 0?s:null,this.languageCode=(o=a.languageCode)!==null&&o!==void 0?o:null,this.tenantId=(c=a.tenantId)!==null&&c!==void 0?c:null}static parseLink(e){const t=Ji(e);try{return new we(t)}catch{return null}}}/**
872
+ * @license
873
+ * Copyright 2020 Google LLC
874
+ *
875
+ * Licensed under the Apache License, Version 2.0 (the "License");
876
+ * you may not use this file except in compliance with the License.
877
+ * You may obtain a copy of the License at
878
+ *
879
+ * http://www.apache.org/licenses/LICENSE-2.0
880
+ *
881
+ * Unless required by applicable law or agreed to in writing, software
882
+ * distributed under the License is distributed on an "AS IS" BASIS,
883
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
884
+ * See the License for the specific language governing permissions and
885
+ * limitations under the License.
886
+ */class x{constructor(){this.providerId=x.PROVIDER_ID}static credential(e,t){return ee._fromEmailAndPassword(e,t)}static credentialWithLink(e,t){const r=we.parseLink(t);return d(r,"argument-error"),ee._fromEmailAndCode(e,r.code,r.tenantId)}}x.PROVIDER_ID="password";x.EMAIL_PASSWORD_SIGN_IN_METHOD="password";x.EMAIL_LINK_SIGN_IN_METHOD="emailLink";/**
887
+ * @license
888
+ * Copyright 2020 Google LLC
889
+ *
890
+ * Licensed under the Apache License, Version 2.0 (the "License");
891
+ * you may not use this file except in compliance with the License.
892
+ * You may obtain a copy of the License at
893
+ *
894
+ * http://www.apache.org/licenses/LICENSE-2.0
895
+ *
896
+ * Unless required by applicable law or agreed to in writing, software
897
+ * distributed under the License is distributed on an "AS IS" BASIS,
898
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
899
+ * See the License for the specific language governing permissions and
900
+ * limitations under the License.
901
+ */class cn{constructor(e){this.providerId=e,this.defaultLanguageCode=null,this.customParameters={}}setDefaultLanguage(e){this.defaultLanguageCode=e}setCustomParameters(e){return this.customParameters=e,this}getCustomParameters(){return this.customParameters}}/**
902
+ * @license
903
+ * Copyright 2019 Google LLC
904
+ *
905
+ * Licensed under the Apache License, Version 2.0 (the "License");
906
+ * you may not use this file except in compliance with the License.
907
+ * You may obtain a copy of the License at
908
+ *
909
+ * http://www.apache.org/licenses/LICENSE-2.0
910
+ *
911
+ * Unless required by applicable law or agreed to in writing, software
912
+ * distributed under the License is distributed on an "AS IS" BASIS,
913
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
914
+ * See the License for the specific language governing permissions and
915
+ * limitations under the License.
916
+ */class se extends cn{constructor(){super(...arguments),this.scopes=[]}addScope(e){return this.scopes.includes(e)||this.scopes.push(e),this}getScopes(){return[...this.scopes]}}/**
917
+ * @license
918
+ * Copyright 2020 Google LLC
919
+ *
920
+ * Licensed under the Apache License, Version 2.0 (the "License");
921
+ * you may not use this file except in compliance with the License.
922
+ * You may obtain a copy of the License at
923
+ *
924
+ * http://www.apache.org/licenses/LICENSE-2.0
925
+ *
926
+ * Unless required by applicable law or agreed to in writing, software
927
+ * distributed under the License is distributed on an "AS IS" BASIS,
928
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
929
+ * See the License for the specific language governing permissions and
930
+ * limitations under the License.
931
+ */class A extends se{constructor(){super("facebook.com")}static credential(e){return F._fromParams({providerId:A.PROVIDER_ID,signInMethod:A.FACEBOOK_SIGN_IN_METHOD,accessToken:e})}static credentialFromResult(e){return A.credentialFromTaggedObject(e)}static credentialFromError(e){return A.credentialFromTaggedObject(e.customData||{})}static credentialFromTaggedObject({_tokenResponse:e}){if(!e||!("oauthAccessToken"in e)||!e.oauthAccessToken)return null;try{return A.credential(e.oauthAccessToken)}catch{return null}}}A.FACEBOOK_SIGN_IN_METHOD="facebook.com";A.PROVIDER_ID="facebook.com";/**
932
+ * @license
933
+ * Copyright 2020 Google LLC
934
+ *
935
+ * Licensed under the Apache License, Version 2.0 (the "License");
936
+ * you may not use this file except in compliance with the License.
937
+ * You may obtain a copy of the License at
938
+ *
939
+ * http://www.apache.org/licenses/LICENSE-2.0
940
+ *
941
+ * Unless required by applicable law or agreed to in writing, software
942
+ * distributed under the License is distributed on an "AS IS" BASIS,
943
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
944
+ * See the License for the specific language governing permissions and
945
+ * limitations under the License.
946
+ */class C extends se{constructor(){super("google.com"),this.addScope("profile")}static credential(e,t){return F._fromParams({providerId:C.PROVIDER_ID,signInMethod:C.GOOGLE_SIGN_IN_METHOD,idToken:e,accessToken:t})}static credentialFromResult(e){return C.credentialFromTaggedObject(e)}static credentialFromError(e){return C.credentialFromTaggedObject(e.customData||{})}static credentialFromTaggedObject({_tokenResponse:e}){if(!e)return null;const{oauthIdToken:t,oauthAccessToken:r}=e;if(!t&&!r)return null;try{return C.credential(t,r)}catch{return null}}}C.GOOGLE_SIGN_IN_METHOD="google.com";C.PROVIDER_ID="google.com";/**
947
+ * @license
948
+ * Copyright 2020 Google LLC
949
+ *
950
+ * Licensed under the Apache License, Version 2.0 (the "License");
951
+ * you may not use this file except in compliance with the License.
952
+ * You may obtain a copy of the License at
953
+ *
954
+ * http://www.apache.org/licenses/LICENSE-2.0
955
+ *
956
+ * Unless required by applicable law or agreed to in writing, software
957
+ * distributed under the License is distributed on an "AS IS" BASIS,
958
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
959
+ * See the License for the specific language governing permissions and
960
+ * limitations under the License.
961
+ */class k extends se{constructor(){super("github.com")}static credential(e){return F._fromParams({providerId:k.PROVIDER_ID,signInMethod:k.GITHUB_SIGN_IN_METHOD,accessToken:e})}static credentialFromResult(e){return k.credentialFromTaggedObject(e)}static credentialFromError(e){return k.credentialFromTaggedObject(e.customData||{})}static credentialFromTaggedObject({_tokenResponse:e}){if(!e||!("oauthAccessToken"in e)||!e.oauthAccessToken)return null;try{return k.credential(e.oauthAccessToken)}catch{return null}}}k.GITHUB_SIGN_IN_METHOD="github.com";k.PROVIDER_ID="github.com";/**
962
+ * @license
963
+ * Copyright 2020 Google LLC
964
+ *
965
+ * Licensed under the Apache License, Version 2.0 (the "License");
966
+ * you may not use this file except in compliance with the License.
967
+ * You may obtain a copy of the License at
968
+ *
969
+ * http://www.apache.org/licenses/LICENSE-2.0
970
+ *
971
+ * Unless required by applicable law or agreed to in writing, software
972
+ * distributed under the License is distributed on an "AS IS" BASIS,
973
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
974
+ * See the License for the specific language governing permissions and
975
+ * limitations under the License.
976
+ */class R extends se{constructor(){super("twitter.com")}static credential(e,t){return F._fromParams({providerId:R.PROVIDER_ID,signInMethod:R.TWITTER_SIGN_IN_METHOD,oauthToken:e,oauthTokenSecret:t})}static credentialFromResult(e){return R.credentialFromTaggedObject(e)}static credentialFromError(e){return R.credentialFromTaggedObject(e.customData||{})}static credentialFromTaggedObject({_tokenResponse:e}){if(!e)return null;const{oauthAccessToken:t,oauthTokenSecret:r}=e;if(!t||!r)return null;try{return R.credential(t,r)}catch{return null}}}R.TWITTER_SIGN_IN_METHOD="twitter.com";R.PROVIDER_ID="twitter.com";/**
977
+ * @license
978
+ * Copyright 2020 Google LLC
979
+ *
980
+ * Licensed under the Apache License, Version 2.0 (the "License");
981
+ * you may not use this file except in compliance with the License.
982
+ * You may obtain a copy of the License at
983
+ *
984
+ * http://www.apache.org/licenses/LICENSE-2.0
985
+ *
986
+ * Unless required by applicable law or agreed to in writing, software
987
+ * distributed under the License is distributed on an "AS IS" BASIS,
988
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
989
+ * See the License for the specific language governing permissions and
990
+ * limitations under the License.
991
+ */class z{constructor(e){this.user=e.user,this.providerId=e.providerId,this._tokenResponse=e._tokenResponse,this.operationType=e.operationType}static async _fromIdTokenResponse(e,t,r,i=!1){const s=await M._fromIdTokenResponse(e,r,i),o=wt(r);return new z({user:s,providerId:o,_tokenResponse:r,operationType:t})}static async _forOperation(e,t,r){await e._updateTokensIfNecessary(r,!0);const i=wt(r);return new z({user:e,providerId:i,_tokenResponse:r,operationType:t})}}function wt(n){return n.providerId?n.providerId:"phoneNumber"in n?"phone":null}/**
992
+ * @license
993
+ * Copyright 2020 Google LLC
994
+ *
995
+ * Licensed under the Apache License, Version 2.0 (the "License");
996
+ * you may not use this file except in compliance with the License.
997
+ * You may obtain a copy of the License at
998
+ *
999
+ * http://www.apache.org/licenses/LICENSE-2.0
1000
+ *
1001
+ * Unless required by applicable law or agreed to in writing, software
1002
+ * distributed under the License is distributed on an "AS IS" BASIS,
1003
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1004
+ * See the License for the specific language governing permissions and
1005
+ * limitations under the License.
1006
+ */class _e extends N{constructor(e,t,r,i){var s;super(t.code,t.message),this.operationType=r,this.user=i,Object.setPrototypeOf(this,_e.prototype),this.customData={appName:e.name,tenantId:(s=e.tenantId)!==null&&s!==void 0?s:void 0,_serverResponse:t.customData._serverResponse,operationType:r}}static _fromErrorAndOperation(e,t,r,i){return new _e(e,t,r,i)}}function ln(n,e,t,r){return(e==="reauthenticate"?t._getReauthenticationResolver(n):t._getIdTokenResponse(n)).catch(s=>{throw s.code==="auth/multi-factor-auth-required"?_e._fromErrorAndOperation(n,s,e,r):s})}async function Yi(n,e,t=!1){const r=await Q(n,e._linkToIdToken(n.auth,await n.getIdToken()),t);return z._forOperation(n,"link",r)}/**
1007
+ * @license
1008
+ * Copyright 2019 Google LLC
1009
+ *
1010
+ * Licensed under the Apache License, Version 2.0 (the "License");
1011
+ * you may not use this file except in compliance with the License.
1012
+ * You may obtain a copy of the License at
1013
+ *
1014
+ * http://www.apache.org/licenses/LICENSE-2.0
1015
+ *
1016
+ * Unless required by applicable law or agreed to in writing, software
1017
+ * distributed under the License is distributed on an "AS IS" BASIS,
1018
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1019
+ * See the License for the specific language governing permissions and
1020
+ * limitations under the License.
1021
+ */async function Xi(n,e,t=!1){const{auth:r}=n,i="reauthenticate";try{const s=await Q(n,ln(r,i,e,n),t);d(s.idToken,r,"internal-error");const o=qe(s.idToken);d(o,r,"internal-error");const{sub:c}=o;return d(n.uid===c,r,"user-mismatch"),z._forOperation(n,i,s)}catch(s){throw s?.code==="auth/user-not-found"&&m(r,"user-mismatch"),s}}/**
1022
+ * @license
1023
+ * Copyright 2020 Google LLC
1024
+ *
1025
+ * Licensed under the Apache License, Version 2.0 (the "License");
1026
+ * you may not use this file except in compliance with the License.
1027
+ * You may obtain a copy of the License at
1028
+ *
1029
+ * http://www.apache.org/licenses/LICENSE-2.0
1030
+ *
1031
+ * Unless required by applicable law or agreed to in writing, software
1032
+ * distributed under the License is distributed on an "AS IS" BASIS,
1033
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1034
+ * See the License for the specific language governing permissions and
1035
+ * limitations under the License.
1036
+ */async function dn(n,e,t=!1){const r="signIn",i=await ln(n,r,e),s=await z._fromIdTokenResponse(n,r,i);return t||await n._updateCurrentUser(s.user),s}async function un(n,e){return dn(B(n),e)}/**
1037
+ * @license
1038
+ * Copyright 2020 Google LLC
1039
+ *
1040
+ * Licensed under the Apache License, Version 2.0 (the "License");
1041
+ * you may not use this file except in compliance with the License.
1042
+ * You may obtain a copy of the License at
1043
+ *
1044
+ * http://www.apache.org/licenses/LICENSE-2.0
1045
+ *
1046
+ * Unless required by applicable law or agreed to in writing, software
1047
+ * distributed under the License is distributed on an "AS IS" BASIS,
1048
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1049
+ * See the License for the specific language governing permissions and
1050
+ * limitations under the License.
1051
+ */function Qi(n,e,t){var r;d(((r=t.url)===null||r===void 0?void 0:r.length)>0,n,"invalid-continue-uri"),d(typeof t.dynamicLinkDomain>"u"||t.dynamicLinkDomain.length>0,n,"invalid-dynamic-link-domain"),e.continueUrl=t.url,e.dynamicLinkDomain=t.dynamicLinkDomain,e.canHandleCodeInApp=t.handleCodeInApp,t.iOS&&(d(t.iOS.bundleId.length>0,n,"missing-ios-bundle-id"),e.iOSBundleId=t.iOS.bundleId),t.android&&(d(t.android.packageName.length>0,n,"missing-android-pkg-name"),e.androidInstallApp=t.android.installApp,e.androidMinimumVersionCode=t.android.minimumVersion,e.androidPackageName=t.android.packageName)}/**
1052
+ * @license
1053
+ * Copyright 2020 Google LLC
1054
+ *
1055
+ * Licensed under the Apache License, Version 2.0 (the "License");
1056
+ * you may not use this file except in compliance with the License.
1057
+ * You may obtain a copy of the License at
1058
+ *
1059
+ * http://www.apache.org/licenses/LICENSE-2.0
1060
+ *
1061
+ * Unless required by applicable law or agreed to in writing, software
1062
+ * distributed under the License is distributed on an "AS IS" BASIS,
1063
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1064
+ * See the License for the specific language governing permissions and
1065
+ * limitations under the License.
1066
+ */async function Zi(n){const e=B(n);e._getPasswordPolicyInternal()&&await e._updatePasswordPolicy()}function po(n,e,t){return un(b(n),x.credential(e,t)).catch(async r=>{throw r.code==="auth/password-does-not-meet-requirements"&&Zi(n),r})}/**
1067
+ * @license
1068
+ * Copyright 2020 Google LLC
1069
+ *
1070
+ * Licensed under the Apache License, Version 2.0 (the "License");
1071
+ * you may not use this file except in compliance with the License.
1072
+ * You may obtain a copy of the License at
1073
+ *
1074
+ * http://www.apache.org/licenses/LICENSE-2.0
1075
+ *
1076
+ * Unless required by applicable law or agreed to in writing, software
1077
+ * distributed under the License is distributed on an "AS IS" BASIS,
1078
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1079
+ * See the License for the specific language governing permissions and
1080
+ * limitations under the License.
1081
+ */async function go(n,e,t){const r=B(n),i={requestType:"EMAIL_SIGNIN",email:e,clientType:"CLIENT_TYPE_WEB"};function s(o,c){d(c.handleCodeInApp,r,"argument-error"),c&&Qi(r,o,c)}s(i,t),await He(r,i,"getOobCode",ji)}function mo(n,e){const t=we.parseLink(e);return t?.operation==="EMAIL_SIGNIN"}async function _o(n,e,t){const r=b(n),i=x.credentialWithLink(e,t||ge());return d(i._tenantId===(r.tenantId||null),r,"tenant-id-mismatch"),un(r,i)}function es(n,e,t,r){return b(n).onIdTokenChanged(e,t,r)}function ts(n,e,t){return b(n).beforeAuthStateChanged(e,t)}function vo(n,e,t,r){return b(n).onAuthStateChanged(e,t,r)}const ve="__sak";/**
1082
+ * @license
1083
+ * Copyright 2019 Google LLC
1084
+ *
1085
+ * Licensed under the Apache License, Version 2.0 (the "License");
1086
+ * you may not use this file except in compliance with the License.
1087
+ * You may obtain a copy of the License at
1088
+ *
1089
+ * http://www.apache.org/licenses/LICENSE-2.0
1090
+ *
1091
+ * Unless required by applicable law or agreed to in writing, software
1092
+ * distributed under the License is distributed on an "AS IS" BASIS,
1093
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1094
+ * See the License for the specific language governing permissions and
1095
+ * limitations under the License.
1096
+ */class hn{constructor(e,t){this.storageRetriever=e,this.type=t}_isAvailable(){try{return this.storage?(this.storage.setItem(ve,"1"),this.storage.removeItem(ve),Promise.resolve(!0)):Promise.resolve(!1)}catch{return Promise.resolve(!1)}}_set(e,t){return this.storage.setItem(e,JSON.stringify(t)),Promise.resolve()}_get(e){const t=this.storage.getItem(e);return Promise.resolve(t?JSON.parse(t):null)}_remove(e){return this.storage.removeItem(e),Promise.resolve()}get storage(){return this.storageRetriever()}}/**
1097
+ * @license
1098
+ * Copyright 2020 Google LLC
1099
+ *
1100
+ * Licensed under the Apache License, Version 2.0 (the "License");
1101
+ * you may not use this file except in compliance with the License.
1102
+ * You may obtain a copy of the License at
1103
+ *
1104
+ * http://www.apache.org/licenses/LICENSE-2.0
1105
+ *
1106
+ * Unless required by applicable law or agreed to in writing, software
1107
+ * distributed under the License is distributed on an "AS IS" BASIS,
1108
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1109
+ * See the License for the specific language governing permissions and
1110
+ * limitations under the License.
1111
+ */function ns(){const n=p();return Je(n)||Ee(n)}const rs=1e3,is=10;class fn extends hn{constructor(){super(()=>window.localStorage,"LOCAL"),this.boundEventHandler=(e,t)=>this.onStorageEvent(e,t),this.listeners={},this.localCache={},this.pollTimer=null,this.safariLocalStorageNotSynced=ns()&&Ti(),this.fallbackToPolling=rn(),this._shouldAllowMigration=!0}forAllChangedKeys(e){for(const t of Object.keys(this.listeners)){const r=this.storage.getItem(t),i=this.localCache[t];r!==i&&e(t,i,r)}}onStorageEvent(e,t=!1){if(!e.key){this.forAllChangedKeys((o,c,a)=>{this.notifyListeners(o,a)});return}const r=e.key;if(t?this.detachListener():this.stopPolling(),this.safariLocalStorageNotSynced){const o=this.storage.getItem(r);if(e.newValue!==o)e.newValue!==null?this.storage.setItem(r,e.newValue):this.storage.removeItem(r);else if(this.localCache[r]===e.newValue&&!t)return}const i=()=>{const o=this.storage.getItem(r);!t&&this.localCache[r]===o||this.notifyListeners(r,o)},s=this.storage.getItem(r);bi()&&s!==e.newValue&&e.newValue!==e.oldValue?setTimeout(i,is):i()}notifyListeners(e,t){this.localCache[e]=t;const r=this.listeners[e];if(r)for(const i of Array.from(r))i(t&&JSON.parse(t))}startPolling(){this.stopPolling(),this.pollTimer=setInterval(()=>{this.forAllChangedKeys((e,t,r)=>{this.onStorageEvent(new StorageEvent("storage",{key:e,oldValue:t,newValue:r}),!0)})},rs)}stopPolling(){this.pollTimer&&(clearInterval(this.pollTimer),this.pollTimer=null)}attachListener(){window.addEventListener("storage",this.boundEventHandler)}detachListener(){window.removeEventListener("storage",this.boundEventHandler)}_addListener(e,t){Object.keys(this.listeners).length===0&&(this.fallbackToPolling?this.startPolling():this.attachListener()),this.listeners[e]||(this.listeners[e]=new Set,this.localCache[e]=this.storage.getItem(e)),this.listeners[e].add(t)}_removeListener(e,t){this.listeners[e]&&(this.listeners[e].delete(t),this.listeners[e].size===0&&delete this.listeners[e]),Object.keys(this.listeners).length===0&&(this.detachListener(),this.stopPolling())}async _set(e,t){await super._set(e,t),this.localCache[e]=JSON.stringify(t)}async _get(e){const t=await super._get(e);return this.localCache[e]=JSON.stringify(t),t}async _remove(e){await super._remove(e),delete this.localCache[e]}}fn.type="LOCAL";const ss=fn;/**
1112
+ * @license
1113
+ * Copyright 2020 Google LLC
1114
+ *
1115
+ * Licensed under the Apache License, Version 2.0 (the "License");
1116
+ * you may not use this file except in compliance with the License.
1117
+ * You may obtain a copy of the License at
1118
+ *
1119
+ * http://www.apache.org/licenses/LICENSE-2.0
1120
+ *
1121
+ * Unless required by applicable law or agreed to in writing, software
1122
+ * distributed under the License is distributed on an "AS IS" BASIS,
1123
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1124
+ * See the License for the specific language governing permissions and
1125
+ * limitations under the License.
1126
+ */class pn extends hn{constructor(){super(()=>window.sessionStorage,"SESSION")}_addListener(e,t){}_removeListener(e,t){}}pn.type="SESSION";const gn=pn;/**
1127
+ * @license
1128
+ * Copyright 2019 Google LLC
1129
+ *
1130
+ * Licensed under the Apache License, Version 2.0 (the "License");
1131
+ * you may not use this file except in compliance with the License.
1132
+ * You may obtain a copy of the License at
1133
+ *
1134
+ * http://www.apache.org/licenses/LICENSE-2.0
1135
+ *
1136
+ * Unless required by applicable law or agreed to in writing, software
1137
+ * distributed under the License is distributed on an "AS IS" BASIS,
1138
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1139
+ * See the License for the specific language governing permissions and
1140
+ * limitations under the License.
1141
+ */function os(n){return Promise.all(n.map(async e=>{try{return{fulfilled:!0,value:await e}}catch(t){return{fulfilled:!1,reason:t}}}))}/**
1142
+ * @license
1143
+ * Copyright 2019 Google LLC
1144
+ *
1145
+ * Licensed under the Apache License, Version 2.0 (the "License");
1146
+ * you may not use this file except in compliance with the License.
1147
+ * You may obtain a copy of the License at
1148
+ *
1149
+ * http://www.apache.org/licenses/LICENSE-2.0
1150
+ *
1151
+ * Unless required by applicable law or agreed to in writing, software
1152
+ * distributed under the License is distributed on an "AS IS" BASIS,
1153
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1154
+ * See the License for the specific language governing permissions and
1155
+ * limitations under the License.
1156
+ */class be{constructor(e){this.eventTarget=e,this.handlersMap={},this.boundEventHandler=this.handleEvent.bind(this)}static _getInstance(e){const t=this.receivers.find(i=>i.isListeningto(e));if(t)return t;const r=new be(e);return this.receivers.push(r),r}isListeningto(e){return this.eventTarget===e}async handleEvent(e){const t=e,{eventId:r,eventType:i,data:s}=t.data,o=this.handlersMap[i];if(!o?.size)return;t.ports[0].postMessage({status:"ack",eventId:r,eventType:i});const c=Array.from(o).map(async l=>l(t.origin,s)),a=await os(c);t.ports[0].postMessage({status:"done",eventId:r,eventType:i,response:a})}_subscribe(e,t){Object.keys(this.handlersMap).length===0&&this.eventTarget.addEventListener("message",this.boundEventHandler),this.handlersMap[e]||(this.handlersMap[e]=new Set),this.handlersMap[e].add(t)}_unsubscribe(e,t){this.handlersMap[e]&&t&&this.handlersMap[e].delete(t),(!t||this.handlersMap[e].size===0)&&delete this.handlersMap[e],Object.keys(this.handlersMap).length===0&&this.eventTarget.removeEventListener("message",this.boundEventHandler)}}be.receivers=[];/**
1157
+ * @license
1158
+ * Copyright 2020 Google LLC
1159
+ *
1160
+ * Licensed under the Apache License, Version 2.0 (the "License");
1161
+ * you may not use this file except in compliance with the License.
1162
+ * You may obtain a copy of the License at
1163
+ *
1164
+ * http://www.apache.org/licenses/LICENSE-2.0
1165
+ *
1166
+ * Unless required by applicable law or agreed to in writing, software
1167
+ * distributed under the License is distributed on an "AS IS" BASIS,
1168
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1169
+ * See the License for the specific language governing permissions and
1170
+ * limitations under the License.
1171
+ */function Xe(n="",e=10){let t="";for(let r=0;r<e;r++)t+=Math.floor(Math.random()*10);return n+t}/**
1172
+ * @license
1173
+ * Copyright 2019 Google LLC
1174
+ *
1175
+ * Licensed under the Apache License, Version 2.0 (the "License");
1176
+ * you may not use this file except in compliance with the License.
1177
+ * You may obtain a copy of the License at
1178
+ *
1179
+ * http://www.apache.org/licenses/LICENSE-2.0
1180
+ *
1181
+ * Unless required by applicable law or agreed to in writing, software
1182
+ * distributed under the License is distributed on an "AS IS" BASIS,
1183
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1184
+ * See the License for the specific language governing permissions and
1185
+ * limitations under the License.
1186
+ */class as{constructor(e){this.target=e,this.handlers=new Set}removeMessageHandler(e){e.messageChannel&&(e.messageChannel.port1.removeEventListener("message",e.onMessage),e.messageChannel.port1.close()),this.handlers.delete(e)}async _send(e,t,r=50){const i=typeof MessageChannel<"u"?new MessageChannel:null;if(!i)throw new Error("connection_unavailable");let s,o;return new Promise((c,a)=>{const l=Xe("",20);i.port1.start();const u=setTimeout(()=>{a(new Error("unsupported_event"))},r);o={messageChannel:i,onMessage(f){const g=f;if(g.data.eventId===l)switch(g.data.status){case"ack":clearTimeout(u),s=setTimeout(()=>{a(new Error("timeout"))},3e3);break;case"done":clearTimeout(s),c(g.data.response);break;default:clearTimeout(u),clearTimeout(s),a(new Error("invalid_response"));break}}},this.handlers.add(o),i.port1.addEventListener("message",o.onMessage),this.target.postMessage({eventType:e,eventId:l,data:t},[i.port2])}).finally(()=>{o&&this.removeMessageHandler(o)})}}/**
1187
+ * @license
1188
+ * Copyright 2020 Google LLC
1189
+ *
1190
+ * Licensed under the Apache License, Version 2.0 (the "License");
1191
+ * you may not use this file except in compliance with the License.
1192
+ * You may obtain a copy of the License at
1193
+ *
1194
+ * http://www.apache.org/licenses/LICENSE-2.0
1195
+ *
1196
+ * Unless required by applicable law or agreed to in writing, software
1197
+ * distributed under the License is distributed on an "AS IS" BASIS,
1198
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1199
+ * See the License for the specific language governing permissions and
1200
+ * limitations under the License.
1201
+ */function v(){return window}function cs(n){v().location.href=n}/**
1202
+ * @license
1203
+ * Copyright 2020 Google LLC.
1204
+ *
1205
+ * Licensed under the Apache License, Version 2.0 (the "License");
1206
+ * you may not use this file except in compliance with the License.
1207
+ * You may obtain a copy of the License at
1208
+ *
1209
+ * http://www.apache.org/licenses/LICENSE-2.0
1210
+ *
1211
+ * Unless required by applicable law or agreed to in writing, software
1212
+ * distributed under the License is distributed on an "AS IS" BASIS,
1213
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1214
+ * See the License for the specific language governing permissions and
1215
+ * limitations under the License.
1216
+ */function mn(){return typeof v().WorkerGlobalScope<"u"&&typeof v().importScripts=="function"}async function ls(){if(!navigator?.serviceWorker)return null;try{return(await navigator.serviceWorker.ready).active}catch{return null}}function ds(){var n;return((n=navigator?.serviceWorker)===null||n===void 0?void 0:n.controller)||null}function us(){return mn()?self:null}/**
1217
+ * @license
1218
+ * Copyright 2019 Google LLC
1219
+ *
1220
+ * Licensed under the Apache License, Version 2.0 (the "License");
1221
+ * you may not use this file except in compliance with the License.
1222
+ * You may obtain a copy of the License at
1223
+ *
1224
+ * http://www.apache.org/licenses/LICENSE-2.0
1225
+ *
1226
+ * Unless required by applicable law or agreed to in writing, software
1227
+ * distributed under the License is distributed on an "AS IS" BASIS,
1228
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1229
+ * See the License for the specific language governing permissions and
1230
+ * limitations under the License.
1231
+ */const _n="firebaseLocalStorageDb",hs=1,Ie="firebaseLocalStorage",vn="fbase_key";class oe{constructor(e){this.request=e}toPromise(){return new Promise((e,t)=>{this.request.addEventListener("success",()=>{e(this.request.result)}),this.request.addEventListener("error",()=>{t(this.request.error)})})}}function Te(n,e){return n.transaction([Ie],e?"readwrite":"readonly").objectStore(Ie)}function fs(){const n=indexedDB.deleteDatabase(_n);return new oe(n).toPromise()}function $e(){const n=indexedDB.open(_n,hs);return new Promise((e,t)=>{n.addEventListener("error",()=>{t(n.error)}),n.addEventListener("upgradeneeded",()=>{const r=n.result;try{r.createObjectStore(Ie,{keyPath:vn})}catch(i){t(i)}}),n.addEventListener("success",async()=>{const r=n.result;r.objectStoreNames.contains(Ie)?e(r):(r.close(),await fs(),e(await $e()))})})}async function bt(n,e,t){const r=Te(n,!0).put({[vn]:e,value:t});return new oe(r).toPromise()}async function ps(n,e){const t=Te(n,!1).get(e),r=await new oe(t).toPromise();return r===void 0?null:r.value}function Tt(n,e){const t=Te(n,!0).delete(e);return new oe(t).toPromise()}const gs=800,ms=3;class In{constructor(){this.type="LOCAL",this._shouldAllowMigration=!0,this.listeners={},this.localCache={},this.pollTimer=null,this.pendingWrites=0,this.receiver=null,this.sender=null,this.serviceWorkerReceiverAvailable=!1,this.activeServiceWorker=null,this._workerInitializationPromise=this.initializeServiceWorkerMessaging().then(()=>{},()=>{})}async _openDb(){return this.db?this.db:(this.db=await $e(),this.db)}async _withRetries(e){let t=0;for(;;)try{const r=await this._openDb();return await e(r)}catch(r){if(t++>ms)throw r;this.db&&(this.db.close(),this.db=void 0)}}async initializeServiceWorkerMessaging(){return mn()?this.initializeReceiver():this.initializeSender()}async initializeReceiver(){this.receiver=be._getInstance(us()),this.receiver._subscribe("keyChanged",async(e,t)=>({keyProcessed:(await this._poll()).includes(t.key)})),this.receiver._subscribe("ping",async(e,t)=>["keyChanged"])}async initializeSender(){var e,t;if(this.activeServiceWorker=await ls(),!this.activeServiceWorker)return;this.sender=new as(this.activeServiceWorker);const r=await this.sender._send("ping",{},800);r&&!((e=r[0])===null||e===void 0)&&e.fulfilled&&!((t=r[0])===null||t===void 0)&&t.value.includes("keyChanged")&&(this.serviceWorkerReceiverAvailable=!0)}async notifyServiceWorker(e){if(!(!this.sender||!this.activeServiceWorker||ds()!==this.activeServiceWorker))try{await this.sender._send("keyChanged",{key:e},this.serviceWorkerReceiverAvailable?800:50)}catch{}}async _isAvailable(){try{if(!indexedDB)return!1;const e=await $e();return await bt(e,ve,"1"),await Tt(e,ve),!0}catch{}return!1}async _withPendingWrite(e){this.pendingWrites++;try{await e()}finally{this.pendingWrites--}}async _set(e,t){return this._withPendingWrite(async()=>(await this._withRetries(r=>bt(r,e,t)),this.localCache[e]=t,this.notifyServiceWorker(e)))}async _get(e){const t=await this._withRetries(r=>ps(r,e));return this.localCache[e]=t,t}async _remove(e){return this._withPendingWrite(async()=>(await this._withRetries(t=>Tt(t,e)),delete this.localCache[e],this.notifyServiceWorker(e)))}async _poll(){const e=await this._withRetries(i=>{const s=Te(i,!1).getAll();return new oe(s).toPromise()});if(!e)return[];if(this.pendingWrites!==0)return[];const t=[],r=new Set;if(e.length!==0)for(const{fbase_key:i,value:s}of e)r.add(i),JSON.stringify(this.localCache[i])!==JSON.stringify(s)&&(this.notifyListeners(i,s),t.push(i));for(const i of Object.keys(this.localCache))this.localCache[i]&&!r.has(i)&&(this.notifyListeners(i,null),t.push(i));return t}notifyListeners(e,t){this.localCache[e]=t;const r=this.listeners[e];if(r)for(const i of Array.from(r))i(t)}startPolling(){this.stopPolling(),this.pollTimer=setInterval(async()=>this._poll(),gs)}stopPolling(){this.pollTimer&&(clearInterval(this.pollTimer),this.pollTimer=null)}_addListener(e,t){Object.keys(this.listeners).length===0&&this.startPolling(),this.listeners[e]||(this.listeners[e]=new Set,this._get(e)),this.listeners[e].add(t)}_removeListener(e,t){this.listeners[e]&&(this.listeners[e].delete(t),this.listeners[e].size===0&&delete this.listeners[e]),Object.keys(this.listeners).length===0&&this.stopPolling()}}In.type="LOCAL";const _s=In;new ie(3e4,6e4);/**
1232
+ * @license
1233
+ * Copyright 2021 Google LLC
1234
+ *
1235
+ * Licensed under the Apache License, Version 2.0 (the "License");
1236
+ * you may not use this file except in compliance with the License.
1237
+ * You may obtain a copy of the License at
1238
+ *
1239
+ * http://www.apache.org/licenses/LICENSE-2.0
1240
+ *
1241
+ * Unless required by applicable law or agreed to in writing, software
1242
+ * distributed under the License is distributed on an "AS IS" BASIS,
1243
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1244
+ * See the License for the specific language governing permissions and
1245
+ * limitations under the License.
1246
+ */function vs(n,e){return e?E(e):(d(n._popupRedirectResolver,n,"argument-error"),n._popupRedirectResolver)}/**
1247
+ * @license
1248
+ * Copyright 2019 Google LLC
1249
+ *
1250
+ * Licensed under the Apache License, Version 2.0 (the "License");
1251
+ * you may not use this file except in compliance with the License.
1252
+ * You may obtain a copy of the License at
1253
+ *
1254
+ * http://www.apache.org/licenses/LICENSE-2.0
1255
+ *
1256
+ * Unless required by applicable law or agreed to in writing, software
1257
+ * distributed under the License is distributed on an "AS IS" BASIS,
1258
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1259
+ * See the License for the specific language governing permissions and
1260
+ * limitations under the License.
1261
+ */class Qe extends Ye{constructor(e){super("custom","custom"),this.params=e}_getIdTokenResponse(e){return W(e,this._buildIdpRequest())}_linkToIdToken(e,t){return W(e,this._buildIdpRequest(t))}_getReauthenticationResolver(e){return W(e,this._buildIdpRequest())}_buildIdpRequest(e){const t={requestUri:this.params.requestUri,sessionId:this.params.sessionId,postBody:this.params.postBody,tenantId:this.params.tenantId,pendingToken:this.params.pendingToken,returnSecureToken:!0,returnIdpCredential:!0};return e&&(t.idToken=e),t}}function Is(n){return dn(n.auth,new Qe(n),n.bypassAuthState)}function ys(n){const{auth:e,user:t}=n;return d(t,e,"internal-error"),Xi(t,new Qe(n),n.bypassAuthState)}async function Es(n){const{auth:e,user:t}=n;return d(t,e,"internal-error"),Yi(t,new Qe(n),n.bypassAuthState)}/**
1262
+ * @license
1263
+ * Copyright 2020 Google LLC
1264
+ *
1265
+ * Licensed under the Apache License, Version 2.0 (the "License");
1266
+ * you may not use this file except in compliance with the License.
1267
+ * You may obtain a copy of the License at
1268
+ *
1269
+ * http://www.apache.org/licenses/LICENSE-2.0
1270
+ *
1271
+ * Unless required by applicable law or agreed to in writing, software
1272
+ * distributed under the License is distributed on an "AS IS" BASIS,
1273
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1274
+ * See the License for the specific language governing permissions and
1275
+ * limitations under the License.
1276
+ */class yn{constructor(e,t,r,i,s=!1){this.auth=e,this.resolver=r,this.user=i,this.bypassAuthState=s,this.pendingPromise=null,this.eventManager=null,this.filter=Array.isArray(t)?t:[t]}execute(){return new Promise(async(e,t)=>{this.pendingPromise={resolve:e,reject:t};try{this.eventManager=await this.resolver._initialize(this.auth),await this.onExecution(),this.eventManager.registerConsumer(this)}catch(r){this.reject(r)}})}async onAuthEvent(e){const{urlResponse:t,sessionId:r,postBody:i,tenantId:s,error:o,type:c}=e;if(o){this.reject(o);return}const a={auth:this.auth,requestUri:t,sessionId:r,tenantId:s||void 0,postBody:i||void 0,user:this.user,bypassAuthState:this.bypassAuthState};try{this.resolve(await this.getIdpTask(c)(a))}catch(l){this.reject(l)}}onError(e){this.reject(e)}getIdpTask(e){switch(e){case"signInViaPopup":case"signInViaRedirect":return Is;case"linkViaPopup":case"linkViaRedirect":return Es;case"reauthViaPopup":case"reauthViaRedirect":return ys;default:m(this.auth,"internal-error")}}resolve(e){w(this.pendingPromise,"Pending promise was never set"),this.pendingPromise.resolve(e),this.unregisterAndCleanUp()}reject(e){w(this.pendingPromise,"Pending promise was never set"),this.pendingPromise.reject(e),this.unregisterAndCleanUp()}unregisterAndCleanUp(){this.eventManager&&this.eventManager.unregisterConsumer(this),this.pendingPromise=null,this.cleanUp()}}/**
1277
+ * @license
1278
+ * Copyright 2020 Google LLC
1279
+ *
1280
+ * Licensed under the Apache License, Version 2.0 (the "License");
1281
+ * you may not use this file except in compliance with the License.
1282
+ * You may obtain a copy of the License at
1283
+ *
1284
+ * http://www.apache.org/licenses/LICENSE-2.0
1285
+ *
1286
+ * Unless required by applicable law or agreed to in writing, software
1287
+ * distributed under the License is distributed on an "AS IS" BASIS,
1288
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1289
+ * See the License for the specific language governing permissions and
1290
+ * limitations under the License.
1291
+ */const ws=new ie(2e3,1e4);class H extends yn{constructor(e,t,r,i,s){super(e,t,i,s),this.provider=r,this.authWindow=null,this.pollId=null,H.currentPopupAction&&H.currentPopupAction.cancel(),H.currentPopupAction=this}async executeNotNull(){const e=await this.execute();return d(e,this.auth,"internal-error"),e}async onExecution(){w(this.filter.length===1,"Popup operations only handle one event");const e=Xe();this.authWindow=await this.resolver._openPopup(this.auth,this.provider,this.filter[0],e),this.authWindow.associatedEvent=e,this.resolver._originValidation(this.auth).catch(t=>{this.reject(t)}),this.resolver._isIframeWebStorageSupported(this.auth,t=>{t||this.reject(_(this.auth,"web-storage-unsupported"))}),this.pollUserCancellation()}get eventId(){var e;return((e=this.authWindow)===null||e===void 0?void 0:e.associatedEvent)||null}cancel(){this.reject(_(this.auth,"cancelled-popup-request"))}cleanUp(){this.authWindow&&this.authWindow.close(),this.pollId&&window.clearTimeout(this.pollId),this.authWindow=null,this.pollId=null,H.currentPopupAction=null}pollUserCancellation(){const e=()=>{var t,r;if(!((r=(t=this.authWindow)===null||t===void 0?void 0:t.window)===null||r===void 0)&&r.closed){this.pollId=window.setTimeout(()=>{this.pollId=null,this.reject(_(this.auth,"popup-closed-by-user"))},8e3);return}this.pollId=window.setTimeout(e,ws.get())};e()}}H.currentPopupAction=null;/**
1292
+ * @license
1293
+ * Copyright 2020 Google LLC
1294
+ *
1295
+ * Licensed under the Apache License, Version 2.0 (the "License");
1296
+ * you may not use this file except in compliance with the License.
1297
+ * You may obtain a copy of the License at
1298
+ *
1299
+ * http://www.apache.org/licenses/LICENSE-2.0
1300
+ *
1301
+ * Unless required by applicable law or agreed to in writing, software
1302
+ * distributed under the License is distributed on an "AS IS" BASIS,
1303
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1304
+ * See the License for the specific language governing permissions and
1305
+ * limitations under the License.
1306
+ */const bs="pendingRedirect",de=new Map;class Ts extends yn{constructor(e,t,r=!1){super(e,["signInViaRedirect","linkViaRedirect","reauthViaRedirect","unknown"],t,void 0,r),this.eventId=null}async execute(){let e=de.get(this.auth._key());if(!e){try{const r=await Ss(this.resolver,this.auth)?await super.execute():null;e=()=>Promise.resolve(r)}catch(t){e=()=>Promise.reject(t)}de.set(this.auth._key(),e)}return this.bypassAuthState||de.set(this.auth._key(),()=>Promise.resolve(null)),e()}async onAuthEvent(e){if(e.type==="signInViaRedirect")return super.onAuthEvent(e);if(e.type==="unknown"){this.resolve(null);return}if(e.eventId){const t=await this.auth._redirectUserForId(e.eventId);if(t)return this.user=t,super.onAuthEvent(e);this.resolve(null)}}async onExecution(){}cleanUp(){}}async function Ss(n,e){const t=ks(e),r=Cs(n);if(!await r._isAvailable())return!1;const i=await r._get(t)==="true";return await r._remove(t),i}function As(n,e){de.set(n._key(),e)}function Cs(n){return E(n._redirectPersistence)}function ks(n){return le(bs,n.config.apiKey,n.name)}async function Rs(n,e,t=!1){const r=B(n),i=vs(r,e),o=await new Ts(r,i,t).execute();return o&&!t&&(delete o.user._redirectEventId,await r._persistUserIfCurrent(o.user),await r._setRedirectUser(null,e)),o}/**
1307
+ * @license
1308
+ * Copyright 2020 Google LLC
1309
+ *
1310
+ * Licensed under the Apache License, Version 2.0 (the "License");
1311
+ * you may not use this file except in compliance with the License.
1312
+ * You may obtain a copy of the License at
1313
+ *
1314
+ * http://www.apache.org/licenses/LICENSE-2.0
1315
+ *
1316
+ * Unless required by applicable law or agreed to in writing, software
1317
+ * distributed under the License is distributed on an "AS IS" BASIS,
1318
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1319
+ * See the License for the specific language governing permissions and
1320
+ * limitations under the License.
1321
+ */const Ps=10*60*1e3;class Os{constructor(e){this.auth=e,this.cachedEventUids=new Set,this.consumers=new Set,this.queuedRedirectEvent=null,this.hasHandledPotentialRedirect=!1,this.lastProcessedEventTime=Date.now()}registerConsumer(e){this.consumers.add(e),this.queuedRedirectEvent&&this.isEventForConsumer(this.queuedRedirectEvent,e)&&(this.sendToConsumer(this.queuedRedirectEvent,e),this.saveEventToCache(this.queuedRedirectEvent),this.queuedRedirectEvent=null)}unregisterConsumer(e){this.consumers.delete(e)}onEvent(e){if(this.hasEventBeenHandled(e))return!1;let t=!1;return this.consumers.forEach(r=>{this.isEventForConsumer(e,r)&&(t=!0,this.sendToConsumer(e,r),this.saveEventToCache(e))}),this.hasHandledPotentialRedirect||!Ns(e)||(this.hasHandledPotentialRedirect=!0,t||(this.queuedRedirectEvent=e,t=!0)),t}sendToConsumer(e,t){var r;if(e.error&&!En(e)){const i=((r=e.error.code)===null||r===void 0?void 0:r.split("auth/")[1])||"internal-error";t.onError(_(this.auth,i))}else t.onAuthEvent(e)}isEventForConsumer(e,t){const r=t.eventId===null||!!e.eventId&&e.eventId===t.eventId;return t.filter.includes(e.type)&&r}hasEventBeenHandled(e){return Date.now()-this.lastProcessedEventTime>=Ps&&this.cachedEventUids.clear(),this.cachedEventUids.has(St(e))}saveEventToCache(e){this.cachedEventUids.add(St(e)),this.lastProcessedEventTime=Date.now()}}function St(n){return[n.type,n.eventId,n.sessionId,n.tenantId].filter(e=>e).join("-")}function En({type:n,error:e}){return n==="unknown"&&e?.code==="auth/no-auth-event"}function Ns(n){switch(n.type){case"signInViaRedirect":case"linkViaRedirect":case"reauthViaRedirect":return!0;case"unknown":return En(n);default:return!1}}/**
1322
+ * @license
1323
+ * Copyright 2020 Google LLC
1324
+ *
1325
+ * Licensed under the Apache License, Version 2.0 (the "License");
1326
+ * you may not use this file except in compliance with the License.
1327
+ * You may obtain a copy of the License at
1328
+ *
1329
+ * http://www.apache.org/licenses/LICENSE-2.0
1330
+ *
1331
+ * Unless required by applicable law or agreed to in writing, software
1332
+ * distributed under the License is distributed on an "AS IS" BASIS,
1333
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1334
+ * See the License for the specific language governing permissions and
1335
+ * limitations under the License.
1336
+ */async function Ds(n,e={}){return T(n,"GET","/v1/projects",e)}/**
1337
+ * @license
1338
+ * Copyright 2020 Google LLC
1339
+ *
1340
+ * Licensed under the Apache License, Version 2.0 (the "License");
1341
+ * you may not use this file except in compliance with the License.
1342
+ * You may obtain a copy of the License at
1343
+ *
1344
+ * http://www.apache.org/licenses/LICENSE-2.0
1345
+ *
1346
+ * Unless required by applicable law or agreed to in writing, software
1347
+ * distributed under the License is distributed on an "AS IS" BASIS,
1348
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1349
+ * See the License for the specific language governing permissions and
1350
+ * limitations under the License.
1351
+ */const Ls=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,Ms=/^https?/;async function Us(n){if(n.config.emulator)return;const{authorizedDomains:e}=await Ds(n);for(const t of e)try{if(Fs(t))return}catch{}m(n,"unauthorized-domain")}function Fs(n){const e=ge(),{protocol:t,hostname:r}=new URL(e);if(n.startsWith("chrome-extension://")){const o=new URL(n);return o.hostname===""&&r===""?t==="chrome-extension:"&&n.replace("chrome-extension://","")===e.replace("chrome-extension://",""):t==="chrome-extension:"&&o.hostname===r}if(!Ms.test(t))return!1;if(Ls.test(n))return r===n;const i=n.replace(/\./g,"\\.");return new RegExp("^(.+\\."+i+"|"+i+")$","i").test(r)}/**
1352
+ * @license
1353
+ * Copyright 2020 Google LLC.
1354
+ *
1355
+ * Licensed under the Apache License, Version 2.0 (the "License");
1356
+ * you may not use this file except in compliance with the License.
1357
+ * You may obtain a copy of the License at
1358
+ *
1359
+ * http://www.apache.org/licenses/LICENSE-2.0
1360
+ *
1361
+ * Unless required by applicable law or agreed to in writing, software
1362
+ * distributed under the License is distributed on an "AS IS" BASIS,
1363
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1364
+ * See the License for the specific language governing permissions and
1365
+ * limitations under the License.
1366
+ */const Bs=new ie(3e4,6e4);function At(){const n=v().___jsl;if(n?.H){for(const e of Object.keys(n.H))if(n.H[e].r=n.H[e].r||[],n.H[e].L=n.H[e].L||[],n.H[e].r=[...n.H[e].L],n.CP)for(let t=0;t<n.CP.length;t++)n.CP[t]=null}}function xs(n){return new Promise((e,t)=>{var r,i,s;function o(){At(),gapi.load("gapi.iframes",{callback:()=>{e(gapi.iframes.getContext())},ontimeout:()=>{At(),t(_(n,"network-request-failed"))},timeout:Bs.get()})}if(!((i=(r=v().gapi)===null||r===void 0?void 0:r.iframes)===null||i===void 0)&&i.Iframe)e(gapi.iframes.getContext());else if(!((s=v().gapi)===null||s===void 0)&&s.load)o();else{const c=Oi("iframefcb");return v()[c]=()=>{gapi.load?o():t(_(n,"network-request-failed"))},on(`https://apis.google.com/js/api.js?onload=${c}`).catch(a=>t(a))}}).catch(e=>{throw ue=null,e})}let ue=null;function Vs(n){return ue=ue||xs(n),ue}/**
1367
+ * @license
1368
+ * Copyright 2020 Google LLC.
1369
+ *
1370
+ * Licensed under the Apache License, Version 2.0 (the "License");
1371
+ * you may not use this file except in compliance with the License.
1372
+ * You may obtain a copy of the License at
1373
+ *
1374
+ * http://www.apache.org/licenses/LICENSE-2.0
1375
+ *
1376
+ * Unless required by applicable law or agreed to in writing, software
1377
+ * distributed under the License is distributed on an "AS IS" BASIS,
1378
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1379
+ * See the License for the specific language governing permissions and
1380
+ * limitations under the License.
1381
+ */const Hs=new ie(5e3,15e3),$s="__/auth/iframe",Ws="emulator/auth/iframe",js={style:{position:"absolute",top:"-100px",width:"1px",height:"1px"},"aria-hidden":"true",tabindex:"-1"},zs=new Map([["identitytoolkit.googleapis.com","p"],["staging-identitytoolkit.sandbox.googleapis.com","s"],["test-identitytoolkit.sandbox.googleapis.com","t"]]);function Gs(n){const e=n.config;d(e.authDomain,n,"auth-domain-config-required");const t=e.emulator?Ke(e,Ws):`https://${n.config.authDomain}/${$s}`,r={apiKey:e.apiKey,appName:n.name,v:re},i=zs.get(n.config.apiHost);i&&(r.eid=i);const s=n._getFrameworks();return s.length&&(r.fw=s.join(",")),`${t}?${ne(r).slice(1)}`}async function Ks(n){const e=await Vs(n),t=v().gapi;return d(t,n,"internal-error"),e.open({where:document.body,url:Gs(n),messageHandlersFilter:t.iframes.CROSS_ORIGIN_IFRAMES_FILTER,attributes:js,dontclear:!0},r=>new Promise(async(i,s)=>{await r.restyle({setHideOnLeave:!1});const o=_(n,"network-request-failed"),c=v().setTimeout(()=>{s(o)},Hs.get());function a(){v().clearTimeout(c),i(r)}r.ping(a).then(a,()=>{s(o)})}))}/**
1382
+ * @license
1383
+ * Copyright 2020 Google LLC.
1384
+ *
1385
+ * Licensed under the Apache License, Version 2.0 (the "License");
1386
+ * you may not use this file except in compliance with the License.
1387
+ * You may obtain a copy of the License at
1388
+ *
1389
+ * http://www.apache.org/licenses/LICENSE-2.0
1390
+ *
1391
+ * Unless required by applicable law or agreed to in writing, software
1392
+ * distributed under the License is distributed on an "AS IS" BASIS,
1393
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1394
+ * See the License for the specific language governing permissions and
1395
+ * limitations under the License.
1396
+ */const qs={location:"yes",resizable:"yes",statusbar:"yes",toolbar:"no"},Js=500,Ys=600,Xs="_blank",Qs="http://localhost";class Ct{constructor(e){this.window=e,this.associatedEvent=null}close(){if(this.window)try{this.window.close()}catch{}}}function Zs(n,e,t,r=Js,i=Ys){const s=Math.max((window.screen.availHeight-i)/2,0).toString(),o=Math.max((window.screen.availWidth-r)/2,0).toString();let c="";const a=Object.assign(Object.assign({},qs),{width:r.toString(),height:i.toString(),top:s,left:o}),l=p().toLowerCase();t&&(c=Qt(l)?Xs:t),Xt(l)&&(e=e||Qs,a.scrollbars="yes");const u=Object.entries(a).reduce((g,[I,V])=>`${g}${I}=${V},`,"");if(wi(l)&&c!=="_self")return eo(e||"",c),new Ct(null);const f=window.open(e||"",c,u);d(f,n,"popup-blocked");try{f.focus()}catch{}return new Ct(f)}function eo(n,e){const t=document.createElement("a");t.href=n,t.target=e;const r=document.createEvent("MouseEvent");r.initMouseEvent("click",!0,!0,window,1,0,0,0,0,!1,!1,!1,!1,1,null),t.dispatchEvent(r)}/**
1397
+ * @license
1398
+ * Copyright 2021 Google LLC
1399
+ *
1400
+ * Licensed under the Apache License, Version 2.0 (the "License");
1401
+ * you may not use this file except in compliance with the License.
1402
+ * You may obtain a copy of the License at
1403
+ *
1404
+ * http://www.apache.org/licenses/LICENSE-2.0
1405
+ *
1406
+ * Unless required by applicable law or agreed to in writing, software
1407
+ * distributed under the License is distributed on an "AS IS" BASIS,
1408
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1409
+ * See the License for the specific language governing permissions and
1410
+ * limitations under the License.
1411
+ */const to="__/auth/handler",no="emulator/auth/handler",ro=encodeURIComponent("fac");async function kt(n,e,t,r,i,s){d(n.config.authDomain,n,"auth-domain-config-required"),d(n.config.apiKey,n,"invalid-api-key");const o={apiKey:n.config.apiKey,appName:n.name,authType:t,redirectUrl:r,v:re,eventId:i};if(e instanceof cn){e.setDefaultLanguage(n.languageCode),o.providerId=e.providerId||"",$n(e.getCustomParameters())||(o.customParameters=JSON.stringify(e.getCustomParameters()));for(const[u,f]of Object.entries(s||{}))o[u]=f}if(e instanceof se){const u=e.getScopes().filter(f=>f!=="");u.length>0&&(o.scopes=u.join(","))}n.tenantId&&(o.tid=n.tenantId);const c=o;for(const u of Object.keys(c))c[u]===void 0&&delete c[u];const a=await n._getAppCheckToken(),l=a?`#${ro}=${encodeURIComponent(a)}`:"";return`${io(n)}?${ne(c).slice(1)}${l}`}function io({config:n}){return n.emulator?Ke(n,no):`https://${n.authDomain}/${to}`}/**
1412
+ * @license
1413
+ * Copyright 2020 Google LLC
1414
+ *
1415
+ * Licensed under the Apache License, Version 2.0 (the "License");
1416
+ * you may not use this file except in compliance with the License.
1417
+ * You may obtain a copy of the License at
1418
+ *
1419
+ * http://www.apache.org/licenses/LICENSE-2.0
1420
+ *
1421
+ * Unless required by applicable law or agreed to in writing, software
1422
+ * distributed under the License is distributed on an "AS IS" BASIS,
1423
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1424
+ * See the License for the specific language governing permissions and
1425
+ * limitations under the License.
1426
+ */const Me="webStorageSupport";class so{constructor(){this.eventManagers={},this.iframes={},this.originValidationPromises={},this._redirectPersistence=gn,this._completeRedirectFn=Rs,this._overrideRedirectResult=As}async _openPopup(e,t,r,i){var s;w((s=this.eventManagers[e._key()])===null||s===void 0?void 0:s.manager,"_initialize() not called before _openPopup()");const o=await kt(e,t,r,ge(),i);return Zs(e,o,Xe())}async _openRedirect(e,t,r,i){await this._originValidation(e);const s=await kt(e,t,r,ge(),i);return cs(s),new Promise(()=>{})}_initialize(e){const t=e._key();if(this.eventManagers[t]){const{manager:i,promise:s}=this.eventManagers[t];return i?Promise.resolve(i):(w(s,"If manager is not set, promise should be"),s)}const r=this.initAndGetManager(e);return this.eventManagers[t]={promise:r},r.catch(()=>{delete this.eventManagers[t]}),r}async initAndGetManager(e){const t=await Ks(e),r=new Os(e);return t.register("authEvent",i=>(d(i?.authEvent,e,"invalid-auth-event"),{status:r.onEvent(i.authEvent)?"ACK":"ERROR"}),gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER),this.eventManagers[e._key()]={manager:r},this.iframes[e._key()]=t,r}_isIframeWebStorageSupported(e,t){this.iframes[e._key()].send(Me,{type:Me},i=>{var s;const o=(s=i?.[0])===null||s===void 0?void 0:s[Me];o!==void 0&&t(!!o),m(e,"internal-error")},gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER)}_originValidation(e){const t=e._key();return this.originValidationPromises[t]||(this.originValidationPromises[t]=Us(e)),this.originValidationPromises[t]}get _shouldInitProactively(){return rn()||Je()||Ee()}}const oo=so;var Rt="@firebase/auth",Pt="1.5.1";/**
1427
+ * @license
1428
+ * Copyright 2020 Google LLC
1429
+ *
1430
+ * Licensed under the Apache License, Version 2.0 (the "License");
1431
+ * you may not use this file except in compliance with the License.
1432
+ * You may obtain a copy of the License at
1433
+ *
1434
+ * http://www.apache.org/licenses/LICENSE-2.0
1435
+ *
1436
+ * Unless required by applicable law or agreed to in writing, software
1437
+ * distributed under the License is distributed on an "AS IS" BASIS,
1438
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1439
+ * See the License for the specific language governing permissions and
1440
+ * limitations under the License.
1441
+ */class ao{constructor(e){this.auth=e,this.internalListeners=new Map}getUid(){var e;return this.assertAuthConfigured(),((e=this.auth.currentUser)===null||e===void 0?void 0:e.uid)||null}async getToken(e){return this.assertAuthConfigured(),await this.auth._initializationPromise,this.auth.currentUser?{accessToken:await this.auth.currentUser.getIdToken(e)}:null}addAuthTokenListener(e){if(this.assertAuthConfigured(),this.internalListeners.has(e))return;const t=this.auth.onIdTokenChanged(r=>{e(r?.stsTokenManager.accessToken||null)});this.internalListeners.set(e,t),this.updateProactiveRefresh()}removeAuthTokenListener(e){this.assertAuthConfigured();const t=this.internalListeners.get(e);t&&(this.internalListeners.delete(e),t(),this.updateProactiveRefresh())}assertAuthConfigured(){d(this.auth._initializationPromise,"dependent-sdk-initialized-before-auth")}updateProactiveRefresh(){this.internalListeners.size>0?this.auth._startProactiveRefresh():this.auth._stopProactiveRefresh()}}/**
1442
+ * @license
1443
+ * Copyright 2020 Google LLC
1444
+ *
1445
+ * Licensed under the Apache License, Version 2.0 (the "License");
1446
+ * you may not use this file except in compliance with the License.
1447
+ * You may obtain a copy of the License at
1448
+ *
1449
+ * http://www.apache.org/licenses/LICENSE-2.0
1450
+ *
1451
+ * Unless required by applicable law or agreed to in writing, software
1452
+ * distributed under the License is distributed on an "AS IS" BASIS,
1453
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1454
+ * See the License for the specific language governing permissions and
1455
+ * limitations under the License.
1456
+ */function co(n){switch(n){case"Node":return"node";case"ReactNative":return"rn";case"Worker":return"webworker";case"Cordova":return"cordova";default:return}}function lo(n){Y(new j("auth",(e,{options:t})=>{const r=e.getProvider("app").getImmediate(),i=e.getProvider("heartbeat"),s=e.getProvider("app-check-internal"),{apiKey:o,authDomain:c}=r.options;d(o&&!o.includes(":"),"invalid-api-key",{appName:r.name});const a={apiKey:o,authDomain:c,clientPlatform:n,apiHost:"identitytoolkit.googleapis.com",tokenApiHost:"securetoken.googleapis.com",apiScheme:"https",sdkClientVersion:sn(n)},l=new Ri(r,i,s,a);return Fi(l,t),l},"PUBLIC").setInstantiationMode("EXPLICIT").setInstanceCreatedCallback((e,t,r)=>{e.getProvider("auth-internal").initialize()})),Y(new j("auth-internal",e=>{const t=B(e.getProvider("auth").getImmediate());return(r=>new ao(r))(t)},"PRIVATE").setInstantiationMode("EXPLICIT")),q(Rt,Pt,co(n)),q(Rt,Pt,"esm2017")}/**
1457
+ * @license
1458
+ * Copyright 2021 Google LLC
1459
+ *
1460
+ * Licensed under the Apache License, Version 2.0 (the "License");
1461
+ * you may not use this file except in compliance with the License.
1462
+ * You may obtain a copy of the License at
1463
+ *
1464
+ * http://www.apache.org/licenses/LICENSE-2.0
1465
+ *
1466
+ * Unless required by applicable law or agreed to in writing, software
1467
+ * distributed under the License is distributed on an "AS IS" BASIS,
1468
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1469
+ * See the License for the specific language governing permissions and
1470
+ * limitations under the License.
1471
+ */const uo=5*60,ho=Ft("authIdTokenMaxAge")||uo;let Ot=null;const fo=n=>async e=>{const t=e&&await e.getIdTokenResult(),r=t&&(new Date().getTime()-Date.parse(t.issuedAtTime))/1e3;if(r&&r>ho)return;const i=t?.token;Ot!==i&&(Ot=i,await fetch(n,{method:i?"POST":"DELETE",headers:i?{Authorization:`Bearer ${i}`}:{}}))};function Io(n=Wr()){const e=Ht(n,"auth");if(e.isInitialized())return e.getImmediate();const t=Ui(n,{popupRedirectResolver:oo,persistence:[_s,ss,gn]}),r=Ft("authTokenSyncURL");if(r){const s=fo(r);ts(t,s,()=>s(t.currentUser)),es(t,o=>s(o))}const i=On("auth");return i&&Bi(t,`http://${i}`),t}lo("Browser");export{mo as a,go as b,po as c,Io as g,$r as i,vo as o,q as r,_o as s};