From 91bcff7c4b679f9e21da4c0ca0352c3440502c6a Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Fri, 14 Apr 2023 21:53:13 -0300 Subject: [PATCH 1/4] Add changeProductCategory and price poc extensions Signed-off-by: Marcos Candeia --- extensions/changeProductCategory.ts | 23 +++++ extensions/changeProductPrice.ts | 22 ++++ import_map.json | 2 +- live.gen.ts | 9 ++ schemas.gen.json | 151 ++++++++++++++++++++++++---- 5 files changed, 186 insertions(+), 21 deletions(-) create mode 100644 extensions/changeProductCategory.ts create mode 100644 extensions/changeProductPrice.ts diff --git a/extensions/changeProductCategory.ts b/extensions/changeProductCategory.ts new file mode 100644 index 00000000..3566fa63 --- /dev/null +++ b/extensions/changeProductCategory.ts @@ -0,0 +1,23 @@ +import { Product } from "deco-sites/std/commerce/types.ts"; + +export interface Props { + newCategory: string; +} + +const changeCategory = + (category: string) => (_p: Product): Partial => ({ + category, + }); +export default function addProductPrice( + product: Product | Product[] | null, + { newCategory }: Props, +): Partial | Partial[] | null { + if (product === null) { + return product; + } + const withCategory = changeCategory(newCategory); + if (Array.isArray(product)) { + return product.map(withCategory); + } + return withCategory(product); +} diff --git a/extensions/changeProductPrice.ts b/extensions/changeProductPrice.ts new file mode 100644 index 00000000..bb2ceec6 --- /dev/null +++ b/extensions/changeProductPrice.ts @@ -0,0 +1,22 @@ +import { Product } from "deco-sites/std/commerce/types.ts"; + +export interface Props { + newPrice: number; +} + +const addPrice = (price: number) => (p: Product): Partial => ({ + offers: p?.offers ? { ...p.offers, lowPrice: price } : undefined, +}); +export default function addProductPrice( + product: Product | Product[] | null, + { newPrice }: Props, +): Partial | Partial[] | null { + if (product === null) { + return product; + } + const withPrice = addPrice(newPrice); + if (Array.isArray(product)) { + return product.map(withPrice); + } + return withPrice(product); +} diff --git a/import_map.json b/import_map.json index 96e66777..bdca347a 100644 --- a/import_map.json +++ b/import_map.json @@ -2,7 +2,7 @@ "imports": { "deco-sites/fashion/": "./", "deco-sites/std/": "https://denopkg.com/deco-sites/std@1.0.0-rc.14/", - "$live/": "https://denopkg.com/deco-cx/live@1.0.0-rc.56/", + "$live/": "https://denopkg.com/deco-cx/live@8fce34de9523cb7b7d7f316a356c709ba606e152/", "$fresh/": "https://deno.land/x/fresh@1.1.5/", "preact": "https://esm.sh/preact@10.13.2", "preact/": "https://esm.sh/preact@10.13.2/", diff --git a/live.gen.ts b/live.gen.ts index c1916ee0..4047a540 100644 --- a/live.gen.ts +++ b/live.gen.ts @@ -32,6 +32,8 @@ import * as $$$$$$$$11 from "./sections/ProductDetails.tsx"; import * as $$$$$$$$12 from "./sections/Highlights.tsx"; import * as $$$$$$$$13 from "./sections/WhatsApp.tsx"; import * as $$$$$$$$14 from "./sections/Carousel.tsx"; +import * as $$$$$$$$$$$0 from "./extensions/changeProductCategory.ts"; +import * as $$$$$$$$$$$1 from "./extensions/changeProductPrice.ts"; import * as $live_middleware from "$live/routes/_middleware.ts"; import * as $live_workbench from "$live/routes/live/workbench.ts"; import * as $live_invoke from "$live/routes/live/invoke/index.ts"; @@ -141,6 +143,13 @@ const manifest = { "deco-sites/std/sections/configVTEX.global.tsx": i2$$$7, "deco-sites/std/sections/SEOPDP.tsx": i2$$$8, }, + "extensions": { + "deco-sites/fashion/extensions/changeProductCategory.ts": $$$$$$$$$$$0, + "deco-sites/fashion/extensions/changeProductPrice.ts": $$$$$$$$$$$1, + }, + "loaders": { + "$live/loaders/addExtensions.ts": i1$0, + }, "handlers": { "$live/handlers/routesSelection.ts": i2$$$$0, "$live/handlers/router.ts": i2$$$$1, diff --git a/schemas.gen.json b/schemas.gen.json index 110dded0..6d261c0f 100644 --- a/schemas.gen.json +++ b/schemas.gen.json @@ -2287,6 +2287,35 @@ ], "title": "deco-sites/std/commerce/occ/client.ts@ConfigOCC" }, + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension": { + "$ref": "#/root/extensions", + "title": "Extension" + }, + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]": { + "type": "array", + "items": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension" + }, + "title": "Extension[]" + }, + "ZGVjby1jeC9saXZlL2xvYWRlcnMvYWRkRXh0ZW5zaW9ucy50cw==@Props": { + "type": "object", + "properties": { + "data": { + "$ref": "#/root/functions", + "title": "Data" + }, + "extensions": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]", + "title": "Extensions" + } + }, + "required": [ + "data", + "extensions" + ], + "title": "deco-cx/live/loaders/addExtensions.ts@Props" + }, "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdnRleC90eXBlcy50cw==@SKU": { "type": "object", "properties": { @@ -3401,7 +3430,6 @@ "title": "Src" }, "alt": { - "type": "string", "title": "Alt" }, "href": { @@ -3881,6 +3909,32 @@ "required": [], "title": "deco-cx/live/flags/everyone.ts@EveryoneConfig" }, + "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz@Props": { + "type": "object", + "properties": { + "newCategory": { + "type": "string", + "title": "New Category" + } + }, + "required": [ + "newCategory" + ], + "title": "deco-sites/fashion/extensions/changeProductCategory.ts@Props" + }, + "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz@Props": { + "type": "object", + "properties": { + "newPrice": { + "type": "number", + "title": "New Price" + } + }, + "required": [ + "newPrice" + ], + "title": "deco-sites/fashion/extensions/changeProductPrice.ts@Props" + }, "ZGVjby1zaXRlcy9zdGQvZnVuY3Rpb25zL3Z0ZXhDb25maWcudHM=": { "title": "deco-sites/std/functions/vtexConfig.ts", "type": "object", @@ -4337,6 +4391,11 @@ "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { "title": "./islands/WishlistButton.tsx", "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2xvYWRlcnMvYWRkRXh0ZW5zaW9ucy50cw==@Props" + } + ], "required": [ "__resolveType" ], @@ -4350,14 +4409,9 @@ } } }, - "Li9pc2xhbmRzL1NoaXBwaW5nU2ltdWxhdGlvbi50c3g=": { - "title": "./islands/ShippingSimulation.tsx", + "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { + "title": "./islands/WishlistButton.tsx", "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2NvbXBvbmVudHMvdWkvU2hpcHBpbmdTaW11bGF0aW9uLnRzeA==@Props" - } - ], "required": [ "__resolveType" ], @@ -4365,15 +4419,20 @@ "__resolveType": { "type": "string", "enum": [ - "./islands/ShippingSimulation.tsx" + "./islands/WishlistButton.tsx" ], - "default": "./islands/ShippingSimulation.tsx" + "default": "./islands/WishlistButton.tsx" } } }, "Li9pc2xhbmRzL0hlYWRlckJ1dHRvbi50c3g=": { "title": "./islands/HeaderButton.tsx", "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2NvbXBvbmVudHMvdWkvU2hpcHBpbmdTaW11bGF0aW9uLnRzeA==@Props" + } + ], "required": [ "__resolveType" ], @@ -5277,12 +5336,12 @@ } } }, - "JGxpdmUvZmxhZ3MvYXVkaWVuY2UudHM=": { - "title": "$live/flags/audience.ts", + "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { + "title": "$live/flags/everyone.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2F1ZGllbmNlLnRz@Audience" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig" } ], "required": [ @@ -5292,18 +5351,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/flags/audience.ts" + "$live/flags/everyone.ts" ], - "default": "$live/flags/audience.ts" + "default": "$live/flags/everyone.ts" } } }, - "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { - "title": "$live/flags/everyone.ts", + "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz": { + "title": "deco-sites/fashion/extensions/changeProductCategory.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig" + "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz@Props" } ], "required": [ @@ -5313,9 +5372,30 @@ "__resolveType": { "type": "string", "enum": [ - "$live/flags/everyone.ts" + "deco-sites/fashion/extensions/changeProductCategory.ts" ], - "default": "$live/flags/everyone.ts" + "default": "deco-sites/fashion/extensions/changeProductCategory.ts" + } + } + }, + "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz": { + "title": "deco-sites/fashion/extensions/changeProductPrice.ts", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz@Props" + } + ], + "required": [ + "__resolveType" + ], + "properties": { + "__resolveType": { + "type": "string", + "enum": [ + "deco-sites/fashion/extensions/changeProductPrice.ts" + ], + "default": "deco-sites/fashion/extensions/changeProductPrice.ts" } } }, @@ -5435,6 +5515,17 @@ } ] }, + "loaders": { + "title": "loaders", + "anyOf": [ + { + "$ref": "#/definitions/Resolvable" + }, + { + "$ref": "#/definitions/JGxpdmUvbG9hZGVycy9hZGRFeHRlbnNpb25zLnRz" + } + ] + }, "islands": { "title": "islands", "anyOf": [ @@ -5633,6 +5724,20 @@ } ] }, + "extensions": { + "title": "extensions", + "anyOf": [ + { + "$ref": "#/definitions/Resolvable" + }, + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz" + }, + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz" + } + ] + }, "state": { "type": "object", "required": [ @@ -5663,6 +5768,9 @@ { "$ref": "#/root/accounts" }, + { + "$ref": "#/root/loaders" + }, { "$ref": "#/root/islands" }, @@ -5680,6 +5788,9 @@ }, { "$ref": "#/root/flags" + }, + { + "$ref": "#/root/extensions" } ] } From b5e12eac3157285bb49cd5b7b26ea064c783eab6 Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Sat, 15 Apr 2023 08:59:24 -0300 Subject: [PATCH 2/4] Add extension changes Signed-off-by: Marcos Candeia --- extensions/changeProductCategory.ts | 19 +++++-------------- extensions/changeProductPrice.ts | 24 +++++++++++------------- import_map.json | 2 +- 3 files changed, 17 insertions(+), 28 deletions(-) diff --git a/extensions/changeProductCategory.ts b/extensions/changeProductCategory.ts index 3566fa63..289cf025 100644 --- a/extensions/changeProductCategory.ts +++ b/extensions/changeProductCategory.ts @@ -1,23 +1,14 @@ import { Product } from "deco-sites/std/commerce/types.ts"; +import { ExtensionOf } from "../../live/blocks/extension.ts"; export interface Props { newCategory: string; } -const changeCategory = - (category: string) => (_p: Product): Partial => ({ - category, - }); export default function addProductPrice( - product: Product | Product[] | null, { newCategory }: Props, -): Partial | Partial[] | null { - if (product === null) { - return product; - } - const withCategory = changeCategory(newCategory); - if (Array.isArray(product)) { - return product.map(withCategory); - } - return withCategory(product); +): ExtensionOf { + return { + category: (_, cat) => (cat ?? "nao tem") + newCategory, + }; } diff --git a/extensions/changeProductPrice.ts b/extensions/changeProductPrice.ts index bb2ceec6..7bea223a 100644 --- a/extensions/changeProductPrice.ts +++ b/extensions/changeProductPrice.ts @@ -1,22 +1,20 @@ import { Product } from "deco-sites/std/commerce/types.ts"; +import { ExtensionOf } from "../../live/blocks/extension.ts"; export interface Props { newPrice: number; } -const addPrice = (price: number) => (p: Product): Partial => ({ - offers: p?.offers ? { ...p.offers, lowPrice: price } : undefined, -}); export default function addProductPrice( - product: Product | Product[] | null, { newPrice }: Props, -): Partial | Partial[] | null { - if (product === null) { - return product; - } - const withPrice = addPrice(newPrice); - if (Array.isArray(product)) { - return product.map(withPrice); - } - return withPrice(product); +): ExtensionOf { + return { + offers: { + offers: { + _forEach: { + price: (_, current) => current + newPrice, + }, + }, + }, + }; } diff --git a/import_map.json b/import_map.json index bdca347a..e022d4bc 100644 --- a/import_map.json +++ b/import_map.json @@ -2,7 +2,7 @@ "imports": { "deco-sites/fashion/": "./", "deco-sites/std/": "https://denopkg.com/deco-sites/std@1.0.0-rc.14/", - "$live/": "https://denopkg.com/deco-cx/live@8fce34de9523cb7b7d7f316a356c709ba606e152/", + "$live/": "https://denopkg.com/deco-cx/live@61abf642bb8965e5588e37e6bddecc1153143488/", "$fresh/": "https://deno.land/x/fresh@1.1.5/", "preact": "https://esm.sh/preact@10.13.2", "preact/": "https://esm.sh/preact@10.13.2/", From 4197f3c808e0fcb42f21a36e4c77fd570ca6aecc Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Sun, 16 Apr 2023 12:48:31 -0300 Subject: [PATCH 3/4] Point to live branch Signed-off-by: Marcos Candeia --- extensions/changeProductCategory.ts | 14 - extensions/changeProductPrice.ts | 20 -- import_map.json | 4 +- live.gen.ts | 122 ++++---- schemas.gen.json | 460 ++++++++++------------------ 5 files changed, 228 insertions(+), 392 deletions(-) delete mode 100644 extensions/changeProductCategory.ts delete mode 100644 extensions/changeProductPrice.ts diff --git a/extensions/changeProductCategory.ts b/extensions/changeProductCategory.ts deleted file mode 100644 index 289cf025..00000000 --- a/extensions/changeProductCategory.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { Product } from "deco-sites/std/commerce/types.ts"; -import { ExtensionOf } from "../../live/blocks/extension.ts"; - -export interface Props { - newCategory: string; -} - -export default function addProductPrice( - { newCategory }: Props, -): ExtensionOf { - return { - category: (_, cat) => (cat ?? "nao tem") + newCategory, - }; -} diff --git a/extensions/changeProductPrice.ts b/extensions/changeProductPrice.ts deleted file mode 100644 index 7bea223a..00000000 --- a/extensions/changeProductPrice.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Product } from "deco-sites/std/commerce/types.ts"; -import { ExtensionOf } from "../../live/blocks/extension.ts"; - -export interface Props { - newPrice: number; -} - -export default function addProductPrice( - { newPrice }: Props, -): ExtensionOf { - return { - offers: { - offers: { - _forEach: { - price: (_, current) => current + newPrice, - }, - }, - }, - }; -} diff --git a/import_map.json b/import_map.json index e022d4bc..a8891062 100644 --- a/import_map.json +++ b/import_map.json @@ -1,8 +1,8 @@ { "imports": { "deco-sites/fashion/": "./", - "deco-sites/std/": "https://denopkg.com/deco-sites/std@1.0.0-rc.14/", - "$live/": "https://denopkg.com/deco-cx/live@61abf642bb8965e5588e37e6bddecc1153143488/", + "deco-sites/std/": "https://denopkg.com/deco-sites/std@review-ratings/", + "$live/": "https://denopkg.com/deco-cx/live@extension-loaders/", "$fresh/": "https://deno.land/x/fresh@1.1.5/", "preact": "https://esm.sh/preact@10.13.2", "preact/": "https://esm.sh/preact@10.13.2/", diff --git a/live.gen.ts b/live.gen.ts index 4047a540..38a9e066 100644 --- a/live.gen.ts +++ b/live.gen.ts @@ -32,8 +32,6 @@ import * as $$$$$$$$11 from "./sections/ProductDetails.tsx"; import * as $$$$$$$$12 from "./sections/Highlights.tsx"; import * as $$$$$$$$13 from "./sections/WhatsApp.tsx"; import * as $$$$$$$$14 from "./sections/Carousel.tsx"; -import * as $$$$$$$$$$$0 from "./extensions/changeProductCategory.ts"; -import * as $$$$$$$$$$$1 from "./extensions/changeProductPrice.ts"; import * as $live_middleware from "$live/routes/_middleware.ts"; import * as $live_workbench from "$live/routes/live/workbench.ts"; import * as $live_invoke from "$live/routes/live/invoke/index.ts"; @@ -42,21 +40,22 @@ import * as $live_inspect from "$live/routes/live/inspect.ts"; import * as $live_meta from "$live/routes/live/_meta.ts"; import * as $live_previews from "$live/routes/live/previews/[...block].tsx"; import * as $live_catchall from "$live/routes/[...catchall].tsx"; -import * as i2$$$$0 from "$live/handlers/routesSelection.ts"; -import * as i2$$$$1 from "$live/handlers/router.ts"; -import * as i2$$$$2 from "$live/handlers/devPage.ts"; -import * as i2$$$$3 from "$live/handlers/fresh.ts"; -import * as i2$$$$$0 from "$live/pages/LivePage.tsx"; -import * as i2$$$9 from "$live/sections/PageInclude.tsx"; -import * as i2$$$$$$0 from "$live/matchers/MatchDate.ts"; -import * as i2$$$$$$1 from "$live/matchers/MatchUserAgent.ts"; -import * as i2$$$$$$2 from "$live/matchers/MatchSite.ts"; -import * as i2$$$$$$3 from "$live/matchers/MatchMulti.ts"; -import * as i2$$$$$$4 from "$live/matchers/MatchRandom.ts"; -import * as i2$$$$$$5 from "$live/matchers/MatchEnvironment.ts"; -import * as i2$$$$$$6 from "$live/matchers/MatchAlways.ts"; -import * as i2$$$$$$$0 from "$live/flags/audience.ts"; -import * as i2$$$$$$$1 from "$live/flags/everyone.ts"; +import * as i2$$$$$$0 from "$live/handlers/routesSelection.ts"; +import * as i2$$$$$$1 from "$live/handlers/router.ts"; +import * as i2$$$$$$2 from "$live/handlers/devPage.ts"; +import * as i2$$$$$$3 from "$live/handlers/fresh.ts"; +import * as i2$$$$$$$0 from "$live/pages/LivePage.tsx"; +import * as i2$$$8 from "$live/sections/PageInclude.tsx"; +import * as i2$$$$$$$$0 from "$live/matchers/MatchDate.ts"; +import * as i2$$$$$$$$1 from "$live/matchers/MatchUserAgent.ts"; +import * as i2$$$$$$$$2 from "$live/matchers/MatchSite.ts"; +import * as i2$$$$$$$$3 from "$live/matchers/MatchMulti.ts"; +import * as i2$$$$$$$$4 from "$live/matchers/MatchRandom.ts"; +import * as i2$$$$$$$$5 from "$live/matchers/MatchEnvironment.ts"; +import * as i2$$$$$$$$6 from "$live/matchers/MatchAlways.ts"; +import * as i2$$$$$$$$$0 from "$live/flags/audience.ts"; +import * as i2$$$$$$$$$1 from "$live/flags/everyone.ts"; +import * as i2$$$$1 from "$live/extensions/composite.ts"; import * as i2$0 from "deco-sites/std/functions/vtexConfig.ts"; import * as i2$1 from "deco-sites/std/functions/vtexProductListingPage.ts"; import * as i2$2 from "deco-sites/std/functions/vndaProductList.ts"; @@ -76,19 +75,18 @@ import * as i2$15 from "deco-sites/std/functions/shopifyProductList.ts"; import * as i2$16 from "deco-sites/std/functions/shopifyProductDetailsPage.ts"; import * as i2$17 from "deco-sites/std/functions/vtexLegacyRelatedProductsLoader.ts"; import * as i2$$0 from "deco-sites/std/accounts/vnda.ts"; -import * as i2$$1 from "deco-sites/std/accounts/yourViews.ts"; -import * as i2$$2 from "deco-sites/std/accounts/vtex.ts"; -import * as i2$$3 from "deco-sites/std/accounts/shopify.ts"; -import * as i2$$4 from "deco-sites/std/accounts/occ.ts"; -import * as i2$$$0 from "deco-sites/std/sections/configYourViews.global.tsx"; -import * as i2$$$1 from "deco-sites/std/sections/SEO.tsx"; -import * as i2$$$2 from "deco-sites/std/sections/SEOPLP.tsx"; -import * as i2$$$3 from "deco-sites/std/sections/configOCC.global.tsx"; -import * as i2$$$4 from "deco-sites/std/sections/Analytics.tsx"; -import * as i2$$$5 from "deco-sites/std/sections/configShopify.global.tsx"; -import * as i2$$$6 from "deco-sites/std/sections/configVNDA.global.tsx"; -import * as i2$$$7 from "deco-sites/std/sections/configVTEX.global.tsx"; -import * as i2$$$8 from "deco-sites/std/sections/SEOPDP.tsx"; +import * as i2$$1 from "deco-sites/std/accounts/vtex.ts"; +import * as i2$$2 from "deco-sites/std/accounts/shopify.ts"; +import * as i2$$3 from "deco-sites/std/accounts/occ.ts"; +import * as i2$$$0 from "deco-sites/std/sections/SEO.tsx"; +import * as i2$$$1 from "deco-sites/std/sections/SEOPLP.tsx"; +import * as i2$$$2 from "deco-sites/std/sections/configOCC.global.tsx"; +import * as i2$$$3 from "deco-sites/std/sections/Analytics.tsx"; +import * as i2$$$4 from "deco-sites/std/sections/configShopify.global.tsx"; +import * as i2$$$5 from "deco-sites/std/sections/configVNDA.global.tsx"; +import * as i2$$$6 from "deco-sites/std/sections/configVTEX.global.tsx"; +import * as i2$$$7 from "deco-sites/std/sections/SEOPDP.tsx"; +import * as i2$$$$0 from "deco-sites/std/extensions/yourViews.ts"; const manifest = { "routes": { @@ -132,45 +130,44 @@ const manifest = { "deco-sites/fashion/sections/Highlights.tsx": $$$$$$$$12, "deco-sites/fashion/sections/WhatsApp.tsx": $$$$$$$$13, "deco-sites/fashion/sections/Carousel.tsx": $$$$$$$$14, - "$live/sections/PageInclude.tsx": i2$$$9, - "deco-sites/std/sections/configYourViews.global.tsx": i2$$$0, - "deco-sites/std/sections/SEO.tsx": i2$$$1, - "deco-sites/std/sections/SEOPLP.tsx": i2$$$2, - "deco-sites/std/sections/configOCC.global.tsx": i2$$$3, - "deco-sites/std/sections/Analytics.tsx": i2$$$4, - "deco-sites/std/sections/configShopify.global.tsx": i2$$$5, - "deco-sites/std/sections/configVNDA.global.tsx": i2$$$6, - "deco-sites/std/sections/configVTEX.global.tsx": i2$$$7, - "deco-sites/std/sections/SEOPDP.tsx": i2$$$8, - }, - "extensions": { - "deco-sites/fashion/extensions/changeProductCategory.ts": $$$$$$$$$$$0, - "deco-sites/fashion/extensions/changeProductPrice.ts": $$$$$$$$$$$1, + "$live/sections/PageInclude.tsx": i2$$$8, + "deco-sites/std/sections/SEO.tsx": i2$$$0, + "deco-sites/std/sections/SEOPLP.tsx": i2$$$1, + "deco-sites/std/sections/configOCC.global.tsx": i2$$$2, + "deco-sites/std/sections/Analytics.tsx": i2$$$3, + "deco-sites/std/sections/configShopify.global.tsx": i2$$$4, + "deco-sites/std/sections/configVNDA.global.tsx": i2$$$5, + "deco-sites/std/sections/configVTEX.global.tsx": i2$$$6, + "deco-sites/std/sections/SEOPDP.tsx": i2$$$7, }, "loaders": { - "$live/loaders/addExtensions.ts": i1$0, + "$live/loaders/withExtensions.ts": i2$$$$$0, }, "handlers": { - "$live/handlers/routesSelection.ts": i2$$$$0, - "$live/handlers/router.ts": i2$$$$1, - "$live/handlers/devPage.ts": i2$$$$2, - "$live/handlers/fresh.ts": i2$$$$3, + "$live/handlers/routesSelection.ts": i2$$$$$$0, + "$live/handlers/router.ts": i2$$$$$$1, + "$live/handlers/devPage.ts": i2$$$$$$2, + "$live/handlers/fresh.ts": i2$$$$$$3, }, "pages": { - "$live/pages/LivePage.tsx": i2$$$$$0, + "$live/pages/LivePage.tsx": i2$$$$$$$0, }, "matchers": { - "$live/matchers/MatchDate.ts": i2$$$$$$0, - "$live/matchers/MatchUserAgent.ts": i2$$$$$$1, - "$live/matchers/MatchSite.ts": i2$$$$$$2, - "$live/matchers/MatchMulti.ts": i2$$$$$$3, - "$live/matchers/MatchRandom.ts": i2$$$$$$4, - "$live/matchers/MatchEnvironment.ts": i2$$$$$$5, - "$live/matchers/MatchAlways.ts": i2$$$$$$6, + "$live/matchers/MatchDate.ts": i2$$$$$$$$0, + "$live/matchers/MatchUserAgent.ts": i2$$$$$$$$1, + "$live/matchers/MatchSite.ts": i2$$$$$$$$2, + "$live/matchers/MatchMulti.ts": i2$$$$$$$$3, + "$live/matchers/MatchRandom.ts": i2$$$$$$$$4, + "$live/matchers/MatchEnvironment.ts": i2$$$$$$$$5, + "$live/matchers/MatchAlways.ts": i2$$$$$$$$6, }, "flags": { - "$live/flags/audience.ts": i2$$$$$$$0, - "$live/flags/everyone.ts": i2$$$$$$$1, + "$live/flags/audience.ts": i2$$$$$$$$$0, + "$live/flags/everyone.ts": i2$$$$$$$$$1, + }, + "extensions": { + "$live/extensions/composite.ts": i2$$$$1, + "deco-sites/std/extensions/yourViews.ts": i2$$$$0, }, "functions": { "deco-sites/std/functions/vtexConfig.ts": i2$0, @@ -194,10 +191,9 @@ const manifest = { }, "accounts": { "deco-sites/std/accounts/vnda.ts": i2$$0, - "deco-sites/std/accounts/yourViews.ts": i2$$1, - "deco-sites/std/accounts/vtex.ts": i2$$2, - "deco-sites/std/accounts/shopify.ts": i2$$3, - "deco-sites/std/accounts/occ.ts": i2$$4, + "deco-sites/std/accounts/vtex.ts": i2$$1, + "deco-sites/std/accounts/shopify.ts": i2$$2, + "deco-sites/std/accounts/occ.ts": i2$$3, }, "config": config, "baseUrl": import.meta.url, diff --git a/schemas.gen.json b/schemas.gen.json index 6d261c0f..53261ae7 100644 --- a/schemas.gen.json +++ b/schemas.gen.json @@ -2179,7 +2179,7 @@ ], "title": "deco-sites/std/commerce/yourViews/client.ts@ConfigYourViews" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account": { "type": "object", "properties": {}, "required": [], @@ -2189,7 +2189,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" } ], "properties": { @@ -2241,7 +2241,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" } ], "properties": { @@ -2266,7 +2266,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" } ], "properties": { @@ -2287,35 +2287,6 @@ ], "title": "deco-sites/std/commerce/occ/client.ts@ConfigOCC" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension": { - "$ref": "#/root/extensions", - "title": "Extension" - }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]": { - "type": "array", - "items": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension" - }, - "title": "Extension[]" - }, - "ZGVjby1jeC9saXZlL2xvYWRlcnMvYWRkRXh0ZW5zaW9ucy50cw==@Props": { - "type": "object", - "properties": { - "data": { - "$ref": "#/root/functions", - "title": "Data" - }, - "extensions": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]", - "title": "Extensions" - } - }, - "required": [ - "data", - "extensions" - ], - "title": "deco-cx/live/loaders/addExtensions.ts@Props" - }, "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdnRleC90eXBlcy50cw==@SKU": { "type": "object", "properties": { @@ -2355,42 +2326,48 @@ ], "title": "deco-sites/fashion/components/ui/ShippingSimulation.tsx@Props" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag": { - "$ref": "#/root/flags", - "title": "Flag" + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page": { + "$ref": "#/root/pages", + "title": "Page" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag[]": { - "type": "array", - "items": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag" + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZnJlc2gudHM=@FreshConfig": { + "type": "object", + "properties": { + "page": { + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", + "title": "Page" + } }, - "title": "Flag[]" + "required": [ + "page" + ], + "title": "/Users/marcoscandeia/workspace/live/handlers/fresh.ts@FreshConfig" }, - "ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlc1NlbGVjdGlvbi50cw==@SelectionConfig": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==@DevConfig": { "type": "object", "properties": { - "flags": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag[]", - "title": "Flags" + "page": { + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", + "title": "Page" } }, "required": [ - "flags" + "page" ], - "title": "deco-cx/live/handlers/routesSelection.ts@SelectionConfig" + "title": "/Users/marcoscandeia/workspace/live/handlers/devPage.ts@DevConfig" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler": { "$ref": "#/root/handlers", "title": "Handler" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record": { "title": "Unknown record", "type": "object", "additionalProperties": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler" } }, - "ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlci50cw==@RouterConfig": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVyLnRz@RouterConfig": { "type": "object", "properties": { "base": { @@ -2401,57 +2378,51 @@ "title": "Base" }, "routes": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", "title": "Routes" } }, "required": [ "routes" ], - "title": "deco-cx/live/handlers/router.ts@RouterConfig" + "title": "/Users/marcoscandeia/workspace/live/handlers/router.ts@RouterConfig" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page": { - "$ref": "#/root/pages", - "title": "Page" + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag": { + "$ref": "#/root/flags", + "title": "Flag" }, - "ZGVjby1jeC9saXZlL2hhbmRsZXJzL2RldlBhZ2UudHM=@DevConfig": { - "type": "object", - "properties": { - "page": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", - "title": "Page" - } + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag[]": { + "type": "array", + "items": { + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag" }, - "required": [ - "page" - ], - "title": "deco-cx/live/handlers/devPage.ts@DevConfig" + "title": "Flag[]" }, - "ZGVjby1jeC9saXZlL2hhbmRsZXJzL2ZyZXNoLnRz@FreshConfig": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz@SelectionConfig": { "type": "object", "properties": { - "page": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", - "title": "Page" + "flags": { + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag[]", + "title": "Flags" } }, "required": [ - "page" + "flags" ], - "title": "deco-cx/live/handlers/fresh.ts@FreshConfig" + "title": "/Users/marcoscandeia/workspace/live/handlers/routesSelection.ts@SelectionConfig" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section": { "$ref": "#/root/sections", "title": "Section" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section[]": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section[]": { "type": "array", "items": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section" }, "title": "Section[]" }, - "ZGVjby1jeC9saXZlL3BhZ2VzL0xpdmVQYWdlLnRzeA==@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcGFnZXMvTGl2ZVBhZ2UudHN4@Props": { "type": "object", "properties": { "name": { @@ -2459,7 +2430,7 @@ "title": "Name" }, "sections": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section[]", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section[]", "title": "Sections" } }, @@ -2467,7 +2438,7 @@ "name", "sections" ], - "title": "deco-cx/live/pages/LivePage.tsx@Props" + "title": "/Users/marcoscandeia/workspace/live/pages/LivePage.tsx@Props" }, "ZGVjby1zaXRlcy9mYXNoaW9uL2NvbXBvbmVudHMvcHJvZHVjdC9Qcm9kdWN0R2FsbGVyeS50c3g=@Columns": { "type": "object", @@ -3575,18 +3546,18 @@ "required": [], "title": "deco-sites/fashion/components/ui/BannerCarousel.tsx@Props" }, - "ZGVjby1jeC9saXZlL3NlY3Rpb25zL1BhZ2VJbmNsdWRlLnRzeA==@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvc2VjdGlvbnMvUGFnZUluY2x1ZGUudHN4@Props": { "type": "object", "properties": { "page": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", "title": "Page" } }, "required": [ "page" ], - "title": "deco-cx/live/sections/PageInclude.tsx@Props" + "title": "/Users/marcoscandeia/workspace/live/sections/PageInclude.tsx@Props" }, "ZGVjby1zaXRlcy9zdGQvY29tcG9uZW50cy9zZW8vU0VPQmFzZS50c3g=@Props": { "type": "object", @@ -3729,30 +3700,7 @@ ], "title": "deco-sites/std/components/seo/SEOPDP.tsx@Props" }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRGF0ZS50cw==@Props": { - "type": "object", - "properties": { - "start": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "title": "Start" - }, - "end": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "title": "End" - } - }, - "required": [], - "title": "deco-cx/live/matchers/MatchDate.ts@Props" - }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoVXNlckFnZW50LnRz@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=@Props": { "type": "object", "properties": { "includes": { @@ -3771,33 +3719,33 @@ } }, "required": [], - "title": "deco-cx/live/matchers/MatchUserAgent.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchUserAgent.ts@Props" }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoU2l0ZS50cw==@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=@Props": { "type": "object", "properties": { - "siteId": { + "traffic": { "type": "number", - "title": "Site Id" + "title": "Traffic" } }, "required": [ - "siteId" + "traffic" ], - "title": "deco-cx/live/matchers/MatchSite.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchRandom.ts@Props" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher": { "$ref": "#/root/matchers", "title": "Matcher" }, - "ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher[]": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher[]": { "type": "array", "items": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher" }, "title": "Matcher[]" }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoTXVsdGkudHM=@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==@Props": { "type": "object", "properties": { "op": { @@ -3815,7 +3763,7 @@ "title": "Op" }, "matchers": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher[]", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher[]", "title": "Matchers" } }, @@ -3823,22 +3771,22 @@ "op", "matchers" ], - "title": "deco-cx/live/matchers/MatchMulti.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchMulti.ts@Props" }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoUmFuZG9tLnRz@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz@Props": { "type": "object", "properties": { - "traffic": { + "siteId": { "type": "number", - "title": "Traffic" + "title": "Site Id" } }, "required": [ - "traffic" + "siteId" ], - "title": "deco-cx/live/matchers/MatchRandom.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchSite.ts@Props" }, - "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRW52aXJvbm1lbnQudHM=@Props": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==@Props": { "type": "object", "properties": { "environment": { @@ -3859,13 +3807,36 @@ "required": [ "environment" ], - "title": "deco-cx/live/matchers/MatchEnvironment.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchEnvironment.ts@Props" + }, + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz@Props": { + "type": "object", + "properties": { + "start": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "title": "Start" + }, + "end": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "title": "End" + } + }, + "required": [], + "title": "/Users/marcoscandeia/workspace/live/matchers/MatchDate.ts@Props" }, - "ZGVjby1jeC9saXZlL2ZsYWdzL2F1ZGllbmNlLnRz@Audience": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvYXVkaWVuY2UudHM=@Audience": { "type": "object", "properties": { "matcher": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher", "title": "Matcher" }, "name": { @@ -3873,7 +3844,7 @@ "title": "Name" }, "routes": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", "title": "Routes" }, "overrides": { @@ -3889,13 +3860,13 @@ "name", "routes" ], - "title": "deco-cx/live/flags/audience.ts@Audience" + "title": "/Users/marcoscandeia/workspace/live/flags/audience.ts@Audience" }, - "ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvZXZlcnlvbmUudHM=@EveryoneConfig": { "type": "object", "properties": { "routes": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", "title": "Routes" }, "overrides": { @@ -3907,33 +3878,7 @@ } }, "required": [], - "title": "deco-cx/live/flags/everyone.ts@EveryoneConfig" - }, - "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz@Props": { - "type": "object", - "properties": { - "newCategory": { - "type": "string", - "title": "New Category" - } - }, - "required": [ - "newCategory" - ], - "title": "deco-sites/fashion/extensions/changeProductCategory.ts@Props" - }, - "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz@Props": { - "type": "object", - "properties": { - "newPrice": { - "type": "number", - "title": "New Price" - } - }, - "required": [ - "newPrice" - ], - "title": "deco-sites/fashion/extensions/changeProductPrice.ts@Props" + "title": "/Users/marcoscandeia/workspace/live/flags/everyone.ts@EveryoneConfig" }, "ZGVjby1zaXRlcy9zdGQvZnVuY3Rpb25zL3Z0ZXhDb25maWcudHM=": { "title": "deco-sites/std/functions/vtexConfig.ts", @@ -4390,25 +4335,8 @@ }, "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { "title": "./islands/WishlistButton.tsx", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2xvYWRlcnMvYWRkRXh0ZW5zaW9ucy50cw==@Props" - } - ], - "required": [ - "__resolveType" - ], - "properties": { - "__resolveType": { - "type": "string", - "enum": [ "./islands/WishlistButton.tsx" - ], "default": "./islands/WishlistButton.tsx" - } - } - }, "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { "title": "./islands/WishlistButton.tsx", "type": "object", @@ -4574,12 +4502,12 @@ } } }, - "JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz": { - "title": "$live/handlers/routesSelection.ts", + "JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=": { + "title": "$live/handlers/fresh.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlc1NlbGVjdGlvbi50cw==@SelectionConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZnJlc2gudHM=@FreshConfig" } ], "required": [ @@ -4589,18 +4517,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/routesSelection.ts" + "$live/handlers/fresh.ts" ], - "default": "$live/handlers/routesSelection.ts" + "default": "$live/handlers/fresh.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz": { - "title": "$live/handlers/router.ts", + "JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==": { + "title": "$live/handlers/devPage.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlci50cw==@RouterConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==@DevConfig" } ], "required": [ @@ -4610,18 +4538,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/router.ts" + "$live/handlers/devPage.ts" ], - "default": "$live/handlers/router.ts" + "default": "$live/handlers/devPage.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==": { - "title": "$live/handlers/devPage.ts", + "JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz": { + "title": "$live/handlers/router.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL2RldlBhZ2UudHM=@DevConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVyLnRz@RouterConfig" } ], "required": [ @@ -4631,18 +4559,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/devPage.ts" + "$live/handlers/router.ts" ], - "default": "$live/handlers/devPage.ts" + "default": "$live/handlers/router.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=": { - "title": "$live/handlers/fresh.ts", + "JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz": { + "title": "$live/handlers/routesSelection.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL2ZyZXNoLnRz@FreshConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz@SelectionConfig" } ], "required": [ @@ -4652,9 +4580,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/fresh.ts" + "$live/handlers/routesSelection.ts" ], - "default": "$live/handlers/fresh.ts" + "default": "$live/handlers/routesSelection.ts" } } }, @@ -4663,7 +4591,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL3BhZ2VzL0xpdmVQYWdlLnRzeA==@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcGFnZXMvTGl2ZVBhZ2UudHN4@Props" } ], "required": [ @@ -4989,7 +4917,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL3NlY3Rpb25zL1BhZ2VJbmNsdWRlLnRzeA==@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvc2VjdGlvbnMvUGFnZUluY2x1ZGUudHN4@Props" } ], "required": [ @@ -5194,33 +5122,12 @@ } } }, - "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz": { - "title": "$live/matchers/MatchDate.ts", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRGF0ZS50cw==@Props" - } - ], - "required": [ - "__resolveType" - ], - "properties": { - "__resolveType": { - "type": "string", - "enum": [ - "$live/matchers/MatchDate.ts" - ], - "default": "$live/matchers/MatchDate.ts" - } - } - }, "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=": { "title": "$live/matchers/MatchUserAgent.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoVXNlckFnZW50LnRz@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=@Props" } ], "required": [ @@ -5236,12 +5143,12 @@ } } }, - "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz": { - "title": "$live/matchers/MatchSite.ts", + "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=": { + "title": "$live/matchers/MatchRandom.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoU2l0ZS50cw==@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=@Props" } ], "required": [ @@ -5251,9 +5158,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/matchers/MatchSite.ts" + "$live/matchers/MatchRandom.ts" ], - "default": "$live/matchers/MatchSite.ts" + "default": "$live/matchers/MatchRandom.ts" } } }, @@ -5262,7 +5169,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoTXVsdGkudHM=@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==@Props" } ], "required": [ @@ -5278,12 +5185,12 @@ } } }, - "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=": { - "title": "$live/matchers/MatchRandom.ts", + "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz": { + "title": "$live/matchers/MatchSite.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoUmFuZG9tLnRz@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz@Props" } ], "required": [ @@ -5293,9 +5200,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/matchers/MatchRandom.ts" + "$live/matchers/MatchSite.ts" ], - "default": "$live/matchers/MatchRandom.ts" + "default": "$live/matchers/MatchSite.ts" } } }, @@ -5304,7 +5211,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRW52aXJvbm1lbnQudHM=@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==@Props" } ], "required": [ @@ -5336,12 +5243,10 @@ } } }, - "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { - "title": "$live/flags/everyone.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz@Props" } ], "required": [ @@ -5351,18 +5256,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/flags/everyone.ts" + "$live/matchers/MatchDate.ts" ], - "default": "$live/flags/everyone.ts" + "default": "$live/matchers/MatchDate.ts" } } }, - "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz": { - "title": "deco-sites/fashion/extensions/changeProductCategory.ts", + "JGxpdmUvZmxhZ3MvYXVkaWVuY2UudHM=": { + "title": "$live/flags/audience.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvYXVkaWVuY2UudHM=@Audience" } ], "required": [ @@ -5372,18 +5277,18 @@ "__resolveType": { "type": "string", "enum": [ - "deco-sites/fashion/extensions/changeProductCategory.ts" + "$live/flags/audience.ts" ], - "default": "deco-sites/fashion/extensions/changeProductCategory.ts" + "default": "$live/flags/audience.ts" } } }, - "ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz": { - "title": "deco-sites/fashion/extensions/changeProductPrice.ts", + "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { + "title": "$live/flags/everyone.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz@Props" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvZXZlcnlvbmUudHM=@EveryoneConfig" } ], "required": [ @@ -5393,13 +5298,13 @@ "__resolveType": { "type": "string", "enum": [ - "deco-sites/fashion/extensions/changeProductPrice.ts" + "$live/flags/everyone.ts" ], - "default": "deco-sites/fashion/extensions/changeProductPrice.ts" + "default": "$live/flags/everyone.ts" } } }, - "ZGVjby1jeC9saXZlL3JvdXRlcy9fbWlkZGxld2FyZS50cw==@MiddlewareConfig": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL19taWRkbGV3YXJlLnRz@MiddlewareConfig": { "type": "object", "properties": { "state": { @@ -5413,20 +5318,20 @@ "required": [ "state" ], - "title": "deco-cx/live/routes/_middleware.ts@MiddlewareConfig" + "title": "/Users/marcoscandeia/workspace/live/routes/_middleware.ts@MiddlewareConfig" }, - "ZGVjby1jeC9saXZlL3JvdXRlcy9bLi4uY2F0Y2hhbGxdLnRzeA==@Entrypoint": { + "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL1suLi5jYXRjaGFsbF0udHN4@Entrypoint": { "type": "object", "properties": { "handler": { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler", + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler", "title": "Handler" } }, "required": [ "handler" ], - "title": "deco-cx/live/routes/[...catchall].tsx@Entrypoint" + "title": "/Users/marcoscandeia/workspace/live/routes/[...catchall].tsx@Entrypoint" } }, "root": { @@ -5515,17 +5420,6 @@ } ] }, - "loaders": { - "title": "loaders", - "anyOf": [ - { - "$ref": "#/definitions/Resolvable" - }, - { - "$ref": "#/definitions/JGxpdmUvbG9hZGVycy9hZGRFeHRlbnNpb25zLnRz" - } - ] - }, "islands": { "title": "islands", "anyOf": [ @@ -5574,16 +5468,16 @@ "$ref": "#/definitions/Resolvable" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz" } ] }, @@ -5687,26 +5581,26 @@ { "$ref": "#/definitions/Resolvable" }, - { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz" - }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=" }, { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz" + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==" }, { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=" + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hBbHdheXMudHM=" + }, + { + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz" } ] }, @@ -5724,20 +5618,6 @@ } ] }, - "extensions": { - "title": "extensions", - "anyOf": [ - { - "$ref": "#/definitions/Resolvable" - }, - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdENhdGVnb3J5LnRz" - }, - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9mYXNoaW9uL2V4dGVuc2lvbnMvY2hhbmdlUHJvZHVjdFByaWNlLnRz" - } - ] - }, "state": { "type": "object", "required": [ @@ -5748,14 +5628,14 @@ "./routes/_middleware.ts": { "anyOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL3JvdXRlcy9fbWlkZGxld2FyZS50cw==@MiddlewareConfig" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL19taWRkbGV3YXJlLnRz@MiddlewareConfig" } ] }, "./routes/[...catchall].tsx": { "anyOf": [ { - "$ref": "#/definitions/ZGVjby1jeC9saXZlL3JvdXRlcy9bLi4uY2F0Y2hhbGxdLnRzeA==@Entrypoint" + "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL1suLi5jYXRjaGFsbF0udHN4@Entrypoint" } ] } @@ -5768,9 +5648,6 @@ { "$ref": "#/root/accounts" }, - { - "$ref": "#/root/loaders" - }, { "$ref": "#/root/islands" }, @@ -5788,9 +5665,6 @@ }, { "$ref": "#/root/flags" - }, - { - "$ref": "#/root/extensions" } ] } From 4dacb833b1bf99bc1c6ba551f2c6b2a48b99e731 Mon Sep 17 00:00:00 2001 From: Marcos Candeia Date: Sun, 16 Apr 2023 21:34:58 -0300 Subject: [PATCH 4/4] Update live version Signed-off-by: Marcos Candeia --- import_map.json | 2 +- live.gen.ts | 15 +- schemas.gen.json | 607 ++++++++++++++++++++++++++++------------------- 3 files changed, 378 insertions(+), 246 deletions(-) diff --git a/import_map.json b/import_map.json index a8891062..1d411f23 100644 --- a/import_map.json +++ b/import_map.json @@ -2,7 +2,7 @@ "imports": { "deco-sites/fashion/": "./", "deco-sites/std/": "https://denopkg.com/deco-sites/std@review-ratings/", - "$live/": "https://denopkg.com/deco-cx/live@extension-loaders/", + "$live/": "https://denopkg.com/deco-cx/live@eefb6025f1abb2b4200cdf29501e659f21f246a1/", "$fresh/": "https://deno.land/x/fresh@1.1.5/", "preact": "https://esm.sh/preact@10.13.2", "preact/": "https://esm.sh/preact@10.13.2/", diff --git a/live.gen.ts b/live.gen.ts index 38a9e066..363cee4f 100644 --- a/live.gen.ts +++ b/live.gen.ts @@ -40,6 +40,8 @@ import * as $live_inspect from "$live/routes/live/inspect.ts"; import * as $live_meta from "$live/routes/live/_meta.ts"; import * as $live_previews from "$live/routes/live/previews/[...block].tsx"; import * as $live_catchall from "$live/routes/[...catchall].tsx"; +import * as i1$0 from "$live/accounts/stub.ts"; +import * as i2$$$$$0 from "$live/loaders/withExtensions.ts"; import * as i2$$$$$$0 from "$live/handlers/routesSelection.ts"; import * as i2$$$$$$1 from "$live/handlers/router.ts"; import * as i2$$$$$$2 from "$live/handlers/devPage.ts"; @@ -140,6 +142,13 @@ const manifest = { "deco-sites/std/sections/configVTEX.global.tsx": i2$$$6, "deco-sites/std/sections/SEOPDP.tsx": i2$$$7, }, + "accounts": { + "$live/accounts/stub.ts": i1$0, + "deco-sites/std/accounts/vnda.ts": i2$$0, + "deco-sites/std/accounts/vtex.ts": i2$$1, + "deco-sites/std/accounts/shopify.ts": i2$$2, + "deco-sites/std/accounts/occ.ts": i2$$3, + }, "loaders": { "$live/loaders/withExtensions.ts": i2$$$$$0, }, @@ -189,12 +198,6 @@ const manifest = { "deco-sites/std/functions/shopifyProductDetailsPage.ts": i2$16, "deco-sites/std/functions/vtexLegacyRelatedProductsLoader.ts": i2$17, }, - "accounts": { - "deco-sites/std/accounts/vnda.ts": i2$$0, - "deco-sites/std/accounts/vtex.ts": i2$$1, - "deco-sites/std/accounts/shopify.ts": i2$$2, - "deco-sites/std/accounts/occ.ts": i2$$3, - }, "config": config, "baseUrl": import.meta.url, }; diff --git a/schemas.gen.json b/schemas.gen.json index 53261ae7..a93b19ed 100644 --- a/schemas.gen.json +++ b/schemas.gen.json @@ -514,13 +514,6 @@ "required": [], "title": "ProductLeaf" }, - "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf[]": { - "type": "array", - "items": { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf" - }, - "title": "ProductLeaf[]" - }, "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductGroup": { "type": "object", "allOf": [ @@ -535,7 +528,10 @@ "title": "@type" }, "hasVariant": { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf[]", + "type": "array", + "items": { + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf" + }, "title": "Has Variant" }, "productGroupID": { @@ -946,6 +942,13 @@ ], "title": "Review" }, + "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf[]": { + "type": "array", + "items": { + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf" + }, + "title": "ProductLeaf[]" + }, "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@Product": { "type": "object", "allOf": [ @@ -1035,6 +1038,10 @@ "sku": { "type": "string", "title": "Sku" + }, + "isAccessoryOrSparePartFor": { + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdHlwZXMudHM=@ProductLeaf[]", + "title": "Is Accessory Or Spare Part For" } }, "required": [ @@ -2161,25 +2168,7 @@ ], "title": "deco-sites/std/commerce/vnda/types.ts@ConfigVNDA" }, - "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UveW91clZpZXdzL2NsaWVudC50cw==@ConfigYourViews": { - "type": "object", - "properties": { - "token": { - "type": "string", - "title": "Token" - }, - "appId": { - "type": "string", - "title": "App Id" - } - }, - "required": [ - "token", - "appId" - ], - "title": "deco-sites/std/commerce/yourViews/client.ts@ConfigYourViews" - }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account": { "type": "object", "properties": {}, "required": [], @@ -2189,7 +2178,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" } ], "properties": { @@ -2241,7 +2230,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" } ], "properties": { @@ -2266,7 +2255,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2FjY291bnQudHM=@Account" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9hY2NvdW50LnRz@Account" } ], "properties": { @@ -2287,6 +2276,28 @@ ], "title": "deco-sites/std/commerce/occ/client.ts@ConfigOCC" }, + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension": { + "$ref": "#/root/extensions", + "title": "Extension" + }, + "ZGVjby1jeC9saXZlL2xvYWRlcnMvd2l0aEV4dGVuc2lvbnMudHM=@Props": { + "type": "object", + "properties": { + "data": { + "$ref": "#/root/functions", + "title": "Data" + }, + "extension": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension", + "title": "Extension" + } + }, + "required": [ + "data", + "extension" + ], + "title": "deco-cx/live/loaders/withExtensions.ts@Props" + }, "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UvdnRleC90eXBlcy50cw==@SKU": { "type": "object", "properties": { @@ -2326,48 +2337,42 @@ ], "title": "deco-sites/fashion/components/ui/ShippingSimulation.tsx@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page": { - "$ref": "#/root/pages", - "title": "Page" + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag": { + "$ref": "#/root/flags", + "title": "Flag" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZnJlc2gudHM=@FreshConfig": { - "type": "object", - "properties": { - "page": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", - "title": "Page" - } + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag[]": { + "type": "array", + "items": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag" }, - "required": [ - "page" - ], - "title": "/Users/marcoscandeia/workspace/live/handlers/fresh.ts@FreshConfig" + "title": "Flag[]" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==@DevConfig": { + "ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlc1NlbGVjdGlvbi50cw==@SelectionConfig": { "type": "object", "properties": { - "page": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", - "title": "Page" + "flags": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9mbGFnLnRz@Flag[]", + "title": "Flags" } }, "required": [ - "page" + "flags" ], - "title": "/Users/marcoscandeia/workspace/live/handlers/devPage.ts@DevConfig" + "title": "deco-cx/live/handlers/routesSelection.ts@SelectionConfig" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler": { "$ref": "#/root/handlers", "title": "Handler" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record": { "title": "Unknown record", "type": "object", "additionalProperties": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler" } }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVyLnRz@RouterConfig": { + "ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlci50cw==@RouterConfig": { "type": "object", "properties": { "base": { @@ -2378,51 +2383,57 @@ "title": "Base" }, "routes": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", "title": "Routes" } }, "required": [ "routes" ], - "title": "/Users/marcoscandeia/workspace/live/handlers/router.ts@RouterConfig" + "title": "deco-cx/live/handlers/router.ts@RouterConfig" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag": { - "$ref": "#/root/flags", - "title": "Flag" + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page": { + "$ref": "#/root/pages", + "title": "Page" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag[]": { - "type": "array", - "items": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag" + "ZGVjby1jeC9saXZlL2hhbmRsZXJzL2RldlBhZ2UudHM=@DevConfig": { + "type": "object", + "properties": { + "page": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", + "title": "Page" + } }, - "title": "Flag[]" + "required": [ + "page" + ], + "title": "deco-cx/live/handlers/devPage.ts@DevConfig" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz@SelectionConfig": { + "ZGVjby1jeC9saXZlL2hhbmRsZXJzL2ZyZXNoLnRz@FreshConfig": { "type": "object", "properties": { - "flags": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2ZsYWcudHM=@Flag[]", - "title": "Flags" + "page": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", + "title": "Page" } }, "required": [ - "flags" + "page" ], - "title": "/Users/marcoscandeia/workspace/live/handlers/routesSelection.ts@SelectionConfig" + "title": "deco-cx/live/handlers/fresh.ts@FreshConfig" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section": { "$ref": "#/root/sections", "title": "Section" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section[]": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section[]": { "type": "array", "items": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section" }, "title": "Section[]" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcGFnZXMvTGl2ZVBhZ2UudHN4@Props": { + "ZGVjby1jeC9saXZlL3BhZ2VzL0xpdmVQYWdlLnRzeA==@Props": { "type": "object", "properties": { "name": { @@ -2430,7 +2441,7 @@ "title": "Name" }, "sections": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3NlY3Rpb24udHM=@Section[]", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9zZWN0aW9uLnRz@Section[]", "title": "Sections" } }, @@ -2438,7 +2449,7 @@ "name", "sections" ], - "title": "/Users/marcoscandeia/workspace/live/pages/LivePage.tsx@Props" + "title": "deco-cx/live/pages/LivePage.tsx@Props" }, "ZGVjby1zaXRlcy9mYXNoaW9uL2NvbXBvbmVudHMvcHJvZHVjdC9Qcm9kdWN0R2FsbGVyeS50c3g=@Columns": { "type": "object", @@ -3401,6 +3412,7 @@ "title": "Src" }, "alt": { + "type": "string", "title": "Alt" }, "href": { @@ -3546,18 +3558,18 @@ "required": [], "title": "deco-sites/fashion/components/ui/BannerCarousel.tsx@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvc2VjdGlvbnMvUGFnZUluY2x1ZGUudHN4@Props": { + "ZGVjby1jeC9saXZlL3NlY3Rpb25zL1BhZ2VJbmNsdWRlLnRzeA==@Props": { "type": "object", "properties": { "page": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL3BhZ2UudHM=@Page", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9wYWdlLnRz@Page", "title": "Page" } }, "required": [ "page" ], - "title": "/Users/marcoscandeia/workspace/live/sections/PageInclude.tsx@Props" + "title": "deco-cx/live/sections/PageInclude.tsx@Props" }, "ZGVjby1zaXRlcy9zdGQvY29tcG9uZW50cy9zZW8vU0VPQmFzZS50c3g=@Props": { "type": "object", @@ -3700,7 +3712,30 @@ ], "title": "deco-sites/std/components/seo/SEOPDP.tsx@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=@Props": { + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRGF0ZS50cw==@Props": { + "type": "object", + "properties": { + "start": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "title": "Start" + }, + "end": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "title": "End" + } + }, + "required": [], + "title": "deco-cx/live/matchers/MatchDate.ts@Props" + }, + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoVXNlckFnZW50LnRz@Props": { "type": "object", "properties": { "includes": { @@ -3719,33 +3754,33 @@ } }, "required": [], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchUserAgent.ts@Props" + "title": "deco-cx/live/matchers/MatchUserAgent.ts@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=@Props": { + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoU2l0ZS50cw==@Props": { "type": "object", "properties": { - "traffic": { + "siteId": { "type": "number", - "title": "Traffic" + "title": "Site Id" } }, "required": [ - "traffic" + "siteId" ], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchRandom.ts@Props" + "title": "deco-cx/live/matchers/MatchSite.ts@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher": { "$ref": "#/root/matchers", "title": "Matcher" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher[]": { + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher[]": { "type": "array", "items": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher" }, "title": "Matcher[]" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==@Props": { + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoTXVsdGkudHM=@Props": { "type": "object", "properties": { "op": { @@ -3763,7 +3798,7 @@ "title": "Op" }, "matchers": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher[]", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher[]", "title": "Matchers" } }, @@ -3771,22 +3806,22 @@ "op", "matchers" ], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchMulti.ts@Props" + "title": "deco-cx/live/matchers/MatchMulti.ts@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz@Props": { + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoUmFuZG9tLnRz@Props": { "type": "object", "properties": { - "siteId": { + "traffic": { "type": "number", - "title": "Site Id" + "title": "Traffic" } }, "required": [ - "siteId" + "traffic" ], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchSite.ts@Props" + "title": "deco-cx/live/matchers/MatchRandom.ts@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==@Props": { + "ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRW52aXJvbm1lbnQudHM=@Props": { "type": "object", "properties": { "environment": { @@ -3807,36 +3842,13 @@ "required": [ "environment" ], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchEnvironment.ts@Props" - }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz@Props": { - "type": "object", - "properties": { - "start": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "title": "Start" - }, - "end": { - "type": [ - "string", - "null" - ], - "format": "date-time", - "title": "End" - } - }, - "required": [], - "title": "/Users/marcoscandeia/workspace/live/matchers/MatchDate.ts@Props" + "title": "deco-cx/live/matchers/MatchEnvironment.ts@Props" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvYXVkaWVuY2UudHM=@Audience": { + "ZGVjby1jeC9saXZlL2ZsYWdzL2F1ZGllbmNlLnRz@Audience": { "type": "object", "properties": { "matcher": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL21hdGNoZXIudHM=@Matcher", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9tYXRjaGVyLnRz@Matcher", "title": "Matcher" }, "name": { @@ -3844,7 +3856,7 @@ "title": "Name" }, "routes": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", "title": "Routes" }, "overrides": { @@ -3860,13 +3872,13 @@ "name", "routes" ], - "title": "/Users/marcoscandeia/workspace/live/flags/audience.ts@Audience" + "title": "deco-cx/live/flags/audience.ts@Audience" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvZXZlcnlvbmUudHM=@EveryoneConfig": { + "ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig": { "type": "object", "properties": { "routes": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler@record", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler@record", "title": "Routes" }, "overrides": { @@ -3878,7 +3890,45 @@ } }, "required": [], - "title": "/Users/marcoscandeia/workspace/live/flags/everyone.ts@EveryoneConfig" + "title": "deco-cx/live/flags/everyone.ts@EveryoneConfig" + }, + "ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]": { + "type": "array", + "items": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension" + }, + "title": "Extension[]" + }, + "ZGVjby1jeC9saXZlL2V4dGVuc2lvbnMvY29tcG9zaXRlLnRz@Props": { + "type": "object", + "properties": { + "extensions": { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9leHRlbnNpb24udHM=@Extension[]", + "title": "Extensions" + } + }, + "required": [ + "extensions" + ], + "title": "deco-cx/live/extensions/composite.ts@Props" + }, + "ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UveW91clZpZXdzL2NsaWVudC50cw==@ConfigYourViews": { + "type": "object", + "properties": { + "token": { + "type": "string", + "title": "Token" + }, + "appId": { + "type": "string", + "title": "App Id" + } + }, + "required": [ + "token", + "appId" + ], + "title": "deco-sites/std/commerce/yourViews/client.ts@ConfigYourViews" }, "ZGVjby1zaXRlcy9zdGQvZnVuY3Rpb25zL3Z0ZXhDb25maWcudHM=": { "title": "deco-sites/std/functions/vtexConfig.ts", @@ -4228,14 +4278,9 @@ } } }, - "ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMvdm5kYS50cw==": { - "title": "deco-sites/std/accounts/vnda.ts", + "JGxpdmUvYWNjb3VudHMvc3R1Yi50cw==": { + "title": "$live/accounts/stub.ts", "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2Uvdm5kYS90eXBlcy50cw==@ConfigVNDA" - } - ], "required": [ "__resolveType" ], @@ -4243,18 +4288,18 @@ "__resolveType": { "type": "string", "enum": [ - "deco-sites/std/accounts/vnda.ts" + "$live/accounts/stub.ts" ], - "default": "deco-sites/std/accounts/vnda.ts" + "default": "$live/accounts/stub.ts" } } }, - "ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMveW91clZpZXdzLnRz": { - "title": "deco-sites/std/accounts/yourViews.ts", + "ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMvdm5kYS50cw==": { + "title": "deco-sites/std/accounts/vnda.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UveW91clZpZXdzL2NsaWVudC50cw==@ConfigYourViews" + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2Uvdm5kYS90eXBlcy50cw==@ConfigVNDA" } ], "required": [ @@ -4264,9 +4309,9 @@ "__resolveType": { "type": "string", "enum": [ - "deco-sites/std/accounts/yourViews.ts" + "deco-sites/std/accounts/vnda.ts" ], - "default": "deco-sites/std/accounts/yourViews.ts" + "default": "deco-sites/std/accounts/vnda.ts" } } }, @@ -4333,10 +4378,27 @@ } } }, - "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { - "title": "./islands/WishlistButton.tsx", - "./islands/WishlistButton.tsx" - "default": "./islands/WishlistButton.tsx" + "JGxpdmUvbG9hZGVycy93aXRoRXh0ZW5zaW9ucy50cw==": { + "title": "$live/loaders/withExtensions.ts", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2xvYWRlcnMvd2l0aEV4dGVuc2lvbnMudHM=@Props" + } + ], + "required": [ + "__resolveType" + ], + "properties": { + "__resolveType": { + "type": "string", + "enum": [ + "$live/loaders/withExtensions.ts" + ], + "default": "$live/loaders/withExtensions.ts" + } + } + }, "Li9pc2xhbmRzL1dpc2hsaXN0QnV0dG9uLnRzeA==": { "title": "./islands/WishlistButton.tsx", "type": "object", @@ -4353,8 +4415,8 @@ } } }, - "Li9pc2xhbmRzL0hlYWRlckJ1dHRvbi50c3g=": { - "title": "./islands/HeaderButton.tsx", + "Li9pc2xhbmRzL1NoaXBwaW5nU2ltdWxhdGlvbi50c3g=": { + "title": "./islands/ShippingSimulation.tsx", "type": "object", "allOf": [ { @@ -4364,6 +4426,22 @@ "required": [ "__resolveType" ], + "properties": { + "__resolveType": { + "type": "string", + "enum": [ + "./islands/ShippingSimulation.tsx" + ], + "default": "./islands/ShippingSimulation.tsx" + } + } + }, + "Li9pc2xhbmRzL0hlYWRlckJ1dHRvbi50c3g=": { + "title": "./islands/HeaderButton.tsx", + "type": "object", + "required": [ + "__resolveType" + ], "properties": { "__resolveType": { "type": "string", @@ -4502,12 +4580,12 @@ } } }, - "JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=": { - "title": "$live/handlers/fresh.ts", + "JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz": { + "title": "$live/handlers/routesSelection.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZnJlc2gudHM=@FreshConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlc1NlbGVjdGlvbi50cw==@SelectionConfig" } ], "required": [ @@ -4517,18 +4595,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/fresh.ts" + "$live/handlers/routesSelection.ts" ], - "default": "$live/handlers/fresh.ts" + "default": "$live/handlers/routesSelection.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==": { - "title": "$live/handlers/devPage.ts", + "JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz": { + "title": "$live/handlers/router.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==@DevConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL3JvdXRlci50cw==@RouterConfig" } ], "required": [ @@ -4538,18 +4616,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/devPage.ts" + "$live/handlers/router.ts" ], - "default": "$live/handlers/devPage.ts" + "default": "$live/handlers/router.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz": { - "title": "$live/handlers/router.ts", + "JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==": { + "title": "$live/handlers/devPage.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVyLnRz@RouterConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL2RldlBhZ2UudHM=@DevConfig" } ], "required": [ @@ -4559,18 +4637,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/router.ts" + "$live/handlers/devPage.ts" ], - "default": "$live/handlers/router.ts" + "default": "$live/handlers/devPage.ts" } } }, - "JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz": { - "title": "$live/handlers/routesSelection.ts", + "JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=": { + "title": "$live/handlers/fresh.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz@SelectionConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2hhbmRsZXJzL2ZyZXNoLnRz@FreshConfig" } ], "required": [ @@ -4580,9 +4658,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/handlers/routesSelection.ts" + "$live/handlers/fresh.ts" ], - "default": "$live/handlers/routesSelection.ts" + "default": "$live/handlers/fresh.ts" } } }, @@ -4591,7 +4669,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcGFnZXMvTGl2ZVBhZ2UudHN4@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL3BhZ2VzL0xpdmVQYWdlLnRzeA==@Props" } ], "required": [ @@ -4917,7 +4995,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvc2VjdGlvbnMvUGFnZUluY2x1ZGUudHN4@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL3NlY3Rpb25zL1BhZ2VJbmNsdWRlLnRzeA==@Props" } ], "required": [ @@ -4933,27 +5011,6 @@ } } }, - "ZGVjby1zaXRlcy9zdGQvc2VjdGlvbnMvY29uZmlnWW91clZpZXdzLmdsb2JhbC50c3g=": { - "title": "deco-sites/std/sections/configYourViews.global.tsx", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UveW91clZpZXdzL2NsaWVudC50cw==@ConfigYourViews" - } - ], - "required": [ - "__resolveType" - ], - "properties": { - "__resolveType": { - "type": "string", - "enum": [ - "deco-sites/std/sections/configYourViews.global.tsx" - ], - "default": "deco-sites/std/sections/configYourViews.global.tsx" - } - } - }, "ZGVjby1zaXRlcy9zdGQvc2VjdGlvbnMvU0VPLnRzeA==": { "title": "deco-sites/std/sections/SEO.tsx", "type": "object", @@ -5122,12 +5179,33 @@ } } }, + "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz": { + "title": "$live/matchers/MatchDate.ts", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRGF0ZS50cw==@Props" + } + ], + "required": [ + "__resolveType" + ], + "properties": { + "__resolveType": { + "type": "string", + "enum": [ + "$live/matchers/MatchDate.ts" + ], + "default": "$live/matchers/MatchDate.ts" + } + } + }, "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=": { "title": "$live/matchers/MatchUserAgent.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoVXNlckFnZW50LnRz@Props" } ], "required": [ @@ -5143,12 +5221,12 @@ } } }, - "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=": { - "title": "$live/matchers/MatchRandom.ts", + "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz": { + "title": "$live/matchers/MatchSite.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoU2l0ZS50cw==@Props" } ], "required": [ @@ -5158,9 +5236,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/matchers/MatchRandom.ts" + "$live/matchers/MatchSite.ts" ], - "default": "$live/matchers/MatchRandom.ts" + "default": "$live/matchers/MatchSite.ts" } } }, @@ -5169,7 +5247,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoTXVsdGkudHM=@Props" } ], "required": [ @@ -5185,12 +5263,12 @@ } } }, - "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz": { - "title": "$live/matchers/MatchSite.ts", + "JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=": { + "title": "$live/matchers/MatchRandom.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoUmFuZG9tLnRz@Props" } ], "required": [ @@ -5200,9 +5278,9 @@ "__resolveType": { "type": "string", "enum": [ - "$live/matchers/MatchSite.ts" + "$live/matchers/MatchRandom.ts" ], - "default": "$live/matchers/MatchSite.ts" + "default": "$live/matchers/MatchRandom.ts" } } }, @@ -5211,7 +5289,7 @@ "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL21hdGNoZXJzL01hdGNoRW52aXJvbm1lbnQudHM=@Props" } ], "required": [ @@ -5243,10 +5321,12 @@ } } }, + "JGxpdmUvZmxhZ3MvYXVkaWVuY2UudHM=": { + "title": "$live/flags/audience.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz@Props" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2F1ZGllbmNlLnRz@Audience" } ], "required": [ @@ -5256,18 +5336,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/matchers/MatchDate.ts" + "$live/flags/audience.ts" ], - "default": "$live/matchers/MatchDate.ts" + "default": "$live/flags/audience.ts" } } }, - "JGxpdmUvZmxhZ3MvYXVkaWVuY2UudHM=": { - "title": "$live/flags/audience.ts", + "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { + "title": "$live/flags/everyone.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvYXVkaWVuY2UudHM=@Audience" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2ZsYWdzL2V2ZXJ5b25lLnRz@EveryoneConfig" } ], "required": [ @@ -5277,18 +5357,18 @@ "__resolveType": { "type": "string", "enum": [ - "$live/flags/audience.ts" + "$live/flags/everyone.ts" ], - "default": "$live/flags/audience.ts" + "default": "$live/flags/everyone.ts" } } }, - "JGxpdmUvZmxhZ3MvZXZlcnlvbmUudHM=": { - "title": "$live/flags/everyone.ts", + "JGxpdmUvZXh0ZW5zaW9ucy9jb21wb3NpdGUudHM=": { + "title": "$live/extensions/composite.ts", "type": "object", "allOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvZmxhZ3MvZXZlcnlvbmUudHM=@EveryoneConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2V4dGVuc2lvbnMvY29tcG9zaXRlLnRz@Props" } ], "required": [ @@ -5298,13 +5378,34 @@ "__resolveType": { "type": "string", "enum": [ - "$live/flags/everyone.ts" + "$live/extensions/composite.ts" ], - "default": "$live/flags/everyone.ts" + "default": "$live/extensions/composite.ts" + } + } + }, + "ZGVjby1zaXRlcy9zdGQvZXh0ZW5zaW9ucy95b3VyVmlld3MudHM=": { + "title": "deco-sites/std/extensions/yourViews.ts", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvY29tbWVyY2UveW91clZpZXdzL2NsaWVudC50cw==@ConfigYourViews" + } + ], + "required": [ + "__resolveType" + ], + "properties": { + "__resolveType": { + "type": "string", + "enum": [ + "deco-sites/std/extensions/yourViews.ts" + ], + "default": "deco-sites/std/extensions/yourViews.ts" } } }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL19taWRkbGV3YXJlLnRz@MiddlewareConfig": { + "ZGVjby1jeC9saXZlL3JvdXRlcy9fbWlkZGxld2FyZS50cw==@MiddlewareConfig": { "type": "object", "properties": { "state": { @@ -5318,20 +5419,20 @@ "required": [ "state" ], - "title": "/Users/marcoscandeia/workspace/live/routes/_middleware.ts@MiddlewareConfig" + "title": "deco-cx/live/routes/_middleware.ts@MiddlewareConfig" }, - "L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL1suLi5jYXRjaGFsbF0udHN4@Entrypoint": { + "ZGVjby1jeC9saXZlL3JvdXRlcy9bLi4uY2F0Y2hhbGxdLnRzeA==@Entrypoint": { "type": "object", "properties": { "handler": { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvYmxvY2tzL2hhbmRsZXIudHM=@Handler", + "$ref": "#/definitions/ZGVjby1jeC9saXZlL2Jsb2Nrcy9oYW5kbGVyLnRz@Handler", "title": "Handler" } }, "required": [ "handler" ], - "title": "/Users/marcoscandeia/workspace/live/routes/[...catchall].tsx@Entrypoint" + "title": "deco-cx/live/routes/[...catchall].tsx@Entrypoint" } }, "root": { @@ -5404,10 +5505,10 @@ "$ref": "#/definitions/Resolvable" }, { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMvdm5kYS50cw==" + "$ref": "#/definitions/JGxpdmUvYWNjb3VudHMvc3R1Yi50cw==" }, { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMveW91clZpZXdzLnRz" + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMvdm5kYS50cw==" }, { "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvYWNjb3VudHMvdnRleC50cw==" @@ -5420,6 +5521,17 @@ } ] }, + "loaders": { + "title": "loaders", + "anyOf": [ + { + "$ref": "#/definitions/Resolvable" + }, + { + "$ref": "#/definitions/JGxpdmUvbG9hZGVycy93aXRoRXh0ZW5zaW9ucy50cw==" + } + ] + }, "islands": { "title": "islands", "anyOf": [ @@ -5468,16 +5580,16 @@ "$ref": "#/definitions/Resolvable" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVyLnRz" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZGV2UGFnZS50cw==" }, { - "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvcm91dGVzU2VsZWN0aW9uLnRz" + "$ref": "#/definitions/JGxpdmUvaGFuZGxlcnMvZnJlc2gudHM=" } ] }, @@ -5546,9 +5658,6 @@ { "$ref": "#/definitions/JGxpdmUvc2VjdGlvbnMvUGFnZUluY2x1ZGUudHN4" }, - { - "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvc2VjdGlvbnMvY29uZmlnWW91clZpZXdzLmdsb2JhbC50c3g=" - }, { "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvc2VjdGlvbnMvU0VPLnRzeA==" }, @@ -5581,26 +5690,26 @@ { "$ref": "#/definitions/Resolvable" }, + { + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz" + }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hVc2VyQWdlbnQudHM=" }, { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=" + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hNdWx0aS50cw==" }, { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hTaXRlLnRz" + "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hSYW5kb20udHM=" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hFbnZpcm9ubWVudC50cw==" }, { "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hBbHdheXMudHM=" - }, - { - "$ref": "#/definitions/JGxpdmUvbWF0Y2hlcnMvTWF0Y2hEYXRlLnRz" } ] }, @@ -5618,6 +5727,20 @@ } ] }, + "extensions": { + "title": "extensions", + "anyOf": [ + { + "$ref": "#/definitions/Resolvable" + }, + { + "$ref": "#/definitions/JGxpdmUvZXh0ZW5zaW9ucy9jb21wb3NpdGUudHM=" + }, + { + "$ref": "#/definitions/ZGVjby1zaXRlcy9zdGQvZXh0ZW5zaW9ucy95b3VyVmlld3MudHM=" + } + ] + }, "state": { "type": "object", "required": [ @@ -5628,14 +5751,14 @@ "./routes/_middleware.ts": { "anyOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL19taWRkbGV3YXJlLnRz@MiddlewareConfig" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL3JvdXRlcy9fbWlkZGxld2FyZS50cw==@MiddlewareConfig" } ] }, "./routes/[...catchall].tsx": { "anyOf": [ { - "$ref": "#/definitions/L1VzZXJzL21hcmNvc2NhbmRlaWEvd29ya3NwYWNlL2xpdmUvcm91dGVzL1suLi5jYXRjaGFsbF0udHN4@Entrypoint" + "$ref": "#/definitions/ZGVjby1jeC9saXZlL3JvdXRlcy9bLi4uY2F0Y2hhbGxdLnRzeA==@Entrypoint" } ] } @@ -5648,6 +5771,9 @@ { "$ref": "#/root/accounts" }, + { + "$ref": "#/root/loaders" + }, { "$ref": "#/root/islands" }, @@ -5665,6 +5791,9 @@ }, { "$ref": "#/root/flags" + }, + { + "$ref": "#/root/extensions" } ] }