cloudcommerce 0.26.7 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/test-apps.yml +2 -2
- package/.gitmodules +0 -3
- package/.vscode/settings.json +3 -1
- package/CHANGELOG.md +51 -0
- package/action.yml +2 -2
- package/ecomplus-stores/barra-doce/functions/many/package.json +3 -3
- package/ecomplus-stores/barra-doce/functions/ssr/content/layout.json +13 -13
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/home.json +10 -10
- package/ecomplus-stores/barra-doce/functions/ssr/content/pages/products.json +17 -0
- package/ecomplus-stores/barra-doce/functions/ssr/content/settings.json +8 -8
- package/ecomplus-stores/barra-doce/functions/ssr/package.json +6 -6
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountMenu.vue +11 -11
- package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopFooter.vue +24 -24
- package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageFooter.astro +4 -4
- package/ecomplus-stores/barra-doce/functions/with-apps/package.json +3 -3
- package/ecomplus-stores/barra-doce/package.json +2 -2
- package/ecomplus-stores/monocard/functions/many/package.json +3 -3
- package/ecomplus-stores/monocard/functions/ssr/content/layout.json +11 -11
- package/ecomplus-stores/monocard/functions/ssr/content/pages/home.json +16 -16
- package/ecomplus-stores/monocard/functions/ssr/content/pages/products.json +2 -4
- package/ecomplus-stores/monocard/functions/ssr/content/settings.json +11 -11
- package/ecomplus-stores/monocard/functions/ssr/package.json +6 -6
- package/ecomplus-stores/monocard/functions/ssr/src/components/AccountMenu.vue +1 -1
- package/ecomplus-stores/monocard/functions/ssr/src/components/DocDescription.vue +33 -0
- package/ecomplus-stores/monocard/functions/ssr/src/components/FeatureTabs.vue +3 -3
- package/ecomplus-stores/monocard/functions/ssr/src/components/ShopFooter.vue +3 -3
- package/ecomplus-stores/monocard/functions/ssr/src/components/ShopHeader.vue +5 -13
- package/ecomplus-stores/monocard/functions/ssr/src/layouts/PageFooter.astro +2 -2
- package/ecomplus-stores/monocard/functions/ssr/src/main/Home.astro +1 -1
- package/ecomplus-stores/monocard/functions/ssr/src/main/Sections.astro +1 -1
- package/ecomplus-stores/monocard/functions/with-apps/package.json +3 -3
- package/ecomplus-stores/monocard/package.json +2 -2
- package/package.json +6 -6
- package/packages/api/package.json +1 -1
- package/packages/apps/affilate-program/package.json +2 -2
- package/packages/apps/correios/package.json +3 -4
- package/packages/apps/custom-payment/package.json +1 -1
- package/packages/apps/custom-shipping/package.json +1 -1
- package/packages/apps/datafrete/package.json +3 -3
- package/packages/apps/discounts/package.json +1 -1
- package/packages/apps/emails/lib/functios-lib/utils.js +1 -1
- package/packages/apps/emails/lib/functios-lib/utils.js.map +1 -1
- package/packages/apps/emails/package.json +2 -2
- package/packages/apps/emails/src/functios-lib/utils.ts +1 -1
- package/packages/apps/fb-conversions/package.json +3 -3
- package/packages/apps/flash-courier/package.json +2 -2
- package/packages/apps/frenet/package.json +3 -3
- package/packages/apps/galaxpay/package.json +3 -3
- package/packages/apps/google-analytics/package.json +3 -3
- package/packages/apps/jadlog/package.json +2 -2
- 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/handle-loyalty-points-event.js +59 -23
- package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js.map +1 -1
- package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js +9 -4
- package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js.map +1 -1
- package/packages/apps/loyalty-points/lib/loyalty-list-payments.js +7 -2
- package/packages/apps/loyalty-points/lib/loyalty-list-payments.js.map +1 -1
- package/packages/apps/loyalty-points/lib/loyalty-points-events.d.ts +3 -1
- package/packages/apps/loyalty-points/lib/loyalty-points-events.js +9 -0
- package/packages/apps/loyalty-points/lib/loyalty-points-events.js.map +1 -1
- package/packages/apps/loyalty-points/package.json +3 -2
- package/packages/apps/loyalty-points/src/functions-lib/cron-add-points.ts +104 -0
- package/packages/apps/loyalty-points/src/functions-lib/handle-loyalty-points-event.ts +67 -25
- package/packages/apps/loyalty-points/src/loyalty-create-transaction.ts +11 -4
- package/packages/apps/loyalty-points/src/loyalty-list-payments.ts +9 -2
- package/packages/apps/loyalty-points/src/loyalty-points-events.ts +12 -1
- package/packages/apps/melhor-envio/package.json +3 -3
- package/packages/apps/mercadopago/assets/onload-expression.js +5 -1
- package/packages/apps/mercadopago/assets/onload-expression.min.js +1 -1
- package/packages/apps/mercadopago/lib/mp-create-transaction.js +16 -6
- package/packages/apps/mercadopago/lib/mp-create-transaction.js.map +1 -1
- package/packages/apps/mercadopago/package.json +3 -3
- package/packages/apps/mercadopago/src/mp-create-transaction.ts +19 -7
- package/packages/apps/pagarme/package.json +3 -3
- package/packages/apps/paghiper/package.json +3 -3
- package/packages/apps/pix/package.json +3 -3
- package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js +22 -0
- package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js +2 -2
- package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js +7 -1
- package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js +14 -5
- package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js +9 -1
- package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js +8 -6
- package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js +118 -38
- package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js +8 -0
- package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js.map +1 -1
- package/packages/apps/tiny-erp/package.json +3 -3
- package/packages/apps/tiny-erp/src/integration/export-order-to-tiny.ts +24 -0
- package/packages/apps/tiny-erp/src/integration/helpers/format-tiny-date.ts +2 -2
- package/packages/apps/tiny-erp/src/integration/import-order-from-tiny.ts +8 -1
- package/packages/apps/tiny-erp/src/integration/import-product-from-tiny.ts +17 -5
- package/packages/apps/tiny-erp/src/integration/parsers/order-from-tiny.ts +13 -1
- package/packages/apps/tiny-erp/src/integration/parsers/order-to-tiny.ts +11 -6
- package/packages/apps/tiny-erp/src/integration/parsers/product-from-tiny.ts +144 -41
- package/packages/apps/tiny-erp/src/integration/parsers/product-to-tiny.ts +10 -0
- package/packages/apps/webhooks/package.json +3 -3
- package/packages/cli/package.json +1 -1
- package/packages/config/lib/config.js +2 -2
- package/packages/config/lib/config.js.map +1 -1
- package/packages/config/package.json +1 -1
- package/packages/config/src/config.ts +2 -2
- package/packages/emails/package.json +4 -4
- package/packages/eslint/base.eslintrc.cjs +3 -0
- package/packages/eslint/package.json +5 -4
- package/packages/eslint/storefront.eslintrc.cjs +8 -1
- package/packages/events/package.json +2 -2
- package/packages/feeds/package.json +1 -1
- package/packages/firebase/package.json +2 -2
- package/packages/i18n/package.json +1 -1
- package/packages/modules/package.json +3 -3
- package/packages/passport/package.json +2 -2
- package/packages/ssr/package.json +3 -3
- package/packages/storefront/.auto-imports.d.ts +65 -0
- package/packages/storefront/astro.config.mjs +24 -1
- package/packages/storefront/client.d.ts +1 -0
- package/packages/storefront/config/astro/context-directive.mjs +21 -0
- package/packages/storefront/config/astro/index.d.ts +8 -0
- package/packages/storefront/config/storefront.cms.js +2 -2
- package/packages/storefront/config/storefront.tailwind.cjs +0 -1
- package/packages/storefront/package.json +4 -3
- package/packages/storefront/server.d.ts +1 -1
- package/packages/storefront/src/lib/$storefront.d.ts +8 -8
- package/packages/storefront/src/lib/assets/base.css +5 -0
- package/packages/storefront/src/lib/components/Carousel.vue +93 -72
- package/packages/storefront/src/lib/components/CarouselControl.vue +13 -7
- package/packages/storefront/src/lib/components/ContentClearfix.vue +17 -0
- package/packages/storefront/src/lib/components/Drawer.vue +2 -2
- package/packages/storefront/src/lib/components/PaymentMethodFlag.vue +2 -2
- package/packages/storefront/src/lib/components/QuantitySelector.vue +4 -4
- package/packages/storefront/src/lib/components/QuantitySelectorControl.vue +2 -2
- package/packages/storefront/src/lib/components/ViewTransitions.astro +409 -0
- package/packages/storefront/src/lib/components/globals/AImg.vue +2 -1
- package/packages/storefront/src/lib/composables/use-pitch-bar.ts +2 -2
- package/packages/storefront/src/lib/content.d.ts +5 -5
- package/packages/storefront/src/lib/layouts/Base.astro +4 -4
- package/packages/storefront/src/lib/layouts/BaseBody.astro +0 -2
- package/packages/storefront/src/lib/layouts/BaseHead.astro +32 -14
- package/packages/storefront/src/lib/layouts/use-page-header.ts +9 -4
- package/packages/storefront/src/lib/layouts/use-page-main.ts +13 -33
- package/packages/test-base/package.json +1 -1
- package/packages/types/index.ts +14 -14
- package/packages/types/package.json +1 -1
- package/ecomplus-stores/iluminim/.devcontainer/devcontainer.json +0 -30
- package/ecomplus-stores/iluminim/.editorconfig +0 -13
- package/ecomplus-stores/iluminim/.eslintrc.cjs +0 -3
- package/ecomplus-stores/iluminim/.firebaserc +0 -5
- package/ecomplus-stores/iluminim/.github/renovate.json +0 -5
- package/ecomplus-stores/iluminim/.github/workflows/build-and-deploy.yml +0 -36
- package/ecomplus-stores/iluminim/.github/workflows/calibreapp-image-actions.yml +0 -23
- package/ecomplus-stores/iluminim/.gitpod.yml +0 -12
- package/ecomplus-stores/iluminim/.idx/dev.nix +0 -24
- package/ecomplus-stores/iluminim/.nvmrc +0 -1
- package/ecomplus-stores/iluminim/.vscode/extensions.json +0 -8
- package/ecomplus-stores/iluminim/.vscode/launch.json +0 -11
- package/ecomplus-stores/iluminim/.vscode/settings.json +0 -10
- package/ecomplus-stores/iluminim/README.md +0 -31
- package/ecomplus-stores/iluminim/SETUP.md +0 -117
- package/ecomplus-stores/iluminim/SETUP.pt-BR.md +0 -117
- package/ecomplus-stores/iluminim/functions/config.json +0 -3
- package/ecomplus-stores/iluminim/functions/example.env +0 -10
- package/ecomplus-stores/iluminim/functions/many/index.js +0 -14
- package/ecomplus-stores/iluminim/functions/many/package.json +0 -22
- package/ecomplus-stores/iluminim/functions/ssr/.eslintrc.cjs +0 -6
- package/ecomplus-stores/iluminim/functions/ssr/astro.config.mjs +0 -4
- package/ecomplus-stores/iluminim/functions/ssr/content/blog/.gitkeep +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/content/extra-pages/contato.json +0 -11
- package/ecomplus-stores/iluminim/functions/ssr/content/extra-pages/terms.json +0 -11
- package/ecomplus-stores/iluminim/functions/ssr/content/extra-pages/trocas.json +0 -11
- package/ecomplus-stores/iluminim/functions/ssr/content/layout.json +0 -57
- package/ecomplus-stores/iluminim/functions/ssr/content/pages/home.json +0 -70
- package/ecomplus-stores/iluminim/functions/ssr/content/settings.json +0 -65
- package/ecomplus-stores/iluminim/functions/ssr/index.js +0 -18
- package/ecomplus-stores/iluminim/functions/ssr/package.json +0 -31
- package/ecomplus-stores/iluminim/functions/ssr/public/admin/.gitkeep +0 -2
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/cms-preview.css +0 -274
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/cms.css +0 -114
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/cvv.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/img-placeholder.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/payments.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/assets/ssl-safe.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/icon.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/large-icon.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/banner-chamada-desktop-9x81zmd91q.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/banner2.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/chamada-mobile-q1c6om6jx4.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/ecom-icon.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/headphone.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/logo.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/og-image.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/passion.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/rect8589.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/rect859.png +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/img/uploads/rect89.webp +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/public/robots.txt +0 -6
- package/ecomplus-stores/iluminim/functions/ssr/scripts/build.sh +0 -14
- package/ecomplus-stores/iluminim/functions/ssr/src/assets/style.css +0 -65
- package/ecomplus-stores/iluminim/functions/ssr/src/components/AccountMenu.vue +0 -95
- package/ecomplus-stores/iluminim/functions/ssr/src/components/Banner.vue +0 -57
- package/ecomplus-stores/iluminim/functions/ssr/src/components/BannersGrid.astro +0 -25
- package/ecomplus-stores/iluminim/functions/ssr/src/components/CartItem.vue +0 -64
- package/ecomplus-stores/iluminim/functions/ssr/src/components/CartSidebar.vue +0 -66
- package/ecomplus-stores/iluminim/functions/ssr/src/components/Countdown.vue +0 -79
- package/ecomplus-stores/iluminim/functions/ssr/src/components/HeroSlider.vue +0 -52
- package/ecomplus-stores/iluminim/functions/ssr/src/components/PitchBar.vue +0 -56
- package/ecomplus-stores/iluminim/functions/ssr/src/components/Prices.vue +0 -95
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ProductCard.vue +0 -117
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ProductShelf.vue +0 -57
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ProductsCountdown.vue +0 -20
- package/ecomplus-stores/iluminim/functions/ssr/src/components/SearchModal.vue +0 -6
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopFooter.vue +0 -149
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopHeader.vue +0 -158
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopHeaderMenu.vue +0 -58
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopHeaderSubmenu.vue +0 -88
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopSidenav.vue +0 -61
- package/ecomplus-stores/iluminim/functions/ssr/src/components/ShopSidenavCategory.vue +0 -80
- package/ecomplus-stores/iluminim/functions/ssr/src/env.d.ts +0 -13
- package/ecomplus-stores/iluminim/functions/ssr/src/layouts/Base.astro +0 -16
- package/ecomplus-stores/iluminim/functions/ssr/src/layouts/Checkout.astro +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/src/layouts/PageFooter.astro +0 -68
- package/ecomplus-stores/iluminim/functions/ssr/src/layouts/PageHeader.astro +0 -42
- package/ecomplus-stores/iluminim/functions/ssr/src/main/Fallback.astro +0 -10
- package/ecomplus-stores/iluminim/functions/ssr/src/main/Home.astro +0 -49
- package/ecomplus-stores/iluminim/functions/ssr/src/main/Sections.astro +0 -42
- package/ecomplus-stores/iluminim/functions/ssr/src/main/Wildcard.astro +0 -18
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/[...slug].astro +0 -40
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/_vue.ts +0 -3
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/app/account.astro +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/app/index.astro +0 -0
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/index.astro +0 -37
- package/ecomplus-stores/iluminim/functions/ssr/src/pages/~fallback.astro +0 -25
- package/ecomplus-stores/iluminim/functions/ssr/src/scripts/InlineScripts.astro +0 -10
- package/ecomplus-stores/iluminim/functions/ssr/tailwind.config.cjs +0 -13
- package/ecomplus-stores/iluminim/functions/ssr/tsconfig.json +0 -12
- package/ecomplus-stores/iluminim/functions/ssr/uno.config.cjs +0 -5
- package/ecomplus-stores/iluminim/functions/with-apps/index.js +0 -12
- package/ecomplus-stores/iluminim/functions/with-apps/package.json +0 -22
- package/ecomplus-stores/iluminim/package.json +0 -31
- package/ecomplus-stores/iluminim/scripts/install.sh +0 -24
- package/ecomplus-stores/monocard/functions/ssr/src/components/DocDescription.astro +0 -30
- package/packages/storefront/src/lib/components/ContentClearfix.astro +0 -15
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "iluminim-many",
|
|
3
|
-
"private": true,
|
|
4
|
-
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"build": "echo '>> Run build from repository root'",
|
|
7
|
-
"serve": "firebase emulators:start --only functions",
|
|
8
|
-
"shell": "firebase functions:shell",
|
|
9
|
-
"start": "npm run shell",
|
|
10
|
-
"deploy": "firebase deploy --only functions",
|
|
11
|
-
"logs": "firebase functions:log"
|
|
12
|
-
},
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": "18"
|
|
15
|
-
},
|
|
16
|
-
"main": "index.js",
|
|
17
|
-
"dependencies": {
|
|
18
|
-
"@cloudcommerce/feeds": "^0.26.3",
|
|
19
|
-
"@cloudcommerce/firebase": "^0.26.3",
|
|
20
|
-
"@cloudcommerce/passport": "^0.26.3"
|
|
21
|
-
}
|
|
22
|
-
}
|
|
File without changes
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"metatags": {
|
|
3
|
-
"og_image": "",
|
|
4
|
-
"fb_app_id": "",
|
|
5
|
-
"twitter_username": ""
|
|
6
|
-
},
|
|
7
|
-
"custom_code": {
|
|
8
|
-
"css": "",
|
|
9
|
-
"html_head": "",
|
|
10
|
-
"html_body": ""
|
|
11
|
-
},
|
|
12
|
-
"header": {
|
|
13
|
-
"pitch_bar": [
|
|
14
|
-
{
|
|
15
|
-
"href": "",
|
|
16
|
-
"html": "<strong>Frete grátis</strong> <d-md>para todo Brasil</d-md> a partir de <b>{free_shipping_from_value}</b>"
|
|
17
|
-
}
|
|
18
|
-
],
|
|
19
|
-
"inline_menu_categories": {
|
|
20
|
-
"featured": [],
|
|
21
|
-
"random": 7
|
|
22
|
-
},
|
|
23
|
-
"alphabetical_sort_submenu": false
|
|
24
|
-
},
|
|
25
|
-
"footer": {
|
|
26
|
-
"categories_list": {
|
|
27
|
-
"enabled": true,
|
|
28
|
-
"title": "",
|
|
29
|
-
"categories": []
|
|
30
|
-
},
|
|
31
|
-
"pages_list": {
|
|
32
|
-
"enabled": true,
|
|
33
|
-
"title": "",
|
|
34
|
-
"links": []
|
|
35
|
-
},
|
|
36
|
-
"stamps": [
|
|
37
|
-
{
|
|
38
|
-
"img": "",
|
|
39
|
-
"alt": "Troca garantida",
|
|
40
|
-
"icon": "exchange",
|
|
41
|
-
"href": "/p/trocas"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"img": "",
|
|
45
|
-
"alt": "Google Navegação Segura",
|
|
46
|
-
"icon": "check",
|
|
47
|
-
"href": "https://transparencyreport.google.com/safe-browsing/search?url={domain}"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"img": "",
|
|
51
|
-
"alt": "Conexão SSL",
|
|
52
|
-
"icon": "lock",
|
|
53
|
-
"href": ""
|
|
54
|
-
}
|
|
55
|
-
]
|
|
56
|
-
}
|
|
57
|
-
}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"meta_title": "",
|
|
3
|
-
"meta_description": "",
|
|
4
|
-
"hero": {
|
|
5
|
-
"autoplay": 9000,
|
|
6
|
-
"slides": [
|
|
7
|
-
{
|
|
8
|
-
"start": "",
|
|
9
|
-
"end": "",
|
|
10
|
-
"img": "/img/uploads/banner-chamada-desktop-9x81zmd91q.webp",
|
|
11
|
-
"alt": "LED Ofertas - Confira preços imbatíveis",
|
|
12
|
-
"mobile_img": "/img/uploads/chamada-mobile-q1c6om6jx4.webp",
|
|
13
|
-
"href": "",
|
|
14
|
-
"title": "",
|
|
15
|
-
"subtitle": "",
|
|
16
|
-
"button_link": "",
|
|
17
|
-
"button_text": ""
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"start": "",
|
|
21
|
-
"end": "",
|
|
22
|
-
"img": "/img/uploads/rect89.webp",
|
|
23
|
-
"alt": "Headset banner",
|
|
24
|
-
"mobile_img": "/img/uploads/headphone.webp",
|
|
25
|
-
"href": "/headset",
|
|
26
|
-
"title": "20% off on first purchase",
|
|
27
|
-
"subtitle": "At demoStore you can shop the best tech of 2023. Enjoy and get 10% off on your first purchase!",
|
|
28
|
-
"button_link": "/",
|
|
29
|
-
"button_text": "See"
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
},
|
|
33
|
-
"sections": [
|
|
34
|
-
{
|
|
35
|
-
"type": "product-shelf",
|
|
36
|
-
"collection_id": null,
|
|
37
|
-
"sort": "-price_discount",
|
|
38
|
-
"title": "",
|
|
39
|
-
"headless": false,
|
|
40
|
-
"shuffle": false,
|
|
41
|
-
"limit": 12,
|
|
42
|
-
"page": 1
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"type": "banners-grid",
|
|
46
|
-
"banners": [
|
|
47
|
-
{
|
|
48
|
-
"img": "/img/uploads/rect8589.png",
|
|
49
|
-
"href": "/banner-1"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"img": "/img/uploads/passion.webp",
|
|
53
|
-
"href": "/banner-2"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"img": "/img/uploads/rect89.webp",
|
|
57
|
-
"href": "/banner-3",
|
|
58
|
-
"mobile_img": "/img/uploads/headphone.webp"
|
|
59
|
-
}
|
|
60
|
-
]
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"type": "c:products-countdown",
|
|
64
|
-
"skus": [
|
|
65
|
-
"PG-RT36WBN-30X60-KIT50",
|
|
66
|
-
"FII4749"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
]
|
|
70
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"domain": "ecom2iluminim.web.app",
|
|
3
|
-
"name": "Iluminim LED",
|
|
4
|
-
"description": "Iluminim LED",
|
|
5
|
-
"logo": "/img/uploads/logo.webp",
|
|
6
|
-
"icon": "/img/uploads/ecom-icon.png",
|
|
7
|
-
"primary_color": "#d00b11",
|
|
8
|
-
"secondary_color": "#a2373a",
|
|
9
|
-
"email": "",
|
|
10
|
-
"phone": "",
|
|
11
|
-
"address": "",
|
|
12
|
-
"corporate_name": "",
|
|
13
|
-
"doc_number": "",
|
|
14
|
-
"lang": "pt_br",
|
|
15
|
-
"currency": "BRL",
|
|
16
|
-
"currency_symbol": "R$",
|
|
17
|
-
"country_code": "BR",
|
|
18
|
-
"whatsapp": "(31) 9 8272-1558",
|
|
19
|
-
"instagram": "https://www.instagram.com/ecomclub/",
|
|
20
|
-
"facebook": "https://www.facebook.com/ecom.clubpage/",
|
|
21
|
-
"twitter": "",
|
|
22
|
-
"youtube": "https://www.youtube.com/channel/UCBlIxK5JAub0E1EX_qHdzmA",
|
|
23
|
-
"tiktok": "",
|
|
24
|
-
"pinterest": "",
|
|
25
|
-
"threads": "",
|
|
26
|
-
"service_links": [
|
|
27
|
-
{
|
|
28
|
-
"title": "Fale conosco",
|
|
29
|
-
"href": "/pages/contato"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"payment_methods": [
|
|
33
|
-
"pix",
|
|
34
|
-
"visa",
|
|
35
|
-
"mastercard",
|
|
36
|
-
"elo",
|
|
37
|
-
"amex",
|
|
38
|
-
"hipercard",
|
|
39
|
-
"boleto"
|
|
40
|
-
],
|
|
41
|
-
"modules": {
|
|
42
|
-
"list_payments": {
|
|
43
|
-
"installments_option": {
|
|
44
|
-
"max_number": 12,
|
|
45
|
-
"monthly_interest": 0,
|
|
46
|
-
"min_installment": 5
|
|
47
|
-
},
|
|
48
|
-
"discount_option": {
|
|
49
|
-
"label": "Boleto",
|
|
50
|
-
"apply_at": "subtotal",
|
|
51
|
-
"type": "percentage",
|
|
52
|
-
"value": 5
|
|
53
|
-
},
|
|
54
|
-
"loyalty_points_program": {
|
|
55
|
-
"id": null,
|
|
56
|
-
"name": null,
|
|
57
|
-
"ratio": null,
|
|
58
|
-
"earn_percentage": null
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
"calculate_shipping": {
|
|
62
|
-
"free_shipping_from_value": 299.9
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import config from '@cloudcommerce/firebase/config';
|
|
2
|
-
// eslint-ignore-next-line import/no-unresolved
|
|
3
|
-
import { handler as renderStorefront } from './dist/server/entry.mjs';
|
|
4
|
-
import mergeConfig from './config.json' assert { type: 'json' };
|
|
5
|
-
|
|
6
|
-
config.set({
|
|
7
|
-
...mergeConfig,
|
|
8
|
-
hello: 'from store',
|
|
9
|
-
/*
|
|
10
|
-
httpsFunctionOptions: {
|
|
11
|
-
minInstances: 1,
|
|
12
|
-
},
|
|
13
|
-
*/
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
global.$renderStorefront = renderStorefront;
|
|
17
|
-
|
|
18
|
-
export * from '@cloudcommerce/ssr/firebase';
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "iluminim-ssr",
|
|
3
|
-
"private": true,
|
|
4
|
-
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "astro dev",
|
|
7
|
-
"build": "bash scripts/build.sh",
|
|
8
|
-
"build:static": "BUILD_OUTPUT=static astro build",
|
|
9
|
-
"serve": "firebase emulators:start --only functions",
|
|
10
|
-
"shell": "firebase functions:shell",
|
|
11
|
-
"start": "npm run shell",
|
|
12
|
-
"deploy": "firebase deploy --only functions",
|
|
13
|
-
"logs": "firebase functions:log"
|
|
14
|
-
},
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": "18"
|
|
17
|
-
},
|
|
18
|
-
"main": "index.js",
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@cloudcommerce/api": "^0.26.3",
|
|
21
|
-
"@cloudcommerce/firebase": "^0.26.3",
|
|
22
|
-
"@cloudcommerce/ssr": "^0.26.3"
|
|
23
|
-
},
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@cloudcommerce/i18n": "^0.26.3",
|
|
26
|
-
"@cloudcommerce/storefront": "^0.26.3",
|
|
27
|
-
"@cloudcommerce/types": "^0.26.3",
|
|
28
|
-
"@fontsource-variable/heebo": "^5.0.8",
|
|
29
|
-
"@iconify-json/carbon": "^1.1.20"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
@@ -1,274 +0,0 @@
|
|
|
1
|
-
.ec-search-engine__count {
|
|
2
|
-
padding-left: .5rem;
|
|
3
|
-
position: relative;
|
|
4
|
-
line-height: 2.5;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.ec-search-engine__spinner {
|
|
8
|
-
position: absolute;
|
|
9
|
-
top: .4rem;
|
|
10
|
-
right: -3rem;
|
|
11
|
-
color: var(--secondary);
|
|
12
|
-
margin-left: 1.5rem;
|
|
13
|
-
width: 1.75rem;
|
|
14
|
-
height: 1.75rem;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.ec-search-engine__toggle {
|
|
18
|
-
color: inherit;
|
|
19
|
-
display: inline-block;
|
|
20
|
-
text-decoration: none;
|
|
21
|
-
-webkit-transition: opacity .15s,color .2s;
|
|
22
|
-
transition:opacity .15s,color .2s;
|
|
23
|
-
padding: 0 .5rem;
|
|
24
|
-
opacity: .75;
|
|
25
|
-
line-height: 2.5;
|
|
26
|
-
border: none;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.ec-search-engine__toggle i,
|
|
30
|
-
.ec-search-engine__toggle svg {
|
|
31
|
-
font-size: .825rem;
|
|
32
|
-
color: var(--gray-dark);
|
|
33
|
-
margin-right: .15rem;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.ec-search-engine__toggle:focus,
|
|
37
|
-
.ec-search-engine__toggle:hover {
|
|
38
|
-
opacity: 1;
|
|
39
|
-
text-decoration: none;
|
|
40
|
-
color: inherit;
|
|
41
|
-
box-shadow: none;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.ec-search-engine__toggle[aria-expanded=true] {
|
|
45
|
-
color: var(--gray-dark);
|
|
46
|
-
opacity: 1;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.ec-search-engine__results {
|
|
50
|
-
-webkit-transition:opacity .25s;
|
|
51
|
-
transition:opacity .25s;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.ec-search-engine__info {
|
|
55
|
-
margin-bottom: 1.5rem;
|
|
56
|
-
padding-top: 1rem;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.ec-search-engine__terms {
|
|
60
|
-
display: -webkit-box;
|
|
61
|
-
display: flex;
|
|
62
|
-
-webkit-box-pack: justify;
|
|
63
|
-
-ms-box-pack: justify;
|
|
64
|
-
-moz-box-pack: justify;
|
|
65
|
-
justify-content: space-between;
|
|
66
|
-
-webkit-box-align: center;
|
|
67
|
-
-moz-box-align: center;
|
|
68
|
-
-ms-box-align: center;
|
|
69
|
-
align-items: center;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.ec-search-engine__terms small {
|
|
73
|
-
font-size: .95rem;
|
|
74
|
-
color: var(--gray);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.ec-search-engine__retail {
|
|
78
|
-
padding-top: .5rem;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.ec-search-engine__item {
|
|
82
|
-
margin-bottom: 1rem;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.ec-search-engine__sidebar {
|
|
86
|
-
position: fixed;
|
|
87
|
-
width: 280px;
|
|
88
|
-
max-width: 100%;
|
|
89
|
-
height: 100%;
|
|
90
|
-
top: 0;
|
|
91
|
-
right: 0;
|
|
92
|
-
z-index: 1100;
|
|
93
|
-
border-radius: 0;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.ec-search-engine__sidebar .card-body {
|
|
97
|
-
overflow-y: auto;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.ec-search-engine__filter:not(:first-child) {
|
|
101
|
-
margin-top: 1rem;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.ec-search-engine__filter:last-child {
|
|
105
|
-
margin-bottom: 1.5rem;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.ec-search-engine__filter__btn {
|
|
109
|
-
padding-left: 0;
|
|
110
|
-
color: var(--secondary);
|
|
111
|
-
font-size: 1.2rem;
|
|
112
|
-
font-weight: 300;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.ec-search-engine__filter__btn i,
|
|
116
|
-
.ec-search-engine__filter__btn svg {
|
|
117
|
-
margin-right: .25rem;
|
|
118
|
-
color: var(--gray);
|
|
119
|
-
opacity: .6;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.ec-search-engine__filter__btn:focus {
|
|
123
|
-
box-shadow: none;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.ec-search-engine__option small {
|
|
127
|
-
color: var(--gray);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.ec-product-card {
|
|
131
|
-
position: relative;
|
|
132
|
-
padding-bottom: .1rem;
|
|
133
|
-
margin-bottom: 0;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.ec-product-card--inactive,
|
|
137
|
-
.ec-product-card--inactive img {
|
|
138
|
-
opacity: .7;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.ec-product-card__offer-stamp {
|
|
142
|
-
background-color: var(--success);
|
|
143
|
-
color: var(--success-yiq);
|
|
144
|
-
min-width: 40px;
|
|
145
|
-
font-size: .78rem;
|
|
146
|
-
line-height: 1.8;
|
|
147
|
-
text-align: center;
|
|
148
|
-
position: absolute;
|
|
149
|
-
z-index: 9;
|
|
150
|
-
top: .35rem;
|
|
151
|
-
right: .35rem;
|
|
152
|
-
border-radius: .125rem;
|
|
153
|
-
opacity: .9;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.ec-product-card__link:hover h3 {
|
|
157
|
-
text-decoration: underline;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.ec-product-card__name {
|
|
161
|
-
margin-top: .5rem;
|
|
162
|
-
font-size: .88rem;
|
|
163
|
-
line-height: 1.2;
|
|
164
|
-
height: 3.168rem;
|
|
165
|
-
overflow: hidden;
|
|
166
|
-
font-weight: 400;
|
|
167
|
-
display: block;
|
|
168
|
-
z-index: 1;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.ec-product-card__pictures {
|
|
172
|
-
display: -webkit-box;
|
|
173
|
-
display: flex;
|
|
174
|
-
background-color: var(--body-bg);
|
|
175
|
-
-webkit-box-align: center;
|
|
176
|
-
-moz-box-align: center;
|
|
177
|
-
-ms-box-align: center;
|
|
178
|
-
align-items: center;
|
|
179
|
-
text-align: center;
|
|
180
|
-
overflow: hidden;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
@media (max-width:575.98px) {
|
|
184
|
-
.ec-product-card__pictures {
|
|
185
|
-
height: 180px;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
@media (min-width:576px) and (max-width:991.98px) {
|
|
190
|
-
.ec-product-card__pictures {
|
|
191
|
-
height: 200px;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@media (min-width: 992px) {
|
|
196
|
-
.ec-product-card__pictures {
|
|
197
|
-
height: 250px;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.ec-product-card__picture {
|
|
202
|
-
display: block;
|
|
203
|
-
-webkit-box-flex: 0;
|
|
204
|
-
-ms-box-flex: 0;
|
|
205
|
-
-moz-box-flex: 0;
|
|
206
|
-
flex: 0 0 100%;
|
|
207
|
-
opacity: 0;
|
|
208
|
-
-webkit-transition:opacity .25s;
|
|
209
|
-
transition:opacity .25s;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.ec-product-card__picture:first-child {
|
|
213
|
-
opacity: 1;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
@media (max-width: 300px) {
|
|
217
|
-
.ec-product-card__picture {
|
|
218
|
-
max-width: 100px;
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@media (max-width: 575.98px) {
|
|
223
|
-
.ec-product-card__picture img {
|
|
224
|
-
max-height: 180px;
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
@media (min-width: 576px) and (max-width: 991.98px) {
|
|
229
|
-
.ec-product-card__picture img {
|
|
230
|
-
max-height: 200px;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
@media (min-width: 992px) {
|
|
235
|
-
.ec-product-card__picture img {
|
|
236
|
-
max-height:250px;
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.ec-product-card__prices {
|
|
241
|
-
margin-bottom: .15rem;
|
|
242
|
-
height: 4.95rem;
|
|
243
|
-
overflow: hidden;
|
|
244
|
-
white-space: nowrap;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.ec-product-card__prices .ec-prices__value:first-child {
|
|
248
|
-
margin-top: 1.14rem;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.ec-product-card:hover .ec-product-card__picture {
|
|
252
|
-
display: none;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.ec-product-card:hover .ec-product-card__picture:last-child {
|
|
256
|
-
display: block;
|
|
257
|
-
opacity: 1;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.ec-product-card:hover .ec-product-card__buy {
|
|
261
|
-
opacity: 1;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
svg:not(:root).svg-inline--fa {
|
|
265
|
-
overflow: visible;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.svg-inline--fa {
|
|
269
|
-
display: inline-block;
|
|
270
|
-
font-size: inherit;
|
|
271
|
-
height: 1em;
|
|
272
|
-
overflow: visible;
|
|
273
|
-
vertical-align: -0.125em;
|
|
274
|
-
}
|