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.
- package/.editorconfig +13 -0
- package/.eslintrc.cjs +3 -0
- package/.gitattributes +3 -0
- package/.github/renovate.json +59 -2
- package/.github/workflows/create-release.yml +3 -3
- package/.github/workflows/test-apps.yml +141 -0
- package/.gitmodules +9 -0
- package/.husky/commit-msg +0 -0
- package/.nvmrc +1 -0
- package/.vscode/extensions.json +5 -1
- package/.vscode/settings.json +23 -0
- package/CHANGELOG.md +3116 -0
- package/CONTRIBUTING.md +64 -0
- package/README.md +9 -3
- package/action.yml +348 -0
- package/commitlint.config.cjs +1 -1
- package/ecomplus-stores/barra-doce/.devcontainer/devcontainer.json +30 -0
- package/ecomplus-stores/barra-doce/.editorconfig +13 -0
- package/ecomplus-stores/barra-doce/.eslintrc.cjs +3 -0
- package/ecomplus-stores/barra-doce/.firebaserc +5 -0
- package/ecomplus-stores/barra-doce/.github/build-and-deploy +1 -0
- package/ecomplus-stores/barra-doce/.github/renovate.json +5 -0
- package/ecomplus-stores/barra-doce/.github/workflows/build-and-deploy.yml +36 -0
- package/ecomplus-stores/barra-doce/.github/workflows/calibreapp-image-actions.yml +23 -0
- package/ecomplus-stores/barra-doce/.gitpod.yml +12 -0
- package/ecomplus-stores/barra-doce/.idx/dev.nix +24 -0
- package/ecomplus-stores/barra-doce/.nvmrc +1 -0
- package/ecomplus-stores/barra-doce/.vscode/extensions.json +8 -0
- package/ecomplus-stores/barra-doce/.vscode/launch.json +11 -0
- package/ecomplus-stores/barra-doce/.vscode/settings.json +13 -0
- package/ecomplus-stores/barra-doce/LICENSE.md +230 -0
- package/ecomplus-stores/barra-doce/README.md +31 -0
- package/ecomplus-stores/barra-doce/SETUP.md +117 -0
- package/ecomplus-stores/barra-doce/SETUP.pt-BR.md +117 -0
- package/ecomplus-stores/barra-doce/conf/firebase.json +7 -0
- package/ecomplus-stores/barra-doce/functions/config.json +3 -0
- package/ecomplus-stores/barra-doce/functions/example.env +10 -0
- package/ecomplus-stores/barra-doce/functions/many/index.js +14 -0
- package/ecomplus-stores/barra-doce/functions/many/package.json +22 -0
- package/ecomplus-stores/barra-doce/functions/ssr/.eslintrc.cjs +6 -0
- package/ecomplus-stores/barra-doce/functions/ssr/astro.config.mjs +19 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/blog/3.md +24 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/blog/4.md +24 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/blog/5.md +24 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/blog/dos.md +24 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/blog/uno.md +24 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/contato.md +9 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/terms.md +20 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/trocas.md +9 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/layout.json +61 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/brands.json +16 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/categories.json +16 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/collections.json +16 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/home.json +53 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/products.json +18 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/search.json +7 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/settings.json +70 -0
- package/ecomplus-stores/barra-doce/functions/ssr/index.js +18 -0
- package/ecomplus-stores/barra-doce/functions/ssr/package.json +34 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/admin/.gitkeep +2 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/assets/.gitkeep +2 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/icon.png +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/large-icon.png +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/banner-forma-decora.jpg +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/ecom-icon.png +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/logo-barradoce.webp +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/og-image.png +0 -0
- package/ecomplus-stores/barra-doce/functions/ssr/public/robots.txt +6 -0
- package/ecomplus-stores/barra-doce/functions/ssr/scripts/build.sh +14 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/assets/style.css +90 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountMenu.vue +97 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountPage.vue +62 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/Banner.vue +66 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/BannersGrid.astro +25 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/BlogPosts.vue +88 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/Breadcrumbs.vue +49 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartItem.vue +64 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartSidebar.vue +69 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/CheckoutPage.vue +47 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/Collapse.vue +19 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ContentEntry.vue +23 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocBanners.vue +26 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocDescription.vue +28 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/FooterStamps.vue +62 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/HeroSlider.vue +56 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ImagesGallery.vue +152 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/LoginForm.vue +107 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/PageTitle.vue +43 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/Pagination.vue +67 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/PitchBar.vue +50 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/Prices.vue +95 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductCard.vue +113 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductDetails.vue +123 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductShelf.vue +71 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductSpecifications.vue +42 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchFilters.vue +122 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchModal.vue +102 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchShowcase.vue +169 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopFooter.vue +102 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeader.vue +201 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderMenu.vue +66 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderSubmenu.vue +98 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenav.vue +60 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenavCategory.vue +79 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/SkuSelector.vue +58 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/env.d.ts +18 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/Base.astro +15 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageFooter.astro +73 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageHeader.astro +38 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/main/Fallback.astro +33 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/main/Main.astro +26 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Hero.astro +33 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Sections.astro +75 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/[...slug].astro +69 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/_vue.ts +19 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/account.astro +38 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/index.astro +82 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/[page].astro +71 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/_blog-pages.ts +9 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/pages/~fallback.astro +30 -0
- package/ecomplus-stores/barra-doce/functions/ssr/src/scripts/InlineScripts.astro +10 -0
- package/ecomplus-stores/barra-doce/functions/ssr/tailwind.config.cjs +18 -0
- package/ecomplus-stores/barra-doce/functions/ssr/tsconfig.json +12 -0
- package/ecomplus-stores/barra-doce/functions/ssr/uno.config.cjs +5 -0
- package/ecomplus-stores/barra-doce/functions/with-apps/index.js +12 -0
- package/ecomplus-stores/barra-doce/functions/with-apps/package.json +22 -0
- package/ecomplus-stores/barra-doce/package.json +31 -0
- package/ecomplus-stores/barra-doce/scripts/install.sh +24 -0
- package/ecomplus-stores/tia-sonia/.devcontainer/devcontainer.json +30 -0
- package/ecomplus-stores/tia-sonia/.eslintrc.cjs +3 -0
- package/ecomplus-stores/tia-sonia/.firebaserc +5 -0
- package/ecomplus-stores/tia-sonia/.github/renovate.json +5 -0
- package/ecomplus-stores/tia-sonia/.github/workflows/build-and-deploy.yml +41 -0
- package/ecomplus-stores/tia-sonia/.github/workflows/calibreapp-image-actions.yml +23 -0
- package/ecomplus-stores/tia-sonia/.gitpod.yml +12 -0
- package/ecomplus-stores/tia-sonia/.idx/dev.nix +24 -0
- package/ecomplus-stores/tia-sonia/.nvmrc +1 -0
- package/ecomplus-stores/tia-sonia/.vscode/extensions.json +8 -0
- package/ecomplus-stores/tia-sonia/.vscode/settings.json +9 -0
- package/ecomplus-stores/tia-sonia/LICENSE.md +230 -0
- package/ecomplus-stores/tia-sonia/README.md +102 -0
- package/ecomplus-stores/tia-sonia/README.pt-BR.md +102 -0
- package/ecomplus-stores/tia-sonia/functions/config.json +3 -0
- package/ecomplus-stores/tia-sonia/functions/core/index.js +9 -0
- package/ecomplus-stores/tia-sonia/functions/core/package.json +20 -0
- package/ecomplus-stores/tia-sonia/functions/events/index.js +9 -0
- package/ecomplus-stores/tia-sonia/functions/events/package.json +21 -0
- package/ecomplus-stores/tia-sonia/functions/example.env +10 -0
- package/ecomplus-stores/tia-sonia/functions/modules/index.js +9 -0
- package/ecomplus-stores/tia-sonia/functions/modules/package.json +21 -0
- package/ecomplus-stores/tia-sonia/functions/passport/index.js +9 -0
- package/ecomplus-stores/tia-sonia/functions/passport/package.json +21 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/.eslintrc.cjs +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/astro.config.mjs +4 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/blog.json +18 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/brands.json +24 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/categories.json +24 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/code.json +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/collections.json +24 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/contacts.json +13 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/footer.json +46 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/header.json +35 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/home.json +45 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/info.json +18 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/maintenance.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/menu.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/contato.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/entrega.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/faq.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/pagamentos.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/privacidade.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/sobre-nos.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/termos.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/trocas.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/posts/esta-loja-e-um-pwa.json +9 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/products.json +32 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/search.json +8 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/settings.json +18 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/social.json +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/analytics.json +11 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/compre-confie.json +11 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/ebit.json +11 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/fb-pixel.json +12 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/gmc-ratings.json +12 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/minicart.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/offers-notification.json +11 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/opinioes-verificadas.json +18 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product-card.json +10 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product.json +13 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search-engine.json +8 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search.json +6 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tag-manager.json +12 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tawkto.json +12 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/trustvox.json +15 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/user.json +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/index.js +18 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/package.json +34 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/admin/config.json +1 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms-preview.css +274 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms.css +114 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cvv.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/bootstrap-icons/font/storefront-icons.woff2 +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/feather-icons/font/storefront-icons.woff2 +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/font-awesome/font/storefront-icons.woff2 +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/line-awesome/font/storefront-icons.woff2 +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/tabler-icons/font/storefront-icons.woff2 +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/img-placeholder.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/payments.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/ssl-safe.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/icon.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/large-icon.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-acucares.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-barras.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-bebidas-em-po.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-cookies.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-granola-tia-sonia.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-integrais.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-naturais.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-pastas-tia-sonia.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-snacks.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-ultrabar.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/daniel-cady.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/favicon.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/fimdeano1920x736.jpg +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata-verso.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-em-pote.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-espalhadas.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-acai-granola.jpg +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-cafe-tapioca-aveia.jpg +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-piquenique-snack-cookies.jpg +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/icon.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/large-icon.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/machu-picchu-1500.jpg +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/og-image.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-ibd-120-80.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-organico-120-80.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-usda-120-80.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-vegano-120-80.webp +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/ssl-safe.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tia-sonia-real.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-mono.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-var.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/trustvox.png +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/public/robots.txt +8 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/.gitkeep +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/prices.css +3 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/AboutUs.astro +77 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/BrandTestimonials.vue +134 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesGrid.vue +32 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesSlider.vue +117 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/HeroBanner.vue +112 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/PitchBar.vue +97 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/TheHeader.vue +201 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderBarLink.vue +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtonLink.vue +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtons.vue +46 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderNav.vue +14 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/env.d.ts +5 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Base.astro +49 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Checkout.astro +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Pages.astro +44 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/PagesHeader.astro +98 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Fallback.astro +15 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Home.astro +172 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Wildcard.astro +21 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/[...slug].astro +36 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/_vue.ts +3 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/account.astro +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/index.astro +0 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/fallback.astro +19 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/index.astro +31 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/head-scripts.ts +13 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/modules-info-preset.ts +27 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/tailwind.config.cjs +15 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/tsconfig.json +16 -0
- package/ecomplus-stores/tia-sonia/functions/ssr/uno.config.cjs +5 -0
- package/ecomplus-stores/tia-sonia/package.json +28 -0
- package/ecomplus-stores/tia-sonia/scripts/install.sh +24 -0
- package/package.json +35 -25
- package/packages/__skeleton/CHANGELOG.md +1 -0
- package/packages/__skeleton/README.md +1 -0
- package/packages/__skeleton/package.json +27 -0
- package/packages/__skeleton/src/index.ts +0 -0
- package/packages/__skeleton/tsconfig.json +3 -0
- package/packages/api/lib/api.d.ts +125 -0
- package/packages/api/lib/api.js +215 -0
- package/packages/api/lib/api.js.map +1 -0
- package/packages/api/package.json +10 -3
- package/packages/api/src/api.ts +298 -0
- package/packages/api/tests/index.test.ts +82 -0
- package/packages/api/tsconfig.json +2 -97
- package/packages/api/types/applications.d.ts +180 -0
- package/packages/api/types/authentications.d.ts +121 -0
- package/packages/api/types/brands.d.ts +174 -0
- package/packages/api/types/carts.d.ts +380 -0
- package/packages/api/types/categories.d.ts +216 -0
- package/packages/api/types/collections.d.ts +174 -0
- package/packages/api/types/customers.d.ts +535 -0
- package/packages/api/types/grids.d.ts +172 -0
- package/packages/api/types/orders.d.ts +1743 -0
- package/packages/api/types/products.d.ts +1441 -0
- package/packages/api/types/stores.d.ts +138 -0
- package/packages/api/types.d.ts +509 -0
- package/packages/api/types.ts +2 -0
- package/packages/apps/affiliate-program/CHANGELOG.md +1 -0
- package/packages/apps/affiliate-program/README.md +1 -0
- package/packages/apps/affiliate-program/lib/affiliate-program.js +9 -0
- package/packages/apps/affiliate-program/lib/affiliate-program.js.map +1 -0
- package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js +153 -0
- package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js.map +1 -0
- package/packages/apps/affiliate-program/lib/index.js +2 -0
- package/packages/apps/affiliate-program/lib/index.js.map +1 -0
- package/packages/apps/affiliate-program/package.json +30 -0
- package/packages/apps/affiliate-program/src/affiliate-program.ts +14 -0
- package/packages/apps/affiliate-program/src/events-to-affiliate-program.ts +183 -0
- package/packages/apps/affiliate-program/src/index.ts +1 -0
- package/packages/apps/affiliate-program/tsconfig.json +3 -0
- package/packages/apps/correios/CHANGELOG.md +1 -0
- package/packages/apps/correios/README.md +1 -0
- package/packages/apps/correios/lib/correios.d.ts +3 -0
- package/packages/apps/correios/lib/correios.js +7 -0
- package/packages/apps/correios/lib/correios.js.map +1 -0
- package/packages/apps/correios/lib/index.d.ts +1 -0
- package/packages/apps/correios/lib/index.js +2 -0
- package/packages/apps/correios/lib/index.js.map +1 -0
- package/packages/apps/correios/lib-mjs/calculate-shipping.mjs +430 -0
- package/packages/apps/correios/lib-mjs/correios-db.mjs +189 -0
- package/packages/apps/correios/lib-mjs/correios-v2.mjs +84 -0
- package/packages/apps/correios/lib-mjs/utils/constants-parsers.mjs +135 -0
- package/packages/apps/correios/lib-mjs/utils/correios-axios.mjs +93 -0
- package/packages/apps/correios/package.json +38 -0
- package/packages/apps/correios/scripts/tests.sh +11 -0
- package/packages/apps/correios/src/correios.ts +8 -0
- package/packages/apps/correios/src/index.ts +1 -0
- package/packages/apps/correios/tests/calculate-shipping.test.mjs +45 -0
- package/packages/apps/correios/tsconfig.json +6 -0
- package/packages/apps/custom-payment/CHANGELOG.md +1 -0
- package/packages/apps/custom-payment/README.md +1 -0
- package/packages/apps/custom-payment/lib/custom-payment-create-transaction.d.ts +72 -0
- package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js +55 -0
- package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js.map +1 -0
- package/packages/apps/custom-payment/lib/custom-payment-list-payments.d.ts +3 -0
- package/packages/apps/custom-payment/lib/custom-payment-list-payments.js +79 -0
- package/packages/apps/custom-payment/lib/custom-payment-list-payments.js.map +1 -0
- package/packages/apps/custom-payment/lib/custom-payment.d.ts +72 -0
- package/packages/apps/custom-payment/lib/custom-payment.js +11 -0
- package/packages/apps/custom-payment/lib/custom-payment.js.map +1 -0
- package/packages/apps/custom-payment/lib/index.d.ts +1 -0
- package/packages/apps/custom-payment/lib/index.js +2 -0
- package/packages/apps/custom-payment/lib/index.js.map +1 -0
- package/packages/apps/custom-payment/package.json +27 -0
- package/packages/apps/custom-payment/src/custom-payment-create-transaction.ts +67 -0
- package/packages/apps/custom-payment/src/custom-payment-list-payments.ts +96 -0
- package/packages/apps/custom-payment/src/custom-payment.ts +11 -0
- package/packages/apps/custom-payment/src/index.ts +1 -0
- package/packages/apps/custom-payment/tsconfig.json +6 -0
- package/packages/apps/custom-shipping/CHANGELOG.md +1 -0
- package/packages/apps/custom-shipping/README.md +1 -0
- package/packages/apps/custom-shipping/lib/custom-shipping.d.ts +2 -0
- package/packages/apps/custom-shipping/lib/custom-shipping.js +6 -0
- package/packages/apps/custom-shipping/lib/custom-shipping.js.map +1 -0
- package/packages/apps/custom-shipping/lib/index.d.ts +1 -0
- package/packages/apps/custom-shipping/lib/index.js +2 -0
- package/packages/apps/custom-shipping/lib/index.js.map +1 -0
- package/packages/apps/custom-shipping/lib-mjs/calculate-custom-shipping.mjs +251 -0
- package/packages/apps/custom-shipping/package.json +29 -0
- package/packages/apps/custom-shipping/src/custom-shipping.ts +7 -0
- package/packages/apps/custom-shipping/src/index.ts +1 -0
- package/packages/apps/custom-shipping/tests/calculate-shipping.test.mjs +37 -0
- package/packages/apps/custom-shipping/tsconfig.json +6 -0
- package/packages/apps/datafrete/CHANGELOG.md +1 -0
- package/packages/apps/datafrete/README.md +1 -0
- package/packages/apps/datafrete/lib/datafrete-webhook.d.ts +4 -0
- package/packages/apps/datafrete/lib/datafrete-webhook.js +108 -0
- package/packages/apps/datafrete/lib/datafrete-webhook.js.map +1 -0
- package/packages/apps/datafrete/lib/datafrete.d.ts +2 -0
- package/packages/apps/datafrete/lib/datafrete.js +6 -0
- package/packages/apps/datafrete/lib/datafrete.js.map +1 -0
- package/packages/apps/datafrete/lib/index.d.ts +1 -0
- package/packages/apps/datafrete/lib/index.js +2 -0
- package/packages/apps/datafrete/lib/index.js.map +1 -0
- package/packages/apps/datafrete/lib-mjs/calculate-datafrete.mjs +277 -0
- package/packages/apps/datafrete/package.json +37 -0
- package/packages/apps/datafrete/src/datafrete-webhook.ts +131 -0
- package/packages/apps/datafrete/src/datafrete.ts +7 -0
- package/packages/apps/datafrete/src/index.ts +1 -0
- package/packages/apps/datafrete/tsconfig.json +6 -0
- package/packages/apps/datafrete/webhook.js +1 -0
- package/packages/apps/discounts/lib/discounts.d.ts +2 -0
- package/packages/apps/discounts/lib/discounts.js +6 -0
- package/packages/apps/discounts/lib/discounts.js.map +1 -0
- package/packages/apps/discounts/lib/index.d.ts +1 -0
- package/packages/apps/discounts/lib/index.js +2 -0
- package/packages/apps/discounts/lib/index.js.map +1 -0
- package/packages/apps/discounts/lib-mjs/apply-discount.mjs +429 -0
- package/packages/apps/discounts/lib-mjs/helpers.mjs +169 -0
- package/packages/apps/discounts/package.json +9 -4
- package/packages/apps/discounts/src/discounts.ts +7 -0
- package/packages/apps/discounts/src/index.ts +1 -0
- package/packages/apps/discounts/tsconfig.json +6 -0
- package/packages/apps/emails/CHANGELOG.md +1 -0
- package/packages/apps/emails/README.md +1 -0
- package/packages/apps/emails/lib/events-to-app-emails.js +19 -0
- package/packages/apps/emails/lib/events-to-app-emails.js.map +1 -0
- package/packages/apps/emails/lib/firebase.js +19 -0
- package/packages/apps/emails/lib/firebase.js.map +1 -0
- package/packages/apps/emails/lib/functios-lib/abandoned-carts.js +87 -0
- package/packages/apps/emails/lib/functios-lib/abandoned-carts.js.map +1 -0
- package/packages/apps/emails/lib/functios-lib/handle-orders.js +174 -0
- package/packages/apps/emails/lib/functios-lib/handle-orders.js.map +1 -0
- package/packages/apps/emails/lib/functios-lib/trigger-actions.js +178 -0
- package/packages/apps/emails/lib/functios-lib/trigger-actions.js.map +1 -0
- package/packages/apps/emails/lib/functios-lib/utils.js +33 -0
- package/packages/apps/emails/lib/functios-lib/utils.js.map +1 -0
- package/packages/apps/emails/lib/index.js +2 -0
- package/packages/apps/emails/lib/index.js.map +1 -0
- package/packages/apps/emails/package.json +33 -0
- package/packages/apps/emails/src/events-to-app-emails.ts +27 -0
- package/packages/apps/emails/src/firebase.ts +25 -0
- package/packages/apps/emails/src/functios-lib/abandoned-carts.ts +101 -0
- package/packages/apps/emails/src/functios-lib/handle-orders.ts +232 -0
- package/packages/apps/emails/src/functios-lib/trigger-actions.ts +177 -0
- package/packages/apps/emails/src/functios-lib/utils.ts +45 -0
- package/packages/apps/emails/src/index.ts +1 -0
- package/packages/apps/emails/tsconfig.json +3 -0
- package/packages/apps/fb-conversions/CHANGELOG.md +1 -0
- package/packages/apps/fb-conversions/README.md +1 -0
- package/packages/apps/fb-conversions/lib/fb-conversions-events.js +178 -0
- package/packages/apps/fb-conversions/lib/fb-conversions-events.js.map +1 -0
- package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js +69 -0
- package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js.map +1 -0
- package/packages/apps/fb-conversions/lib/index.js +2 -0
- package/packages/apps/fb-conversions/lib/index.js.map +1 -0
- package/packages/apps/fb-conversions/package.json +33 -0
- package/packages/apps/fb-conversions/src/fb-conversions-events.ts +243 -0
- package/packages/apps/fb-conversions/src/functions-lib/create-fb-objects.ts +104 -0
- package/packages/apps/fb-conversions/src/index.ts +1 -0
- package/packages/apps/fb-conversions/tsconfig.json +3 -0
- package/packages/apps/flash-courier/CHANGELOG.md +1 -0
- package/packages/apps/flash-courier/README.md +1 -0
- package/packages/apps/flash-courier/events.js +1 -0
- package/packages/apps/flash-courier/lib/flash-courier-events.d.ts +5 -0
- package/packages/apps/flash-courier/lib/flash-courier-events.js +14 -0
- package/packages/apps/flash-courier/lib/flash-courier-events.js.map +1 -0
- package/packages/apps/flash-courier/lib/flash-courier.d.ts +2 -0
- package/packages/apps/flash-courier/lib/flash-courier.js +6 -0
- package/packages/apps/flash-courier/lib/flash-courier.js.map +1 -0
- package/packages/apps/flash-courier/lib/index.d.ts +1 -0
- package/packages/apps/flash-courier/lib/index.js +2 -0
- package/packages/apps/flash-courier/lib/index.js.map +1 -0
- package/packages/apps/flash-courier/lib-mjs/calculate-flash-courier.mjs +246 -0
- package/packages/apps/flash-courier/lib-mjs/update-tracking.mjs +176 -0
- package/packages/apps/flash-courier/package.json +34 -0
- package/packages/apps/flash-courier/src/flash-courier-events.ts +13 -0
- package/packages/apps/flash-courier/src/flash-courier.ts +7 -0
- package/packages/apps/flash-courier/src/index.ts +1 -0
- package/packages/apps/flash-courier/tsconfig.json +6 -0
- package/packages/apps/frenet/CHANGELOG.md +1 -0
- package/packages/apps/frenet/README.md +1 -0
- package/packages/apps/frenet/events.js +1 -0
- package/packages/apps/frenet/lib/frenet-events.d.ts +6 -0
- package/packages/apps/frenet/lib/frenet-events.js +19 -0
- package/packages/apps/frenet/lib/frenet-events.js.map +1 -0
- package/packages/apps/frenet/lib/frenet.d.ts +2 -0
- package/packages/apps/frenet/lib/frenet.js +6 -0
- package/packages/apps/frenet/lib/frenet.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/database.d.ts +19 -0
- package/packages/apps/frenet/lib/functions-lib/database.js +128 -0
- package/packages/apps/frenet/lib/functions-lib/database.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/events-to-frenet.d.ts +3 -0
- package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js +48 -0
- package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.d.ts +2 -0
- package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js +19 -0
- package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/remove-delivered.d.ts +2 -0
- package/packages/apps/frenet/lib/functions-lib/remove-delivered.js +30 -0
- package/packages/apps/frenet/lib/functions-lib/remove-delivered.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/tracking-codes.d.ts +2 -0
- package/packages/apps/frenet/lib/functions-lib/tracking-codes.js +139 -0
- package/packages/apps/frenet/lib/functions-lib/tracking-codes.js.map +1 -0
- package/packages/apps/frenet/lib/functions-lib/update-fulfillments.d.ts +6 -0
- package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js +49 -0
- package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js.map +1 -0
- package/packages/apps/frenet/lib/index.d.ts +1 -0
- package/packages/apps/frenet/lib/index.js +2 -0
- package/packages/apps/frenet/lib/index.js.map +1 -0
- package/packages/apps/frenet/lib-mjs/calculate-frenet.mjs +162 -0
- package/packages/apps/frenet/package.json +38 -0
- package/packages/apps/frenet/scripts/tests.sh +7 -0
- package/packages/apps/frenet/src/frenet-events.ts +25 -0
- package/packages/apps/frenet/src/frenet.ts +7 -0
- package/packages/apps/frenet/src/functions-lib/database.ts +160 -0
- package/packages/apps/frenet/src/functions-lib/events-to-frenet.ts +62 -0
- package/packages/apps/frenet/src/functions-lib/fetch-tracking-code.ts +22 -0
- package/packages/apps/frenet/src/functions-lib/remove-delivered.ts +31 -0
- package/packages/apps/frenet/src/functions-lib/tracking-codes.ts +171 -0
- package/packages/apps/frenet/src/functions-lib/update-fulfillments.ts +57 -0
- package/packages/apps/frenet/src/index.ts +1 -0
- package/packages/apps/frenet/tests/calculate-shipping.test.mjs +37 -0
- package/packages/apps/frenet/tsconfig.json +6 -0
- package/packages/apps/galaxpay/CHANGELOG.md +1 -0
- package/packages/apps/galaxpay/README.md +1 -0
- package/packages/apps/galaxpay/assets/onload-expression.js +23 -0
- package/packages/apps/galaxpay/assets/onload-expression.min.js +1 -0
- package/packages/apps/galaxpay/events.js +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/all-parses.d.ts +5 -0
- package/packages/apps/galaxpay/lib/functions-lib/all-parses.js +79 -0
- package/packages/apps/galaxpay/lib/functions-lib/all-parses.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.d.ts +3 -0
- package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js +91 -0
- package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.d.ts +11 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js +60 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.d.ts +2 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js +20 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.d.ts +2 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js +32 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.d.ts +30 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js +73 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.d.ts +8 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js +73 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.d.ts +3 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js +372 -0
- package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js.map +1 -0
- package/packages/apps/galaxpay/lib/functions-lib/utils.d.ts +8 -0
- package/packages/apps/galaxpay/lib/functions-lib/utils.js +17 -0
- package/packages/apps/galaxpay/lib/functions-lib/utils.js.map +1 -0
- package/packages/apps/galaxpay/lib/galaxpay-create-transaction.d.ts +75 -0
- package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js +215 -0
- package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js.map +1 -0
- package/packages/apps/galaxpay/lib/galaxpay-events.d.ts +6 -0
- package/packages/apps/galaxpay/lib/galaxpay-events.js +21 -0
- package/packages/apps/galaxpay/lib/galaxpay-events.js.map +1 -0
- package/packages/apps/galaxpay/lib/galaxpay-list-payments.d.ts +7 -0
- package/packages/apps/galaxpay/lib/galaxpay-list-payments.js +121 -0
- package/packages/apps/galaxpay/lib/galaxpay-list-payments.js.map +1 -0
- package/packages/apps/galaxpay/lib/galaxpay.d.ts +80 -0
- package/packages/apps/galaxpay/lib/galaxpay.js +12 -0
- package/packages/apps/galaxpay/lib/galaxpay.js.map +1 -0
- package/packages/apps/galaxpay/lib/index.d.ts +1 -0
- package/packages/apps/galaxpay/lib/index.js +3 -0
- package/packages/apps/galaxpay/lib/index.js.map +1 -0
- package/packages/apps/galaxpay/package.json +36 -0
- package/packages/apps/galaxpay/scripts/build.sh +4 -0
- package/packages/apps/galaxpay/src/functions-lib/all-parses.ts +91 -0
- package/packages/apps/galaxpay/src/functions-lib/ecom/events-to-galaxpay.ts +104 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-access.ts +80 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-axios.ts +21 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/gerate-token.ts +36 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/handle-plans.ts +91 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/update-subscription.ts +92 -0
- package/packages/apps/galaxpay/src/functions-lib/galaxpay/webhook.ts +484 -0
- package/packages/apps/galaxpay/src/functions-lib/utils.ts +23 -0
- package/packages/apps/galaxpay/src/galaxpay-create-transaction.ts +257 -0
- package/packages/apps/galaxpay/src/galaxpay-events.ts +28 -0
- package/packages/apps/galaxpay/src/galaxpay-list-payments.ts +148 -0
- package/packages/apps/galaxpay/src/galaxpay.ts +12 -0
- package/packages/apps/galaxpay/src/index.ts +2 -0
- package/packages/apps/galaxpay/tsconfig.json +6 -0
- package/packages/apps/galaxpay/types/config-app.d.ts +99 -0
- package/packages/apps/google-analytics/CHANGELOG.md +1 -0
- package/packages/apps/google-analytics/README.md +1 -0
- package/packages/apps/google-analytics/lib/google-analytics-events.js +129 -0
- package/packages/apps/google-analytics/lib/google-analytics-events.js.map +1 -0
- package/packages/apps/google-analytics/lib/index.js +2 -0
- package/packages/apps/google-analytics/lib/index.js.map +1 -0
- package/packages/apps/google-analytics/package.json +32 -0
- package/packages/apps/google-analytics/src/google-analytics-events.ts +168 -0
- package/packages/apps/google-analytics/src/index.ts +1 -0
- package/packages/apps/google-analytics/tsconfig.json +3 -0
- package/packages/apps/google-analytics/types.d.ts +43 -0
- package/packages/apps/jadlog/CHANGELOG.md +1 -0
- package/packages/apps/jadlog/README.md +1 -0
- package/packages/apps/jadlog/lib/index.d.ts +1 -0
- package/packages/apps/jadlog/lib/index.js +2 -0
- package/packages/apps/jadlog/lib/index.js.map +1 -0
- package/packages/apps/jadlog/lib/jadlog.d.ts +2 -0
- package/packages/apps/jadlog/lib/jadlog.js +6 -0
- package/packages/apps/jadlog/lib/jadlog.js.map +1 -0
- package/packages/apps/jadlog/lib-mjs/calculate-jadlog.mjs +421 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-0.mjs +147 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-1.mjs +1149 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-2.mjs +1137 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-3.mjs +1638 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-4.mjs +1089 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-5.mjs +1101 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-6.mjs +1893 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-7.mjs +1371 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-8.mjs +1401 -0
- package/packages/apps/jadlog/lib-mjs/deadlines/range-9.mjs +963 -0
- package/packages/apps/jadlog/lib-mjs/jadlog-get-deadlines.mjs +32 -0
- package/packages/apps/jadlog/package.json +28 -0
- package/packages/apps/jadlog/src/index.ts +1 -0
- package/packages/apps/jadlog/src/jadlog.ts +7 -0
- package/packages/apps/jadlog/tsconfig.json +6 -0
- package/packages/apps/loyalty-points/CHANGELOG.md +1 -0
- package/packages/apps/loyalty-points/README.md +1 -0
- package/packages/apps/loyalty-points/events.js +1 -0
- package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.d.ts +2 -0
- package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js +98 -0
- package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js.map +1 -0
- package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.d.ts +5 -0
- package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js +20 -0
- package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js.map +1 -0
- package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.d.ts +3 -0
- package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js +208 -0
- package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js.map +1 -0
- package/packages/apps/loyalty-points/lib/index.d.ts +1 -0
- package/packages/apps/loyalty-points/lib/index.js +2 -0
- package/packages/apps/loyalty-points/lib/index.js.map +1 -0
- package/packages/apps/loyalty-points/lib/loyalty-create-transaction.d.ts +80 -0
- package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js +215 -0
- package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js.map +1 -0
- package/packages/apps/loyalty-points/lib/loyalty-list-payments.d.ts +3 -0
- package/packages/apps/loyalty-points/lib/loyalty-list-payments.js +49 -0
- package/packages/apps/loyalty-points/lib/loyalty-list-payments.js.map +1 -0
- package/packages/apps/loyalty-points/lib/loyalty-points-events.d.ts +6 -0
- package/packages/apps/loyalty-points/lib/loyalty-points-events.js +37 -0
- package/packages/apps/loyalty-points/lib/loyalty-points-events.js.map +1 -0
- package/packages/apps/loyalty-points/lib/loyalty-points.d.ts +81 -0
- package/packages/apps/loyalty-points/lib/loyalty-points.js +12 -0
- package/packages/apps/loyalty-points/lib/loyalty-points.js.map +1 -0
- package/packages/apps/loyalty-points/package.json +35 -0
- package/packages/apps/loyalty-points/src/functions-lib/cron-add-points.ts +104 -0
- package/packages/apps/loyalty-points/src/functions-lib/get-program-id.ts +23 -0
- package/packages/apps/loyalty-points/src/functions-lib/handle-loyalty-points-event.ts +249 -0
- package/packages/apps/loyalty-points/src/index.ts +1 -0
- package/packages/apps/loyalty-points/src/loyalty-create-transaction.ts +249 -0
- package/packages/apps/loyalty-points/src/loyalty-list-payments.ts +62 -0
- package/packages/apps/loyalty-points/src/loyalty-points-events.ts +52 -0
- package/packages/apps/loyalty-points/src/loyalty-points.ts +12 -0
- package/packages/apps/loyalty-points/tests/1-list-payments.test.mjs +37 -0
- package/packages/apps/loyalty-points/tests/2-create-transaction.test.mjs +41 -0
- package/packages/apps/loyalty-points/tsconfig.json +6 -0
- package/packages/apps/mandae/CHANGELOG.md +1 -0
- package/packages/apps/mandae/README.md +1 -0
- package/packages/apps/mandae/lib/index.d.ts +1 -0
- package/packages/apps/mandae/lib/index.js +2 -0
- package/packages/apps/mandae/lib/index.js.map +1 -0
- package/packages/apps/mandae/lib/mandae.d.ts +2 -0
- package/packages/apps/mandae/lib/mandae.js +6 -0
- package/packages/apps/mandae/lib/mandae.js.map +1 -0
- package/packages/apps/mandae/lib-mjs/calculate-mandae.mjs +297 -0
- package/packages/apps/mandae/package.json +31 -0
- package/packages/apps/mandae/scripts/tests.sh +7 -0
- package/packages/apps/mandae/src/index.ts +1 -0
- package/packages/apps/mandae/src/mandae.ts +7 -0
- package/packages/apps/mandae/tests/calculate-shipping.test.mjs +37 -0
- package/packages/apps/mandae/tsconfig.json +6 -0
- package/packages/apps/melhor-envio/CHANGELOG.md +1 -0
- package/packages/apps/melhor-envio/README.md +1 -0
- package/packages/apps/melhor-envio/events.js +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.d.ts +19 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.js +115 -0
- package/packages/apps/melhor-envio/lib/functions-lib/database.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.d.ts +3 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js +116 -0
- package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.d.ts +42 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.js +185 -0
- package/packages/apps/melhor-envio/lib/functions-lib/new-label.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.d.ts +5 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js +40 -0
- package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js.map +1 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.d.ts +2 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js +164 -0
- package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js.map +1 -0
- package/packages/apps/melhor-envio/lib/index.d.ts +1 -0
- package/packages/apps/melhor-envio/lib/index.js +2 -0
- package/packages/apps/melhor-envio/lib/index.js.map +1 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.d.ts +6 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.js +17 -0
- package/packages/apps/melhor-envio/lib/melhor-envio-events.js.map +1 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.d.ts +2 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.js +6 -0
- package/packages/apps/melhor-envio/lib/melhor-envio.js.map +1 -0
- package/packages/apps/melhor-envio/lib-mjs/calculate-melhor-envio.mjs +347 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/client-melhor-envio.mjs +14 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/error-handling.mjs +62 -0
- package/packages/apps/melhor-envio/lib-mjs/functions/new-shipment.mjs +119 -0
- package/packages/apps/melhor-envio/package.json +36 -0
- package/packages/apps/melhor-envio/src/functions-lib/database.ts +141 -0
- package/packages/apps/melhor-envio/src/functions-lib/events-to-melhor-envio.ts +150 -0
- package/packages/apps/melhor-envio/src/functions-lib/new-label.ts +214 -0
- package/packages/apps/melhor-envio/src/functions-lib/order-is-valid.ts +51 -0
- package/packages/apps/melhor-envio/src/functions-lib/tracking-codes.ts +191 -0
- package/packages/apps/melhor-envio/src/index.ts +1 -0
- package/packages/apps/melhor-envio/src/melhor-envio-events.ts +23 -0
- package/packages/apps/melhor-envio/src/melhor-envio.ts +7 -0
- package/packages/apps/melhor-envio/tsconfig.json +6 -0
- package/packages/apps/mercadopago/CHANGELOG.md +1 -0
- package/packages/apps/mercadopago/README.md +1 -0
- package/packages/apps/mercadopago/assets/onload-expression.js +142 -0
- package/packages/apps/mercadopago/assets/onload-expression.min.js +1 -0
- package/packages/apps/mercadopago/lib/index.d.ts +1 -0
- package/packages/apps/mercadopago/lib/index.js +3 -0
- package/packages/apps/mercadopago/lib/index.js.map +1 -0
- package/packages/apps/mercadopago/lib/mercadopago.d.ts +90 -0
- package/packages/apps/mercadopago/lib/mercadopago.js +12 -0
- package/packages/apps/mercadopago/lib/mercadopago.js.map +1 -0
- package/packages/apps/mercadopago/lib/mp-create-transaction.d.ts +88 -0
- package/packages/apps/mercadopago/lib/mp-create-transaction.js +294 -0
- package/packages/apps/mercadopago/lib/mp-create-transaction.js.map +1 -0
- package/packages/apps/mercadopago/lib/mp-list-payments.d.ts +6 -0
- package/packages/apps/mercadopago/lib/mp-list-payments.js +185 -0
- package/packages/apps/mercadopago/lib/mp-list-payments.js.map +1 -0
- package/packages/apps/mercadopago/lib/mp-webhook.d.ts +5 -0
- package/packages/apps/mercadopago/lib/mp-webhook.js +119 -0
- package/packages/apps/mercadopago/lib/mp-webhook.js.map +1 -0
- package/packages/apps/mercadopago/package.json +38 -0
- package/packages/apps/mercadopago/scripts/build.sh +4 -0
- package/packages/apps/mercadopago/scripts/tests.sh +7 -0
- package/packages/apps/mercadopago/src/index.ts +2 -0
- package/packages/apps/mercadopago/src/mercadopago.ts +12 -0
- package/packages/apps/mercadopago/src/mp-create-transaction.ts +318 -0
- package/packages/apps/mercadopago/src/mp-list-payments.ts +210 -0
- package/packages/apps/mercadopago/src/mp-webhook.ts +137 -0
- package/packages/apps/mercadopago/tests/1-list-payments.test.mjs +37 -0
- package/packages/apps/mercadopago/tests/2-create-transaction.test.mjs +42 -0
- package/packages/apps/mercadopago/tsconfig.json +6 -0
- package/packages/apps/mercadopago/webhook.js +1 -0
- package/packages/apps/pagarme/CHANGELOG.md +1 -0
- package/packages/apps/pagarme/README.md +1 -0
- package/packages/apps/pagarme/assets/onload-expression.js +32 -0
- package/packages/apps/pagarme/assets/onload-expression.min.js +1 -0
- package/packages/apps/pagarme/lib/functions-lib/add-installments.d.ts +55 -0
- package/packages/apps/pagarme/lib/functions-lib/add-installments.js +52 -0
- package/packages/apps/pagarme/lib/functions-lib/add-installments.js.map +1 -0
- package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.d.ts +2 -0
- package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js +24 -0
- package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js.map +1 -0
- package/packages/apps/pagarme/lib/index.d.ts +1 -0
- package/packages/apps/pagarme/lib/index.js +3 -0
- package/packages/apps/pagarme/lib/index.js.map +1 -0
- package/packages/apps/pagarme/lib/pagarme-create-transaction.d.ts +86 -0
- package/packages/apps/pagarme/lib/pagarme-create-transaction.js +300 -0
- package/packages/apps/pagarme/lib/pagarme-create-transaction.js.map +1 -0
- package/packages/apps/pagarme/lib/pagarme-list-payments.d.ts +6 -0
- package/packages/apps/pagarme/lib/pagarme-list-payments.js +161 -0
- package/packages/apps/pagarme/lib/pagarme-list-payments.js.map +1 -0
- package/packages/apps/pagarme/lib/pagarme-webhook.d.ts +4 -0
- package/packages/apps/pagarme/lib/pagarme-webhook.js +88 -0
- package/packages/apps/pagarme/lib/pagarme-webhook.js.map +1 -0
- package/packages/apps/pagarme/lib/pagarme.d.ts +90 -0
- package/packages/apps/pagarme/lib/pagarme.js +12 -0
- package/packages/apps/pagarme/lib/pagarme.js.map +1 -0
- package/packages/apps/pagarme/package.json +38 -0
- package/packages/apps/pagarme/scripts/build.sh +4 -0
- package/packages/apps/pagarme/src/functions-lib/add-installments.ts +65 -0
- package/packages/apps/pagarme/src/functions-lib/parse-status-to-ecom.ts +23 -0
- package/packages/apps/pagarme/src/index.ts +2 -0
- package/packages/apps/pagarme/src/pagarme-create-transaction.ts +335 -0
- package/packages/apps/pagarme/src/pagarme-list-payments.ts +191 -0
- package/packages/apps/pagarme/src/pagarme-webhook.ts +97 -0
- package/packages/apps/pagarme/src/pagarme.ts +12 -0
- package/packages/apps/pagarme/tsconfig.json +6 -0
- package/packages/apps/pagarme/webhook.js +1 -0
- package/packages/apps/pagarme-v5/CHANGELOG.md +1 -0
- package/packages/apps/pagarme-v5/README.md +1 -0
- package/packages/apps/pagarme-v5/assets/onload-expression.js +38 -0
- package/packages/apps/pagarme-v5/assets/onload-expression.min.js +1 -0
- package/packages/apps/pagarme-v5/events.js +1 -0
- package/packages/apps/pagarme-v5/lib/index.d.ts +1 -0
- package/packages/apps/pagarme-v5/lib/index.js +2 -0
- package/packages/apps/pagarme-v5/lib/index.js.map +1 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5-events.d.ts +6 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js +21 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js.map +1 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5.d.ts +4 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5.js +12 -0
- package/packages/apps/pagarme-v5/lib/pagarme-v5.js.map +1 -0
- package/packages/apps/pagarme-v5/lib-mjs/create-pagarme5-transaction.mjs +208 -0
- package/packages/apps/pagarme-v5/lib-mjs/events-to-pagarme5.mjs +209 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/api-utils.mjs +220 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/firestore-utils.mjs +24 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/create-axios.mjs +12 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/handle-plans.mjs +69 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/parses-utils.mjs +61 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/payment-subscription.mjs +244 -0
- package/packages/apps/pagarme-v5/lib-mjs/functions-lib/payments/add-installments.mjs +45 -0
- package/packages/apps/pagarme-v5/lib-mjs/list-pagarme5-payments.mjs +218 -0
- package/packages/apps/pagarme-v5/lib-mjs/pagarme5-webhooks.mjs +343 -0
- package/packages/apps/pagarme-v5/package.json +38 -0
- package/packages/apps/pagarme-v5/scripts/build.sh +4 -0
- package/packages/apps/pagarme-v5/scripts/tests.sh +9 -0
- package/packages/apps/pagarme-v5/src/index.ts +1 -0
- package/packages/apps/pagarme-v5/src/pagarme-v5-events.ts +27 -0
- package/packages/apps/pagarme-v5/src/pagarme-v5.ts +12 -0
- package/packages/apps/pagarme-v5/tests/1-list-payments.test.mjs +37 -0
- package/packages/apps/pagarme-v5/tests/2-create-transaction.test.mjs +56 -0
- package/packages/apps/pagarme-v5/tsconfig.json +6 -0
- package/packages/apps/paghiper/CHANGELOG.md +1 -0
- package/packages/apps/paghiper/README.md +1 -0
- package/packages/apps/paghiper/lib/functions-lib/create-axios.d.ts +2 -0
- package/packages/apps/paghiper/lib/functions-lib/create-axios.js +22 -0
- package/packages/apps/paghiper/lib/functions-lib/create-axios.js.map +1 -0
- package/packages/apps/paghiper/lib/functions-lib/handle-webhook.d.ts +3 -0
- package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js +162 -0
- package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js.map +1 -0
- package/packages/apps/paghiper/lib/index.d.ts +1 -0
- package/packages/apps/paghiper/lib/index.js +2 -0
- package/packages/apps/paghiper/lib/index.js.map +1 -0
- package/packages/apps/paghiper/lib/paghiper-create-transaction.d.ts +75 -0
- package/packages/apps/paghiper/lib/paghiper-create-transaction.js +207 -0
- package/packages/apps/paghiper/lib/paghiper-create-transaction.js.map +1 -0
- package/packages/apps/paghiper/lib/paghiper-list-payments.d.ts +7 -0
- package/packages/apps/paghiper/lib/paghiper-list-payments.js +104 -0
- package/packages/apps/paghiper/lib/paghiper-list-payments.js.map +1 -0
- package/packages/apps/paghiper/lib/paghiper-webhook.d.ts +5 -0
- package/packages/apps/paghiper/lib/paghiper-webhook.js +18 -0
- package/packages/apps/paghiper/lib/paghiper-webhook.js.map +1 -0
- package/packages/apps/paghiper/lib/paghiper.d.ts +80 -0
- package/packages/apps/paghiper/lib/paghiper.js +12 -0
- package/packages/apps/paghiper/lib/paghiper.js.map +1 -0
- package/packages/apps/paghiper/package.json +36 -0
- package/packages/apps/paghiper/src/functions-lib/create-axios.ts +21 -0
- package/packages/apps/paghiper/src/functions-lib/handle-webhook.ts +185 -0
- package/packages/apps/paghiper/src/index.ts +1 -0
- package/packages/apps/paghiper/src/paghiper-create-transaction.ts +250 -0
- package/packages/apps/paghiper/src/paghiper-list-payments.ts +134 -0
- package/packages/apps/paghiper/src/paghiper-webhook.ts +17 -0
- package/packages/apps/paghiper/src/paghiper.ts +12 -0
- package/packages/apps/paghiper/tsconfig.json +6 -0
- package/packages/apps/paghiper/types/config-app.d.ts +34 -0
- package/packages/apps/paghiper/webhook.js +1 -0
- package/packages/apps/pix/CHANGELOG.md +1 -0
- package/packages/apps/pix/README.md +1 -0
- package/packages/apps/pix/lib/functions-lib/get-certificate.d.ts +2 -0
- package/packages/apps/pix/lib/functions-lib/get-certificate.js +21 -0
- package/packages/apps/pix/lib/functions-lib/get-certificate.js.map +1 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.d.ts +15 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js +65 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js.map +1 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.d.ts +6 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js +20 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js.map +1 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.d.ts +12 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js +36 -0
- package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js.map +1 -0
- package/packages/apps/pix/lib/index.d.ts +1 -0
- package/packages/apps/pix/lib/index.js +3 -0
- package/packages/apps/pix/lib/index.js.map +1 -0
- package/packages/apps/pix/lib/pix-create-transaction.d.ts +76 -0
- package/packages/apps/pix/lib/pix-create-transaction.js +242 -0
- package/packages/apps/pix/lib/pix-create-transaction.js.map +1 -0
- package/packages/apps/pix/lib/pix-list-payments.d.ts +13 -0
- package/packages/apps/pix/lib/pix-list-payments.js +102 -0
- package/packages/apps/pix/lib/pix-list-payments.js.map +1 -0
- package/packages/apps/pix/lib/pix-webhook.d.ts +5 -0
- package/packages/apps/pix/lib/pix-webhook.js +146 -0
- package/packages/apps/pix/lib/pix-webhook.js.map +1 -0
- package/packages/apps/pix/lib/pix.d.ts +81 -0
- package/packages/apps/pix/lib/pix.js +12 -0
- package/packages/apps/pix/lib/pix.js.map +1 -0
- package/packages/apps/pix/package.json +36 -0
- package/packages/apps/pix/src/functions-lib/get-certificate.ts +24 -0
- package/packages/apps/pix/src/functions-lib/pix-auth/construtor.ts +87 -0
- package/packages/apps/pix/src/functions-lib/pix-auth/create-axios.ts +24 -0
- package/packages/apps/pix/src/functions-lib/pix-auth/oauth.ts +50 -0
- package/packages/apps/pix/src/index.ts +2 -0
- package/packages/apps/pix/src/pix-create-transaction.ts +285 -0
- package/packages/apps/pix/src/pix-list-payments.ts +120 -0
- package/packages/apps/pix/src/pix-webhook.ts +171 -0
- package/packages/apps/pix/src/pix.ts +12 -0
- package/packages/apps/pix/tsconfig.json +6 -0
- package/packages/apps/pix/webhook.js +1 -0
- package/packages/apps/tiny-erp/CHANGELOG.md +1 -0
- package/packages/apps/tiny-erp/README.md +1 -0
- package/packages/apps/tiny-erp/lib/event-to-tiny.js +115 -0
- package/packages/apps/tiny-erp/lib/event-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/index.js +2 -0
- package/packages/apps/tiny-erp/lib/index.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js +79 -0
- package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js +106 -0
- package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js +58 -0
- package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js +7 -0
- package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js +99 -0
- package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js +169 -0
- package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js +54 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js +197 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js +279 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js +146 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js +34 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js +39 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js.map +1 -0
- package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js +47 -0
- package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js.map +1 -0
- package/packages/apps/tiny-erp/lib/tiny-erp.js +19 -0
- package/packages/apps/tiny-erp/lib/tiny-erp.js.map +1 -0
- package/packages/apps/tiny-erp/lib/tiny-webhook.js +95 -0
- package/packages/apps/tiny-erp/lib/tiny-webhook.js.map +1 -0
- package/packages/apps/tiny-erp/package.json +34 -0
- package/packages/apps/tiny-erp/src/event-to-tiny.ts +134 -0
- package/packages/apps/tiny-erp/src/index.ts +1 -0
- package/packages/apps/tiny-erp/src/integration/after-tiny-queue.ts +80 -0
- package/packages/apps/tiny-erp/src/integration/export-order-to-tiny.ts +113 -0
- package/packages/apps/tiny-erp/src/integration/export-product-to-tiny.ts +60 -0
- package/packages/apps/tiny-erp/src/integration/helpers/format-tiny-date.ts +6 -0
- package/packages/apps/tiny-erp/src/integration/import-order-from-tiny.ts +109 -0
- package/packages/apps/tiny-erp/src/integration/import-product-from-tiny.ts +176 -0
- package/packages/apps/tiny-erp/src/integration/parsers/order-from-tiny.ts +61 -0
- package/packages/apps/tiny-erp/src/integration/parsers/order-to-tiny.ts +212 -0
- package/packages/apps/tiny-erp/src/integration/parsers/product-from-tiny.ts +318 -0
- package/packages/apps/tiny-erp/src/integration/parsers/product-to-tiny.ts +158 -0
- package/packages/apps/tiny-erp/src/integration/parsers/status-from-tiny.ts +35 -0
- package/packages/apps/tiny-erp/src/integration/parsers/status-to-tiny.ts +42 -0
- package/packages/apps/tiny-erp/src/integration/post-tiny-erp.ts +52 -0
- package/packages/apps/tiny-erp/src/tiny-erp.ts +26 -0
- package/packages/apps/tiny-erp/src/tiny-webhook.ts +103 -0
- package/packages/apps/tiny-erp/tsconfig.json +3 -0
- package/packages/apps/webhooks/CHANGELOG.md +1 -0
- package/packages/apps/webhooks/README.md +1 -0
- package/packages/apps/webhooks/lib/app-webhooks.js +9 -0
- package/packages/apps/webhooks/lib/app-webhooks.js.map +1 -0
- package/packages/apps/webhooks/lib/events-to-webhooks-app.js +131 -0
- package/packages/apps/webhooks/lib/events-to-webhooks-app.js.map +1 -0
- package/packages/apps/webhooks/lib/index.js +2 -0
- package/packages/apps/webhooks/lib/index.js.map +1 -0
- package/packages/apps/webhooks/package.json +32 -0
- package/packages/apps/webhooks/src/app-webhooks.ts +14 -0
- package/packages/apps/webhooks/src/events-to-webhooks-app.ts +188 -0
- package/packages/apps/webhooks/src/index.ts +1 -0
- package/packages/apps/webhooks/tsconfig.json +3 -0
- package/packages/cli/CHANGELOG.md +1 -0
- package/packages/cli/README.md +1 -0
- package/packages/cli/bin/run.mjs +4 -0
- package/packages/cli/config/firebase.json +172 -0
- package/packages/cli/config/firestore.indexes.json +4 -0
- package/packages/cli/config/firestore.rules +11 -0
- package/packages/cli/config/remoteconfig.template.json +1 -0
- package/packages/cli/config/storage.rules +15 -0
- package/packages/cli/create-auth.js +5 -0
- package/packages/cli/lib/build.js +50 -0
- package/packages/cli/lib/cli.js +181 -0
- package/packages/cli/lib/create-auth.js +46 -0
- package/packages/cli/lib/login.js +38 -0
- package/packages/cli/lib/setup-gcloud.js +194 -0
- package/packages/cli/lib/setup-gh.js +59 -0
- package/packages/cli/package.json +36 -0
- package/packages/cli/src/build.ts +56 -0
- package/packages/cli/src/cli.ts +222 -0
- package/packages/cli/src/create-auth.ts +51 -0
- package/packages/cli/src/login.ts +45 -0
- package/packages/cli/src/setup-gcloud.ts +228 -0
- package/packages/cli/src/setup-gh.ts +83 -0
- package/packages/cli/tsconfig.json +6 -0
- package/packages/config/CHANGELOG.md +1 -0
- package/packages/config/README.md +1 -0
- package/packages/config/lib/config.d.ts +15 -0
- package/packages/config/lib/config.js +47 -0
- package/packages/config/lib/config.js.map +1 -0
- package/packages/config/lib/defaults.d.ts +4 -0
- package/packages/config/lib/defaults.js +8 -0
- package/packages/config/lib/defaults.js.map +1 -0
- package/packages/config/lib/env.d.ts +11 -0
- package/packages/config/lib/env.js +31 -0
- package/packages/config/lib/env.js.map +1 -0
- package/packages/config/package.json +33 -0
- package/packages/config/src/config.ts +65 -0
- package/packages/config/src/defaults.ts +7 -0
- package/packages/config/src/env.ts +46 -0
- package/packages/config/tsconfig.json +6 -0
- package/packages/emails/CHANGELOG.md +1 -0
- package/packages/emails/README.md +1 -0
- package/packages/emails/lib/index.d.ts +56 -0
- package/packages/emails/lib/index.js +83 -0
- package/packages/emails/lib/index.js.map +1 -0
- package/packages/emails/lib/parse-template-to-html.d.ts +3 -0
- package/packages/emails/lib/parse-template-to-html.js +16 -0
- package/packages/emails/lib/parse-template-to-html.js.map +1 -0
- package/packages/emails/lib/providers/sendgrid/index.d.ts +8 -0
- package/packages/emails/lib/providers/sendgrid/index.js +54 -0
- package/packages/emails/lib/providers/sendgrid/index.js.map +1 -0
- package/packages/emails/lib/providers/sendgrid/parse-to-data.d.ts +5 -0
- package/packages/emails/lib/providers/sendgrid/parse-to-data.js +55 -0
- package/packages/emails/lib/providers/sendgrid/parse-to-data.js.map +1 -0
- package/packages/emails/lib/providers/smtp/index.d.ts +13 -0
- package/packages/emails/lib/providers/smtp/index.js +79 -0
- package/packages/emails/lib/providers/smtp/index.js.map +1 -0
- package/packages/emails/package.json +35 -0
- package/packages/emails/src/index.ts +144 -0
- package/packages/emails/src/parse-template-to-html.ts +19 -0
- package/packages/emails/src/providers/sendgrid/index.ts +78 -0
- package/packages/emails/src/providers/sendgrid/parse-to-data.ts +92 -0
- package/packages/emails/src/providers/smtp/index.ts +115 -0
- package/packages/emails/tests/assets/customer.json +68 -0
- package/packages/emails/tests/assets/order.json +190 -0
- package/packages/emails/tests/assets/store.json +25 -0
- package/packages/emails/tests/ex.config-sendgrid.json +19 -0
- package/packages/emails/tests/ex.config-smtp.json +21 -0
- package/packages/emails/tests/sendgrid.test.ts +155 -0
- package/packages/emails/tests/smtp.test.ts +146 -0
- package/packages/emails/tests/templates/new-order.ejs +37 -0
- package/packages/emails/tsconfig.json +6 -0
- package/packages/emails/types/index.d.ts +84 -0
- package/packages/emails/types/sendgrid.d.ts +28 -0
- package/packages/eslint/CHANGELOG.md +1 -0
- package/packages/eslint/README.md +1 -0
- package/packages/eslint/base.eslintrc.cjs +131 -0
- package/packages/eslint/package.json +30 -0
- package/packages/eslint/storefront.eslintrc.cjs +39 -0
- package/packages/events/CHANGELOG.md +1 -0
- package/packages/events/README.md +1 -0
- package/packages/events/firebase.js +1 -0
- package/packages/events/lib/firebase.js +37 -0
- package/packages/events/lib/firebase.js.map +1 -0
- package/packages/events/lib/index.js +2 -0
- package/packages/events/lib/index.js.map +1 -0
- package/packages/events/package.json +54 -0
- package/packages/events/src/firebase.ts +37 -0
- package/packages/events/src/index.ts +1 -0
- package/packages/events/tsconfig.json +3 -0
- package/packages/feeds/CHANGELOG.md +1 -0
- package/packages/feeds/README.md +1 -0
- package/packages/feeds/firebase.js +1 -0
- package/packages/feeds/lib/firebase/serve-feeds.js +9 -0
- package/packages/feeds/lib/firebase/serve-feeds.js.map +1 -0
- package/packages/feeds/lib/firebase.js +14 -0
- package/packages/feeds/lib/firebase.js.map +1 -0
- package/packages/feeds/lib/index.js +1 -0
- package/packages/feeds/lib/index.js.map +1 -0
- package/packages/feeds/package.json +33 -0
- package/packages/feeds/src/firebase/serve-feeds.ts +10 -0
- package/packages/feeds/src/firebase.ts +15 -0
- package/packages/feeds/src/index.ts +0 -0
- package/packages/feeds/tsconfig.json +3 -0
- package/packages/firebase/CHANGELOG.md +1 -0
- package/packages/firebase/README.md +1 -0
- package/packages/firebase/config.js +5 -0
- package/packages/firebase/lib/config.d.ts +113 -0
- package/packages/firebase/lib/config.js +169 -0
- package/packages/firebase/lib/config.js.map +1 -0
- package/packages/firebase/lib/const.d.ts +2 -0
- package/packages/firebase/lib/const.js +6 -0
- package/packages/firebase/lib/const.js.map +1 -0
- package/packages/firebase/lib/env.d.ts +3 -0
- package/packages/firebase/lib/env.js +4 -0
- package/packages/firebase/lib/env.js.map +1 -0
- package/packages/firebase/lib/handlers/check-store-events.d.ts +6 -0
- package/packages/firebase/lib/handlers/check-store-events.js +190 -0
- package/packages/firebase/lib/handlers/check-store-events.js.map +1 -0
- package/packages/firebase/lib/helpers/firestore.d.ts +2 -0
- package/packages/firebase/lib/helpers/firestore.js +24 -0
- package/packages/firebase/lib/helpers/firestore.js.map +1 -0
- package/packages/firebase/lib/helpers/pubsub.d.ts +9 -0
- package/packages/firebase/lib/helpers/pubsub.js +32 -0
- package/packages/firebase/lib/helpers/pubsub.js.map +1 -0
- package/packages/firebase/lib/helpers/update-app-data.d.ts +9 -0
- package/packages/firebase/lib/helpers/update-app-data.js +45 -0
- package/packages/firebase/lib/helpers/update-app-data.js.map +1 -0
- package/packages/firebase/lib/index.d.ts +2 -0
- package/packages/firebase/lib/index.js +20 -0
- package/packages/firebase/lib/index.js.map +1 -0
- package/packages/firebase/lib/init.d.ts +1 -0
- package/packages/firebase/lib/init.js +6 -0
- package/packages/firebase/lib/init.js.map +1 -0
- package/packages/firebase/package.json +44 -0
- package/packages/firebase/src/config.ts +186 -0
- package/packages/firebase/src/const.ts +5 -0
- package/packages/firebase/src/env.ts +5 -0
- package/packages/firebase/src/handlers/check-store-events.ts +223 -0
- package/packages/firebase/src/helpers/firestore.ts +31 -0
- package/packages/firebase/src/helpers/pubsub.ts +52 -0
- package/packages/firebase/src/helpers/update-app-data.ts +49 -0
- package/packages/firebase/src/index.ts +20 -0
- package/packages/firebase/src/init.ts +5 -0
- package/packages/firebase/tsconfig.json +6 -0
- package/packages/i18n/CHANGELOG.md +1 -0
- package/packages/i18n/README.md +1 -0
- package/packages/i18n/lib/all.d.ts +8 -0
- package/packages/i18n/lib/all.js +10 -0
- package/packages/i18n/lib/all.js.map +1 -0
- package/packages/i18n/lib/dirname.d.ts +2 -0
- package/packages/i18n/lib/dirname.js +4 -0
- package/packages/i18n/lib/dirname.js.map +1 -0
- package/packages/i18n/lib/en_us/i19a.txt +1 -0
- package/packages/i18n/lib/en_us/i19about.txt +1 -0
- package/packages/i18n/lib/en_us/i19aboutCvvMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19aboveOf.txt +1 -0
- package/packages/i18n/lib/en_us/i19acceptAttachedFile.txt +1 -0
- package/packages/i18n/lib/en_us/i19acceptCustomOptionByCustomer.txt +1 -0
- package/packages/i18n/lib/en_us/i19accessMyAccount.txt +1 -0
- package/packages/i18n/lib/en_us/i19activate.txt +1 -0
- package/packages/i18n/lib/en_us/i19active.txt +1 -0
- package/packages/i18n/lib/en_us/i19adRelevance.txt +1 -0
- package/packages/i18n/lib/en_us/i19adType.txt +1 -0
- package/packages/i18n/lib/en_us/i19add$1ToEarn.txt +1 -0
- package/packages/i18n/lib/en_us/i19add.txt +1 -0
- package/packages/i18n/lib/en_us/i19addApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19addCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19addClient.txt +1 -0
- package/packages/i18n/lib/en_us/i19addDiscountCoupon.txt +1 -0
- package/packages/i18n/lib/en_us/i19addGiftList.txt +1 -0
- package/packages/i18n/lib/en_us/i19addGrid.txt +1 -0
- package/packages/i18n/lib/en_us/i19addMoreProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19addPreference.txt +1 -0
- package/packages/i18n/lib/en_us/i19addProduct.txt +1 -0
- package/packages/i18n/lib/en_us/i19addToCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19addToFavorites.txt +1 -0
- package/packages/i18n/lib/en_us/i19addToPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19addVariants.txt +1 -0
- package/packages/i18n/lib/en_us/i19additional.txt +1 -0
- package/packages/i18n/lib/en_us/i19additionalComments.txt +1 -0
- package/packages/i18n/lib/en_us/i19additionalCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19additionalCostOption.txt +1 -0
- package/packages/i18n/lib/en_us/i19additionalInfo.txt +1 -0
- package/packages/i18n/lib/en_us/i19additionalNotes.txt +1 -0
- package/packages/i18n/lib/en_us/i19address.txt +1 -0
- package/packages/i18n/lib/en_us/i19addresses.txt +1 -0
- package/packages/i18n/lib/en_us/i19addressesName.txt +1 -0
- package/packages/i18n/lib/en_us/i19adminSettings.txt +1 -0
- package/packages/i18n/lib/en_us/i19advanced.txt +1 -0
- package/packages/i18n/lib/en_us/i19adwords.txt +1 -0
- package/packages/i18n/lib/en_us/i19adwordsRemarketing.txt +1 -0
- package/packages/i18n/lib/en_us/i19adwordsRemarketingCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19affiliateCoede.txt +1 -0
- package/packages/i18n/lib/en_us/i19afterApproval.txt +1 -0
- package/packages/i18n/lib/en_us/i19afterPayment.txt +1 -0
- package/packages/i18n/lib/en_us/i19all.txt +1 -0
- package/packages/i18n/lib/en_us/i19allCategories.txt +1 -0
- package/packages/i18n/lib/en_us/i19allOptions.txt +1 -0
- package/packages/i18n/lib/en_us/i19allProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19alt.txt +1 -0
- package/packages/i18n/lib/en_us/i19amount.txt +1 -0
- package/packages/i18n/lib/en_us/i19another.txt +1 -0
- package/packages/i18n/lib/en_us/i19anyPaymentMethodMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19anyPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19api.txt +1 -0
- package/packages/i18n/lib/en_us/i19app.txt +1 -0
- package/packages/i18n/lib/en_us/i19appAlreadyInstalledMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19appConfiguration.txt +1 -0
- package/packages/i18n/lib/en_us/i19appDevelopers.txt +1 -0
- package/packages/i18n/lib/en_us/i19application.txt +1 -0
- package/packages/i18n/lib/en_us/i19applications.txt +1 -0
- package/packages/i18n/lib/en_us/i19applyDiscount.txt +1 -0
- package/packages/i18n/lib/en_us/i19applyFilters.txt +1 -0
- package/packages/i18n/lib/en_us/i19apps.txt +1 -0
- package/packages/i18n/lib/en_us/i19areYouWantToDeleteAppQn.txt +1 -0
- package/packages/i18n/lib/en_us/i19asOf.txt +1 -0
- package/packages/i18n/lib/en_us/i19associateImage.txt +1 -0
- package/packages/i18n/lib/en_us/i19associateImages.txt +1 -0
- package/packages/i18n/lib/en_us/i19at.txt +1 -0
- package/packages/i18n/lib/en_us/i19atSight.txt +1 -0
- package/packages/i18n/lib/en_us/i19attachment.txt +1 -0
- package/packages/i18n/lib/en_us/i19attention.txt +1 -0
- package/packages/i18n/lib/en_us/i19authentication.txt +1 -0
- package/packages/i18n/lib/en_us/i19author.txt +1 -0
- package/packages/i18n/lib/en_us/i19authorizedStores.txt +1 -0
- package/packages/i18n/lib/en_us/i19automaticallyTrackInventory.txt +1 -0
- package/packages/i18n/lib/en_us/i19available.txt +1 -0
- package/packages/i18n/lib/en_us/i19availableApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19availablePurchase.txt +1 -0
- package/packages/i18n/lib/en_us/i19average.txt +1 -0
- package/packages/i18n/lib/en_us/i19averageTicket.txt +1 -0
- package/packages/i18n/lib/en_us/i19back.txt +1 -0
- package/packages/i18n/lib/en_us/i19backToCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19backToProduct.txt +1 -0
- package/packages/i18n/lib/en_us/i19bag.txt +1 -0
- package/packages/i18n/lib/en_us/i19balanceOrPoints.txt +1 -0
- package/packages/i18n/lib/en_us/i19banner.txt +1 -0
- package/packages/i18n/lib/en_us/i19banners.txt +1 -0
- package/packages/i18n/lib/en_us/i19bannersCollection.txt +1 -0
- package/packages/i18n/lib/en_us/i19barcodes.txt +1 -0
- package/packages/i18n/lib/en_us/i19basePrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19bearersDocument.txt +1 -0
- package/packages/i18n/lib/en_us/i19best.txt +1 -0
- package/packages/i18n/lib/en_us/i19bestSellers.txt +1 -0
- package/packages/i18n/lib/en_us/i19biannual.txt +1 -0
- package/packages/i18n/lib/en_us/i19billingAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19bimonthly.txt +1 -0
- package/packages/i18n/lib/en_us/i19birthdate.txt +1 -0
- package/packages/i18n/lib/en_us/i19biweekly.txt +1 -0
- package/packages/i18n/lib/en_us/i19block.txt +1 -0
- package/packages/i18n/lib/en_us/i19borough.txt +1 -0
- package/packages/i18n/lib/en_us/i19brand.txt +1 -0
- package/packages/i18n/lib/en_us/i19brandBanners.txt +1 -0
- package/packages/i18n/lib/en_us/i19brandFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19brandName.txt +1 -0
- package/packages/i18n/lib/en_us/i19brands.txt +1 -0
- package/packages/i18n/lib/en_us/i19brandsFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19brazil.txt +1 -0
- package/packages/i18n/lib/en_us/i19browserIp.txt +1 -0
- package/packages/i18n/lib/en_us/i19budgetOnly.txt +1 -0
- package/packages/i18n/lib/en_us/i19buy.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyAgain.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyAlsoMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyKit.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyNow.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyOnWhatsApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyTogether.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyTogetherWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyer.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyers.txt +1 -0
- package/packages/i18n/lib/en_us/i19buyersProfile.txt +1 -0
- package/packages/i18n/lib/en_us/i19by.txt +1 -0
- package/packages/i18n/lib/en_us/i19calculateShipping.txt +1 -0
- package/packages/i18n/lib/en_us/i19callTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19callback.txt +1 -0
- package/packages/i18n/lib/en_us/i19campaign.txt +1 -0
- package/packages/i18n/lib/en_us/i19campaignAppliedMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19cancel.txt +1 -0
- package/packages/i18n/lib/en_us/i19cancelOrder.txt +1 -0
- package/packages/i18n/lib/en_us/i19cancelReason.txt +1 -0
- package/packages/i18n/lib/en_us/i19cancelled.txt +1 -0
- package/packages/i18n/lib/en_us/i19cancelledAt.txt +1 -0
- package/packages/i18n/lib/en_us/i19cardNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19cartConfirmed.txt +1 -0
- package/packages/i18n/lib/en_us/i19cartDetails.txt +1 -0
- package/packages/i18n/lib/en_us/i19cartItems.txt +1 -0
- package/packages/i18n/lib/en_us/i19cartReview.txt +1 -0
- package/packages/i18n/lib/en_us/i19cartUpdated.txt +1 -0
- package/packages/i18n/lib/en_us/i19categories.txt +1 -0
- package/packages/i18n/lib/en_us/i19category.txt +1 -0
- package/packages/i18n/lib/en_us/i19categoryBanners.txt +1 -0
- package/packages/i18n/lib/en_us/i19categoryFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19categoryName.txt +1 -0
- package/packages/i18n/lib/en_us/i19cellphone.txt +1 -0
- package/packages/i18n/lib/en_us/i19changePaymentMethod.txt +1 -0
- package/packages/i18n/lib/en_us/i19changeShippingMethod.txt +1 -0
- package/packages/i18n/lib/en_us/i19channel.txt +1 -0
- package/packages/i18n/lib/en_us/i19channelId.txt +1 -0
- package/packages/i18n/lib/en_us/i19channelType.txt +1 -0
- package/packages/i18n/lib/en_us/i19channels.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkout.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutDone.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutEnabled.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutMobileLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutVisitor.txt +1 -0
- package/packages/i18n/lib/en_us/i19checkoutVisitorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19chooseProductDetailsToBuy.txt +1 -0
- package/packages/i18n/lib/en_us/i19chooseSubscriptionPeriod.txt +1 -0
- package/packages/i18n/lib/en_us/i19city.txt +1 -0
- package/packages/i18n/lib/en_us/i19clear.txt +1 -0
- package/packages/i18n/lib/en_us/i19clearFilters.txt +1 -0
- package/packages/i18n/lib/en_us/i19click.txt +1 -0
- package/packages/i18n/lib/en_us/i19clickHere.txt +1 -0
- package/packages/i18n/lib/en_us/i19close.txt +1 -0
- package/packages/i18n/lib/en_us/i19closeFilters.txt +1 -0
- package/packages/i18n/lib/en_us/i19closedAt.txt +1 -0
- package/packages/i18n/lib/en_us/i19code.txt +1 -0
- package/packages/i18n/lib/en_us/i19codeCopied.txt +1 -0
- package/packages/i18n/lib/en_us/i19collection.txt +1 -0
- package/packages/i18n/lib/en_us/i19collectionBanners.txt +1 -0
- package/packages/i18n/lib/en_us/i19collectionItems.txt +1 -0
- package/packages/i18n/lib/en_us/i19collectionName.txt +1 -0
- package/packages/i18n/lib/en_us/i19collections.txt +1 -0
- package/packages/i18n/lib/en_us/i19color.txt +1 -0
- package/packages/i18n/lib/en_us/i19colors.txt +1 -0
- package/packages/i18n/lib/en_us/i19community.txt +1 -0
- package/packages/i18n/lib/en_us/i19companyRegistration.txt +1 -0
- package/packages/i18n/lib/en_us/i19compareAtPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19compareProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19comparedPreviousPeriodMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19complement.txt +1 -0
- package/packages/i18n/lib/en_us/i19complementInformation.txt +1 -0
- package/packages/i18n/lib/en_us/i19configuration.txt +1 -0
- package/packages/i18n/lib/en_us/i19confirmPassword.txt +1 -0
- package/packages/i18n/lib/en_us/i19confirmPurchase.txt +1 -0
- package/packages/i18n/lib/en_us/i19connectionErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19connectionErrorProductMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19contactPhone.txt +1 -0
- package/packages/i18n/lib/en_us/i19contactUsMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19content.txt +1 -0
- package/packages/i18n/lib/en_us/i19continue.txt +1 -0
- package/packages/i18n/lib/en_us/i19continueLoginOnPopup.txt +1 -0
- package/packages/i18n/lib/en_us/i19continueShopping.txt +1 -0
- package/packages/i18n/lib/en_us/i19control.txt +1 -0
- package/packages/i18n/lib/en_us/i19copyCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19copyErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19copyright.txt +1 -0
- package/packages/i18n/lib/en_us/i19corporateName.txt +1 -0
- package/packages/i18n/lib/en_us/i19costDeclaredValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19costPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19countryCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19couponAppliedMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19createAnAccount.txt +1 -0
- package/packages/i18n/lib/en_us/i19createTransaction.txt +1 -0
- package/packages/i18n/lib/en_us/i19creation.txt +1 -0
- package/packages/i18n/lib/en_us/i19credit.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditCard.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditCardBin.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditCardCompany.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditCardHolderName.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditCardLastDigits.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditorFees.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditorFeesIntermediator.txt +1 -0
- package/packages/i18n/lib/en_us/i19creditorFeesOperational.txt +1 -0
- package/packages/i18n/lib/en_us/i19currencyId.txt +1 -0
- package/packages/i18n/lib/en_us/i19currencySymbol.txt +1 -0
- package/packages/i18n/lib/en_us/i19custom.txt +1 -0
- package/packages/i18n/lib/en_us/i19customFields.txt +1 -0
- package/packages/i18n/lib/en_us/i19customPayment.txt +1 -0
- package/packages/i18n/lib/en_us/i19customValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19customer.txt +1 -0
- package/packages/i18n/lib/en_us/i19customerNotified.txt +1 -0
- package/packages/i18n/lib/en_us/i19customerService.txt +1 -0
- package/packages/i18n/lib/en_us/i19customizationAddToPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19customizationAttachment.txt +1 -0
- package/packages/i18n/lib/en_us/i19customizationChosen.txt +1 -0
- package/packages/i18n/lib/en_us/i19customizations.txt +1 -0
- package/packages/i18n/lib/en_us/i19dailyAverage.txt +1 -0
- package/packages/i18n/lib/en_us/i19danger.txt +1 -0
- package/packages/i18n/lib/en_us/i19dashboard.txt +1 -0
- package/packages/i18n/lib/en_us/i19dateTime.txt +1 -0
- package/packages/i18n/lib/en_us/i19day.txt +1 -0
- package/packages/i18n/lib/en_us/i19days.txt +1 -0
- package/packages/i18n/lib/en_us/i19declare.txt +1 -0
- package/packages/i18n/lib/en_us/i19declaredValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19delete.txt +1 -0
- package/packages/i18n/lib/en_us/i19deleteAll.txt +1 -0
- package/packages/i18n/lib/en_us/i19delivery.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryCostOwnHandMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryInMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryReceipt.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryReceiptMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryTime.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryTrack.txt +1 -0
- package/packages/i18n/lib/en_us/i19deliveryWithOwnHandMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19description.txt +1 -0
- package/packages/i18n/lib/en_us/i19desktop.txt +1 -0
- package/packages/i18n/lib/en_us/i19details.txt +1 -0
- package/packages/i18n/lib/en_us/i19didYouMean.txt +1 -0
- package/packages/i18n/lib/en_us/i19digits.txt +1 -0
- package/packages/i18n/lib/en_us/i19directLinkPayment.txt +1 -0
- package/packages/i18n/lib/en_us/i19disable.txt +1 -0
- package/packages/i18n/lib/en_us/i19discount.txt +1 -0
- package/packages/i18n/lib/en_us/i19discountCoupon.txt +1 -0
- package/packages/i18n/lib/en_us/i19discountOf.txt +1 -0
- package/packages/i18n/lib/en_us/i19discountValueMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19displayName.txt +1 -0
- package/packages/i18n/lib/en_us/i19doPaymentMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19doYouWantToDeleteAppQn.txt +1 -0
- package/packages/i18n/lib/en_us/i19doYouWantToReinstallAppQn.txt +1 -0
- package/packages/i18n/lib/en_us/i19docCountry.txt +1 -0
- package/packages/i18n/lib/en_us/i19docNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19docs.txt +1 -0
- package/packages/i18n/lib/en_us/i19domain.txt +1 -0
- package/packages/i18n/lib/en_us/i19download.txt +1 -0
- package/packages/i18n/lib/en_us/i19downloadTable.txt +1 -0
- package/packages/i18n/lib/en_us/i19edit.txt +1 -0
- package/packages/i18n/lib/en_us/i19editAdditionalCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19editComments.txt +1 -0
- package/packages/i18n/lib/en_us/i19editDispatchAndFulfillment.txt +1 -0
- package/packages/i18n/lib/en_us/i19editFeatures.txt +1 -0
- package/packages/i18n/lib/en_us/i19editFilters.txt +1 -0
- package/packages/i18n/lib/en_us/i19editGtinMpn.txt +1 -0
- package/packages/i18n/lib/en_us/i19editHtmlDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19editObservationInfo.txt +1 -0
- package/packages/i18n/lib/en_us/i19editPaymentDetails.txt +1 -0
- package/packages/i18n/lib/en_us/i19editProductDimensions.txt +1 -0
- package/packages/i18n/lib/en_us/i19editSeoFields.txt +1 -0
- package/packages/i18n/lib/en_us/i19editStorefront.txt +1 -0
- package/packages/i18n/lib/en_us/i19editVariation.txt +1 -0
- package/packages/i18n/lib/en_us/i19editing.txt +1 -0
- package/packages/i18n/lib/en_us/i19email.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailCartTextMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailCartTitleMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailDeliveredTextMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailDeliveredTitleMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailInfoMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailMarketing.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailMarketingOptInMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailProfileNotFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailShippedTextMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailShippedTitleMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emailWasSentMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19emails.txt +1 -0
- package/packages/i18n/lib/en_us/i19empty.txt +1 -0
- package/packages/i18n/lib/en_us/i19emptyCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19emptyCartMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19enabled.txt +1 -0
- package/packages/i18n/lib/en_us/i19end.txt +1 -0
- package/packages/i18n/lib/en_us/i19endDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19endpoint.txt +1 -0
- package/packages/i18n/lib/en_us/i19endsIn.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterEmailCodeMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterWithPassword.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterYourDocNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterYourDocNumberMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterYourEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19enterYourEmailMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19erp.txt +1 -0
- package/packages/i18n/lib/en_us/i19error.txt +1 -0
- package/packages/i18n/lib/en_us/i19errorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19events.txt +1 -0
- package/packages/i18n/lib/en_us/i19export.txt +1 -0
- package/packages/i18n/lib/en_us/i19exportToCsv.txt +1 -0
- package/packages/i18n/lib/en_us/i19external.txt +1 -0
- package/packages/i18n/lib/en_us/i19extra.txt +1 -0
- package/packages/i18n/lib/en_us/i19extraCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19familyName.txt +1 -0
- package/packages/i18n/lib/en_us/i19favorites.txt +1 -0
- package/packages/i18n/lib/en_us/i19featuredApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19female.txt +1 -0
- package/packages/i18n/lib/en_us/i19field.txt +1 -0
- package/packages/i18n/lib/en_us/i19files.txt +1 -0
- package/packages/i18n/lib/en_us/i19filter.txt +1 -0
- package/packages/i18n/lib/en_us/i19filterOut.txt +1 -0
- package/packages/i18n/lib/en_us/i19filterProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19filterResults.txt +1 -0
- package/packages/i18n/lib/en_us/i19finalPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19finalPriceWithAdditional.txt +1 -0
- package/packages/i18n/lib/en_us/i19financialStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19firstSteps.txt +1 -0
- package/packages/i18n/lib/en_us/i19followingAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19for.txt +1 -0
- package/packages/i18n/lib/en_us/i19free.txt +1 -0
- package/packages/i18n/lib/en_us/i19freeShipping.txt +1 -0
- package/packages/i18n/lib/en_us/i19freeShippingFrom.txt +1 -0
- package/packages/i18n/lib/en_us/i19freebie.txt +1 -0
- package/packages/i18n/lib/en_us/i19freight.txt +1 -0
- package/packages/i18n/lib/en_us/i19freightCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19from.txt +1 -0
- package/packages/i18n/lib/en_us/i19fulfillmentStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19fullName.txt +1 -0
- package/packages/i18n/lib/en_us/i19fullscreen.txt +1 -0
- package/packages/i18n/lib/en_us/i19gateway.txt +1 -0
- package/packages/i18n/lib/en_us/i19gender.txt +1 -0
- package/packages/i18n/lib/en_us/i19genderX.txt +1 -0
- package/packages/i18n/lib/en_us/i19general.txt +1 -0
- package/packages/i18n/lib/en_us/i19generateBillet.txt +1 -0
- package/packages/i18n/lib/en_us/i19get$1back.txt +1 -0
- package/packages/i18n/lib/en_us/i19get.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftList.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListAuthors.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListAuthorsContact.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListEventDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListInformation.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListNotificationPurchaseMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListOwnerID.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListPermalink.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListTitle.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListValidThru.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftListWaiting.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19giftWrap.txt +1 -0
- package/packages/i18n/lib/en_us/i19gitRepository.txt +1 -0
- package/packages/i18n/lib/en_us/i19givenName.txt +1 -0
- package/packages/i18n/lib/en_us/i19goToCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19goToStore.txt +1 -0
- package/packages/i18n/lib/en_us/i19goToTop.txt +1 -0
- package/packages/i18n/lib/en_us/i19googleAnalytics.txt +1 -0
- package/packages/i18n/lib/en_us/i19googleProductCategoryId.txt +1 -0
- package/packages/i18n/lib/en_us/i19gridId.txt +1 -0
- package/packages/i18n/lib/en_us/i19gridName.txt +1 -0
- package/packages/i18n/lib/en_us/i19grids.txt +1 -0
- package/packages/i18n/lib/en_us/i19guestCheckoutMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19hasCouponOrVoucherQn.txt +1 -0
- package/packages/i18n/lib/en_us/i19height.txt +1 -0
- package/packages/i18n/lib/en_us/i19hello.txt +1 -0
- package/packages/i18n/lib/en_us/i19helloAgain.txt +1 -0
- package/packages/i18n/lib/en_us/i19help.txt +1 -0
- package/packages/i18n/lib/en_us/i19helpful.txt +1 -0
- package/packages/i18n/lib/en_us/i19high.txt +1 -0
- package/packages/i18n/lib/en_us/i19highPriority.txt +1 -0
- package/packages/i18n/lib/en_us/i19highestPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19holderName.txt +1 -0
- package/packages/i18n/lib/en_us/i19home.txt +1 -0
- package/packages/i18n/lib/en_us/i19hour.txt +1 -0
- package/packages/i18n/lib/en_us/i19hours.txt +1 -0
- package/packages/i18n/lib/en_us/i19iForgotMyPassword.txt +1 -0
- package/packages/i18n/lib/en_us/i19iReadAndAccept.txt +1 -0
- package/packages/i18n/lib/en_us/i19icon.txt +1 -0
- package/packages/i18n/lib/en_us/i19id.txt +1 -0
- package/packages/i18n/lib/en_us/i19idOfShippingLine.txt +1 -0
- package/packages/i18n/lib/en_us/i19identification.txt +1 -0
- package/packages/i18n/lib/en_us/i19identifyYourAccount.txt +1 -0
- package/packages/i18n/lib/en_us/i19image.txt +1 -0
- package/packages/i18n/lib/en_us/i19images.txt +1 -0
- package/packages/i18n/lib/en_us/i19import.txt +1 -0
- package/packages/i18n/lib/en_us/i19in.txt +1 -0
- package/packages/i18n/lib/en_us/i19inStock.txt +1 -0
- package/packages/i18n/lib/en_us/i19inStockAt.txt +1 -0
- package/packages/i18n/lib/en_us/i19inactive.txt +1 -0
- package/packages/i18n/lib/en_us/i19incorrect.txt +1 -0
- package/packages/i18n/lib/en_us/i19incorrectEmailCodeMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19incorrectFormat.txt +1 -0
- package/packages/i18n/lib/en_us/i19info.txt +1 -0
- package/packages/i18n/lib/en_us/i19inscriptionNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19insert.txt +1 -0
- package/packages/i18n/lib/en_us/i19install.txt +1 -0
- package/packages/i18n/lib/en_us/i19installNow.txt +1 -0
- package/packages/i18n/lib/en_us/i19installed.txt +1 -0
- package/packages/i18n/lib/en_us/i19installedApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19installingApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19installment.txt +1 -0
- package/packages/i18n/lib/en_us/i19installments.txt +1 -0
- package/packages/i18n/lib/en_us/i19institutional.txt +1 -0
- package/packages/i18n/lib/en_us/i19interestFree.txt +1 -0
- package/packages/i18n/lib/en_us/i19intermediator.txt +1 -0
- package/packages/i18n/lib/en_us/i19invalidCard.txt +1 -0
- package/packages/i18n/lib/en_us/i19invalidCardMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19invalidCouponMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19invalidDomainName.txt +1 -0
- package/packages/i18n/lib/en_us/i19invalidLoginInfoMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19inventory.txt +1 -0
- package/packages/i18n/lib/en_us/i19inventoryHistory.txt +1 -0
- package/packages/i18n/lib/en_us/i19invoice.txt +1 -0
- package/packages/i18n/lib/en_us/i19invoices.txt +1 -0
- package/packages/i18n/lib/en_us/i19isFilter.txt +1 -0
- package/packages/i18n/lib/en_us/i19isNotYou.txt +1 -0
- package/packages/i18n/lib/en_us/i19item.txt +1 -0
- package/packages/i18n/lib/en_us/i19items.txt +1 -0
- package/packages/i18n/lib/en_us/i19itemsFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19jurifical.txt +1 -0
- package/packages/i18n/lib/en_us/i19just.txt +1 -0
- package/packages/i18n/lib/en_us/i19keywords.txt +1 -0
- package/packages/i18n/lib/en_us/i19kit.txt +1 -0
- package/packages/i18n/lib/en_us/i19label.txt +1 -0
- package/packages/i18n/lib/en_us/i19labelOfCustomization.txt +1 -0
- package/packages/i18n/lib/en_us/i19last.txt +1 -0
- package/packages/i18n/lib/en_us/i19lastOptions.txt +1 -0
- package/packages/i18n/lib/en_us/i19lastPurchase.txt +1 -0
- package/packages/i18n/lib/en_us/i19lastSearchedTerms.txt +1 -0
- package/packages/i18n/lib/en_us/i19lastVisitedProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19latestOrders.txt +1 -0
- package/packages/i18n/lib/en_us/i19launch.txt +1 -0
- package/packages/i18n/lib/en_us/i19launching.txt +1 -0
- package/packages/i18n/lib/en_us/i19length.txt +1 -0
- package/packages/i18n/lib/en_us/i19lineAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19list.txt +1 -0
- package/packages/i18n/lib/en_us/i19listOfInvoices.txt +1 -0
- package/packages/i18n/lib/en_us/i19listOfPayments.txt +1 -0
- package/packages/i18n/lib/en_us/i19listSubscriptionInvoices.txt +1 -0
- package/packages/i18n/lib/en_us/i19load.txt +1 -0
- package/packages/i18n/lib/en_us/i19loadDataErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19loadMore.txt +1 -0
- package/packages/i18n/lib/en_us/i19loadMoreProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19loadProductErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19loading.txt +1 -0
- package/packages/i18n/lib/en_us/i19locale.txt +1 -0
- package/packages/i18n/lib/en_us/i19login.txt +1 -0
- package/packages/i18n/lib/en_us/i19loginEnabled.txt +1 -0
- package/packages/i18n/lib/en_us/i19loginErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19loginForOrderDetailsMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19logo.txt +1 -0
- package/packages/i18n/lib/en_us/i19logout.txt +1 -0
- package/packages/i18n/lib/en_us/i19low.txt +1 -0
- package/packages/i18n/lib/en_us/i19lowestPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19loyaltyPoints.txt +1 -0
- package/packages/i18n/lib/en_us/i19loyaltyPointsName.txt +1 -0
- package/packages/i18n/lib/en_us/i19loyaltyPointsPointsValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19madeBy.txt +1 -0
- package/packages/i18n/lib/en_us/i19mainEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19male.txt +1 -0
- package/packages/i18n/lib/en_us/i19manageStock.txt +1 -0
- package/packages/i18n/lib/en_us/i19manageYourPurchaseHistory.txt +1 -0
- package/packages/i18n/lib/en_us/i19marketing.txt +1 -0
- package/packages/i18n/lib/en_us/i19marketplace.txt +1 -0
- package/packages/i18n/lib/en_us/i19marketplaces.txt +1 -0
- package/packages/i18n/lib/en_us/i19massEdit.txt +1 -0
- package/packages/i18n/lib/en_us/i19maxQuantity.txt +1 -0
- package/packages/i18n/lib/en_us/i19maximum.txt +1 -0
- package/packages/i18n/lib/en_us/i19measurement.txt +1 -0
- package/packages/i18n/lib/en_us/i19media.txt +1 -0
- package/packages/i18n/lib/en_us/i19mediaGallery.txt +1 -0
- package/packages/i18n/lib/en_us/i19menu.txt +1 -0
- package/packages/i18n/lib/en_us/i19metaTagDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19metafields.txt +1 -0
- package/packages/i18n/lib/en_us/i19metafieldsMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19middleName.txt +1 -0
- package/packages/i18n/lib/en_us/i19milliseconds.txt +1 -0
- package/packages/i18n/lib/en_us/i19minQuantity.txt +1 -0
- package/packages/i18n/lib/en_us/i19minimum.txt +1 -0
- package/packages/i18n/lib/en_us/i19minus.txt +1 -0
- package/packages/i18n/lib/en_us/i19minute.txt +1 -0
- package/packages/i18n/lib/en_us/i19minutes.txt +1 -0
- package/packages/i18n/lib/en_us/i19mlCategoryId.txt +1 -0
- package/packages/i18n/lib/en_us/i19mobile.txt +1 -0
- package/packages/i18n/lib/en_us/i19mobileLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19modules.txt +1 -0
- package/packages/i18n/lib/en_us/i19month.txt +1 -0
- package/packages/i18n/lib/en_us/i19monthly.txt +1 -0
- package/packages/i18n/lib/en_us/i19mostPopular.txt +1 -0
- package/packages/i18n/lib/en_us/i19mostRelevant.txt +1 -0
- package/packages/i18n/lib/en_us/i19motorcycleCourier.txt +1 -0
- package/packages/i18n/lib/en_us/i19myAccount.txt +1 -0
- package/packages/i18n/lib/en_us/i19myAccountAndOrders.txt +1 -0
- package/packages/i18n/lib/en_us/i19myCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19myFavorites.txt +1 -0
- package/packages/i18n/lib/en_us/i19myOrders.txt +1 -0
- package/packages/i18n/lib/en_us/i19myShoppingCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19name.txt +1 -0
- package/packages/i18n/lib/en_us/i19nameOnCard.txt +1 -0
- package/packages/i18n/lib/en_us/i19namespace.txt +1 -0
- package/packages/i18n/lib/en_us/i19namespaceMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19nearTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19needHelpQn.txt +1 -0
- package/packages/i18n/lib/en_us/i19new.txt +1 -0
- package/packages/i18n/lib/en_us/i19newAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19newOrders.txt +1 -0
- package/packages/i18n/lib/en_us/i19newPassword.txt +1 -0
- package/packages/i18n/lib/en_us/i19newPriceRange.txt +1 -0
- package/packages/i18n/lib/en_us/i19newVersionAvailableMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19newsletter.txt +1 -0
- package/packages/i18n/lib/en_us/i19newsletterReport.txt +1 -0
- package/packages/i18n/lib/en_us/i19next.txt +1 -0
- package/packages/i18n/lib/en_us/i19nickname.txt +1 -0
- package/packages/i18n/lib/en_us/i19no.txt +1 -0
- package/packages/i18n/lib/en_us/i19noAdditional.txt +1 -0
- package/packages/i18n/lib/en_us/i19noAppsAvailable.txt +1 -0
- package/packages/i18n/lib/en_us/i19noBrand.txt +1 -0
- package/packages/i18n/lib/en_us/i19noCategory.txt +1 -0
- package/packages/i18n/lib/en_us/i19noCollection.txt +1 -0
- package/packages/i18n/lib/en_us/i19noGrid.txt +1 -0
- package/packages/i18n/lib/en_us/i19noItemSelected.txt +1 -0
- package/packages/i18n/lib/en_us/i19noNewOrdersMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19noNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19noOrder.txt +1 -0
- package/packages/i18n/lib/en_us/i19noPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19noProductsFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19noProductsFoundFor$1.txt +1 -0
- package/packages/i18n/lib/en_us/i19noProductsInBrandMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19noProductsInCategoryMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19noProfileFoundWithEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19noSavedFavoritesMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19noUser.txt +1 -0
- package/packages/i18n/lib/en_us/i19normal.txt +1 -0
- package/packages/i18n/lib/en_us/i19notConfigured.txt +1 -0
- package/packages/i18n/lib/en_us/i19notFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19notes.txt +1 -0
- package/packages/i18n/lib/en_us/i19notifications.txt +1 -0
- package/packages/i18n/lib/en_us/i19notified.txt +1 -0
- package/packages/i18n/lib/en_us/i19notifiedAdmins.txt +1 -0
- package/packages/i18n/lib/en_us/i19notifiedAdminsMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19notifyAboutOrders.txt +1 -0
- package/packages/i18n/lib/en_us/i19number.txt +1 -0
- package/packages/i18n/lib/en_us/i19oauthOnPopup.txt +1 -0
- package/packages/i18n/lib/en_us/i19of.txt +1 -0
- package/packages/i18n/lib/en_us/i19ofDiscount.txt +1 -0
- package/packages/i18n/lib/en_us/i19offer.txt +1 -0
- package/packages/i18n/lib/en_us/i19on.txt +1 -0
- package/packages/i18n/lib/en_us/i19onFollowingAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19onFreight.txt +1 -0
- package/packages/i18n/lib/en_us/i19only.txt +1 -0
- package/packages/i18n/lib/en_us/i19open.txt +1 -0
- package/packages/i18n/lib/en_us/i19openAt.txt +1 -0
- package/packages/i18n/lib/en_us/i19openCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19openGallery.txt +1 -0
- package/packages/i18n/lib/en_us/i19operational.txt +1 -0
- package/packages/i18n/lib/en_us/i19option.txt +1 -0
- package/packages/i18n/lib/en_us/i19optionChosen.txt +1 -0
- package/packages/i18n/lib/en_us/i19options.txt +1 -0
- package/packages/i18n/lib/en_us/i19or.txt +1 -0
- package/packages/i18n/lib/en_us/i19orProceedWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19order.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderConfirmationMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderCreated.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderDetails.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderItems.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderNotesInputMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderNumber.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderObservations.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19orderValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19orders.txt +1 -0
- package/packages/i18n/lib/en_us/i19ordersCount.txt +1 -0
- package/packages/i18n/lib/en_us/i19ordersTotalValue.txt +1 -0
- package/packages/i18n/lib/en_us/i19organization.txt +1 -0
- package/packages/i18n/lib/en_us/i19otherCustomers.txt +1 -0
- package/packages/i18n/lib/en_us/i19otherCustomersMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19outOfDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19outOfStock.txt +1 -0
- package/packages/i18n/lib/en_us/i19ownDelivery.txt +1 -0
- package/packages/i18n/lib/en_us/i19ownHand.txt +1 -0
- package/packages/i18n/lib/en_us/i19ownHandCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19package.txt +1 -0
- package/packages/i18n/lib/en_us/i19packageDimensions.txt +1 -0
- package/packages/i18n/lib/en_us/i19packageDimensionsInformation.txt +1 -0
- package/packages/i18n/lib/en_us/i19packageInformation.txt +1 -0
- package/packages/i18n/lib/en_us/i19packageWeight.txt +1 -0
- package/packages/i18n/lib/en_us/i19pageLoaded.txt +1 -0
- package/packages/i18n/lib/en_us/i19paid.txt +1 -0
- package/packages/i18n/lib/en_us/i19paidTextMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19parcelIn.txt +1 -0
- package/packages/i18n/lib/en_us/i19parentCategory.txt +1 -0
- package/packages/i18n/lib/en_us/i19partner.txt +1 -0
- package/packages/i18n/lib/en_us/i19partners.txt +1 -0
- package/packages/i18n/lib/en_us/i19partnersProgram.txt +1 -0
- package/packages/i18n/lib/en_us/i19password.txt +1 -0
- package/packages/i18n/lib/en_us/i19passwordChangedSuccessfully.txt +1 -0
- package/packages/i18n/lib/en_us/i19patch.txt +1 -0
- package/packages/i18n/lib/en_us/i19payer.txt +1 -0
- package/packages/i18n/lib/en_us/i19payment.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentConfirmed.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentDetails.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentError.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentMethod.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentMethodLabel.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentMethods.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentOptions.txt +1 -0
- package/packages/i18n/lib/en_us/i19paymentRealized.txt +1 -0
- package/packages/i18n/lib/en_us/i19perUnit.txt +1 -0
- package/packages/i18n/lib/en_us/i19permalink.txt +1 -0
- package/packages/i18n/lib/en_us/i19personalRegistration.txt +1 -0
- package/packages/i18n/lib/en_us/i19phone.txt +1 -0
- package/packages/i18n/lib/en_us/i19phones.txt +1 -0
- package/packages/i18n/lib/en_us/i19photo.txt +1 -0
- package/packages/i18n/lib/en_us/i19photos.txt +1 -0
- package/packages/i18n/lib/en_us/i19pickUpAtTheStore.txt +1 -0
- package/packages/i18n/lib/en_us/i19pickUpToday.txt +1 -0
- package/packages/i18n/lib/en_us/i19pickup.txt +1 -0
- package/packages/i18n/lib/en_us/i19picture.txt +1 -0
- package/packages/i18n/lib/en_us/i19pictures.txt +1 -0
- package/packages/i18n/lib/en_us/i19plus.txt +1 -0
- package/packages/i18n/lib/en_us/i19pointsEarned.txt +1 -0
- package/packages/i18n/lib/en_us/i19popularProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19popup.txt +1 -0
- package/packages/i18n/lib/en_us/i19post.txt +1 -0
- package/packages/i18n/lib/en_us/i19posted.txt +1 -0
- package/packages/i18n/lib/en_us/i19postingDeadline.txt +1 -0
- package/packages/i18n/lib/en_us/i19postingIn.txt +1 -0
- package/packages/i18n/lib/en_us/i19pressEnterToSave.txt +1 -0
- package/packages/i18n/lib/en_us/i19previous.txt +1 -0
- package/packages/i18n/lib/en_us/i19price.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceAlteration.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceEffectiveDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceEffectiveDateEnd.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceEffectiveDateStar.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceRange.txt +1 -0
- package/packages/i18n/lib/en_us/i19priceTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19pricing.txt +1 -0
- package/packages/i18n/lib/en_us/i19printBillet.txt +1 -0
- package/packages/i18n/lib/en_us/i19privacy.txt +1 -0
- package/packages/i18n/lib/en_us/i19privacyPolicy.txt +1 -0
- package/packages/i18n/lib/en_us/i19private.txt +1 -0
- package/packages/i18n/lib/en_us/i19privateMetafields.txt +1 -0
- package/packages/i18n/lib/en_us/i19privateMetafieldsMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19proceed.txt +1 -0
- package/packages/i18n/lib/en_us/i19product.txt +1 -0
- package/packages/i18n/lib/en_us/i19productDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19productId.txt +1 -0
- package/packages/i18n/lib/en_us/i19productImages.txt +1 -0
- package/packages/i18n/lib/en_us/i19productName.txt +1 -0
- package/packages/i18n/lib/en_us/i19productSpecifications.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionDeadline.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionTime.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionTimeCumulative.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionTimeDaysMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionTimeMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19productionTimeWorkingDays.txt +1 -0
- package/packages/i18n/lib/en_us/i19products.txt +1 -0
- package/packages/i18n/lib/en_us/i19productsAdded.txt +1 -0
- package/packages/i18n/lib/en_us/i19productsAddedToCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19productsPurchased.txt +1 -0
- package/packages/i18n/lib/en_us/i19profile.txt +1 -0
- package/packages/i18n/lib/en_us/i19profileNotFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19province.txt +1 -0
- package/packages/i18n/lib/en_us/i19provinceCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19put.txt +1 -0
- package/packages/i18n/lib/en_us/i19quantity.txt +1 -0
- package/packages/i18n/lib/en_us/i19quarterly.txt +1 -0
- package/packages/i18n/lib/en_us/i19quickSetup.txt +1 -0
- package/packages/i18n/lib/en_us/i19random.txt +1 -0
- package/packages/i18n/lib/en_us/i19rating.txt +1 -0
- package/packages/i18n/lib/en_us/i19read.txt +1 -0
- package/packages/i18n/lib/en_us/i19receipt.txt +1 -0
- package/packages/i18n/lib/en_us/i19receiptPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19receiveNewsletter.txt +1 -0
- package/packages/i18n/lib/en_us/i19receiveToday.txt +1 -0
- package/packages/i18n/lib/en_us/i19receivedOrder.txt +1 -0
- package/packages/i18n/lib/en_us/i19recipient.txt +1 -0
- package/packages/i18n/lib/en_us/i19recommendations.txt +1 -0
- package/packages/i18n/lib/en_us/i19recommendedForYou.txt +1 -0
- package/packages/i18n/lib/en_us/i19recommendedProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19recurrence.txt +1 -0
- package/packages/i18n/lib/en_us/i19recurrent.txt +1 -0
- package/packages/i18n/lib/en_us/i19redirectToPayment.txt +1 -0
- package/packages/i18n/lib/en_us/i19reference.txt +1 -0
- package/packages/i18n/lib/en_us/i19referenceCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19referral.txt +1 -0
- package/packages/i18n/lib/en_us/i19referringSite.txt +1 -0
- package/packages/i18n/lib/en_us/i19refine.txt +1 -0
- package/packages/i18n/lib/en_us/i19refineSearch.txt +1 -0
- package/packages/i18n/lib/en_us/i19registerDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19registerProduct.txt +1 -0
- package/packages/i18n/lib/en_us/i19registerToBuy.txt +1 -0
- package/packages/i18n/lib/en_us/i19registerToBuyMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19registration.txt +1 -0
- package/packages/i18n/lib/en_us/i19reinstall.txt +1 -0
- package/packages/i18n/lib/en_us/i19relatedApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19relatedProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19relatedSearch.txt +1 -0
- package/packages/i18n/lib/en_us/i19releases.txt +1 -0
- package/packages/i18n/lib/en_us/i19relevance.txt +1 -0
- package/packages/i18n/lib/en_us/i19remove.txt +1 -0
- package/packages/i18n/lib/en_us/i19removeFromFavorites.txt +1 -0
- package/packages/i18n/lib/en_us/i19removed.txt +1 -0
- package/packages/i18n/lib/en_us/i19reopenOrder.txt +1 -0
- package/packages/i18n/lib/en_us/i19report.txt +1 -0
- package/packages/i18n/lib/en_us/i19require.txt +1 -0
- package/packages/i18n/lib/en_us/i19required.txt +1 -0
- package/packages/i18n/lib/en_us/i19requiredEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19requiredEmailMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19requiredField.txt +1 -0
- package/packages/i18n/lib/en_us/i19resource.txt +1 -0
- package/packages/i18n/lib/en_us/i19resourceId.txt +1 -0
- package/packages/i18n/lib/en_us/i19results.txt +1 -0
- package/packages/i18n/lib/en_us/i19resultsFor.txt +1 -0
- package/packages/i18n/lib/en_us/i19retail.txt +1 -0
- package/packages/i18n/lib/en_us/i19retry.txt +1 -0
- package/packages/i18n/lib/en_us/i19reviews.txt +1 -0
- package/packages/i18n/lib/en_us/i19safeBuy.txt +1 -0
- package/packages/i18n/lib/en_us/i19safeEnvMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19sales.txt +1 -0
- package/packages/i18n/lib/en_us/i19salesChannels.txt +1 -0
- package/packages/i18n/lib/en_us/i19salesPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19save.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveBrand.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveCard.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveCategory.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveClient.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveCollection.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveGrid.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveProduct.txt +1 -0
- package/packages/i18n/lib/en_us/i19saveText.txt +1 -0
- package/packages/i18n/lib/en_us/i19saved.txt +1 -0
- package/packages/i18n/lib/en_us/i19savedWithSuccess.txt +1 -0
- package/packages/i18n/lib/en_us/i19scheduledDelivery.txt +1 -0
- package/packages/i18n/lib/en_us/i19search.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchAgain.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchEngineListing.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchItems.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchOfflineErrorMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19searchingFor.txt +1 -0
- package/packages/i18n/lib/en_us/i19second.txt +1 -0
- package/packages/i18n/lib/en_us/i19seconds.txt +1 -0
- package/packages/i18n/lib/en_us/i19securityCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeAll$1Category.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeAll.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeAllApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeAllThemes.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeMore.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeMoreCategories.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeMoreInfo.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeOrder.txt +1 -0
- package/packages/i18n/lib/en_us/i19seeShoppingCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19select.txt +1 -0
- package/packages/i18n/lib/en_us/i19selectVariation.txt +1 -0
- package/packages/i18n/lib/en_us/i19selectVariationMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19selected.txt +1 -0
- package/packages/i18n/lib/en_us/i19selectedOffers.txt +1 -0
- package/packages/i18n/lib/en_us/i19selectedOptions.txt +1 -0
- package/packages/i18n/lib/en_us/i19seller.txt +1 -0
- package/packages/i18n/lib/en_us/i19sellerRecommendations.txt +1 -0
- package/packages/i18n/lib/en_us/i19sellerRecommendationsProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19sellerRecommendationsTitle.txt +1 -0
- package/packages/i18n/lib/en_us/i19sellerStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19send.txt +1 -0
- package/packages/i18n/lib/en_us/i19sendLoginCodeByEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19sendLoginLinkByEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19sender.txt +1 -0
- package/packages/i18n/lib/en_us/i19senderFrom.txt +1 -0
- package/packages/i18n/lib/en_us/i19seo.txt +1 -0
- package/packages/i18n/lib/en_us/i19setDomainMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19setStoreDomain.txt +1 -0
- package/packages/i18n/lib/en_us/i19setUp.txt +1 -0
- package/packages/i18n/lib/en_us/i19settings.txt +1 -0
- package/packages/i18n/lib/en_us/i19share.txt +1 -0
- package/packages/i18n/lib/en_us/i19shareOnFacebook.txt +1 -0
- package/packages/i18n/lib/en_us/i19shareOnWhatsapp.txt +1 -0
- package/packages/i18n/lib/en_us/i19shipped.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippedBy.txt +1 -0
- package/packages/i18n/lib/en_us/i19shipping.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingAdditionalPrice.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingAddress.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingCustomFields.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingDiscount.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingInvoices.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingMethod.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingMethodLabel.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingNotes.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingNotesMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTag.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTags.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTaxes.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTaxesMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19shippingTotalCost.txt +1 -0
- package/packages/i18n/lib/en_us/i19shopByCategory.txt +1 -0
- package/packages/i18n/lib/en_us/i19shopByFranchise.txt +1 -0
- package/packages/i18n/lib/en_us/i19shopNow.txt +1 -0
- package/packages/i18n/lib/en_us/i19shoppingCart.txt +1 -0
- package/packages/i18n/lib/en_us/i19short.txt +1 -0
- package/packages/i18n/lib/en_us/i19shortDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19show.txt +1 -0
- package/packages/i18n/lib/en_us/i19showDescription.txt +1 -0
- package/packages/i18n/lib/en_us/i19showReview.txt +1 -0
- package/packages/i18n/lib/en_us/i19signIn.txt +1 -0
- package/packages/i18n/lib/en_us/i19signInWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19signInWithAnotherEmail.txt +1 -0
- package/packages/i18n/lib/en_us/i19signUp.txt +1 -0
- package/packages/i18n/lib/en_us/i19signUpWith.txt +1 -0
- package/packages/i18n/lib/en_us/i19signature.txt +1 -0
- package/packages/i18n/lib/en_us/i19size.txt +1 -0
- package/packages/i18n/lib/en_us/i19sizeGuide.txt +1 -0
- package/packages/i18n/lib/en_us/i19sku.txt +1 -0
- package/packages/i18n/lib/en_us/i19slug.txt +1 -0
- package/packages/i18n/lib/en_us/i19socialLogin.txt +1 -0
- package/packages/i18n/lib/en_us/i19socialMedia.txt +1 -0
- package/packages/i18n/lib/en_us/i19sort.txt +1 -0
- package/packages/i18n/lib/en_us/i19sortBy.txt +1 -0
- package/packages/i18n/lib/en_us/i19source.txt +1 -0
- package/packages/i18n/lib/en_us/i19sourceName.txt +1 -0
- package/packages/i18n/lib/en_us/i19specifications.txt +1 -0
- package/packages/i18n/lib/en_us/i19staffNotes.txt +1 -0
- package/packages/i18n/lib/en_us/i19staffSignature.txt +1 -0
- package/packages/i18n/lib/en_us/i19star.txt +1 -0
- package/packages/i18n/lib/en_us/i19startDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19state.txt +1 -0
- package/packages/i18n/lib/en_us/i19status.txt +1 -0
- package/packages/i18n/lib/en_us/i19statusLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19statusMobileLink.txt +1 -0
- package/packages/i18n/lib/en_us/i19store.txt +1 -0
- package/packages/i18n/lib/en_us/i19storefront.txt +1 -0
- package/packages/i18n/lib/en_us/i19street.txt +1 -0
- package/packages/i18n/lib/en_us/i19submit.txt +1 -0
- package/packages/i18n/lib/en_us/i19subresource.txt +1 -0
- package/packages/i18n/lib/en_us/i19subresourceId.txt +1 -0
- package/packages/i18n/lib/en_us/i19subscribe.txt +1 -0
- package/packages/i18n/lib/en_us/i19subscription.txt +1 -0
- package/packages/i18n/lib/en_us/i19subscriptionInvoices.txt +1 -0
- package/packages/i18n/lib/en_us/i19subscriptions.txt +1 -0
- package/packages/i18n/lib/en_us/i19subtitle.txt +1 -0
- package/packages/i18n/lib/en_us/i19subtotal.txt +1 -0
- package/packages/i18n/lib/en_us/i19success.txt +1 -0
- package/packages/i18n/lib/en_us/i19successfullyInstalled.txt +1 -0
- package/packages/i18n/lib/en_us/i19successfullyUninstalled.txt +1 -0
- package/packages/i18n/lib/en_us/i19suggestedProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19summary.txt +1 -0
- package/packages/i18n/lib/en_us/i19support.txt +1 -0
- package/packages/i18n/lib/en_us/i19table.txt +1 -0
- package/packages/i18n/lib/en_us/i19tax.txt +1 -0
- package/packages/i18n/lib/en_us/i19taxExempt.txt +1 -0
- package/packages/i18n/lib/en_us/i19termSearched.txt +1 -0
- package/packages/i18n/lib/en_us/i19test.txt +1 -0
- package/packages/i18n/lib/en_us/i19thanks.txt +1 -0
- package/packages/i18n/lib/en_us/i19thanksForPurchase.txt +1 -0
- package/packages/i18n/lib/en_us/i19theme.txt +1 -0
- package/packages/i18n/lib/en_us/i19themes.txt +1 -0
- package/packages/i18n/lib/en_us/i19ticketCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19title.txt +1 -0
- package/packages/i18n/lib/en_us/i19titleTag.txt +1 -0
- package/packages/i18n/lib/en_us/i19to.txt +1 -0
- package/packages/i18n/lib/en_us/i19toEarn.txt +1 -0
- package/packages/i18n/lib/en_us/i19toPay.txt +1 -0
- package/packages/i18n/lib/en_us/i19today.txt +1 -0
- package/packages/i18n/lib/en_us/i19toggleMenu.txt +1 -0
- package/packages/i18n/lib/en_us/i19token.txt +1 -0
- package/packages/i18n/lib/en_us/i19total.txt +1 -0
- package/packages/i18n/lib/en_us/i19totalAmount.txt +1 -0
- package/packages/i18n/lib/en_us/i19totalCancelled.txt +1 -0
- package/packages/i18n/lib/en_us/i19totalCancelledMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19totalResultsFor.txt +1 -0
- package/packages/i18n/lib/en_us/i19totalSpent.txt +1 -0
- package/packages/i18n/lib/en_us/i19trackDelivery.txt +1 -0
- package/packages/i18n/lib/en_us/i19trackingCodes.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionId.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionItems.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionStatus.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionStatusMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19transactionType.txt +1 -0
- package/packages/i18n/lib/en_us/i19trendingApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19triggers.txt +1 -0
- package/packages/i18n/lib/en_us/i19triggersMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19tryAgain.txt +1 -0
- package/packages/i18n/lib/en_us/i19type.txt +1 -0
- package/packages/i18n/lib/en_us/i19unable.txt +1 -0
- package/packages/i18n/lib/en_us/i19unableToInstallApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19unableToUninstallApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19unavailable.txt +1 -0
- package/packages/i18n/lib/en_us/i19uninstall.txt +1 -0
- package/packages/i18n/lib/en_us/i19uninstallingApp.txt +1 -0
- package/packages/i18n/lib/en_us/i19uninstallingAppWithSuccess.txt +1 -0
- package/packages/i18n/lib/en_us/i19units.txt +1 -0
- package/packages/i18n/lib/en_us/i19unitsInStock.txt +1 -0
- package/packages/i18n/lib/en_us/i19unlimited.txt +1 -0
- package/packages/i18n/lib/en_us/i19unsubscribe.txt +1 -0
- package/packages/i18n/lib/en_us/i19untilTomorrow.txt +1 -0
- package/packages/i18n/lib/en_us/i19upTo.txt +1 -0
- package/packages/i18n/lib/en_us/i19update.txt +1 -0
- package/packages/i18n/lib/en_us/i19updatedAt.txt +1 -0
- package/packages/i18n/lib/en_us/i19upload.txt +1 -0
- package/packages/i18n/lib/en_us/i19uploadLogo.txt +1 -0
- package/packages/i18n/lib/en_us/i19uploadTable.txt +1 -0
- package/packages/i18n/lib/en_us/i19uponRequest.txt +1 -0
- package/packages/i18n/lib/en_us/i19url.txt +1 -0
- package/packages/i18n/lib/en_us/i19use$1LoyaltyPoints.txt +1 -0
- package/packages/i18n/lib/en_us/i19usedPoints.txt +1 -0
- package/packages/i18n/lib/en_us/i19user.txt +1 -0
- package/packages/i18n/lib/en_us/i19userFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19username.txt +1 -0
- package/packages/i18n/lib/en_us/i19usersFound.txt +1 -0
- package/packages/i18n/lib/en_us/i19utm.txt +1 -0
- package/packages/i18n/lib/en_us/i19utmCampaign.txt +1 -0
- package/packages/i18n/lib/en_us/i19utmContent.txt +1 -0
- package/packages/i18n/lib/en_us/i19utmMedium.txt +1 -0
- package/packages/i18n/lib/en_us/i19utmSource.txt +1 -0
- package/packages/i18n/lib/en_us/i19utmTerm.txt +1 -0
- package/packages/i18n/lib/en_us/i19valid.txt +1 -0
- package/packages/i18n/lib/en_us/i19validThru.txt +1 -0
- package/packages/i18n/lib/en_us/i19validate.txt +1 -0
- package/packages/i18n/lib/en_us/i19value.txt +1 -0
- package/packages/i18n/lib/en_us/i19variation.txt +1 -0
- package/packages/i18n/lib/en_us/i19variationId.txt +1 -0
- package/packages/i18n/lib/en_us/i19variationName.txt +1 -0
- package/packages/i18n/lib/en_us/i19variations.txt +1 -0
- package/packages/i18n/lib/en_us/i19verified.txt +1 -0
- package/packages/i18n/lib/en_us/i19version.txt +1 -0
- package/packages/i18n/lib/en_us/i19versionDate.txt +1 -0
- package/packages/i18n/lib/en_us/i19video.txt +1 -0
- package/packages/i18n/lib/en_us/i19videos.txt +1 -0
- package/packages/i18n/lib/en_us/i19visible.txt +1 -0
- package/packages/i18n/lib/en_us/i19visibleProducts.txt +1 -0
- package/packages/i18n/lib/en_us/i19visitor.txt +1 -0
- package/packages/i18n/lib/en_us/i19visitorCheckout.txt +1 -0
- package/packages/i18n/lib/en_us/i19warning.txt +1 -0
- package/packages/i18n/lib/en_us/i19warningToReinstallAppMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19wasAnErrorOnLoginMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19weFrom.txt +1 -0
- package/packages/i18n/lib/en_us/i19weRecommendToYou.txt +1 -0
- package/packages/i18n/lib/en_us/i19weUseYourDataToMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooks.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksApiExternalApiMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksApiMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksApiStoreApiMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksMapBodyMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19webhooksSendBodyMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19weekly.txt +1 -0
- package/packages/i18n/lib/en_us/i19weight.txt +1 -0
- package/packages/i18n/lib/en_us/i19welcome.txt +1 -0
- package/packages/i18n/lib/en_us/i19welcomeTextMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19widgets.txt +1 -0
- package/packages/i18n/lib/en_us/i19width.txt +1 -0
- package/packages/i18n/lib/en_us/i19willReceiveMsg.txt +1 -0
- package/packages/i18n/lib/en_us/i19with.txt +1 -0
- package/packages/i18n/lib/en_us/i19withoutInstallmentRates.txt +1 -0
- package/packages/i18n/lib/en_us/i19workingDays.txt +1 -0
- package/packages/i18n/lib/en_us/i19write.txt +1 -0
- package/packages/i18n/lib/en_us/i19writeReview.txt +1 -0
- package/packages/i18n/lib/en_us/i19year.txt +1 -0
- package/packages/i18n/lib/en_us/i19yearly.txt +1 -0
- package/packages/i18n/lib/en_us/i19years.txt +1 -0
- package/packages/i18n/lib/en_us/i19yes.txt +1 -0
- package/packages/i18n/lib/en_us/i19youEarn.txt +1 -0
- package/packages/i18n/lib/en_us/i19yourInstalledApps.txt +1 -0
- package/packages/i18n/lib/en_us/i19zipCode.txt +1 -0
- package/packages/i18n/lib/en_us/i19zipCodeRange.txt +1 -0
- package/packages/i18n/lib/en_us.d.ts +1161 -0
- package/packages/i18n/lib/en_us.js +1163 -0
- package/packages/i18n/lib/en_us.js.map +1 -0
- package/packages/i18n/lib/pt_br/i19a.txt +1 -0
- package/packages/i18n/lib/pt_br/i19about.txt +1 -0
- package/packages/i18n/lib/pt_br/i19aboutCvvMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19aboveOf.txt +1 -0
- package/packages/i18n/lib/pt_br/i19acceptAttachedFile.txt +1 -0
- package/packages/i18n/lib/pt_br/i19acceptCustomOptionByCustomer.txt +1 -0
- package/packages/i18n/lib/pt_br/i19accessMyAccount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19activate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19active.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adRelevance.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adType.txt +1 -0
- package/packages/i18n/lib/pt_br/i19add$1ToEarn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19add.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addClient.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addDiscountCoupon.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addGiftList.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addGrid.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addMoreProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addPreference.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addProduct.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addToCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addToFavorites.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addToPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addVariants.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additional.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additionalComments.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additionalCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additionalCostOption.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additionalInfo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19additionalNotes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19address.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addresses.txt +1 -0
- package/packages/i18n/lib/pt_br/i19addressesName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adminSettings.txt +1 -0
- package/packages/i18n/lib/pt_br/i19advanced.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adwords.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adwordsRemarketing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19adwordsRemarketingCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19affiliateCoede.txt +1 -0
- package/packages/i18n/lib/pt_br/i19afterApproval.txt +1 -0
- package/packages/i18n/lib/pt_br/i19afterPayment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19all.txt +1 -0
- package/packages/i18n/lib/pt_br/i19allCategories.txt +1 -0
- package/packages/i18n/lib/pt_br/i19allOptions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19allProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19alt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19amount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19another.txt +1 -0
- package/packages/i18n/lib/pt_br/i19anyPaymentMethodMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19anyPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19api.txt +1 -0
- package/packages/i18n/lib/pt_br/i19app.txt +1 -0
- package/packages/i18n/lib/pt_br/i19appAlreadyInstalledMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19appConfiguration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19appDevelopers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19application.txt +1 -0
- package/packages/i18n/lib/pt_br/i19applications.txt +1 -0
- package/packages/i18n/lib/pt_br/i19applyDiscount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19applyFilters.txt +1 -0
- package/packages/i18n/lib/pt_br/i19apps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19areYouWantToDeleteAppQn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19asOf.txt +1 -0
- package/packages/i18n/lib/pt_br/i19associateImage.txt +1 -0
- package/packages/i18n/lib/pt_br/i19associateImages.txt +1 -0
- package/packages/i18n/lib/pt_br/i19at.txt +1 -0
- package/packages/i18n/lib/pt_br/i19atSight.txt +1 -0
- package/packages/i18n/lib/pt_br/i19attachment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19attention.txt +1 -0
- package/packages/i18n/lib/pt_br/i19authentication.txt +1 -0
- package/packages/i18n/lib/pt_br/i19author.txt +1 -0
- package/packages/i18n/lib/pt_br/i19authorizedStores.txt +1 -0
- package/packages/i18n/lib/pt_br/i19automaticallyTrackInventory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19available.txt +1 -0
- package/packages/i18n/lib/pt_br/i19availableApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19availablePurchase.txt +1 -0
- package/packages/i18n/lib/pt_br/i19average.txt +1 -0
- package/packages/i18n/lib/pt_br/i19averageTicket.txt +1 -0
- package/packages/i18n/lib/pt_br/i19back.txt +1 -0
- package/packages/i18n/lib/pt_br/i19backToCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19backToProduct.txt +1 -0
- package/packages/i18n/lib/pt_br/i19bag.txt +1 -0
- package/packages/i18n/lib/pt_br/i19balanceOrPoints.txt +1 -0
- package/packages/i18n/lib/pt_br/i19banner.txt +1 -0
- package/packages/i18n/lib/pt_br/i19banners.txt +1 -0
- package/packages/i18n/lib/pt_br/i19bannersCollection.txt +1 -0
- package/packages/i18n/lib/pt_br/i19barcodes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19basePrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19bearersDocument.txt +1 -0
- package/packages/i18n/lib/pt_br/i19best.txt +1 -0
- package/packages/i18n/lib/pt_br/i19bestSellers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19biannual.txt +1 -0
- package/packages/i18n/lib/pt_br/i19billingAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19bimonthly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19birthdate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19biweekly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19block.txt +1 -0
- package/packages/i18n/lib/pt_br/i19borough.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brand.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brandBanners.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brandFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brandName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brands.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brandsFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19brazil.txt +1 -0
- package/packages/i18n/lib/pt_br/i19browserIp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19budgetOnly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyAgain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyAlsoMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyKit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyNow.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyOnWhatsApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyTogether.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyTogetherWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyer.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19buyersProfile.txt +1 -0
- package/packages/i18n/lib/pt_br/i19by.txt +1 -0
- package/packages/i18n/lib/pt_br/i19calculateShipping.txt +1 -0
- package/packages/i18n/lib/pt_br/i19callTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19callback.txt +1 -0
- package/packages/i18n/lib/pt_br/i19campaign.txt +1 -0
- package/packages/i18n/lib/pt_br/i19campaignAppliedMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cancel.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cancelOrder.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cancelReason.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cancelled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cancelledAt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cardNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cartConfirmed.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cartDetails.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cartItems.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cartReview.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cartUpdated.txt +1 -0
- package/packages/i18n/lib/pt_br/i19categories.txt +1 -0
- package/packages/i18n/lib/pt_br/i19category.txt +1 -0
- package/packages/i18n/lib/pt_br/i19categoryBanners.txt +1 -0
- package/packages/i18n/lib/pt_br/i19categoryFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19categoryName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19cellphone.txt +1 -0
- package/packages/i18n/lib/pt_br/i19changePaymentMethod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19changeShippingMethod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19channel.txt +1 -0
- package/packages/i18n/lib/pt_br/i19channelId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19channelType.txt +1 -0
- package/packages/i18n/lib/pt_br/i19channels.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkout.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutDone.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutEnabled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutMobileLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutVisitor.txt +1 -0
- package/packages/i18n/lib/pt_br/i19checkoutVisitorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19chooseProductDetailsToBuy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19chooseSubscriptionPeriod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19city.txt +1 -0
- package/packages/i18n/lib/pt_br/i19clear.txt +1 -0
- package/packages/i18n/lib/pt_br/i19clearFilters.txt +1 -0
- package/packages/i18n/lib/pt_br/i19click.txt +1 -0
- package/packages/i18n/lib/pt_br/i19clickHere.txt +1 -0
- package/packages/i18n/lib/pt_br/i19close.txt +1 -0
- package/packages/i18n/lib/pt_br/i19closeFilters.txt +1 -0
- package/packages/i18n/lib/pt_br/i19closedAt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19code.txt +1 -0
- package/packages/i18n/lib/pt_br/i19codeCopied.txt +1 -0
- package/packages/i18n/lib/pt_br/i19collection.txt +1 -0
- package/packages/i18n/lib/pt_br/i19collectionBanners.txt +1 -0
- package/packages/i18n/lib/pt_br/i19collectionItems.txt +1 -0
- package/packages/i18n/lib/pt_br/i19collectionName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19collections.txt +1 -0
- package/packages/i18n/lib/pt_br/i19color.txt +1 -0
- package/packages/i18n/lib/pt_br/i19colors.txt +1 -0
- package/packages/i18n/lib/pt_br/i19community.txt +1 -0
- package/packages/i18n/lib/pt_br/i19companyRegistration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19compareAtPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19compareProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19comparedPreviousPeriodMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19complement.txt +1 -0
- package/packages/i18n/lib/pt_br/i19complementInformation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19configuration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19confirmPassword.txt +1 -0
- package/packages/i18n/lib/pt_br/i19confirmPurchase.txt +1 -0
- package/packages/i18n/lib/pt_br/i19connectionErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19connectionErrorProductMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19contactPhone.txt +1 -0
- package/packages/i18n/lib/pt_br/i19contactUsMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19content.txt +1 -0
- package/packages/i18n/lib/pt_br/i19continue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19continueLoginOnPopup.txt +1 -0
- package/packages/i18n/lib/pt_br/i19continueShopping.txt +1 -0
- package/packages/i18n/lib/pt_br/i19control.txt +1 -0
- package/packages/i18n/lib/pt_br/i19copyCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19copyErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19copyright.txt +1 -0
- package/packages/i18n/lib/pt_br/i19corporateName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19costDeclaredValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19costPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19countryCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19couponAppliedMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19createAnAccount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19createTransaction.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19credit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditCard.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditCardBin.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditCardCompany.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditCardHolderName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditCardLastDigits.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditorFees.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditorFeesIntermediator.txt +1 -0
- package/packages/i18n/lib/pt_br/i19creditorFeesOperational.txt +1 -0
- package/packages/i18n/lib/pt_br/i19currencyId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19currencySymbol.txt +1 -0
- package/packages/i18n/lib/pt_br/i19custom.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customFields.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customPayment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customer.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customerNotified.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customerService.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customizationAddToPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customizationAttachment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customizationChosen.txt +1 -0
- package/packages/i18n/lib/pt_br/i19customizations.txt +1 -0
- package/packages/i18n/lib/pt_br/i19dailyAverage.txt +1 -0
- package/packages/i18n/lib/pt_br/i19danger.txt +1 -0
- package/packages/i18n/lib/pt_br/i19dashboard.txt +1 -0
- package/packages/i18n/lib/pt_br/i19dateTime.txt +1 -0
- package/packages/i18n/lib/pt_br/i19day.txt +1 -0
- package/packages/i18n/lib/pt_br/i19days.txt +1 -0
- package/packages/i18n/lib/pt_br/i19declare.txt +1 -0
- package/packages/i18n/lib/pt_br/i19declaredValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19delete.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deleteAll.txt +1 -0
- package/packages/i18n/lib/pt_br/i19delivery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryCostOwnHandMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryInMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryReceipt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryReceiptMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryTime.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryTrack.txt +1 -0
- package/packages/i18n/lib/pt_br/i19deliveryWithOwnHandMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19description.txt +1 -0
- package/packages/i18n/lib/pt_br/i19desktop.txt +1 -0
- package/packages/i18n/lib/pt_br/i19details.txt +1 -0
- package/packages/i18n/lib/pt_br/i19didYouMean.txt +1 -0
- package/packages/i18n/lib/pt_br/i19digits.txt +1 -0
- package/packages/i18n/lib/pt_br/i19directLinkPayment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19disable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19discount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19discountCoupon.txt +1 -0
- package/packages/i18n/lib/pt_br/i19discountOf.txt +1 -0
- package/packages/i18n/lib/pt_br/i19discountValueMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19displayName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19doPaymentMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19doYouWantToDeleteAppQn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19doYouWantToReinstallAppQn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19docCountry.txt +1 -0
- package/packages/i18n/lib/pt_br/i19docNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19docs.txt +1 -0
- package/packages/i18n/lib/pt_br/i19domain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19download.txt +1 -0
- package/packages/i18n/lib/pt_br/i19downloadTable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19edit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editAdditionalCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editComments.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editDispatchAndFulfillment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editFeatures.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editFilters.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editGtinMpn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editHtmlDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editObservationInfo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editPaymentDetails.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editProductDimensions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editSeoFields.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editStorefront.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editVariation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19editing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19email.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailCartTextMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailCartTitleMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailDeliveredTextMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailDeliveredTitleMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailInfoMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailMarketing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailMarketingOptInMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailProfileNotFoundMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailShippedTextMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailShippedTitleMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emailWasSentMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emails.txt +1 -0
- package/packages/i18n/lib/pt_br/i19empty.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emptyCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19emptyCartMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enabled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19end.txt +1 -0
- package/packages/i18n/lib/pt_br/i19endDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19endpoint.txt +1 -0
- package/packages/i18n/lib/pt_br/i19endsIn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterEmailCodeMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterWithPassword.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterYourDocNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterYourDocNumberMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterYourEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19enterYourEmailMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19erp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19error.txt +1 -0
- package/packages/i18n/lib/pt_br/i19errorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19events.txt +1 -0
- package/packages/i18n/lib/pt_br/i19export.txt +1 -0
- package/packages/i18n/lib/pt_br/i19exportToCsv.txt +1 -0
- package/packages/i18n/lib/pt_br/i19external.txt +1 -0
- package/packages/i18n/lib/pt_br/i19extra.txt +1 -0
- package/packages/i18n/lib/pt_br/i19extraCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19familyName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19favorites.txt +1 -0
- package/packages/i18n/lib/pt_br/i19featuredApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19female.txt +1 -0
- package/packages/i18n/lib/pt_br/i19field.txt +1 -0
- package/packages/i18n/lib/pt_br/i19files.txt +1 -0
- package/packages/i18n/lib/pt_br/i19filter.txt +1 -0
- package/packages/i18n/lib/pt_br/i19filterOut.txt +1 -0
- package/packages/i18n/lib/pt_br/i19filterProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19filterResults.txt +1 -0
- package/packages/i18n/lib/pt_br/i19finalPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19finalPriceWithAdditional.txt +1 -0
- package/packages/i18n/lib/pt_br/i19financialStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19firstSteps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19followingAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19for.txt +1 -0
- package/packages/i18n/lib/pt_br/i19free.txt +1 -0
- package/packages/i18n/lib/pt_br/i19freeShipping.txt +1 -0
- package/packages/i18n/lib/pt_br/i19freeShippingFrom.txt +1 -0
- package/packages/i18n/lib/pt_br/i19freebie.txt +1 -0
- package/packages/i18n/lib/pt_br/i19freight.txt +1 -0
- package/packages/i18n/lib/pt_br/i19freightCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19from.txt +1 -0
- package/packages/i18n/lib/pt_br/i19fulfillmentStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19fullName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19fullscreen.txt +1 -0
- package/packages/i18n/lib/pt_br/i19gateway.txt +1 -0
- package/packages/i18n/lib/pt_br/i19gender.txt +1 -0
- package/packages/i18n/lib/pt_br/i19genderX.txt +1 -0
- package/packages/i18n/lib/pt_br/i19general.txt +1 -0
- package/packages/i18n/lib/pt_br/i19generateBillet.txt +1 -0
- package/packages/i18n/lib/pt_br/i19get$1back.txt +1 -0
- package/packages/i18n/lib/pt_br/i19get.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftList.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListAuthors.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListAuthorsContact.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListEventDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListInformation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListNotificationPurchaseMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListOwnerID.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListPermalink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListTitle.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListValidThru.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftListWaiting.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19giftWrap.txt +1 -0
- package/packages/i18n/lib/pt_br/i19gitRepository.txt +1 -0
- package/packages/i18n/lib/pt_br/i19givenName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19goToCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19goToStore.txt +1 -0
- package/packages/i18n/lib/pt_br/i19goToTop.txt +1 -0
- package/packages/i18n/lib/pt_br/i19googleAnalytics.txt +1 -0
- package/packages/i18n/lib/pt_br/i19googleProductCategoryId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19gridId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19gridName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19grids.txt +1 -0
- package/packages/i18n/lib/pt_br/i19guestCheckoutMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19hasCouponOrVoucherQn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19height.txt +1 -0
- package/packages/i18n/lib/pt_br/i19hello.txt +1 -0
- package/packages/i18n/lib/pt_br/i19helloAgain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19help.txt +1 -0
- package/packages/i18n/lib/pt_br/i19helpful.txt +1 -0
- package/packages/i18n/lib/pt_br/i19high.txt +1 -0
- package/packages/i18n/lib/pt_br/i19highPriority.txt +1 -0
- package/packages/i18n/lib/pt_br/i19highestPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19holderName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19home.txt +1 -0
- package/packages/i18n/lib/pt_br/i19hour.txt +1 -0
- package/packages/i18n/lib/pt_br/i19hours.txt +1 -0
- package/packages/i18n/lib/pt_br/i19iForgotMyPassword.txt +1 -0
- package/packages/i18n/lib/pt_br/i19iReadAndAccept.txt +1 -0
- package/packages/i18n/lib/pt_br/i19icon.txt +1 -0
- package/packages/i18n/lib/pt_br/i19id.txt +1 -0
- package/packages/i18n/lib/pt_br/i19idOfShippingMethod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19identification.txt +1 -0
- package/packages/i18n/lib/pt_br/i19identifyYourAccount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19image.txt +1 -0
- package/packages/i18n/lib/pt_br/i19images.txt +1 -0
- package/packages/i18n/lib/pt_br/i19import.txt +1 -0
- package/packages/i18n/lib/pt_br/i19in.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inStock.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inStockAt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inactive.txt +1 -0
- package/packages/i18n/lib/pt_br/i19incorrect.txt +1 -0
- package/packages/i18n/lib/pt_br/i19incorrectEmailCodeMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19incorrectFormat.txt +1 -0
- package/packages/i18n/lib/pt_br/i19info.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inscriptionNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19insert.txt +1 -0
- package/packages/i18n/lib/pt_br/i19install.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installNow.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installed.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installedApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installingApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19installments.txt +1 -0
- package/packages/i18n/lib/pt_br/i19institutional.txt +1 -0
- package/packages/i18n/lib/pt_br/i19interestFree.txt +1 -0
- package/packages/i18n/lib/pt_br/i19intermediator.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invalidCard.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invalidCardMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invalidCouponMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invalidDomainName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invalidLoginInfoMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inventory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19inventoryHistory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invoice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19invoices.txt +1 -0
- package/packages/i18n/lib/pt_br/i19isFilter.txt +1 -0
- package/packages/i18n/lib/pt_br/i19isNotYou.txt +1 -0
- package/packages/i18n/lib/pt_br/i19item.txt +1 -0
- package/packages/i18n/lib/pt_br/i19items.txt +1 -0
- package/packages/i18n/lib/pt_br/i19itemsFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19jurifical.txt +1 -0
- package/packages/i18n/lib/pt_br/i19just.txt +1 -0
- package/packages/i18n/lib/pt_br/i19keywords.txt +1 -0
- package/packages/i18n/lib/pt_br/i19kit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19label.txt +1 -0
- package/packages/i18n/lib/pt_br/i19labelOfCustomization.txt +1 -0
- package/packages/i18n/lib/pt_br/i19last.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lastOptions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lastPurchase.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lastSearchedTerms.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lastVisitedProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19latestOrders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19launch.txt +1 -0
- package/packages/i18n/lib/pt_br/i19launching.txt +1 -0
- package/packages/i18n/lib/pt_br/i19length.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lineAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19list.txt +1 -0
- package/packages/i18n/lib/pt_br/i19listOfInvoices.txt +1 -0
- package/packages/i18n/lib/pt_br/i19listOfPayments.txt +1 -0
- package/packages/i18n/lib/pt_br/i19listSubscriptionInvoices.txt +1 -0
- package/packages/i18n/lib/pt_br/i19load.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loadDataErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loadMore.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loadMoreProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loadProductErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loading.txt +1 -0
- package/packages/i18n/lib/pt_br/i19locale.txt +1 -0
- package/packages/i18n/lib/pt_br/i19login.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loginEnabled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loginErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loginForOrderDetailsMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19logo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19logout.txt +1 -0
- package/packages/i18n/lib/pt_br/i19low.txt +1 -0
- package/packages/i18n/lib/pt_br/i19lowestPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loyaltyPoints.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loyaltyPointsName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19loyaltyPointsPointsValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19madeBy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mainEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19male.txt +1 -0
- package/packages/i18n/lib/pt_br/i19manageStock.txt +1 -0
- package/packages/i18n/lib/pt_br/i19manageYourPurchaseHistory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19marketing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19marketplace.txt +1 -0
- package/packages/i18n/lib/pt_br/i19marketplaces.txt +1 -0
- package/packages/i18n/lib/pt_br/i19massEdit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19maxQuantity.txt +1 -0
- package/packages/i18n/lib/pt_br/i19maximum.txt +1 -0
- package/packages/i18n/lib/pt_br/i19measurement.txt +1 -0
- package/packages/i18n/lib/pt_br/i19media.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mediaGallery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19menu.txt +1 -0
- package/packages/i18n/lib/pt_br/i19metaTagDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19metafields.txt +1 -0
- package/packages/i18n/lib/pt_br/i19metafieldsMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19middleName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19milliseconds.txt +1 -0
- package/packages/i18n/lib/pt_br/i19minQuantity.txt +1 -0
- package/packages/i18n/lib/pt_br/i19minimum.txt +1 -0
- package/packages/i18n/lib/pt_br/i19minus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19minute.txt +1 -0
- package/packages/i18n/lib/pt_br/i19minutes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mlCategoryId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mobile.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mobileLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19modules.txt +1 -0
- package/packages/i18n/lib/pt_br/i19month.txt +1 -0
- package/packages/i18n/lib/pt_br/i19monthly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mostPopular.txt +1 -0
- package/packages/i18n/lib/pt_br/i19mostRelevant.txt +1 -0
- package/packages/i18n/lib/pt_br/i19motorcycleCourier.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myAccount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myAccountAndOrders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myFavorites.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myOrders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19myShoppingCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19name.txt +1 -0
- package/packages/i18n/lib/pt_br/i19nameOnCard.txt +1 -0
- package/packages/i18n/lib/pt_br/i19namespace.txt +1 -0
- package/packages/i18n/lib/pt_br/i19namespaceMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19nearTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19needHelpQn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19new.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newOrders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newPassword.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newPriceRange.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newVersionAvailableMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newsletter.txt +1 -0
- package/packages/i18n/lib/pt_br/i19newsletterReport.txt +1 -0
- package/packages/i18n/lib/pt_br/i19next.txt +1 -0
- package/packages/i18n/lib/pt_br/i19nickname.txt +1 -0
- package/packages/i18n/lib/pt_br/i19no.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noAdditional.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noAppsAvailable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noBrand.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noCategory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noCollection.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noGrid.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noItemSelected.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noNewOrdersMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noOrder.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noProductsFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noProductsFoundFor$1.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noProductsInBrandMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noProductsInCategoryMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noProfileFoundWithEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noSavedFavoritesMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19noUser.txt +1 -0
- package/packages/i18n/lib/pt_br/i19normal.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notConfigured.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notifications.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notified.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notifiedAdmins.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notifiedAdminsMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19notifyAboutOrders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19number.txt +1 -0
- package/packages/i18n/lib/pt_br/i19oauthOnPopup.txt +1 -0
- package/packages/i18n/lib/pt_br/i19of.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ofDiscount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19offer.txt +1 -0
- package/packages/i18n/lib/pt_br/i19on.txt +1 -0
- package/packages/i18n/lib/pt_br/i19onFollowingAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19onFreight.txt +1 -0
- package/packages/i18n/lib/pt_br/i19only.txt +1 -0
- package/packages/i18n/lib/pt_br/i19open.txt +1 -0
- package/packages/i18n/lib/pt_br/i19openAt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19openCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19openGallery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19operational.txt +1 -0
- package/packages/i18n/lib/pt_br/i19option.txt +1 -0
- package/packages/i18n/lib/pt_br/i19optionChosen.txt +1 -0
- package/packages/i18n/lib/pt_br/i19options.txt +1 -0
- package/packages/i18n/lib/pt_br/i19or.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orProceedWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19order.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderConfirmationMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderCreated.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderDetails.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderItems.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderNotesInputMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderNumber.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderObservations.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orderValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19orders.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ordersCount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ordersTotalValue.txt +1 -0
- package/packages/i18n/lib/pt_br/i19organization.txt +1 -0
- package/packages/i18n/lib/pt_br/i19otherCustomers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19otherCustomersMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19outOfDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19outOfStock.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ownDelivery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ownHand.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ownHandCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19package.txt +1 -0
- package/packages/i18n/lib/pt_br/i19packageDimensions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19packageDimensionsInformation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19packageInformation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19packageWeight.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pageLoaded.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paid.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paidTextMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19parcelIn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19parentCategory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19partner.txt +1 -0
- package/packages/i18n/lib/pt_br/i19partners.txt +1 -0
- package/packages/i18n/lib/pt_br/i19partnersProgram.txt +1 -0
- package/packages/i18n/lib/pt_br/i19password.txt +1 -0
- package/packages/i18n/lib/pt_br/i19passwordChangedSuccessfully.txt +1 -0
- package/packages/i18n/lib/pt_br/i19patch.txt +1 -0
- package/packages/i18n/lib/pt_br/i19payer.txt +1 -0
- package/packages/i18n/lib/pt_br/i19payment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentConfirmed.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentDetails.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentError.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentMethod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentMethodLabel.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentMethods.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentOptions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19paymentRealized.txt +1 -0
- package/packages/i18n/lib/pt_br/i19perUnit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19permalink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19personalRegistration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19phone.txt +1 -0
- package/packages/i18n/lib/pt_br/i19phones.txt +1 -0
- package/packages/i18n/lib/pt_br/i19photo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19photos.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pickUpAtTheStore.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pickUpToday.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pickup.txt +1 -0
- package/packages/i18n/lib/pt_br/i19picture.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pictures.txt +1 -0
- package/packages/i18n/lib/pt_br/i19plus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pointsEarned.txt +1 -0
- package/packages/i18n/lib/pt_br/i19popularProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19popup.txt +1 -0
- package/packages/i18n/lib/pt_br/i19post.txt +1 -0
- package/packages/i18n/lib/pt_br/i19posted.txt +1 -0
- package/packages/i18n/lib/pt_br/i19postingDeadline.txt +1 -0
- package/packages/i18n/lib/pt_br/i19postingIn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pressEnterToSave.txt +1 -0
- package/packages/i18n/lib/pt_br/i19previous.txt +1 -0
- package/packages/i18n/lib/pt_br/i19price.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceAlteration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceEffectiveDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceEffectiveDateEnd.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceEffectiveDateStar.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceRange.txt +1 -0
- package/packages/i18n/lib/pt_br/i19priceTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19pricing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19printBillet.txt +1 -0
- package/packages/i18n/lib/pt_br/i19privacy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19privacyPolicy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19private.txt +1 -0
- package/packages/i18n/lib/pt_br/i19privateMetafields.txt +1 -0
- package/packages/i18n/lib/pt_br/i19privateMetafieldsMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19proceed.txt +1 -0
- package/packages/i18n/lib/pt_br/i19product.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productImages.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productSpecifications.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productionDeadline.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productionTime.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productionTimeCumulative.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productionTimeDaysMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productionTimeWorkingDays.txt +1 -0
- package/packages/i18n/lib/pt_br/i19products.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productsAdded.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productsAddedToCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19productsPurchased.txt +1 -0
- package/packages/i18n/lib/pt_br/i19profile.txt +1 -0
- package/packages/i18n/lib/pt_br/i19profileNotFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19province.txt +1 -0
- package/packages/i18n/lib/pt_br/i19provinceCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19put.txt +1 -0
- package/packages/i18n/lib/pt_br/i19quantity.txt +1 -0
- package/packages/i18n/lib/pt_br/i19quarterly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19quickSetup.txt +1 -0
- package/packages/i18n/lib/pt_br/i19random.txt +1 -0
- package/packages/i18n/lib/pt_br/i19rating.txt +1 -0
- package/packages/i18n/lib/pt_br/i19read.txt +1 -0
- package/packages/i18n/lib/pt_br/i19receipt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19receiptPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19receiveNewsletter.txt +1 -0
- package/packages/i18n/lib/pt_br/i19receiveToday.txt +1 -0
- package/packages/i18n/lib/pt_br/i19receivedOrder.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recipient.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recommendations.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recommendedForYou.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recommendedProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recurrence.txt +1 -0
- package/packages/i18n/lib/pt_br/i19recurrent.txt +1 -0
- package/packages/i18n/lib/pt_br/i19redirectToPayment.txt +1 -0
- package/packages/i18n/lib/pt_br/i19reference.txt +1 -0
- package/packages/i18n/lib/pt_br/i19referenceCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19referral.txt +1 -0
- package/packages/i18n/lib/pt_br/i19referringSite.txt +1 -0
- package/packages/i18n/lib/pt_br/i19refine.txt +1 -0
- package/packages/i18n/lib/pt_br/i19refineSearch.txt +1 -0
- package/packages/i18n/lib/pt_br/i19registerDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19registerProduct.txt +1 -0
- package/packages/i18n/lib/pt_br/i19registerToBuy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19registerToBuyMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19registration.txt +1 -0
- package/packages/i18n/lib/pt_br/i19reinstall.txt +1 -0
- package/packages/i18n/lib/pt_br/i19relatedApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19relatedProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19relatedSearch.txt +1 -0
- package/packages/i18n/lib/pt_br/i19releases.txt +1 -0
- package/packages/i18n/lib/pt_br/i19relevance.txt +1 -0
- package/packages/i18n/lib/pt_br/i19remove.txt +1 -0
- package/packages/i18n/lib/pt_br/i19removeFromFavorites.txt +1 -0
- package/packages/i18n/lib/pt_br/i19removed.txt +1 -0
- package/packages/i18n/lib/pt_br/i19reopenOrder.txt +1 -0
- package/packages/i18n/lib/pt_br/i19report.txt +1 -0
- package/packages/i18n/lib/pt_br/i19require.txt +1 -0
- package/packages/i18n/lib/pt_br/i19required.txt +1 -0
- package/packages/i18n/lib/pt_br/i19requiredEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19requiredEmailMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19requiredField.txt +1 -0
- package/packages/i18n/lib/pt_br/i19resource.txt +1 -0
- package/packages/i18n/lib/pt_br/i19resourceId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19results.txt +1 -0
- package/packages/i18n/lib/pt_br/i19resultsFor.txt +1 -0
- package/packages/i18n/lib/pt_br/i19retail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19retry.txt +1 -0
- package/packages/i18n/lib/pt_br/i19reviews.txt +1 -0
- package/packages/i18n/lib/pt_br/i19safeBuy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19safeEnvMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sales.txt +1 -0
- package/packages/i18n/lib/pt_br/i19salesChannels.txt +1 -0
- package/packages/i18n/lib/pt_br/i19salesPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19save.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveBrand.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveCard.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveCategory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveClient.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveCollection.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveGrid.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveProduct.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saveText.txt +1 -0
- package/packages/i18n/lib/pt_br/i19saved.txt +1 -0
- package/packages/i18n/lib/pt_br/i19savedWithSuccess.txt +1 -0
- package/packages/i18n/lib/pt_br/i19scheduledDelivery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19search.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchAgain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchEngineListing.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchItems.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchOfflineErrorMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19searchingFor.txt +1 -0
- package/packages/i18n/lib/pt_br/i19second.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seconds.txt +1 -0
- package/packages/i18n/lib/pt_br/i19securityCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeAll$1Category.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeAll.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeAllApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeAllThemes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeMore.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeMoreCategory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeMoreInfo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeOrder.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seeShoppingCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19select.txt +1 -0
- package/packages/i18n/lib/pt_br/i19selectVariation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19selectVariationMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19selected.txt +1 -0
- package/packages/i18n/lib/pt_br/i19selectedOffers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19selectedOptions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seller.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sellerRecommendations.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sellerRecommendationsProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sellerRecommendationsTitle.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sellerStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sellerStatusMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19send.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sendLoginCodeByEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sendLoginLinkByEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sender.txt +1 -0
- package/packages/i18n/lib/pt_br/i19senderFrom.txt +1 -0
- package/packages/i18n/lib/pt_br/i19seo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19setDomainMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19setStoreDomain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19setUp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19settings.txt +1 -0
- package/packages/i18n/lib/pt_br/i19share.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shareOnFacebook.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shareOnWhatsapp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shipped.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippedBy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shipping.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingAdditionalPrice.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingAddress.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingCustomFields.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingDiscount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingInvoices.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingMethod.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingMethodLabel.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingNotes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingNotesMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTag.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTags.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTaxes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTaxesMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shippingTotalCost.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shopByCategory.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shopByFranchise.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shopNow.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shoppingCart.txt +1 -0
- package/packages/i18n/lib/pt_br/i19short.txt +1 -0
- package/packages/i18n/lib/pt_br/i19shortDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19show.txt +1 -0
- package/packages/i18n/lib/pt_br/i19showDescription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19showReview.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signIn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signInWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signInWithAnotherEmail.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signUp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signUpWith.txt +1 -0
- package/packages/i18n/lib/pt_br/i19signature.txt +1 -0
- package/packages/i18n/lib/pt_br/i19size.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sizeGuide.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sku.txt +1 -0
- package/packages/i18n/lib/pt_br/i19slug.txt +1 -0
- package/packages/i18n/lib/pt_br/i19socialLogin.txt +1 -0
- package/packages/i18n/lib/pt_br/i19socialMedia.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sort.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sortBy.txt +1 -0
- package/packages/i18n/lib/pt_br/i19source.txt +1 -0
- package/packages/i18n/lib/pt_br/i19sourceName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19specifications.txt +1 -0
- package/packages/i18n/lib/pt_br/i19staffNotes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19staffSignature.txt +1 -0
- package/packages/i18n/lib/pt_br/i19star.txt +1 -0
- package/packages/i18n/lib/pt_br/i19startDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19state.txt +1 -0
- package/packages/i18n/lib/pt_br/i19status.txt +1 -0
- package/packages/i18n/lib/pt_br/i19statusLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19statusMobileLink.txt +1 -0
- package/packages/i18n/lib/pt_br/i19store.txt +1 -0
- package/packages/i18n/lib/pt_br/i19storefront.txt +1 -0
- package/packages/i18n/lib/pt_br/i19street.txt +1 -0
- package/packages/i18n/lib/pt_br/i19submit.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subresource.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subresourceId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subscribe.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subscription.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subscriptionInvoices.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subscriptions.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subtitle.txt +1 -0
- package/packages/i18n/lib/pt_br/i19subtotal.txt +1 -0
- package/packages/i18n/lib/pt_br/i19success.txt +1 -0
- package/packages/i18n/lib/pt_br/i19successfullyInstalled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19successfullyUninstalled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19suggestedProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19summary.txt +1 -0
- package/packages/i18n/lib/pt_br/i19support.txt +1 -0
- package/packages/i18n/lib/pt_br/i19table.txt +1 -0
- package/packages/i18n/lib/pt_br/i19tax.txt +1 -0
- package/packages/i18n/lib/pt_br/i19taxExempt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19termSearched.txt +1 -0
- package/packages/i18n/lib/pt_br/i19test.txt +1 -0
- package/packages/i18n/lib/pt_br/i19thanks.txt +1 -0
- package/packages/i18n/lib/pt_br/i19thanksForPurchase.txt +1 -0
- package/packages/i18n/lib/pt_br/i19theme.txt +1 -0
- package/packages/i18n/lib/pt_br/i19themes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19ticketCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19title.txt +1 -0
- package/packages/i18n/lib/pt_br/i19titleTag.txt +1 -0
- package/packages/i18n/lib/pt_br/i19to.txt +1 -0
- package/packages/i18n/lib/pt_br/i19toEarn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19toPay.txt +1 -0
- package/packages/i18n/lib/pt_br/i19today.txt +1 -0
- package/packages/i18n/lib/pt_br/i19toggleMenu.txt +1 -0
- package/packages/i18n/lib/pt_br/i19token.txt +1 -0
- package/packages/i18n/lib/pt_br/i19total.txt +1 -0
- package/packages/i18n/lib/pt_br/i19totalAmount.txt +1 -0
- package/packages/i18n/lib/pt_br/i19totalCancelled.txt +1 -0
- package/packages/i18n/lib/pt_br/i19totalCancelledMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19totalResultsFor.txt +1 -0
- package/packages/i18n/lib/pt_br/i19totalSpent.txt +1 -0
- package/packages/i18n/lib/pt_br/i19trackDelivery.txt +1 -0
- package/packages/i18n/lib/pt_br/i19trackingCodes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionItems.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionStatus.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionStatusMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19transactionType.txt +1 -0
- package/packages/i18n/lib/pt_br/i19trendingApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19triggers.txt +1 -0
- package/packages/i18n/lib/pt_br/i19triggersMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19tryAgain.txt +1 -0
- package/packages/i18n/lib/pt_br/i19type.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unableToInstallApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unableToUninstallApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unavailable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uninstall.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uninstallingApp.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uninstallingAppWithSuccess.txt +1 -0
- package/packages/i18n/lib/pt_br/i19units.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unitsInStock.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unlimited.txt +1 -0
- package/packages/i18n/lib/pt_br/i19unsubscribe.txt +1 -0
- package/packages/i18n/lib/pt_br/i19untilTomorrow.txt +1 -0
- package/packages/i18n/lib/pt_br/i19upTo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19update.txt +1 -0
- package/packages/i18n/lib/pt_br/i19updatedAt.txt +1 -0
- package/packages/i18n/lib/pt_br/i19upload.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uploadLogo.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uploadTable.txt +1 -0
- package/packages/i18n/lib/pt_br/i19uponRequest.txt +1 -0
- package/packages/i18n/lib/pt_br/i19url.txt +1 -0
- package/packages/i18n/lib/pt_br/i19use$1LoyaltyPoints.txt +1 -0
- package/packages/i18n/lib/pt_br/i19usedPoints.txt +1 -0
- package/packages/i18n/lib/pt_br/i19user.txt +1 -0
- package/packages/i18n/lib/pt_br/i19userFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19username.txt +1 -0
- package/packages/i18n/lib/pt_br/i19usersFound.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utm.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utmCampaign.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utmContent.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utmMedium.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utmSource.txt +1 -0
- package/packages/i18n/lib/pt_br/i19utmTerm.txt +1 -0
- package/packages/i18n/lib/pt_br/i19valid.txt +1 -0
- package/packages/i18n/lib/pt_br/i19validThru.txt +1 -0
- package/packages/i18n/lib/pt_br/i19validate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19value.txt +1 -0
- package/packages/i18n/lib/pt_br/i19variation.txt +1 -0
- package/packages/i18n/lib/pt_br/i19variationId.txt +1 -0
- package/packages/i18n/lib/pt_br/i19variationName.txt +1 -0
- package/packages/i18n/lib/pt_br/i19variations.txt +1 -0
- package/packages/i18n/lib/pt_br/i19verified.txt +1 -0
- package/packages/i18n/lib/pt_br/i19version.txt +1 -0
- package/packages/i18n/lib/pt_br/i19versionDate.txt +1 -0
- package/packages/i18n/lib/pt_br/i19video.txt +1 -0
- package/packages/i18n/lib/pt_br/i19videos.txt +1 -0
- package/packages/i18n/lib/pt_br/i19visible.txt +1 -0
- package/packages/i18n/lib/pt_br/i19visibleProducts.txt +1 -0
- package/packages/i18n/lib/pt_br/i19visitor.txt +1 -0
- package/packages/i18n/lib/pt_br/i19visitorCheckout.txt +1 -0
- package/packages/i18n/lib/pt_br/i19warning.txt +1 -0
- package/packages/i18n/lib/pt_br/i19warningToReinstallAppMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19wasAnErrorOnLogin.txt +1 -0
- package/packages/i18n/lib/pt_br/i19weFrom.txt +1 -0
- package/packages/i18n/lib/pt_br/i19weRecommendToYou.txt +1 -0
- package/packages/i18n/lib/pt_br/i19weUseYourDataToMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooks.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksApiExternalApiMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksApiMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksApiStoreApiMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksMapBodyMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19webhooksSendBodyMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19weekly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19weight.txt +1 -0
- package/packages/i18n/lib/pt_br/i19welcome.txt +1 -0
- package/packages/i18n/lib/pt_br/i19welcomeTextMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19widgets.txt +1 -0
- package/packages/i18n/lib/pt_br/i19width.txt +1 -0
- package/packages/i18n/lib/pt_br/i19willReceiveMsg.txt +1 -0
- package/packages/i18n/lib/pt_br/i19with.txt +1 -0
- package/packages/i18n/lib/pt_br/i19withoutInstallmentRates.txt +1 -0
- package/packages/i18n/lib/pt_br/i19workingDays.txt +1 -0
- package/packages/i18n/lib/pt_br/i19write.txt +1 -0
- package/packages/i18n/lib/pt_br/i19writeReview.txt +1 -0
- package/packages/i18n/lib/pt_br/i19year.txt +1 -0
- package/packages/i18n/lib/pt_br/i19yearly.txt +1 -0
- package/packages/i18n/lib/pt_br/i19years.txt +1 -0
- package/packages/i18n/lib/pt_br/i19yes.txt +1 -0
- package/packages/i18n/lib/pt_br/i19youEarn.txt +1 -0
- package/packages/i18n/lib/pt_br/i19yourInstalledApps.txt +1 -0
- package/packages/i18n/lib/pt_br/i19zipCode.txt +1 -0
- package/packages/i18n/lib/pt_br/i19zipCodeRange.txt +1 -0
- package/packages/i18n/lib/pt_br.d.ts +1161 -0
- package/packages/i18n/lib/pt_br.js +1163 -0
- package/packages/i18n/lib/pt_br.js.map +1 -0
- package/packages/i18n/package.json +34 -0
- package/packages/i18n/scripts/build-txt.mjs +27 -0
- package/packages/i18n/src/all.ts +9 -0
- package/packages/i18n/src/dirname.ts +3 -0
- package/packages/i18n/src/en_us.ts +1185 -0
- package/packages/i18n/src/pt_br.ts +1185 -0
- package/packages/i18n/tsconfig.json +6 -0
- package/packages/modules/CHANGELOG.md +1 -0
- package/packages/modules/README.md +1 -0
- package/packages/modules/firebase.js +1 -0
- package/packages/modules/lib/firebase/ajv.js +34 -0
- package/packages/modules/lib/firebase/ajv.js.map +1 -0
- package/packages/modules/lib/firebase/call-app-module.js +249 -0
- package/packages/modules/lib/firebase/call-app-module.js.map +1 -0
- package/packages/modules/lib/firebase/checkout.js +160 -0
- package/packages/modules/lib/firebase/checkout.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/fix-items.js +262 -0
- package/packages/modules/lib/firebase/functions-checkout/fix-items.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js +39 -0
- package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js +125 -0
- package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/new-order.js +191 -0
- package/packages/modules/lib/firebase/functions-checkout/new-order.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/request-to-module.js +77 -0
- package/packages/modules/lib/firebase/functions-checkout/request-to-module.js.map +1 -0
- package/packages/modules/lib/firebase/functions-checkout/utils.js +238 -0
- package/packages/modules/lib/firebase/functions-checkout/utils.js.map +1 -0
- package/packages/modules/lib/firebase/handle-module.js +171 -0
- package/packages/modules/lib/firebase/handle-module.js.map +1 -0
- package/packages/modules/lib/firebase/proxy-apps.js +1 -0
- package/packages/modules/lib/firebase/proxy-apps.js.map +1 -0
- package/packages/modules/lib/firebase/serve-modules-api.js +64 -0
- package/packages/modules/lib/firebase/serve-modules-api.js.map +1 -0
- package/packages/modules/lib/firebase.js +25 -0
- package/packages/modules/lib/firebase.js.map +1 -0
- package/packages/modules/lib/index.js +27 -0
- package/packages/modules/lib/index.js.map +1 -0
- package/packages/modules/package.json +61 -0
- package/packages/modules/schemas/@checkout.cjs +1026 -0
- package/packages/modules/schemas/apply_discount.cjs +377 -0
- package/packages/modules/schemas/calculate_shipping.cjs +666 -0
- package/packages/modules/schemas/create_transaction.cjs +1028 -0
- package/packages/modules/schemas/list_payments.cjs +858 -0
- package/packages/modules/scripts/build-types.sh +33 -0
- package/packages/modules/src/firebase/ajv.ts +39 -0
- package/packages/modules/src/firebase/call-app-module.ts +262 -0
- package/packages/modules/src/firebase/checkout.ts +212 -0
- package/packages/modules/src/firebase/functions-checkout/fix-items.ts +287 -0
- package/packages/modules/src/firebase/functions-checkout/get-custumerId.ts +39 -0
- package/packages/modules/src/firebase/functions-checkout/handle-order-transaction.ts +185 -0
- package/packages/modules/src/firebase/functions-checkout/new-order.ts +268 -0
- package/packages/modules/src/firebase/functions-checkout/request-to-module.ts +87 -0
- package/packages/modules/src/firebase/functions-checkout/utils.ts +313 -0
- package/packages/modules/src/firebase/handle-module.ts +208 -0
- package/packages/modules/src/firebase/proxy-apps.ts +0 -0
- package/packages/modules/src/firebase/serve-modules-api.ts +70 -0
- package/packages/modules/src/firebase.ts +30 -0
- package/packages/modules/src/index.ts +26 -0
- package/packages/modules/src/types/index.d.ts +64 -0
- package/packages/modules/tests/modules.test.mjs +26 -0
- package/packages/modules/tsconfig.json +3 -0
- package/packages/passport/CHANGELOG.md +1 -0
- package/packages/passport/README.md +1 -0
- package/packages/passport/firebase.js +1 -0
- package/packages/passport/lib/firebase/authenticate-customer.js +81 -0
- package/packages/passport/lib/firebase/authenticate-customer.js.map +1 -0
- package/packages/passport/lib/firebase/serve-passport-api.js +35 -0
- package/packages/passport/lib/firebase/serve-passport-api.js.map +1 -0
- package/packages/passport/lib/firebase.js +28 -0
- package/packages/passport/lib/firebase.js.map +1 -0
- package/packages/passport/lib/index.js +2 -0
- package/packages/passport/lib/index.js.map +1 -0
- package/packages/passport/package.json +36 -0
- package/packages/passport/src/firebase/authenticate-customer.ts +94 -0
- package/packages/passport/src/firebase/serve-passport-api.ts +37 -0
- package/packages/passport/src/firebase.ts +30 -0
- package/packages/passport/src/index.ts +4 -0
- package/packages/passport/tsconfig.json +3 -0
- package/packages/ssr/CHANGELOG.md +1 -0
- package/packages/ssr/README.md +1 -0
- package/packages/ssr/cloudflare/README.md +3 -0
- package/packages/ssr/cloudflare/swr-worker.js +179 -0
- package/packages/ssr/events.js +1 -0
- package/packages/ssr/firebase.js +1 -0
- package/packages/ssr/lib/firebase.js +15 -0
- package/packages/ssr/lib/firebase.js.map +1 -0
- package/packages/ssr/lib/index.js +4 -0
- package/packages/ssr/lib/index.js.map +1 -0
- package/packages/ssr/lib/lib/analytics/send-to-ga4.js +44 -0
- package/packages/ssr/lib/lib/analytics/send-to-ga4.js.map +1 -0
- package/packages/ssr/lib/lib/analytics/send-to-meta.js +44 -0
- package/packages/ssr/lib/lib/analytics/send-to-meta.js.map +1 -0
- package/packages/ssr/lib/lib/analytics/send-to-tiktok.js +44 -0
- package/packages/ssr/lib/lib/analytics/send-to-tiktok.js.map +1 -0
- package/packages/ssr/lib/lib/analytics-events.js +80 -0
- package/packages/ssr/lib/lib/analytics-events.js.map +1 -0
- package/packages/ssr/lib/lib/cron-ssr-save-views.js +57 -0
- package/packages/ssr/lib/lib/cron-ssr-save-views.js.map +1 -0
- package/packages/ssr/lib/lib/serve-storefront.js +295 -0
- package/packages/ssr/lib/lib/serve-storefront.js.map +1 -0
- package/packages/ssr/lib/ssr-events.js +18 -0
- package/packages/ssr/lib/ssr-events.js.map +1 -0
- package/packages/ssr/package.json +50 -0
- package/packages/ssr/src/cloudflare/swr-worker.ts +202 -0
- package/packages/ssr/src/cloudflare/tsconfig.json +9 -0
- package/packages/ssr/src/firebase.ts +15 -0
- package/packages/ssr/src/index.ts +3 -0
- package/packages/ssr/src/lib/analytics/send-to-ga4.ts +56 -0
- package/packages/ssr/src/lib/analytics/send-to-meta.ts +50 -0
- package/packages/ssr/src/lib/analytics/send-to-tiktok.ts +49 -0
- package/packages/ssr/src/lib/analytics-events.ts +94 -0
- package/packages/ssr/src/lib/cron-ssr-save-views.ts +56 -0
- package/packages/ssr/src/lib/serve-storefront.ts +322 -0
- package/packages/ssr/src/ssr-events.ts +17 -0
- package/packages/ssr/src/tests/benchmark.sh +50 -0
- package/packages/ssr/tsconfig.json +4 -0
- package/packages/storefront/.auto-imports.d.ts +66 -0
- package/packages/storefront/.eslintrc.cjs +3 -0
- package/packages/storefront/astro.config.mjs +270 -0
- package/packages/storefront/client.d.ts +34 -0
- package/packages/storefront/config/astro/context-directive.mjs +46 -0
- package/packages/storefront/config/astro/index.d.ts +10 -0
- package/packages/storefront/config/astro/mock-pwa-info.mjs +5 -0
- package/packages/storefront/config/storefront.cms.js +82 -0
- package/packages/storefront/config/storefront.config.mjs +78 -0
- package/packages/storefront/config/storefront.tailwind.cjs +279 -0
- package/packages/storefront/config/storefront.unocss.cjs +136 -0
- package/packages/storefront/dist/client/_astro/AccountPage.Osc6ffV0.js +1 -0
- package/packages/storefront/dist/client/_astro/CartSidebar.LrfpXG2B.js +1 -0
- package/packages/storefront/dist/client/_astro/HeroSlider.Zf6kCaqD.js +1 -0
- package/packages/storefront/dist/client/_astro/PitchBar.N4d9fV8H.js +1 -0
- package/packages/storefront/dist/client/_astro/Prices.eQ9Vd255.js +1 -0
- package/packages/storefront/dist/client/_astro/ProductDetails.Ln_jf57U.js +7 -0
- package/packages/storefront/dist/client/_astro/ProductShelf.X389bv9S.js +1 -0
- package/packages/storefront/dist/client/_astro/ProductShelf.vj6lVDCr.js +1 -0
- package/packages/storefront/dist/client/_astro/QuantitySelector.qSJQlvTe.js +1 -0
- package/packages/storefront/dist/client/_astro/SearchModal.BrVoDBvg.js +1 -0
- package/packages/storefront/dist/client/_astro/SearchShowcase.KAz3nwco.js +1 -0
- package/packages/storefront/dist/client/_astro/ShopHeader.mFKGzhIu.js +7 -0
- package/packages/storefront/dist/client/_astro/_plugin-vue_export-helper._suIQ7WC.js +1 -0
- package/packages/storefront/dist/client/_astro/_slug_.cfRx-rdA.css +1 -0
- package/packages/storefront/dist/client/_astro/afetch.5c8VmT0-.js +1 -0
- package/packages/storefront/dist/client/_astro/client.PdegUP6S.js +1 -0
- package/packages/storefront/dist/client/_astro/customer-session.KkTHFOXl.js +7 -0
- package/packages/storefront/dist/client/_astro/ecom-icon_12falx.png +0 -0
- package/packages/storefront/dist/client/_astro/ecom-icon_15pqnO.png +0 -0
- package/packages/storefront/dist/client/_astro/ecom-icon_t3guw.png +0 -0
- package/packages/storefront/dist/client/_astro/ecom-utils.Ld2zf-Ve.js +1 -0
- package/packages/storefront/dist/client/_astro/firebase-app.cPMfoOsn.js +16 -0
- package/packages/storefront/dist/client/_astro/format-money.Axn0YFLJ.js +1 -0
- package/packages/storefront/dist/client/_astro/grid-title.GntHOijE.js +1 -0
- package/packages/storefront/dist/client/_astro/headphone_T2Jjc.avif +0 -0
- package/packages/storefront/dist/client/_astro/headphone_Z1CG18r.webp +0 -0
- package/packages/storefront/dist/client/_astro/hoisted.3ec9NcvP.js +1 -0
- package/packages/storefront/dist/client/_astro/hoisted.UnTlypMd.js +1 -0
- package/packages/storefront/dist/client/_astro/i18n.3-NUtxYq.js +1 -0
- package/packages/storefront/dist/client/_astro/img-sizes.gxAI9JNh.js +1 -0
- package/packages/storefront/dist/client/_astro/img.pozlYdd3.js +1 -0
- package/packages/storefront/dist/client/_astro/index-dd468b12.D5s8VdAL.js +1471 -0
- package/packages/storefront/dist/client/_astro/index.TkCbiY_p.js +1 -0
- package/packages/storefront/dist/client/_astro/index.m6fK0JXC.js +1 -0
- package/packages/storefront/dist/client/_astro/logo_1UBsBq.webp +0 -0
- package/packages/storefront/dist/client/_astro/logo_Z1K5PE9.png +0 -0
- package/packages/storefront/dist/client/_astro/logo_Z1KIIl1.avif +0 -0
- package/packages/storefront/dist/client/_astro/modules-info.mmwB1qIJ.js +1 -0
- package/packages/storefront/dist/client/_astro/name.49dZlpDx.js +1 -0
- package/packages/storefront/dist/client/_astro/passion_LHbe9.webp +0 -0
- package/packages/storefront/dist/client/_astro/passion_Z23MeUb.avif +0 -0
- package/packages/storefront/dist/client/_astro/photoswipe-lightbox.esm.dZBqKD9u.js +4 -0
- package/packages/storefront/dist/client/_astro/photoswipe.0V7m2jWu.js +1 -0
- package/packages/storefront/dist/client/_astro/photoswipe.esm.Ylh9TGkz.js +4 -0
- package/packages/storefront/dist/client/_astro/price.Easct8WC.js +1 -0
- package/packages/storefront/dist/client/_astro/rect8589_1TtOHY.png +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_1f5opX.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_IUskt.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_Uxfdf.png +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_Z15uApA.png +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_Z1Ap1Im.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_Z1JT1HB.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_ZY9mtN.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect8589_tMFW0.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect859_1TgQXS.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect859_2Nm1z.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect859_DIqwR.png +0 -0
- package/packages/storefront/dist/client/_astro/rect859_Z1IKDb2.png +0 -0
- package/packages/storefront/dist/client/_astro/rect859_Z29FI4V.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect859_Z2kFHGk.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect859_ZkpPFI.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect859_jXzBi.png +0 -0
- package/packages/storefront/dist/client/_astro/rect859_x1l16.webp +0 -0
- package/packages/storefront/dist/client/_astro/rect89_1TSfW7.avif +0 -0
- package/packages/storefront/dist/client/_astro/rect89_Z1re32x.webp +0 -0
- package/packages/storefront/dist/client/_astro/sf-utils.yjuG8NjM.js +1 -0
- package/packages/storefront/dist/client/_astro/shopping-cart.Ean2uW2R.js +1 -0
- package/packages/storefront/dist/client/_astro/use-analytics.Y7amTmnr.js +1 -0
- package/packages/storefront/dist/client/_astro/use-product-card.zB4z32bC.js +1 -0
- package/packages/storefront/dist/client/_astro/use-text-value.f9pDzruv.js +4 -0
- package/packages/storefront/dist/client/admin/.gitkeep +2 -0
- package/packages/storefront/dist/client/app/account/index.html +56 -0
- package/packages/storefront/dist/client/app/index.html +96 -0
- package/packages/storefront/dist/client/assets/.gitkeep +2 -0
- package/packages/storefront/dist/client/headset-gamer-corsair-hs40-raptor-ca-9011122-naap-vinho/index.html +107 -0
- package/packages/storefront/dist/client/img/icon.png +0 -0
- package/packages/storefront/dist/client/img/large-icon.png +0 -0
- package/packages/storefront/dist/client/img/uploads/banner2.webp +0 -0
- package/packages/storefront/dist/client/img/uploads/ecom-icon.png +0 -0
- package/packages/storefront/dist/client/img/uploads/headphone.webp +0 -0
- package/packages/storefront/dist/client/img/uploads/logo.png +0 -0
- package/packages/storefront/dist/client/img/uploads/og-image.png +0 -0
- package/packages/storefront/dist/client/img/uploads/passion.webp +0 -0
- package/packages/storefront/dist/client/img/uploads/rect8589.png +0 -0
- package/packages/storefront/dist/client/img/uploads/rect859.png +0 -0
- package/packages/storefront/dist/client/img/uploads/rect89.webp +0 -0
- package/packages/storefront/dist/client/index.html +120 -0
- 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
- package/packages/storefront/dist/client/mouse-gamer-corsair-optico-harpoon-rgb-ch-9301011-na/index.html +107 -0
- package/packages/storefront/dist/client/robots.txt +7 -0
- package/packages/storefront/dist/client/teclado-gamer-fortrek-mecanico-k5-rgb-outemu-blue-preto/index.html +107 -0
- package/packages/storefront/dist/client/~fallback/index.html +74 -0
- package/packages/storefront/dist/server/_empty-middleware.mjs +3 -0
- package/packages/storefront/dist/server/chunks/CartSidebar_gCUGFy65.mjs +203 -0
- package/packages/storefront/dist/server/chunks/SearchModal_2uYZ9tHy.mjs +350 -0
- package/packages/storefront/dist/server/chunks/_.._FnNLvTNv.mjs +6 -0
- package/packages/storefront/dist/server/chunks/account_iZ2QmK5E.mjs +6 -0
- package/packages/storefront/dist/server/chunks/astro/assets-service_TpUb271h.mjs +466 -0
- package/packages/storefront/dist/server/chunks/astro_PpArQAsY.mjs +2042 -0
- package/packages/storefront/dist/server/chunks/index_1q5IpD39.mjs +6 -0
- package/packages/storefront/dist/server/chunks/index_JEU6B2DI.mjs +6 -0
- package/packages/storefront/dist/server/chunks/node_wOa5hJmt.mjs +6 -0
- package/packages/storefront/dist/server/chunks/pages/__cEcxuEWe.mjs +8006 -0
- package/packages/storefront/dist/server/chunks/pages/account_WliDuQOB.mjs +29 -0
- package/packages/storefront/dist/server/chunks/pages/index_2bQLkQf-.mjs +317 -0
- package/packages/storefront/dist/server/chunks/pages/node_ZaY4t9qW.mjs +112 -0
- package/packages/storefront/dist/server/chunks/pages/~fallback_TL5hPXF_.mjs +41 -0
- package/packages/storefront/dist/server/chunks/photoswipe_IcWDJiwc.mjs +3 -0
- package/packages/storefront/dist/server/chunks/~fallback_wxuqpDXG.mjs +6 -0
- package/packages/storefront/dist/server/entry.mjs +2279 -0
- package/packages/storefront/dist/server/manifest_YgAgEwvF.mjs +196 -0
- package/packages/storefront/dist/server/renderers.mjs +671 -0
- package/packages/storefront/example.env +2 -0
- package/packages/storefront/package.json +48 -3
- package/packages/storefront/scripts/build-prod.sh +39 -0
- package/packages/storefront/scripts/prepare-monorepo.sh +10 -0
- package/packages/storefront/server.d.ts +27 -0
- package/packages/storefront/src/analytics/event-to-fbq.ts +85 -0
- package/packages/storefront/src/analytics/event-to-ttq.ts +94 -0
- package/packages/storefront/src/env.d.ts +11 -0
- package/packages/storefront/src/helpers/afetch.ts +44 -0
- package/packages/storefront/src/helpers/browser-env.ts +15 -0
- package/packages/storefront/src/helpers/server-data.ts +29 -0
- package/packages/storefront/src/helpers/sf-utils.ts +69 -0
- package/packages/storefront/src/images/Picture.runtime.astro +53 -0
- package/packages/storefront/src/images/get-built-image.ts +81 -0
- package/packages/storefront/src/images/get-built-picture.ts +6 -0
- package/packages/storefront/src/images/picture-base.ts +135 -0
- package/packages/storefront/src/images/use-ssr-picture.ts +196 -0
- package/packages/storefront/src/lib/$storefront.d.ts +35 -0
- package/packages/storefront/src/lib/assets/base.css +126 -0
- package/packages/storefront/src/lib/assets/components.css +28 -0
- package/packages/storefront/src/lib/assets/forms.css +214 -0
- package/packages/storefront/src/lib/assets/reset.css +371 -0
- package/packages/storefront/src/lib/assets/tooltip.css +45 -0
- package/packages/storefront/src/lib/components/AccountLink.vue +44 -0
- package/packages/storefront/src/lib/components/BannerPictures.astro +60 -0
- package/packages/storefront/src/lib/components/Carousel.vue +263 -0
- package/packages/storefront/src/lib/components/CarouselControl.vue +39 -0
- package/packages/storefront/src/lib/components/CheckoutLink.vue +54 -0
- package/packages/storefront/src/lib/components/ContentClearfix.vue +17 -0
- package/packages/storefront/src/lib/components/Drawer.vue +162 -0
- package/packages/storefront/src/lib/components/PaymentMethodFlag.vue +36 -0
- package/packages/storefront/src/lib/components/Picture.astro +96 -0
- package/packages/storefront/src/lib/components/QuantitySelector.vue +107 -0
- package/packages/storefront/src/lib/components/QuantitySelectorControl.vue +35 -0
- package/packages/storefront/src/lib/components/SharedData.astro +12 -0
- package/packages/storefront/src/lib/components/SocialNetworkIcon.vue +30 -0
- package/packages/storefront/src/lib/components/SocialNetworkLink.vue +35 -0
- package/packages/storefront/src/lib/components/ViewTransitions.astro +422 -0
- package/packages/storefront/src/lib/components/globals/AImg.vue +53 -0
- package/packages/storefront/src/lib/components/globals/ALink.vue +28 -0
- package/packages/storefront/src/lib/components/globals/Fade.vue +147 -0
- package/packages/storefront/src/lib/components/globals/Skeleton.vue +29 -0
- package/packages/storefront/src/lib/composables/use-banner.ts +38 -0
- package/packages/storefront/src/lib/composables/use-breadcrumbs.ts +84 -0
- package/packages/storefront/src/lib/composables/use-cart-item.ts +52 -0
- package/packages/storefront/src/lib/composables/use-login-form.ts +80 -0
- package/packages/storefront/src/lib/composables/use-pagination.ts +101 -0
- package/packages/storefront/src/lib/composables/use-pitch-bar.ts +48 -0
- package/packages/storefront/src/lib/composables/use-prices.ts +189 -0
- package/packages/storefront/src/lib/composables/use-product-card.ts +115 -0
- package/packages/storefront/src/lib/composables/use-product-shelf.ts +103 -0
- package/packages/storefront/src/lib/composables/use-search-filters.ts +271 -0
- package/packages/storefront/src/lib/composables/use-search-modal.ts +81 -0
- package/packages/storefront/src/lib/composables/use-search-showcase.ts +201 -0
- package/packages/storefront/src/lib/composables/use-shared-data.ts +48 -0
- package/packages/storefront/src/lib/composables/use-shop-header-submenu.ts +64 -0
- package/packages/storefront/src/lib/composables/use-shop-header.ts +219 -0
- package/packages/storefront/src/lib/composables/use-sku-selector.ts +146 -0
- package/packages/storefront/src/lib/composables/use-sticky-header.ts +137 -0
- package/packages/storefront/src/lib/content.d.ts +58 -0
- package/packages/storefront/src/lib/layouts/Base.astro +26 -0
- package/packages/storefront/src/lib/layouts/BaseBody.astro +31 -0
- package/packages/storefront/src/lib/layouts/BaseHead.astro +209 -0
- package/packages/storefront/src/lib/layouts/use-page-header.ts +71 -0
- package/packages/storefront/src/lib/layouts/use-page-main.ts +249 -0
- package/packages/storefront/src/lib/pages/_vue.ts +35 -0
- package/packages/storefront/src/lib/scripts/firebase-app.ts +15 -0
- package/packages/storefront/src/lib/scripts/firestore.ts +27 -0
- package/packages/storefront/src/lib/scripts/modules-info-preset.ts +63 -0
- package/packages/storefront/src/lib/scripts/push-analytics-events.ts +103 -0
- package/packages/storefront/src/lib/scripts/session-utm.ts +37 -0
- package/packages/storefront/src/lib/scripts/vbeta-app.ts +243 -0
- package/packages/storefront/src/lib/sf-lib.ts +7 -0
- package/packages/storefront/src/lib/ssr-context.ts +253 -0
- package/packages/storefront/src/lib/state/customer-session.ts +167 -0
- package/packages/storefront/src/lib/state/modules-info.ts +203 -0
- package/packages/storefront/src/lib/state/search-engine.ts +178 -0
- package/packages/storefront/src/lib/state/shopping-cart/add-cart-item.ts +67 -0
- package/packages/storefront/src/lib/state/shopping-cart/parse-product.ts +41 -0
- package/packages/storefront/src/lib/state/shopping-cart.ts +122 -0
- package/packages/storefront/src/lib/state/use-analytics.ts +302 -0
- package/packages/storefront/src/lib/state/use-cms-preview.ts +38 -0
- package/packages/storefront/src/lib/state/use-storage.ts +31 -0
- package/packages/storefront/src/vue-globals.d.ts +34 -0
- package/packages/storefront/tailwind.config.cjs +3 -0
- package/packages/storefront/tsconfig.json +16 -0
- package/packages/storefront/uno.config.cjs +3 -0
- package/packages/test-base/CHANGELOG.md +1 -0
- package/packages/test-base/README.md +7 -0
- package/packages/test-base/lib/endpoints.js +23 -0
- package/packages/test-base/lib/endpoints.js.map +1 -0
- package/packages/test-base/lib/index.js +4 -0
- package/packages/test-base/lib/index.js.map +1 -0
- package/packages/test-base/lib/playloads.js +14 -0
- package/packages/test-base/lib/playloads.js.map +1 -0
- package/packages/test-base/package.json +28 -0
- package/packages/test-base/payloads/calculate-shipping.json +37 -0
- package/packages/test-base/payloads/create-transaction.json +116 -0
- package/packages/test-base/payloads/list-payments.json +125 -0
- package/packages/test-base/src/endpoints.ts +37 -0
- package/packages/test-base/src/index.ts +3 -0
- package/packages/test-base/src/playloads.ts +24 -0
- package/packages/test-base/tsconfig.json +3 -0
- package/packages/types/CHANGELOG.md +1 -0
- package/packages/types/README.md +1 -0
- package/packages/types/index.ts +194 -0
- package/packages/types/modules/@checkout:params.d.ts +928 -0
- package/packages/types/modules/apply_discount:params.d.ts +158 -0
- package/packages/types/modules/apply_discount:response.d.ts +103 -0
- package/packages/types/modules/calculate_shipping:params.d.ts +275 -0
- package/packages/types/modules/calculate_shipping:response.d.ts +402 -0
- package/packages/types/modules/create_transaction:params.d.ts +519 -0
- package/packages/types/modules/create_transaction:response.d.ts +276 -0
- package/packages/types/modules/list_payments:params.d.ts +327 -0
- package/packages/types/modules/list_payments:response.d.ts +266 -0
- package/packages/types/package.json +21 -0
- package/pnpm-workspace.yaml +5 -1
- package/store.renovate.json +72 -0
- package/tsconfig.json +108 -0
- package/tsconfig.test.json +11 -0
- package/turbo.json +12 -2
- package/vite.config.ts +12 -0
- package/.eslintrc.js +0 -66
- package/packages/api/dist/index.js +0 -22
- package/packages/api/dist/index.js.map +0 -1
- package/packages/api/src/index.ts +0 -27
- 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&>(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};
|