From 3c19305a7107d250bd898a9f4dfef38e362c2cbf Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Tue, 16 Jan 2024 09:51:22 +0100 Subject: [PATCH 01/75] Display the details of configurable products in the cart. --- .changeset/shy-gifts-trade.md | 5 +++++ .../ConfigurableCartItem.graphql | 3 +++ .../plugins/ConfigurableCartItemActionCard.tsx | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 .changeset/shy-gifts-trade.md diff --git a/.changeset/shy-gifts-trade.md b/.changeset/shy-gifts-trade.md new file mode 100644 index 0000000000..3a67fecd38 --- /dev/null +++ b/.changeset/shy-gifts-trade.md @@ -0,0 +1,5 @@ +--- +'@graphcommerce/magento-product-configurable': patch +--- + +Display the details of configurable products in the cart. diff --git a/packages/magento-product-configurable/ConfigurableCartItem/ConfigurableCartItem.graphql b/packages/magento-product-configurable/ConfigurableCartItem/ConfigurableCartItem.graphql index 0f543bd4ab..da4f3d59e4 100644 --- a/packages/magento-product-configurable/ConfigurableCartItem/ConfigurableCartItem.graphql +++ b/packages/magento-product-configurable/ConfigurableCartItem/ConfigurableCartItem.graphql @@ -10,7 +10,10 @@ fragment ConfigurableCartItem on ConfigurableCartItem @inject(into: ["CartItem"] } configured_variant { uid + ...ProductLink + sku name + sku thumbnail { ...ProductImage } diff --git a/packages/magento-product-configurable/plugins/ConfigurableCartItemActionCard.tsx b/packages/magento-product-configurable/plugins/ConfigurableCartItemActionCard.tsx index 3385a2b5fa..56914ceaa2 100644 --- a/packages/magento-product-configurable/plugins/ConfigurableCartItemActionCard.tsx +++ b/packages/magento-product-configurable/plugins/ConfigurableCartItemActionCard.tsx @@ -17,6 +17,19 @@ export function ConfigurableCartItemActionCard( return ( {rest.details} From 2b524809b1a0b5c02403cb400ca0f62d122f2253 Mon Sep 17 00:00:00 2001 From: Jesse van der Poel Date: Wed, 10 Jan 2024 16:34:14 +0100 Subject: [PATCH 02/75] [GCOM-1315] fix cli tool + fix migration 6to7 --- docs/framework/config.md | 4 + docs/hygraph/cli.md | 16 +- packages/hygraph-cli/Config.graphqls | 5 + .../dist/migrations/graphcommerce6to7.js | 7 + packages/hygraph-cli/dist/readSchema.js | 2 +- .../src/migrations/graphcommerce6to7.ts | 15 ++ packages/hygraph-cli/src/readSchema.ts | 2 +- .../next-config/dist/generated/config.js | 186 +++++++----------- .../next-config/src/generated/config.ts | 3 + 9 files changed, 118 insertions(+), 122 deletions(-) diff --git a/docs/framework/config.md b/docs/framework/config.md index 197634b670..13727e3a3f 100644 --- a/docs/framework/config.md +++ b/docs/framework/config.md @@ -205,6 +205,10 @@ The Google Tagmanager ID to be used on the site. This value is required even if you are configuring different values for each locale. +#### hygraphManagementApi: string + +Hygraph Management API. **Only used for migrations.** + #### hygraphProjectId: string Hygraph Project ID. **Only used for migrations.** diff --git a/docs/hygraph/cli.md b/docs/hygraph/cli.md index e2b5efdc1f..bc8b0177aa 100644 --- a/docs/hygraph/cli.md +++ b/docs/hygraph/cli.md @@ -48,16 +48,20 @@ The following steps are needed to utilize this tool: - Update public content views - Delete public content views - Can see schema view - 5. Add this new token to your env file: `GC_HYGRAPH_WRITE_ACCESS_TOKEN=""` + 5. Add this new token to your env file: + `GC_HYGRAPH_WRITE_ACCESS_TOKEN="{YOUR_WRITE_ACCESS_TOKEN}"` 2. Add the Content API key to your env file like this: 1. Open your Hygraph project. Go to: Project settings -> API Access 2. Copy the Content API URL and add to your env file: - `GC_HYGRAPH_WRITE_ACCESS_ENDPOINT=""` + `GC_HYGRAPH_WRITE_ACCESS_ENDPOINT="{YOUR_WRITE_ACCESS_ENDPOINT}"` 3. Add your hygraphProjectId to your env file like this: 1. Copy the project ID from the URL when logged in `https://app.hygraph.com/PROJECT_ID_IS_HERE/master` - 2. Add the project ID to your env file: `GC_HYGRAPH_PROJECT_ID=””` -4. Run `yarn graphcommerce hygraph-migrate` -5. Select the migration you want to run and press enter. -6. The migrations should now be applied, check your Hygraph Schema if changes + 2. Add the project ID to your env file: + `GC_HYGRAPH_PROJECT_ID=”{YOUR_PROJECT_ID}”` +4. Add your hygraphManagementApi to your env file like this: + `GC_HYGRAPH_MANAGEMENT_API="{YOUR_MANAGEMENT_API}"` +5. Run `yarn graphcommerce hygraph-migrate` +6. Select the migration you want to run and press enter. +7. The migrations should now be applied, check your Hygraph Schema if changes are made. diff --git a/packages/hygraph-cli/Config.graphqls b/packages/hygraph-cli/Config.graphqls index aeab871984..0a39758598 100644 --- a/packages/hygraph-cli/Config.graphqls +++ b/packages/hygraph-cli/Config.graphqls @@ -45,4 +45,9 @@ extend input GraphCommerceConfig { Hygraph Project ID. **Only used for migrations.** """ hygraphProjectId: String + + """ + Hygraph Management API. **Only used for migrations.** + """ + hygraphManagementApi: String } diff --git a/packages/hygraph-cli/dist/migrations/graphcommerce6to7.js b/packages/hygraph-cli/dist/migrations/graphcommerce6to7.js index 8306ec416a..1d03064073 100644 --- a/packages/hygraph-cli/dist/migrations/graphcommerce6to7.js +++ b/packages/hygraph-cli/dist/migrations/graphcommerce6to7.js @@ -196,6 +196,13 @@ const graphcommerce6to7 = async (schema) => { enumerationApiId: 'RowColumnOneVariants', parentApiId: 'RowColumnOne', }, 'RowColumnOne', 'model'); + (0, migrationAction_1.migrationAction)(schema, 'componentUnionField', 'create', { + displayName: 'Conditions', + apiId: 'conditions', + parentApiId: 'ConditionOr', + componentApiIds: ['ConditionText', 'ConditionNumber'], + isList: true, + }, 'ConditionOr', 'component'); return migrationAction_1.client.run(true); }; exports.graphcommerce6to7 = graphcommerce6to7; diff --git a/packages/hygraph-cli/dist/readSchema.js b/packages/hygraph-cli/dist/readSchema.js index 4a23e0a789..97f0d58e85 100644 --- a/packages/hygraph-cli/dist/readSchema.js +++ b/packages/hygraph-cli/dist/readSchema.js @@ -13,7 +13,7 @@ const readSchema = async (config) => { const projectId = config.hygraphProjectId; const hygraphClient = new client_1.ApolloClient({ link: new client_1.HttpLink({ - uri: 'https://management.hygraph.com/graphql', + uri: config.hygraphManagementApi ?? 'https://management.hygraph.com/graphql', fetch: fetch_1.fetch, headers: { Authorization: `Bearer ${config.hygraphWriteAccessToken}` }, }), diff --git a/packages/hygraph-cli/src/migrations/graphcommerce6to7.ts b/packages/hygraph-cli/src/migrations/graphcommerce6to7.ts index 8c9a5288d9..6189720265 100644 --- a/packages/hygraph-cli/src/migrations/graphcommerce6to7.ts +++ b/packages/hygraph-cli/src/migrations/graphcommerce6to7.ts @@ -303,5 +303,20 @@ export const graphcommerce6to7 = async (schema: Schema) => { 'model', ) + migrationAction( + schema, + 'componentUnionField', + 'create', + { + displayName: 'Conditions', + apiId: 'conditions', + parentApiId: 'ConditionOr', + componentApiIds: ['ConditionText', 'ConditionNumber'], + isList: true, + }, + 'ConditionOr', + 'component', + ) + return client.run(true) } diff --git a/packages/hygraph-cli/src/readSchema.ts b/packages/hygraph-cli/src/readSchema.ts index c7924e817e..afc4decd46 100644 --- a/packages/hygraph-cli/src/readSchema.ts +++ b/packages/hygraph-cli/src/readSchema.ts @@ -15,7 +15,7 @@ export const readSchema = async (config: GraphCommerceConfig) => { const hygraphClient = new ApolloClient({ link: new HttpLink({ - uri: 'https://management.hygraph.com/graphql', + uri: config.hygraphManagementApi ?? 'https://management.hygraph.com/graphql', fetch, headers: { Authorization: `Bearer ${config.hygraphWriteAccessToken}` }, }), diff --git a/packagesDev/next-config/dist/generated/config.js b/packagesDev/next-config/dist/generated/config.js index bc4149a910..d754648ddf 100644 --- a/packagesDev/next-config/dist/generated/config.js +++ b/packagesDev/next-config/dist/generated/config.js @@ -1,136 +1,94 @@ -/* eslint-disable */ "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -function _export(target, all) { - for(var name in all)Object.defineProperty(target, name, { - enumerable: true, - get: all[name] - }); -} -_export(exports, { - CompareVariantSchema: function() { - return CompareVariantSchema; - }, - GraphCommerceConfigSchema: function() { - return GraphCommerceConfigSchema; - }, - GraphCommerceDebugConfigSchema: function() { - return GraphCommerceDebugConfigSchema; - }, - GraphCommerceStorefrontConfigSchema: function() { - return GraphCommerceStorefrontConfigSchema; - }, - MagentoConfigurableVariantValuesSchema: function() { - return MagentoConfigurableVariantValuesSchema; - }, - ProductFiltersLayoutSchema: function() { - return ProductFiltersLayoutSchema; - }, - RecentlyViewedProductsConfigSchema: function() { - return RecentlyViewedProductsConfigSchema; - }, - SidebarGalleryConfigSchema: function() { - return SidebarGalleryConfigSchema; - }, - SidebarGalleryPaginationVariantSchema: function() { - return SidebarGalleryPaginationVariantSchema; - }, - definedNonNullAnySchema: function() { - return definedNonNullAnySchema; - }, - isDefinedNonNullAny: function() { - return isDefinedNonNullAny; - } -}); -const _zod = require("zod"); -const isDefinedNonNullAny = (v)=>v !== undefined && v !== null; -const definedNonNullAnySchema = _zod.z.any().refine((v)=>isDefinedNonNullAny(v)); -const CompareVariantSchema = _zod.z.enum([ - "CHECKBOX", - "ICON" -]); -const ProductFiltersLayoutSchema = _zod.z.enum([ - "DEFAULT", - "SIDEBAR" -]); -const SidebarGalleryPaginationVariantSchema = _zod.z.enum([ - "DOTS", - "THUMBNAILS_BOTTOM" -]); +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SidebarGalleryConfigSchema = exports.RecentlyViewedProductsConfigSchema = exports.MagentoConfigurableVariantValuesSchema = exports.GraphCommerceStorefrontConfigSchema = exports.GraphCommerceDebugConfigSchema = exports.GraphCommerceConfigSchema = exports.SidebarGalleryPaginationVariantSchema = exports.ProductFiltersLayoutSchema = exports.CompareVariantSchema = exports.definedNonNullAnySchema = exports.isDefinedNonNullAny = void 0; +/* eslint-disable */ +const zod_1 = require("zod"); +const isDefinedNonNullAny = (v) => v !== undefined && v !== null; +exports.isDefinedNonNullAny = isDefinedNonNullAny; +exports.definedNonNullAnySchema = zod_1.z.any().refine((v) => (0, exports.isDefinedNonNullAny)(v)); +exports.CompareVariantSchema = zod_1.z.enum(['CHECKBOX', 'ICON']); +exports.ProductFiltersLayoutSchema = zod_1.z.enum(['DEFAULT', 'SIDEBAR']); +exports.SidebarGalleryPaginationVariantSchema = zod_1.z.enum(['DOTS', 'THUMBNAILS_BOTTOM']); function GraphCommerceConfigSchema() { - return _zod.z.object({ - canonicalBaseUrl: _zod.z.string().min(1), - cartDisplayPricesInclTax: _zod.z.boolean().nullish(), - compare: _zod.z.boolean().nullish(), - compareVariant: CompareVariantSchema.nullish(), - configurableVariantForSimple: _zod.z.boolean().nullish(), + return zod_1.z.object({ + canonicalBaseUrl: zod_1.z.string().min(1), + cartDisplayPricesInclTax: zod_1.z.boolean().nullish(), + compare: zod_1.z.boolean().nullish(), + compareVariant: exports.CompareVariantSchema.nullish(), + configurableVariantForSimple: zod_1.z.boolean().nullish(), configurableVariantValues: MagentoConfigurableVariantValuesSchema().nullish(), - crossSellsHideCartItems: _zod.z.boolean().nullish(), - crossSellsRedirectItems: _zod.z.boolean().nullish(), - customerRequireEmailConfirmation: _zod.z.boolean().nullish(), + crossSellsHideCartItems: zod_1.z.boolean().nullish(), + crossSellsRedirectItems: zod_1.z.boolean().nullish(), + customerRequireEmailConfirmation: zod_1.z.boolean().nullish(), debug: GraphCommerceDebugConfigSchema().nullish(), - demoMode: _zod.z.boolean().nullish(), - enableGuestCheckoutLogin: _zod.z.boolean().nullish(), - googleAnalyticsId: _zod.z.string().nullish(), - googleRecaptchaKey: _zod.z.string().nullish(), - googleTagmanagerId: _zod.z.string().nullish(), - hygraphEndpoint: _zod.z.string().min(1), - hygraphProjectId: _zod.z.string().nullish(), - hygraphWriteAccessEndpoint: _zod.z.string().nullish(), - hygraphWriteAccessToken: _zod.z.string().nullish(), - limitSsg: _zod.z.boolean().nullish(), - magentoEndpoint: _zod.z.string().min(1), - previewSecret: _zod.z.string().nullish(), - productFiltersLayout: ProductFiltersLayoutSchema.nullish(), - productFiltersPro: _zod.z.boolean().nullish(), - productRoute: _zod.z.string().nullish(), + demoMode: zod_1.z.boolean().nullish(), + enableGuestCheckoutLogin: zod_1.z.boolean().nullish(), + googleAnalyticsId: zod_1.z.string().nullish(), + googleRecaptchaKey: zod_1.z.string().nullish(), + googleTagmanagerId: zod_1.z.string().nullish(), + hygraphEndpoint: zod_1.z.string().min(1), + hygraphManagementApi: zod_1.z.string().nullish(), + hygraphProjectId: zod_1.z.string().nullish(), + hygraphWriteAccessEndpoint: zod_1.z.string().nullish(), + hygraphWriteAccessToken: zod_1.z.string().nullish(), + limitSsg: zod_1.z.boolean().nullish(), + magentoEndpoint: zod_1.z.string().min(1), + previewSecret: zod_1.z.string().nullish(), + productFiltersLayout: exports.ProductFiltersLayoutSchema.nullish(), + productFiltersPro: zod_1.z.boolean().nullish(), + productRoute: zod_1.z.string().nullish(), recentlyViewedProducts: RecentlyViewedProductsConfigSchema().nullish(), - robotsAllow: _zod.z.boolean().nullish(), + robotsAllow: zod_1.z.boolean().nullish(), sidebarGallery: SidebarGalleryConfigSchema().nullish(), - storefront: _zod.z.array(GraphCommerceStorefrontConfigSchema()), - wishlistHideForGuests: _zod.z.boolean().nullish(), - wishlistShowFeedbackMessage: _zod.z.boolean().nullish() + storefront: zod_1.z.array(GraphCommerceStorefrontConfigSchema()), + wishlistHideForGuests: zod_1.z.boolean().nullish(), + wishlistShowFeedbackMessage: zod_1.z.boolean().nullish() }); } +exports.GraphCommerceConfigSchema = GraphCommerceConfigSchema; function GraphCommerceDebugConfigSchema() { - return _zod.z.object({ - pluginStatus: _zod.z.boolean().nullish(), - sessions: _zod.z.boolean().nullish(), - webpackCircularDependencyPlugin: _zod.z.boolean().nullish(), - webpackDuplicatesPlugin: _zod.z.boolean().nullish() + return zod_1.z.object({ + pluginStatus: zod_1.z.boolean().nullish(), + sessions: zod_1.z.boolean().nullish(), + webpackCircularDependencyPlugin: zod_1.z.boolean().nullish(), + webpackDuplicatesPlugin: zod_1.z.boolean().nullish() }); } +exports.GraphCommerceDebugConfigSchema = GraphCommerceDebugConfigSchema; function GraphCommerceStorefrontConfigSchema() { - return _zod.z.object({ - canonicalBaseUrl: _zod.z.string().nullish(), - cartDisplayPricesInclTax: _zod.z.boolean().nullish(), - defaultLocale: _zod.z.boolean().nullish(), - domain: _zod.z.string().nullish(), - googleAnalyticsId: _zod.z.string().nullish(), - googleRecaptchaKey: _zod.z.string().nullish(), - googleTagmanagerId: _zod.z.string().nullish(), - hygraphLocales: _zod.z.array(_zod.z.string().min(1)).nullish(), - linguiLocale: _zod.z.string().nullish(), - locale: _zod.z.string().min(1), - magentoStoreCode: _zod.z.string().min(1) + return zod_1.z.object({ + canonicalBaseUrl: zod_1.z.string().nullish(), + cartDisplayPricesInclTax: zod_1.z.boolean().nullish(), + defaultLocale: zod_1.z.boolean().nullish(), + domain: zod_1.z.string().nullish(), + googleAnalyticsId: zod_1.z.string().nullish(), + googleRecaptchaKey: zod_1.z.string().nullish(), + googleTagmanagerId: zod_1.z.string().nullish(), + hygraphLocales: zod_1.z.array(zod_1.z.string().min(1)).nullish(), + linguiLocale: zod_1.z.string().nullish(), + locale: zod_1.z.string().min(1), + magentoStoreCode: zod_1.z.string().min(1) }); } +exports.GraphCommerceStorefrontConfigSchema = GraphCommerceStorefrontConfigSchema; function MagentoConfigurableVariantValuesSchema() { - return _zod.z.object({ - content: _zod.z.boolean().nullish(), - gallery: _zod.z.boolean().nullish(), - url: _zod.z.boolean().nullish() + return zod_1.z.object({ + content: zod_1.z.boolean().nullish(), + gallery: zod_1.z.boolean().nullish(), + url: zod_1.z.boolean().nullish() }); } +exports.MagentoConfigurableVariantValuesSchema = MagentoConfigurableVariantValuesSchema; function RecentlyViewedProductsConfigSchema() { - return _zod.z.object({ - enabled: _zod.z.boolean().nullish(), - maxCount: _zod.z.number().nullish() + return zod_1.z.object({ + enabled: zod_1.z.boolean().nullish(), + maxCount: zod_1.z.number().nullish() }); } +exports.RecentlyViewedProductsConfigSchema = RecentlyViewedProductsConfigSchema; function SidebarGalleryConfigSchema() { - return _zod.z.object({ - paginationVariant: SidebarGalleryPaginationVariantSchema.nullish() + return zod_1.z.object({ + paginationVariant: exports.SidebarGalleryPaginationVariantSchema.nullish() }); } +exports.SidebarGalleryConfigSchema = SidebarGalleryConfigSchema; diff --git a/packagesDev/next-config/src/generated/config.ts b/packagesDev/next-config/src/generated/config.ts index 2313390b42..04cc0b892e 100644 --- a/packagesDev/next-config/src/generated/config.ts +++ b/packagesDev/next-config/src/generated/config.ts @@ -211,6 +211,8 @@ export type GraphCommerceConfig = { * Project settings -> API Access -> High Performance Read-only Content API */ hygraphEndpoint: Scalars['String']['input']; + /** Hygraph Management API. **Only used for migrations.** */ + hygraphManagementApi?: InputMaybe; /** Hygraph Project ID. **Only used for migrations.** */ hygraphProjectId?: InputMaybe; /** @@ -444,6 +446,7 @@ export function GraphCommerceConfigSchema(): z.ZodObject Date: Wed, 10 Jan 2024 16:38:00 +0100 Subject: [PATCH 03/75] added changeset --- .changeset/twelve-socks-tap.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/twelve-socks-tap.md diff --git a/.changeset/twelve-socks-tap.md b/.changeset/twelve-socks-tap.md new file mode 100644 index 0000000000..d4805a51f1 --- /dev/null +++ b/.changeset/twelve-socks-tap.md @@ -0,0 +1,6 @@ +--- +"@graphcommerce/next-config": patch +"@graphcommerce/hygraph-cli": patch +--- + +Fix hygraph 6to7 cli From 5f62f9fac27b7709cebaa019725acdf7961024c7 Mon Sep 17 00:00:00 2001 From: Jesse van der Poel Date: Tue, 16 Jan 2024 12:15:31 +0100 Subject: [PATCH 04/75] updated 7t08 schema --- .../dist/migrations/graphcommerce7to8.js | 91 +++++---- .../dist/migrations/graphcommerce8to9.js | 6 +- packages/hygraph-cli/dist/migrations/index.js | 1 + packages/hygraph-cli/dist/readSchema.js | 9 +- .../src/migrations/graphcommerce7to8.ts | 17 +- .../src/migrations/graphcommerce8to9.ts | 2 +- packages/hygraph-cli/src/migrations/index.ts | 1 + packages/hygraph-cli/src/readSchema.ts | 10 +- .../next-config/dist/generated/config.js | 187 +++++++++++------- 9 files changed, 206 insertions(+), 118 deletions(-) diff --git a/packages/hygraph-cli/dist/migrations/graphcommerce7to8.js b/packages/hygraph-cli/dist/migrations/graphcommerce7to8.js index c8105f1b2e..ee78731e8b 100644 --- a/packages/hygraph-cli/dist/migrations/graphcommerce7to8.js +++ b/packages/hygraph-cli/dist/migrations/graphcommerce7to8.js @@ -1,36 +1,57 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.graphcommerce7to7_1 = void 0; -const management_sdk_1 = require("@hygraph/management-sdk"); -const migrationAction_1 = require("../migrationAction"); -const graphcommerce7to7_1 = async (schema) => { - if (!migrationAction_1.client) { - return 0; - } - const hasRow = schema.models - .find((m) => m.apiId === 'DynamicRow') - ?.fields.some((f) => f.apiId === 'row'); - if (hasRow) { - (0, migrationAction_1.migrationAction)(schema, 'unionField', 'update', { - apiId: 'row', - displayName: 'Row Deprecated', - parentApiId: 'DynamicRow', - description: 'This field is deprecated. Use Rows instead.', - }); - } - (0, migrationAction_1.migrationAction)(schema, 'unionField', 'create', { - displayName: 'Rows', - apiId: 'rows', +'use strict' +Object.defineProperty(exports, '__esModule', { value: true }) +exports.graphcommerce7to8 = void 0 +const management_sdk_1 = require('@hygraph/management-sdk') +const migrationAction_1 = require('../migrationAction') +const graphcommerce7to8 = async (schema) => { + if (!migrationAction_1.client) { + return 0 + } + const hasRow = schema.models + .find((m) => m.apiId === 'DynamicRow') + ?.fields.some((f) => f.apiId === 'row') + if (hasRow) { + ;(0, migrationAction_1.migrationAction)(schema, 'unionField', 'update', { + apiId: 'row', + displayName: 'Row Deprecated', + parentApiId: 'DynamicRow', + description: 'This field is deprecated. Use Rows instead.', + }) + } + ;(0, migrationAction_1.migrationAction)( + schema, + 'unionField', + 'create', + { + displayName: 'Rows', + apiId: 'rows', + isList: true, + reverseField: { + modelApiIds: ['RowQuote', 'RowLinks', 'RowColumnOne'], + apiId: 'dynamicRows', + displayName: 'Dynamic Rows', + visibility: management_sdk_1.VisibilityTypes.Hidden, isList: true, - reverseField: { - modelApiIds: ['RowQuote', 'RowLinks', 'RowColumnOne'], - apiId: 'dynamicRows', - displayName: 'Dynamic Rows', - visibility: management_sdk_1.VisibilityTypes.Hidden, - isList: true, - }, - parentApiId: 'DynamicRow', - }, 'DynamicRow', 'model'); - return migrationAction_1.client.run(true); -}; -exports.graphcommerce7to7_1 = graphcommerce7to7_1; + }, + parentApiId: 'DynamicRow', + }, + 'DynamicRow', + 'model', + ) + ;(0, migrationAction_1.migrationAction)( + schema, + 'componentUnionField', + 'create', + { + displayName: 'Conditions', + apiId: 'conditions', + parentApiId: 'ConditionOr', + componentApiIds: ['ConditionText', 'ConditionNumber'], + isList: true, + }, + 'ConditionOr', + 'component', + ) + return migrationAction_1.client.run(true) +} +exports.graphcommerce7to8 = graphcommerce7to8 diff --git a/packages/hygraph-cli/dist/migrations/graphcommerce8to9.js b/packages/hygraph-cli/dist/migrations/graphcommerce8to9.js index 6bfcb964ee..ce241566ce 100644 --- a/packages/hygraph-cli/dist/migrations/graphcommerce8to9.js +++ b/packages/hygraph-cli/dist/migrations/graphcommerce8to9.js @@ -1,8 +1,8 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.graphcommerce7_unknown_to_8 = void 0; +exports.graphcommerce8to9 = void 0; const migrationAction_1 = require("../migrationAction"); -const graphcommerce7_unknown_to_8 = async (schema) => { +const graphcommerce8to9 = async (schema) => { if (!migrationAction_1.client) { return 0; } @@ -19,4 +19,4 @@ const graphcommerce7_unknown_to_8 = async (schema) => { } return migrationAction_1.client.run(true); }; -exports.graphcommerce7_unknown_to_8 = graphcommerce7_unknown_to_8; +exports.graphcommerce8to9 = graphcommerce8to9; diff --git a/packages/hygraph-cli/dist/migrations/index.js b/packages/hygraph-cli/dist/migrations/index.js index 08f89ad918..13edf69bab 100644 --- a/packages/hygraph-cli/dist/migrations/index.js +++ b/packages/hygraph-cli/dist/migrations/index.js @@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true }); __exportStar(require("./graphcommerce5to6"), exports); __exportStar(require("./graphcommerce6to7"), exports); __exportStar(require("./graphcommerce7to8"), exports); +__exportStar(require("./graphcommerce8to9"), exports); diff --git a/packages/hygraph-cli/dist/readSchema.js b/packages/hygraph-cli/dist/readSchema.js index 97f0d58e85..ff09a1fa6a 100644 --- a/packages/hygraph-cli/dist/readSchema.js +++ b/packages/hygraph-cli/dist/readSchema.js @@ -5,15 +5,18 @@ const client_1 = require("@apollo/client"); const fetch_1 = require("@whatwg-node/fetch"); const readSchema = async (config) => { if (!config.hygraphProjectId) { - throw new Error('Please provide GC_HYGRAPH_PROJECT_ID in your env file'); + throw new Error('Please provide GC_HYGRAPH_PROJECT_ID in your env file.'); } if (!config.hygraphWriteAccessToken) { - throw new Error('Please provide GC_HYGRAPH_WRITE_ACCESS_TOKEN in your env file'); + throw new Error('Please provide GC_HYGRAPH_WRITE_ACCESS_TOKEN in your env file.'); } const projectId = config.hygraphProjectId; + if (!config.hygraphManagementApi) { + throw new Error('Please provide GC_HYGRAPH_MANAGEMENT_API in your env file.'); + } const hygraphClient = new client_1.ApolloClient({ link: new client_1.HttpLink({ - uri: config.hygraphManagementApi ?? 'https://management.hygraph.com/graphql', + uri: config.hygraphManagementApi, fetch: fetch_1.fetch, headers: { Authorization: `Bearer ${config.hygraphWriteAccessToken}` }, }), diff --git a/packages/hygraph-cli/src/migrations/graphcommerce7to8.ts b/packages/hygraph-cli/src/migrations/graphcommerce7to8.ts index e9ce127b4e..cbd6cac193 100644 --- a/packages/hygraph-cli/src/migrations/graphcommerce7to8.ts +++ b/packages/hygraph-cli/src/migrations/graphcommerce7to8.ts @@ -2,7 +2,7 @@ import { VisibilityTypes } from '@hygraph/management-sdk' import { migrationAction, client } from '../migrationAction' import { Schema } from '../types' -export const graphcommerce7to7_1 = async (schema: Schema) => { +export const graphcommerce7to8 = async (schema: Schema) => { if (!client) { return 0 } @@ -41,5 +41,20 @@ export const graphcommerce7to7_1 = async (schema: Schema) => { 'model', ) + migrationAction( + schema, + 'componentUnionField', + 'create', + { + displayName: 'Conditions', + apiId: 'conditions', + parentApiId: 'ConditionOr', + componentApiIds: ['ConditionText', 'ConditionNumber'], + isList: true, + }, + 'ConditionOr', + 'component', + ) + return client.run(true) } diff --git a/packages/hygraph-cli/src/migrations/graphcommerce8to9.ts b/packages/hygraph-cli/src/migrations/graphcommerce8to9.ts index b89cc495d2..1664c62ec2 100644 --- a/packages/hygraph-cli/src/migrations/graphcommerce8to9.ts +++ b/packages/hygraph-cli/src/migrations/graphcommerce8to9.ts @@ -1,7 +1,7 @@ import { migrationAction, client } from '../migrationAction' import { Schema } from '../types' -export const graphcommerce7_unknown_to_8 = async (schema: Schema) => { +export const graphcommerce8to9 = async (schema: Schema) => { if (!client) { return 0 } diff --git a/packages/hygraph-cli/src/migrations/index.ts b/packages/hygraph-cli/src/migrations/index.ts index 3c07b40660..9d5e84152f 100644 --- a/packages/hygraph-cli/src/migrations/index.ts +++ b/packages/hygraph-cli/src/migrations/index.ts @@ -1,3 +1,4 @@ export * from './graphcommerce5to6' export * from './graphcommerce6to7' export * from './graphcommerce7to8' +export * from './graphcommerce8to9' diff --git a/packages/hygraph-cli/src/readSchema.ts b/packages/hygraph-cli/src/readSchema.ts index afc4decd46..f78ae8fb76 100644 --- a/packages/hygraph-cli/src/readSchema.ts +++ b/packages/hygraph-cli/src/readSchema.ts @@ -4,18 +4,22 @@ import { fetch } from '@whatwg-node/fetch' export const readSchema = async (config: GraphCommerceConfig) => { if (!config.hygraphProjectId) { - throw new Error('Please provide GC_HYGRAPH_PROJECT_ID in your env file') + throw new Error('Please provide GC_HYGRAPH_PROJECT_ID in your env file.') } if (!config.hygraphWriteAccessToken) { - throw new Error('Please provide GC_HYGRAPH_WRITE_ACCESS_TOKEN in your env file') + throw new Error('Please provide GC_HYGRAPH_WRITE_ACCESS_TOKEN in your env file.') } const projectId = config.hygraphProjectId + if (!config.hygraphManagementApi) { + throw new Error('Please provide GC_HYGRAPH_MANAGEMENT_API in your env file.') + } + const hygraphClient = new ApolloClient({ link: new HttpLink({ - uri: config.hygraphManagementApi ?? 'https://management.hygraph.com/graphql', + uri: config.hygraphManagementApi, fetch, headers: { Authorization: `Bearer ${config.hygraphWriteAccessToken}` }, }), diff --git a/packagesDev/next-config/dist/generated/config.js b/packagesDev/next-config/dist/generated/config.js index d754648ddf..d125aaeb5c 100644 --- a/packagesDev/next-config/dist/generated/config.js +++ b/packagesDev/next-config/dist/generated/config.js @@ -1,94 +1,137 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.SidebarGalleryConfigSchema = exports.RecentlyViewedProductsConfigSchema = exports.MagentoConfigurableVariantValuesSchema = exports.GraphCommerceStorefrontConfigSchema = exports.GraphCommerceDebugConfigSchema = exports.GraphCommerceConfigSchema = exports.SidebarGalleryPaginationVariantSchema = exports.ProductFiltersLayoutSchema = exports.CompareVariantSchema = exports.definedNonNullAnySchema = exports.isDefinedNonNullAny = void 0; -/* eslint-disable */ -const zod_1 = require("zod"); -const isDefinedNonNullAny = (v) => v !== undefined && v !== null; -exports.isDefinedNonNullAny = isDefinedNonNullAny; -exports.definedNonNullAnySchema = zod_1.z.any().refine((v) => (0, exports.isDefinedNonNullAny)(v)); -exports.CompareVariantSchema = zod_1.z.enum(['CHECKBOX', 'ICON']); -exports.ProductFiltersLayoutSchema = zod_1.z.enum(['DEFAULT', 'SIDEBAR']); -exports.SidebarGalleryPaginationVariantSchema = zod_1.z.enum(['DOTS', 'THUMBNAILS_BOTTOM']); +/* eslint-disable */ "use strict"; +Object.defineProperty(exports, "__esModule", { + value: true +}); +function _export(target, all) { + for(var name in all)Object.defineProperty(target, name, { + enumerable: true, + get: all[name] + }); +} +_export(exports, { + CompareVariantSchema: function() { + return CompareVariantSchema; + }, + GraphCommerceConfigSchema: function() { + return GraphCommerceConfigSchema; + }, + GraphCommerceDebugConfigSchema: function() { + return GraphCommerceDebugConfigSchema; + }, + GraphCommerceStorefrontConfigSchema: function() { + return GraphCommerceStorefrontConfigSchema; + }, + MagentoConfigurableVariantValuesSchema: function() { + return MagentoConfigurableVariantValuesSchema; + }, + ProductFiltersLayoutSchema: function() { + return ProductFiltersLayoutSchema; + }, + RecentlyViewedProductsConfigSchema: function() { + return RecentlyViewedProductsConfigSchema; + }, + SidebarGalleryConfigSchema: function() { + return SidebarGalleryConfigSchema; + }, + SidebarGalleryPaginationVariantSchema: function() { + return SidebarGalleryPaginationVariantSchema; + }, + definedNonNullAnySchema: function() { + return definedNonNullAnySchema; + }, + isDefinedNonNullAny: function() { + return isDefinedNonNullAny; + } +}); +const _zod = require("zod"); +const isDefinedNonNullAny = (v)=>v !== undefined && v !== null; +const definedNonNullAnySchema = _zod.z.any().refine((v)=>isDefinedNonNullAny(v)); +const CompareVariantSchema = _zod.z.enum([ + "CHECKBOX", + "ICON" +]); +const ProductFiltersLayoutSchema = _zod.z.enum([ + "DEFAULT", + "SIDEBAR" +]); +const SidebarGalleryPaginationVariantSchema = _zod.z.enum([ + "DOTS", + "THUMBNAILS_BOTTOM" +]); function GraphCommerceConfigSchema() { - return zod_1.z.object({ - canonicalBaseUrl: zod_1.z.string().min(1), - cartDisplayPricesInclTax: zod_1.z.boolean().nullish(), - compare: zod_1.z.boolean().nullish(), - compareVariant: exports.CompareVariantSchema.nullish(), - configurableVariantForSimple: zod_1.z.boolean().nullish(), + return _zod.z.object({ + canonicalBaseUrl: _zod.z.string().min(1), + cartDisplayPricesInclTax: _zod.z.boolean().nullish(), + compare: _zod.z.boolean().nullish(), + compareVariant: CompareVariantSchema.nullish(), + configurableVariantForSimple: _zod.z.boolean().nullish(), configurableVariantValues: MagentoConfigurableVariantValuesSchema().nullish(), - crossSellsHideCartItems: zod_1.z.boolean().nullish(), - crossSellsRedirectItems: zod_1.z.boolean().nullish(), - customerRequireEmailConfirmation: zod_1.z.boolean().nullish(), + crossSellsHideCartItems: _zod.z.boolean().nullish(), + crossSellsRedirectItems: _zod.z.boolean().nullish(), + customerRequireEmailConfirmation: _zod.z.boolean().nullish(), debug: GraphCommerceDebugConfigSchema().nullish(), - demoMode: zod_1.z.boolean().nullish(), - enableGuestCheckoutLogin: zod_1.z.boolean().nullish(), - googleAnalyticsId: zod_1.z.string().nullish(), - googleRecaptchaKey: zod_1.z.string().nullish(), - googleTagmanagerId: zod_1.z.string().nullish(), - hygraphEndpoint: zod_1.z.string().min(1), - hygraphManagementApi: zod_1.z.string().nullish(), - hygraphProjectId: zod_1.z.string().nullish(), - hygraphWriteAccessEndpoint: zod_1.z.string().nullish(), - hygraphWriteAccessToken: zod_1.z.string().nullish(), - limitSsg: zod_1.z.boolean().nullish(), - magentoEndpoint: zod_1.z.string().min(1), - previewSecret: zod_1.z.string().nullish(), - productFiltersLayout: exports.ProductFiltersLayoutSchema.nullish(), - productFiltersPro: zod_1.z.boolean().nullish(), - productRoute: zod_1.z.string().nullish(), + demoMode: _zod.z.boolean().nullish(), + enableGuestCheckoutLogin: _zod.z.boolean().nullish(), + googleAnalyticsId: _zod.z.string().nullish(), + googleRecaptchaKey: _zod.z.string().nullish(), + googleTagmanagerId: _zod.z.string().nullish(), + hygraphEndpoint: _zod.z.string().min(1), + hygraphManagementApi: _zod.z.string().nullish(), + hygraphProjectId: _zod.z.string().nullish(), + hygraphWriteAccessEndpoint: _zod.z.string().nullish(), + hygraphWriteAccessToken: _zod.z.string().nullish(), + limitSsg: _zod.z.boolean().nullish(), + magentoEndpoint: _zod.z.string().min(1), + previewSecret: _zod.z.string().nullish(), + productFiltersLayout: ProductFiltersLayoutSchema.nullish(), + productFiltersPro: _zod.z.boolean().nullish(), + productRoute: _zod.z.string().nullish(), recentlyViewedProducts: RecentlyViewedProductsConfigSchema().nullish(), - robotsAllow: zod_1.z.boolean().nullish(), + robotsAllow: _zod.z.boolean().nullish(), sidebarGallery: SidebarGalleryConfigSchema().nullish(), - storefront: zod_1.z.array(GraphCommerceStorefrontConfigSchema()), - wishlistHideForGuests: zod_1.z.boolean().nullish(), - wishlistShowFeedbackMessage: zod_1.z.boolean().nullish() + storefront: _zod.z.array(GraphCommerceStorefrontConfigSchema()), + wishlistHideForGuests: _zod.z.boolean().nullish(), + wishlistShowFeedbackMessage: _zod.z.boolean().nullish() }); } -exports.GraphCommerceConfigSchema = GraphCommerceConfigSchema; function GraphCommerceDebugConfigSchema() { - return zod_1.z.object({ - pluginStatus: zod_1.z.boolean().nullish(), - sessions: zod_1.z.boolean().nullish(), - webpackCircularDependencyPlugin: zod_1.z.boolean().nullish(), - webpackDuplicatesPlugin: zod_1.z.boolean().nullish() + return _zod.z.object({ + pluginStatus: _zod.z.boolean().nullish(), + sessions: _zod.z.boolean().nullish(), + webpackCircularDependencyPlugin: _zod.z.boolean().nullish(), + webpackDuplicatesPlugin: _zod.z.boolean().nullish() }); } -exports.GraphCommerceDebugConfigSchema = GraphCommerceDebugConfigSchema; function GraphCommerceStorefrontConfigSchema() { - return zod_1.z.object({ - canonicalBaseUrl: zod_1.z.string().nullish(), - cartDisplayPricesInclTax: zod_1.z.boolean().nullish(), - defaultLocale: zod_1.z.boolean().nullish(), - domain: zod_1.z.string().nullish(), - googleAnalyticsId: zod_1.z.string().nullish(), - googleRecaptchaKey: zod_1.z.string().nullish(), - googleTagmanagerId: zod_1.z.string().nullish(), - hygraphLocales: zod_1.z.array(zod_1.z.string().min(1)).nullish(), - linguiLocale: zod_1.z.string().nullish(), - locale: zod_1.z.string().min(1), - magentoStoreCode: zod_1.z.string().min(1) + return _zod.z.object({ + canonicalBaseUrl: _zod.z.string().nullish(), + cartDisplayPricesInclTax: _zod.z.boolean().nullish(), + defaultLocale: _zod.z.boolean().nullish(), + domain: _zod.z.string().nullish(), + googleAnalyticsId: _zod.z.string().nullish(), + googleRecaptchaKey: _zod.z.string().nullish(), + googleTagmanagerId: _zod.z.string().nullish(), + hygraphLocales: _zod.z.array(_zod.z.string().min(1)).nullish(), + linguiLocale: _zod.z.string().nullish(), + locale: _zod.z.string().min(1), + magentoStoreCode: _zod.z.string().min(1) }); } -exports.GraphCommerceStorefrontConfigSchema = GraphCommerceStorefrontConfigSchema; function MagentoConfigurableVariantValuesSchema() { - return zod_1.z.object({ - content: zod_1.z.boolean().nullish(), - gallery: zod_1.z.boolean().nullish(), - url: zod_1.z.boolean().nullish() + return _zod.z.object({ + content: _zod.z.boolean().nullish(), + gallery: _zod.z.boolean().nullish(), + url: _zod.z.boolean().nullish() }); } -exports.MagentoConfigurableVariantValuesSchema = MagentoConfigurableVariantValuesSchema; function RecentlyViewedProductsConfigSchema() { - return zod_1.z.object({ - enabled: zod_1.z.boolean().nullish(), - maxCount: zod_1.z.number().nullish() + return _zod.z.object({ + enabled: _zod.z.boolean().nullish(), + maxCount: _zod.z.number().nullish() }); } -exports.RecentlyViewedProductsConfigSchema = RecentlyViewedProductsConfigSchema; function SidebarGalleryConfigSchema() { - return zod_1.z.object({ - paginationVariant: exports.SidebarGalleryPaginationVariantSchema.nullish() + return _zod.z.object({ + paginationVariant: SidebarGalleryPaginationVariantSchema.nullish() }); } -exports.SidebarGalleryConfigSchema = SidebarGalleryConfigSchema; From 90257b491173e94ce744d6530bc55045e90c0b71 Mon Sep 17 00:00:00 2001 From: Frank Harland Date: Wed, 17 Jan 2024 15:43:34 +0100 Subject: [PATCH 05/75] fix(GCOM-1317): fix bug where inactive cached cart could be set as currentCartId --- packages/magento-cart/hooks/useMergeCustomerCart.ts | 3 ++- .../magento-customer/components/SignOutForm/signOut.ts | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/magento-cart/hooks/useMergeCustomerCart.ts b/packages/magento-cart/hooks/useMergeCustomerCart.ts index cdc809564b..7d704dd4db 100644 --- a/packages/magento-cart/hooks/useMergeCustomerCart.ts +++ b/packages/magento-cart/hooks/useMergeCustomerCart.ts @@ -15,7 +15,8 @@ export function useMergeCustomerCart() { const assignCurrentCartId = useAssignCurrentCartId() const [merge] = useMutation(UseMergeCustomerCartDocument, { errorPolicy: 'all' }) - const destinationCartId = useCustomerQuery(CustomerCartDocument)?.data?.customerCart.id + const destinationCartId = useCustomerQuery(CustomerCartDocument, { fetchPolicy: 'network-only' }) + ?.data?.customerCart.id useEffect(() => { // If we don't have a customer cart, we're done diff --git a/packages/magento-customer/components/SignOutForm/signOut.ts b/packages/magento-customer/components/SignOutForm/signOut.ts index ec3d80687e..8815fb2f8e 100644 --- a/packages/magento-customer/components/SignOutForm/signOut.ts +++ b/packages/magento-customer/components/SignOutForm/signOut.ts @@ -1,9 +1,9 @@ import { ApolloClient } from '@graphcommerce/graphql' export function signOut(client: ApolloClient) { - client.cache.evict({ fieldName: 'cart' }) - client.cache.evict({ fieldName: 'customer' }) - client.cache.evict({ fieldName: 'customerCart' }) - client.cache.evict({ fieldName: 'currentCartId' }) + client.cache.evict({ fieldName: 'currentCartId', broadcast: true }) + client.cache.evict({ fieldName: 'cart', broadcast: true }) client.cache.evict({ fieldName: 'customerToken', broadcast: true }) + client.cache.evict({ fieldName: 'customer', broadcast: true }) + client.cache.evict({ fieldName: 'customerCart', broadcast: true }) } From f3e906f7e374ce22d36af29c0f3c8153e18300e6 Mon Sep 17 00:00:00 2001 From: FrankHarland <31548701+FrankHarland@users.noreply.github.com> Date: Wed, 17 Jan 2024 15:55:05 +0100 Subject: [PATCH 06/75] Create nasty-icons-knock.md --- .changeset/nasty-icons-knock.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/nasty-icons-knock.md diff --git a/.changeset/nasty-icons-knock.md b/.changeset/nasty-icons-knock.md new file mode 100644 index 0000000000..67dfd5020b --- /dev/null +++ b/.changeset/nasty-icons-knock.md @@ -0,0 +1,6 @@ +--- +"@graphcommerce/magento-cart": patch +"@graphcommerce/magento-customer": patch +--- + +fix(GCOM-1317): fix bug where inactive cached cart could be set as currentCartId From b850ab06e3fff1cd274651d8082557ed2c308f55 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 18 Jan 2024 13:37:19 +0100 Subject: [PATCH 07/75] Roadmap updates --- .changeset/chilly-brooms-move.md | 2 +- .changeset/forty-windows-matter.md | 5 ++ docs/feature-list.md | 23 +++++---- docs/roadmap.md | 76 ++++++++++++++++++++---------- 4 files changed, 69 insertions(+), 37 deletions(-) create mode 100644 .changeset/forty-windows-matter.md diff --git a/.changeset/chilly-brooms-move.md b/.changeset/chilly-brooms-move.md index 775a1776ea..6b585095d5 100644 --- a/.changeset/chilly-brooms-move.md +++ b/.changeset/chilly-brooms-move.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-product-configurable': patch --- -When selecitng a non-existing option on a configurable product page, the price would not update. +When selecting a non-existing option on a configurable product page, the price would not update. diff --git a/.changeset/forty-windows-matter.md b/.changeset/forty-windows-matter.md new file mode 100644 index 0000000000..618dc5a354 --- /dev/null +++ b/.changeset/forty-windows-matter.md @@ -0,0 +1,5 @@ +--- +"@graphcommerce/docs": patch +--- + +Updated roadmap and feature-list diff --git a/docs/feature-list.md b/docs/feature-list.md index f3c8f358e8..0ad7deb111 100644 --- a/docs/feature-list.md +++ b/docs/feature-list.md @@ -125,8 +125,8 @@ Features taken from the Magento Commerce 2 Feature List grouped products. - [x] Offer virtual products like memberships, services and warranties. - [x] Include downloadable/digital products with samples. -- [ ] Allow customer-personalized products (e.g., upload images and text for - monogramming). — [Todo] +- [x] Allow customer-personalized products (e.g., upload images and text for + monogramming). — (No upload support yet) - [x] Manage inventory across multiple locations - [x] Create new products through a guided online process. - [x] Define unlimited product attributes. @@ -153,12 +153,13 @@ Features taken from the Magento Commerce 2 Feature List - [ ] Present product category items in grid or list format. — [Todo] - [x] Customize the look and feel of categories and assigned product pages. — [Enhanced] -- [ ] Arrange products on category pages with drag-and-drop merchandising and +- [x] Arrange products on category pages with drag-and-drop merchandising and automated sorting rules. — [Commerce] - [ ] Control which products and categories can be viewed by each customer group. — [Commerce] -- [ ] Show side-by-side product comparisons with two or more products. — [Todo] -- [ ] Display recently viewed products. — [Todo] +- [x] Show side-by-side product comparisons with two or more products. — + [Enhanced] +- [x] Display recently viewed products. — [Enhanced] - [x] Compare products. — [Enhanced] - [x] Increase search relevancy and scalability with Elasticsearch technology. - [x] Set stop words, attribute weightings, and search synonyms for higher @@ -214,8 +215,8 @@ Features taken from the Magento Commerce 2 Feature List - [x] Include a mini cart on store pages to summarize products in the cart. - [x] Display an order summary with product images in checkout. -- [ ] Offer guest and registered user checkout. Registered customers are - automatically recognized when they enter their email addresses. — [Todo] +- [x] Offer guest and registered user checkout. Registered customers are + automatically recognized when they enter their email addresses. - [ ] Boost conversion rates with an Instant Purchase option that uses saved payment and shipping information to speed checkout. — [Todo] - [x] Enable shoppers to create a customer account with one click on the @@ -234,7 +235,8 @@ Features taken from the Magento Commerce 2 Feature List ### Payments - [ ] Download and work with your preferred payment gateway through the Magento - Marketplace. + Marketplace. — + [Supported Payment Methods](https://www.graphcommerce.org/docs/magento#payment-gateways) - [x] Securely pass credit card information directly from the client browser to the payment gateway, bypassing the Adobe Commerce application. - [x] Qualify for the easiest level of PCI compliance (SAQ-A or SAQ A-EP), @@ -378,8 +380,9 @@ Features taken from the Magento Commerce 2 Feature List easier and durable over multiple releases. — [Enhanced] - [x] Integrate Adobe Commerce with third-party applications using efficient web APIs with REST and GraphQL support. — [Enhanced] -- [ ] Smoothly manage interactions between extensions using plug-ins and - dependency injection software design patterns. +- [x] Smoothly manage interactions between extensions using plug-ins and + dependency injection software design patterns. — + [Plugins](https://www.graphcommerce.org/docs/framework/plugins-react_) - [ ] Accelerate time-to-market and improve code quality with a fully-automated testing framework. - [ ] Update code with a standalone installer that checks for prerequisites diff --git a/docs/roadmap.md b/docs/roadmap.md index 365bc18777..29ab9641d7 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -2,32 +2,67 @@ menu: Roadmap --- -
+# Roadmap -> Last update: October 10, 2022 +The following overview contains the status of items on the GraphCommerce +roadmap. -
+## In progress / planned -# Roadmap +[Upcoming in the next release](https://github.com/graphcommerce-org/graphcommerce/releases?q=prerelease%3Atrue&expanded=true) -The following overview contains the status of items on the GraphCommerce roadmap -(items are subject to change): +- [ ] Google Datalayer improvements to better handling gtag.js or GTM +- [ ] Product page gallery improvements: Grid of images, animated thumbnails, + Video support + disable zoom feature. +- [ ] Web Vitals: Reduce Total Blocking Time, to improve INP metic. +- [ ] Web Vitals: Defer rendering of elements further on the page, to improve + INP metic. +- [ ] Magento Open Source GraphQL API Coverage with detailed GraphQL analysis + per version. +- [ ] Create a generic CMS integration framework, removing the hard Hygraph + requirement +- [ ] Web Migration to next/image in favor of @graphcommerce/image +- [ ] Improved category navigation: Navigate to sibling categories + Category + tree navigation in sidebar. +- [ ] i18n configuration separation from URL structure. +- [ ] Improved cache invalidation logic for category and product pages by using + the Varnish PURGE functionality of Magento. +- [ ] Customer specific pricing support for category and product pages. +- [ ] Support for very large carts with 100+ items. +- [ ] Plugin system redesign so typescript correctly identifies plugins and can + type check all the integrations. -## In progress / planned +## Considering / researching -- [ ] Global store messages -- [ ] Wishlist redesign -- [ ] Success page redesign -- [ ] Product thumbnails on product page -- [ ] Dutch Postcode API upgrades -- [ ] Invalid session handling improvements -- [ ] Performance improvements -- [ ] Migration to next/image in favor of @graphcommerce/image +- [ ] Gallery support on category/search pages. +- [ ] Authorize.net payment service integration +- [ ] Web Vitals: Use CSS theme variables or wait for MUI v6 release with static + extraction. +- [ ] React Server Components integration with streaming for faster loads. +- [ ] Windows support +- [ ] Store locator +- [ ] PageBuilder support + [depends on ↗](https://github.com/magento/magento2/issues/37768) +- [ ] Abstractions for integration with multiple catalog/search API's like + Algolia, Magento Live Search and various layered navigation modules. ## Released [See all releases](https://github.com/graphcommerce-org/graphcommerce/releases?q=prerelease%3Afalse+&expanded=true) +- [x] Product page gallery improvements: Thumbnails +- [x] Major improvements to Accessibility + [issue ↗](https://github.com/graphcommerce-org/graphcommerce/issues/1995) +- [x] Show Crosssells in the cart +- [x] Support for Github Codespaces +- [x] Faster loading performance for the category page +- [x] Recently viewed products +- [x] Global store messages +- [x] Invalid session handling improvements +- [x] Product thumbnails on product page +- [x] Wishlist redesign +- [x] Success page redesign +- [x] Dutch Postcode API upgrades - [x] Configurable variants for simple products [ocs ↗](https://graphcommerce.org/docs/magento/configurable-products) - [x] Cart redesign @@ -60,17 +95,6 @@ The following overview contains the status of items on the GraphCommerce roadmap - [x] Checkout payment selection rebuild - [x] Core stability (hydratation, caching, query optimization) -## Future - -- [ ] React Server Components integration -- [ ] Edge runtime for GraphQL Mesh -- [ ] Windows support -- [ ] Store locator -- [ ] Buckaroo payment service -- [ ] `magento` example without Hygraph -- [ ] PageBuilder support - [depends on ↗](https://github.com/magento/magento2/issues/37768) - ## Next steps - Refer to the From b09546782bcd82c95a265fc2e9413991325f45f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:38:50 +0000 Subject: [PATCH 08/75] chore(release): update prerelease versions --- .changeset/pre.json | 1 + docs/CHANGELOG.md | 7 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 102 +- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 +- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 24 +- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 12 +- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 18 +- packages/ecommerce-ui/CHANGELOG.md | 2 + packages/ecommerce-ui/package.json | 14 +- packages/framer-next-pages/CHANGELOG.md | 2 + .../framer-next-pages/example/CHANGELOG.md | 2 + .../framer-next-pages/example/package.json | 8 +- packages/framer-next-pages/package.json | 10 +- packages/framer-scroller/CHANGELOG.md | 2 + packages/framer-scroller/example/CHANGELOG.md | 2 + packages/framer-scroller/example/package.json | 8 +- packages/framer-scroller/package.json | 12 +- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 22 +- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 12 +- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 10 +- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 12 +- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/package.json | 10 +- packages/hygraph-dynamic-rows-ui/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows-ui/package.json | 10 +- packages/hygraph-dynamic-rows/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows/package.json | 16 +- packages/hygraph-ui/CHANGELOG.md | 2 + packages/hygraph-ui/package.json | 14 +- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 8 +- packages/image/package.json | 10 +- packages/lighthouse/CHANGELOG.md | 2 + packages/lighthouse/package.json | 8 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +- .../magento-cart-billing-address/CHANGELOG.md | 2 + .../magento-cart-billing-address/package.json | 24 +- packages/magento-cart-checkout/CHANGELOG.md | 2 + packages/magento-cart-checkout/package.json | 26 +- packages/magento-cart-coupon/CHANGELOG.md | 2 + packages/magento-cart-coupon/package.json | 20 +- packages/magento-cart-email/CHANGELOG.md | 2 + packages/magento-cart-email/package.json | 26 +- packages/magento-cart-items/CHANGELOG.md | 2 + packages/magento-cart-items/package.json | 24 +- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 24 +- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 +- .../CHANGELOG.md | 2 + .../package.json | 22 +- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 24 +- packages/magento-cart/CHANGELOG.md | 2 + packages/magento-cart/package.json | 30 +- packages/magento-category/CHANGELOG.md | 2 + packages/magento-category/package.json | 20 +- packages/magento-cms/CHANGELOG.md | 2 + packages/magento-cms/package.json | 12 +- packages/magento-compare/CHANGELOG.md | 2 + packages/magento-compare/package.json | 22 +- .../magento-customer-account/CHANGELOG.md | 2 + .../magento-customer-account/package.json | 10 +- packages/magento-customer-order/CHANGELOG.md | 2 + packages/magento-customer-order/package.json | 22 +- packages/magento-customer/CHANGELOG.md | 2 + packages/magento-customer/package.json | 28 +- packages/magento-graphql/CHANGELOG.md | 2 + packages/magento-graphql/package.json | 10 +- packages/magento-newsletter/CHANGELOG.md | 2 + packages/magento-newsletter/package.json | 20 +- packages/magento-pagebuilder/CHANGELOG.md | 2 + packages/magento-pagebuilder/package.json | 20 +- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 +- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 +- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 28 +- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 18 +- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 34 +- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 +- packages/magento-product-bundle/CHANGELOG.md | 2 + packages/magento-product-bundle/package.json | 28 +- .../magento-product-configurable/CHANGELOG.md | 2 + .../magento-product-configurable/package.json | 36 +- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 18 +- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 18 +- packages/magento-product-simple/CHANGELOG.md | 2 + packages/magento-product-simple/package.json | 18 +- packages/magento-product-virtual/CHANGELOG.md | 2 + packages/magento-product-virtual/package.json | 18 +- packages/magento-product/CHANGELOG.md | 2 + packages/magento-product/package.json | 26 +- .../CHANGELOG.md | 2 + .../package.json | 22 +- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 24 +- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 20 +- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 16 +- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 30 +- packages/mollie-magento-payment/CHANGELOG.md | 2 + packages/mollie-magento-payment/package.json | 32 +- packages/next-ui/CHANGELOG.md | 2 + packages/next-ui/package.json | 18 +- packages/react-hook-form/CHANGELOG.md | 2 + packages/react-hook-form/package.json | 8 +- packagesDev/browserslist-config/CHANGELOG.md | 2 + packagesDev/browserslist-config/package.json | 2 +- packagesDev/changeset-changelog/CHANGELOG.md | 2 + packagesDev/changeset-changelog/package.json | 2 +- packagesDev/eslint-config/CHANGELOG.md | 2 + packagesDev/eslint-config/package.json | 4 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 6 +- packagesDev/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 2 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- yarn.lock | 1280 ++++++++--------- 150 files changed, 1456 insertions(+), 1302 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 6e36249bf5..8d886a6a38 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -101,6 +101,7 @@ "flat-emus-look", "forty-islands-march", "forty-rocks-bow", + "forty-windows-matter", "four-peaches-bake", "fresh-games-roll", "fresh-pens-hide", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0111ca42b0..2e02073ca4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.0.0-canary.89 + +### Patch Changes + +- [`b850ab0`](https://github.com/graphcommerce-org/graphcommerce/commit/b850ab06e3fff1cd274651d8082557ed2c308f55) - Updated roadmap and feature-list + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/docs/package.json b/docs/package.json index 2682896cc0..a50e193de3 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/docs", "homepage": "https://www.graphcommerce.org/docs", "repository": "github:graphcommerce-org/graphcommerce/docs", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88" + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 1e2a131796..113735704e 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 8655fc6d8d..0cccad9735 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphcms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "private": true, "sideEffects": false, "engines": { @@ -21,53 +21,53 @@ "dependencies": { "@apollo/client": "~3.8.8", "@ducanh2912/next-pwa": "9.7.2", - "@graphcommerce/cli": "8.0.0-canary.88", - "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.88", - "@graphcommerce/ecommerce-ui": "8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "8.0.0-canary.88", - "@graphcommerce/framer-scroller": "8.0.0-canary.88", - "@graphcommerce/framer-utils": "8.0.0-canary.88", - "@graphcommerce/googleanalytics": "8.0.0-canary.88", - "@graphcommerce/googlerecaptcha": "8.0.0-canary.88", - "@graphcommerce/googletagmanager": "8.0.0-canary.88", - "@graphcommerce/graphcms-ui": "8.0.0-canary.88", - "@graphcommerce/graphql": "8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "8.0.0-canary.88", - "@graphcommerce/hygraph-cli": "8.0.0-canary.88", - "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.88", - "@graphcommerce/image": "8.0.0-canary.88", - "@graphcommerce/lingui-next": "8.0.0-canary.88", - "@graphcommerce/magento-cart": "8.0.0-canary.88", - "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.88", - "@graphcommerce/magento-cart-checkout": "8.0.0-canary.88", - "@graphcommerce/magento-cart-coupon": "8.0.0-canary.88", - "@graphcommerce/magento-cart-email": "8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.88", - "@graphcommerce/magento-category": "8.0.0-canary.88", - "@graphcommerce/magento-cms": "8.0.0-canary.88", - "@graphcommerce/magento-compare": "8.0.0-canary.88", - "@graphcommerce/magento-customer": "8.0.0-canary.88", - "@graphcommerce/magento-graphql": "8.0.0-canary.88", - "@graphcommerce/magento-newsletter": "8.0.0-canary.88", - "@graphcommerce/magento-payment-included": "8.0.0-canary.88", - "@graphcommerce/magento-product": "8.0.0-canary.88", - "@graphcommerce/magento-product-bundle": "8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "8.0.0-canary.88", - "@graphcommerce/magento-product-downloadable": "8.0.0-canary.88", - "@graphcommerce/magento-product-grouped": "8.0.0-canary.88", - "@graphcommerce/magento-product-simple": "8.0.0-canary.88", - "@graphcommerce/magento-product-virtual": "8.0.0-canary.88", - "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.88", - "@graphcommerce/magento-review": "8.0.0-canary.88", - "@graphcommerce/magento-search": "8.0.0-canary.88", - "@graphcommerce/magento-store": "8.0.0-canary.88", - "@graphcommerce/magento-wishlist": "8.0.0-canary.88", - "@graphcommerce/next-config": "8.0.0-canary.88", - "@graphcommerce/next-ui": "8.0.0-canary.88", - "@graphcommerce/react-hook-form": "8.0.0-canary.88", + "@graphcommerce/cli": "8.0.0-canary.89", + "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "8.0.0-canary.89", + "@graphcommerce/framer-scroller": "8.0.0-canary.89", + "@graphcommerce/framer-utils": "8.0.0-canary.89", + "@graphcommerce/googleanalytics": "8.0.0-canary.89", + "@graphcommerce/googlerecaptcha": "8.0.0-canary.89", + "@graphcommerce/googletagmanager": "8.0.0-canary.89", + "@graphcommerce/graphcms-ui": "8.0.0-canary.89", + "@graphcommerce/graphql": "8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "8.0.0-canary.89", + "@graphcommerce/hygraph-cli": "8.0.0-canary.89", + "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.89", + "@graphcommerce/image": "8.0.0-canary.89", + "@graphcommerce/lingui-next": "8.0.0-canary.89", + "@graphcommerce/magento-cart": "8.0.0-canary.89", + "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.89", + "@graphcommerce/magento-cart-checkout": "8.0.0-canary.89", + "@graphcommerce/magento-cart-coupon": "8.0.0-canary.89", + "@graphcommerce/magento-cart-email": "8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.89", + "@graphcommerce/magento-category": "8.0.0-canary.89", + "@graphcommerce/magento-cms": "8.0.0-canary.89", + "@graphcommerce/magento-compare": "8.0.0-canary.89", + "@graphcommerce/magento-customer": "8.0.0-canary.89", + "@graphcommerce/magento-graphql": "8.0.0-canary.89", + "@graphcommerce/magento-newsletter": "8.0.0-canary.89", + "@graphcommerce/magento-payment-included": "8.0.0-canary.89", + "@graphcommerce/magento-product": "8.0.0-canary.89", + "@graphcommerce/magento-product-bundle": "8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "8.0.0-canary.89", + "@graphcommerce/magento-product-downloadable": "8.0.0-canary.89", + "@graphcommerce/magento-product-grouped": "8.0.0-canary.89", + "@graphcommerce/magento-product-simple": "8.0.0-canary.89", + "@graphcommerce/magento-product-virtual": "8.0.0-canary.89", + "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.89", + "@graphcommerce/magento-review": "8.0.0-canary.89", + "@graphcommerce/magento-search": "8.0.0-canary.89", + "@graphcommerce/magento-store": "8.0.0-canary.89", + "@graphcommerce/magento-wishlist": "8.0.0-canary.89", + "@graphcommerce/next-config": "8.0.0-canary.89", + "@graphcommerce/next-ui": "8.0.0-canary.89", + "@graphcommerce/react-hook-form": "8.0.0-canary.89", "@lingui/core": "4.6.0", "@lingui/macro": "4.6.0", "@lingui/react": "4.6.0", @@ -90,9 +90,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index a8210b2df3..9d52e721d5 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index a83780ca0d..10053805ca 100644 --- a/packages/address-fields-nl/package.json +++ b/packages/address-fields-nl/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/address-fields-nl", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 48336a1a2f..e0e3b4b922 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 1be6d78488..0f5a062739 100644 --- a/packages/algolia-search/package.json +++ b/packages/algolia-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,17 +16,17 @@ "react-instantsearch-hooks-web": "^6.47.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-search": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-search": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 370cd5ae5f..6daa40a6b4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/cli/package.json b/packages/cli/package.json index a1e1f09a83..b2cdf93dee 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -38,11 +38,11 @@ "tslib": "^2.6.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/hygraph-cli": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/hygraph-cli": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1", "react": "^18.2.0" }, diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index 13a4dda8a1..64f5441dc0 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index 4d6b667d2e..649dc33f93 100644 --- a/packages/demo-magento-graphcommerce/package.json +++ b/packages/demo-magento-graphcommerce/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/demo-magento-graphcommerce", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,14 +15,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index e78f86758b..292ece2df5 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index b2842ea4a9..14c9372ab6 100644 --- a/packages/ecommerce-ui/package.json +++ b/packages/ecommerce-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/ecommerce-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index e48734f0d9..c059ea60ad 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 996ce96558..2e0caf06ea 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 46b2253572..b256c028b3 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "scripts": { "dev": "next", "build": "next build", @@ -38,9 +38,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 6ee5632396..582b546413 100644 --- a/packages/framer-next-pages/package.json +++ b/packages/framer-next-pages/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-next-pages", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "framer-motion": "^10.0.0", "next": "*", "react": "^18.2.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index bb3ac323dc..5d61547561 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index e717e42575..67db4f0bbd 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index 6ce807fe25..d35925df6f 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index df4227a570..8e788cd08e 100644 --- a/packages/framer-scroller/package.json +++ b/packages/framer-scroller/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-scroller", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/react": "^4.2.1", "@mui/material": "^5.10.16", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index 2cc92f32fc..c7b9ca81d9 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 25c157e7c7..7b69e55bc7 100644 --- a/packages/framer-utils/package.json +++ b/packages/framer-utils/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-utils", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "framer-motion": "^10.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index b2c3af3d72..e5e967f87b 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index e1141c8e31..07bfdaaf5f 100644 --- a/packages/googleanalytics/package.json +++ b/packages/googleanalytics/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googleanalytics", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ "@types/gtag.js": "^0.0.18" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index 8c7b0e0edb..e3160a37c3 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 50b8441081..0a5b79f68f 100644 --- a/packages/googlerecaptcha/package.json +++ b/packages/googlerecaptcha/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googlerecaptcha", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ "@types/grecaptcha": "^3.0.7" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index c168328cbe..c2eb8ff6eb 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index c3738991e7..f9d855531d 100644 --- a/packages/googletagmanager/package.json +++ b/packages/googletagmanager/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googletagmanager", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,10 +15,10 @@ "@types/gapi.client.tagmanager": "^2.0.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index a7ae52e7c6..527bed23f8 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index eeaa12d11b..199a634bff 100644 --- a/packages/graphql-mesh/package.json +++ b/packages/graphql-mesh/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-mesh", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "main": "index.ts", "dependencies": { "@graphql-mesh/apollo-link": "latest", @@ -24,9 +24,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1" }, "devDependencies": { diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 98612a36bf..b2d2247bcb 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 5bd5fbff03..8935318786 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,8 +13,8 @@ } }, "dependencies": { - "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.88", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.88", + "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.89", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.89", "@graphql-codegen/add": "5.0.0", "@graphql-codegen/fragment-matcher": "5.0.0", "@graphql-codegen/introspection": "4.0.0", @@ -28,9 +28,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index bb8832bd13..8f1a66aa52 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index fa2e76ae5d..2af6f48ad3 100644 --- a/packages/hygraph-cli/package.json +++ b/packages/hygraph-cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -19,10 +19,10 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "dotenv": "^16.1.4", "graphql": "^16.7.1" }, diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index 42594e3b6f..f0387c5640 100644 --- a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows-ui +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index 5c5c2165cc..f47141ca9a 100644 --- a/packages/hygraph-dynamic-rows-ui/package.json +++ b/packages/hygraph-dynamic-rows-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "type": "commonjs", "prettier": "@graphcommerce/prettier-config-pwa", @@ -17,7 +17,7 @@ }, "dependencies": { "@apollo/client": "~3.8.8", - "@graphcommerce/next-config": "8.0.0-canary.88", + "@graphcommerce/next-config": "8.0.0-canary.89", "@hygraph/app-sdk-react": "^0.0.3", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", @@ -32,9 +32,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@types/react-is": "^18.2.4", "babel-plugin-macros": "^3.1.0", "eslint": "8.55.0", diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index 4cc5849ce4..f0fd7fb832 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index 19cff429fe..c6e24ecbb2 100644 --- a/packages/hygraph-dynamic-rows/package.json +++ b/packages/hygraph-dynamic-rows/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphcms-ui": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphcms-ui": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index 3d1beecadc..ab8232e961 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index 47860b8d59..ad670972a4 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index 5e70487a80..cc4ec200c3 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 0eb9ff003d..575c1f16d1 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index bf66b18afb..523afc0781 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/image/package.json b/packages/image/package.json index f20323cbc9..37116932bc 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/image", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,10 +15,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index 8e51052697..5178f8bbdb 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index 788e83ca64..b904d7d54f 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lighthouse", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,9 +13,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "next": "*" } } diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index eeaeb1c7e3..728a297865 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index 127cc2015f..dd23248516 100644 --- a/packages/lingui-next/package.json +++ b/packages/lingui-next/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lingui-next", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "@lingui/conf": "4.6.0" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-billing-address/CHANGELOG.md b/packages/magento-cart-billing-address/CHANGELOG.md index f5e753a089..03821b0a58 100644 --- a/packages/magento-cart-billing-address/CHANGELOG.md +++ b/packages/magento-cart-billing-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-billing-address/package.json b/packages/magento-cart-billing-address/package.json index 75b32bb01f..43be0df770 100644 --- a/packages/magento-cart-billing-address/package.json +++ b/packages/magento-cart-billing-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-billing-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index 52905b9918..bd10133906 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index 31716b927f..72224a5c84 100644 --- a/packages/magento-cart-checkout/package.json +++ b/packages/magento-cart-checkout/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-checkout", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 37380a5ad2..5d7a40c077 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 66d48ccdcd..2e4185ab08 100644 --- a/packages/magento-cart-coupon/package.json +++ b/packages/magento-cart-coupon/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-coupon", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index c74b6390a1..1fec57e84a 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index 72539e5838..ec2dc75118 100644 --- a/packages/magento-cart-email/package.json +++ b/packages/magento-cart-email/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-email", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index 1093a324f4..91da3f0086 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index 3cbffd3a28..b02da51596 100644 --- a/packages/magento-cart-items/package.json +++ b/packages/magento-cart-items/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-items", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index d343516b77..690c329a1f 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index 930725a59b..e9af549f30 100644 --- a/packages/magento-cart-payment-method/package.json +++ b/packages/magento-cart-payment-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-payment-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index 9754d26ff9..8487d4d86e 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index f75cca7d91..30cf0d3123 100644 --- a/packages/magento-cart-pickup/package.json +++ b/packages/magento-cart-pickup/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-pickup", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index a1962de1d0..d7de3493c1 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 0be9f63141..e4ca046f94 100644 --- a/packages/magento-cart-shipping-address/package.json +++ b/packages/magento-cart-shipping-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index c84a3bd2c6..69e2911efe 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 9e2c0d9afb..67b59d6dfe 100644 --- a/packages/magento-cart-shipping-method/package.json +++ b/packages/magento-cart-shipping-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index b071dcbfdb..e89275cc01 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index 56726248d0..f9027fd226 100644 --- a/packages/magento-cart/package.json +++ b/packages/magento-cart/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index 3b6fda7acc..be8c30f333 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index c8daf6b080..3ecc8dcfae 100644 --- a/packages/magento-category/package.json +++ b/packages/magento-category/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-category", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index e7627cc919..c4eb9bb7a9 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 91dc25bfa7..4ebe0b5b20 100644 --- a/packages/magento-cms/package.json +++ b/packages/magento-cms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,11 +12,11 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index 07302d7877..b9e887cf95 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index 8be73f4b71..2d1b474899 100644 --- a/packages/magento-compare/package.json +++ b/packages/magento-compare/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-compare", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-account/CHANGELOG.md b/packages/magento-customer-account/CHANGELOG.md index 87f009aeb6..07470df3da 100644 --- a/packages/magento-customer-account/CHANGELOG.md +++ b/packages/magento-customer-account/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-customer-account/package.json b/packages/magento-customer-account/package.json index f807ffef50..12be02aa8d 100644 --- a/packages/magento-customer-account/package.json +++ b/packages/magento-customer-account/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-account", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88" + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89" } } diff --git a/packages/magento-customer-order/CHANGELOG.md b/packages/magento-customer-order/CHANGELOG.md index 58e540300c..80929fb11d 100644 --- a/packages/magento-customer-order/CHANGELOG.md +++ b/packages/magento-customer-order/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-customer-order/package.json b/packages/magento-customer-order/package.json index 6bfd301130..13ce146865 100644 --- a/packages/magento-customer-order/package.json +++ b/packages/magento-customer-order/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-order", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index 2b861b4c13..c544cf727b 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ### Patch Changes diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index ddf2ca8926..cf97d10cbc 100644 --- a/packages/magento-customer/package.json +++ b/packages/magento-customer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 9485228a04..f04eb6aabc 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index 6d7433204b..24664c4b01 100644 --- a/packages/magento-graphql/package.json +++ b/packages/magento-graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index 7b8882113a..b6a9c42cf8 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index b4bde36345..73243a6c3b 100644 --- a/packages/magento-newsletter/package.json +++ b/packages/magento-newsletter/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-newsletter", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-pagebuilder/CHANGELOG.md b/packages/magento-pagebuilder/CHANGELOG.md index f70419c13e..8305dd8023 100644 --- a/packages/magento-pagebuilder/CHANGELOG.md +++ b/packages/magento-pagebuilder/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-pagebuilder +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-pagebuilder/package.json b/packages/magento-pagebuilder/package.json index f87873325c..6a7ac8343d 100644 --- a/packages/magento-pagebuilder/package.json +++ b/packages/magento-pagebuilder/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-pagebuilder", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,15 +18,15 @@ "jsdom": "^23.0.1" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-category": "^8.0.0-canary.88", - "@graphcommerce/magento-cms": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-category": "^8.0.0-canary.89", + "@graphcommerce/magento-cms": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index 790b625271..751bc609c4 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 2720282cb0..796e0310a8 100644 --- a/packages/magento-payment-adyen/package.json +++ b/packages/magento-payment-adyen/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-adyen", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 89f6fc47fb..1ad4497558 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index f84f073bb2..53784c38f4 100644 --- a/packages/magento-payment-braintree/package.json +++ b/packages/magento-payment-braintree/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-braintree", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,19 +18,19 @@ "braintree-web": "^3.97.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index 9aca626de4..1ad76960ba 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 1121ab1f62..f10319255c 100644 --- a/packages/magento-payment-included/package.json +++ b/packages/magento-payment-included/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-included", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index 770243e89f..48ecd2c3ba 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index 2f71985fda..c45e079782 100644 --- a/packages/magento-payment-klarna/package.json +++ b/packages/magento-payment-klarna/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-klarna", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,14 +13,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index db1fb18a22..975d9cb1c3 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index e73d063cc6..1002647138 100644 --- a/packages/magento-payment-multisafepay/package.json +++ b/packages/magento-payment-multisafepay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-multisafepay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index 5cb6269ff7..b51aef15a2 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index 1ecafe1c4c..ca89574df2 100644 --- a/packages/magento-payment-paypal/package.json +++ b/packages/magento-payment-paypal/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-paypal", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index 30eb3e6934..7474e75e2a 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index 47c1a30dcd..c9f2b85369 100644 --- a/packages/magento-product-bundle/package.json +++ b/packages/magento-product-bundle/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-bundle", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.88", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index 299ce13909..dce57a3529 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 590fd2e8e8..340c7a45c7 100644 --- a/packages/magento-product-configurable/package.json +++ b/packages/magento-product-configurable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-configurable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/lingui-next": "8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.88", - "@graphcommerce/magento-category": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/lingui-next": "8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", + "@graphcommerce/magento-category": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 004e5e89ab..70a684d146 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 0b6a788b1a..9760599ed8 100644 --- a/packages/magento-product-downloadable/package.json +++ b/packages/magento-product-downloadable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-downloadable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 68f94d52a9..5e7bdcfd33 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index e854d9804d..199492abe6 100644 --- a/packages/magento-product-grouped/package.json +++ b/packages/magento-product-grouped/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-grouped", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.88", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 9e7c9be88a..ae2c7a356f 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 9d8b6ad0a8..87eb0c00a0 100644 --- a/packages/magento-product-simple/package.json +++ b/packages/magento-product-simple/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-simple", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index 3ed73503ce..6ec4899a0f 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index 68893cddc2..6a8866a21b 100644 --- a/packages/magento-product-virtual/package.json +++ b/packages/magento-product-virtual/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-virtual", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index ce2a5d1f43..4330dcdc62 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index f3346f4ccf..17adfcda87 100644 --- a/packages/magento-product/package.json +++ b/packages/magento-product/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-recently-viewed-products/CHANGELOG.md b/packages/magento-recently-viewed-products/CHANGELOG.md index 6f16254303..55c3884e61 100644 --- a/packages/magento-recently-viewed-products/CHANGELOG.md +++ b/packages/magento-recently-viewed-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-recently-viewed-products +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index e4f4609767..7fef56b6cb 100644 --- a/packages/magento-recently-viewed-products/package.json +++ b/packages/magento-recently-viewed-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-recently-viewed-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index 374fb2a287..e69d68e0db 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index f88b8b70a4..82c7b181b0 100644 --- a/packages/magento-review/package.json +++ b/packages/magento-review/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-review", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,17 +18,17 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index 01920e8b28..cd61246017 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index f07e60dcaf..8498fb23ab 100644 --- a/packages/magento-search/package.json +++ b/packages/magento-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 7403f67db2..5e7e541b83 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index 310427601a..38436e27a8 100644 --- a/packages/magento-store/package.json +++ b/packages/magento-store/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-store", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 577b8935d7..7f365628f6 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index ad2f47961e..fbb6726331 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-customer": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-config": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-customer": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-config": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index 6067f221e9..adc406fb50 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index e23f214e26..1a719be042 100644 --- a/packages/mollie-magento-payment/package.json +++ b/packages/mollie-magento-payment/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/mollie-magento-payment", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.88", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/graphql": "^8.0.0-canary.88", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/magento-cart": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.88", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.88", - "@graphcommerce/magento-product": "^8.0.0-canary.88", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.88", - "@graphcommerce/magento-store": "^8.0.0-canary.88", - "@graphcommerce/next-ui": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/react-hook-form": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/graphql": "^8.0.0-canary.89", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/magento-cart": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", + "@graphcommerce/magento-product": "^8.0.0-canary.89", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", + "@graphcommerce/magento-store": "^8.0.0-canary.89", + "@graphcommerce/next-ui": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/react-hook-form": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index fd4cef8ee2..738b7f93b7 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index fb09b99279..f10a19e3f5 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -25,14 +25,14 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.88", - "@graphcommerce/framer-scroller": "^8.0.0-canary.88", - "@graphcommerce/framer-utils": "^8.0.0-canary.88", - "@graphcommerce/image": "^8.0.0-canary.88", - "@graphcommerce/lingui-next": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", + "@graphcommerce/framer-scroller": "^8.0.0-canary.89", + "@graphcommerce/framer-utils": "^8.0.0-canary.89", + "@graphcommerce/image": "^8.0.0-canary.89", + "@graphcommerce/lingui-next": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 4f9031f20d..380f830a9b 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index d50a7f6647..8cf62ec788 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/react-hook-form", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,9 +16,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index 0644e957c4..22cf9d0386 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index ec44f29b03..b9cb9713a9 100644 --- a/packagesDev/browserslist-config/package.json +++ b/packagesDev/browserslist-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/browserslist-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "main": "index.js", "sideEffects": false } diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 4118065138..67472dacf3 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index 5d8aa04e69..0b36830147 100644 --- a/packagesDev/changeset-changelog/package.json +++ b/packagesDev/changeset-changelog/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/changeset-changelog", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index eb362b006e..98211d2d0e 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index 85f1190825..22dfc29fd6 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "main": "index.js", "dependencies": { - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.88", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", "@next/eslint-plugin-next": "14.0.4", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 58caadcc6c..c55d78d0b8 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 038771e3eb..4774b01062 100644 --- a/packagesDev/graphql-codegen-markdown-docs/package.json +++ b/packagesDev/graphql-codegen-markdown-docs/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-markdown-docs", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index e4eaefa5ca..090522b0a5 100644 --- a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md +++ b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index db783ba4dd..3c9990d3b9 100644 --- a/packagesDev/graphql-codegen-near-operation-file/package.json +++ b/packagesDev/graphql-codegen-near-operation-file/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-near-operation-file", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index 4b812b9657..f17b576b1b 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 410648ca92..11de41d439 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "type": "commonjs", "main": "dist/index.js", @@ -27,8 +27,8 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.88", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.88", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", "graphql": "^16.7.1" }, "prettier": "@graphcommerce/prettier-config-pwa", diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index b966786da7..9201817f23 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 88831ac22f..81840f6a6f 100644 --- a/packagesDev/next-config/package.json +++ b/packagesDev/next-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-config", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index 33f7d2ebf5..cc4d60f6f3 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 1e02acc1f1..f2c131b28a 100644 --- a/packagesDev/prettier-config/package.json +++ b/packagesDev/prettier-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/prettier-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "dependencies": { "prettier-plugin-jsdoc": "^1.1.1" }, diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index 70eb837c54..a7656878cc 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.89 + ## 8.0.0-canary.88 ## 8.0.0-canary.87 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index f66a7d831f..0658f5333f 100644 --- a/packagesDev/typescript-config/package.json +++ b/packagesDev/typescript-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/typescript-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.88", + "version": "8.0.0-canary.89", "sideEffects": false, "devDependencies": { "@tsconfig/node18": "^18.2.2" diff --git a/yarn.lock b/yarn.lock index d1d96a811b..73420c1b38 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2570,14 +2570,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/address-fields-nl@workspace:packages/address-fields-nl" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2595,17 +2595,17 @@ __metadata: algoliasearch: "npm:^4.21.0" react-instantsearch-hooks-web: "npm:^6.47.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-search": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-search": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2630,7 +2630,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/cli@npm:8.0.0-canary.88, @graphcommerce/cli@workspace:packages/cli": +"@graphcommerce/cli@npm:8.0.0-canary.89, @graphcommerce/cli@workspace:packages/cli": version: 0.0.0-use.local resolution: "@graphcommerce/cli@workspace:packages/cli" dependencies: @@ -2649,11 +2649,11 @@ __metadata: rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/hygraph-cli": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/hygraph-cli": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 react: ^18.2.0 bin: @@ -2668,18 +2668,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.88, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": +"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.89, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": version: 0.0.0-use.local resolution: "@graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -2692,20 +2692,20 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/docs@workspace:docs" peerDependencies: - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 languageName: unknown linkType: soft -"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.88, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": +"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.89, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": version: 0.0.0-use.local resolution: "@graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2717,11 +2717,11 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.88, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": +"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.89, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": version: 0.0.0-use.local resolution: "@graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config" dependencies: - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@next/eslint-plugin-next": "npm:14.0.4" "@typescript-eslint/eslint-plugin": "npm:^6.14.0" "@typescript-eslint/parser": "npm:^6.14.0" @@ -2741,9 +2741,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages-example@workspace:packages/framer-next-pages/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2777,14 +2777,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-next-pages@npm:8.0.0-canary.88, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": +"@graphcommerce/framer-next-pages@npm:8.0.0-canary.89, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages@workspace:packages/framer-next-pages" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 framer-motion: ^10.0.0 next: "*" react: ^18.2.0 @@ -2796,9 +2796,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller-example@workspace:packages/framer-scroller/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2832,17 +2832,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-scroller@npm:8.0.0-canary.88, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": +"@graphcommerce/framer-scroller@npm:8.0.0-canary.89, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller@workspace:packages/framer-scroller" dependencies: popmotion: "npm:11.0.5" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/react": ^4.2.1 "@mui/material": ^5.10.16 @@ -2853,37 +2853,37 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-utils@npm:8.0.0-canary.88, @graphcommerce/framer-utils@workspace:packages/framer-utils": +"@graphcommerce/framer-utils@npm:8.0.0-canary.89, @graphcommerce/framer-utils@workspace:packages/framer-utils": version: 0.0.0-use.local resolution: "@graphcommerce/framer-utils@workspace:packages/framer-utils" dependencies: framesync: "npm:^6.1.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 framer-motion: ^10.0.0 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/googleanalytics@npm:8.0.0-canary.88, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": +"@graphcommerce/googleanalytics@npm:8.0.0-canary.89, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": version: 0.0.0-use.local resolution: "@graphcommerce/googleanalytics@workspace:packages/googleanalytics" dependencies: "@types/gtag.js": "npm:^0.0.18" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2900,17 +2900,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.88, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": +"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.89, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": version: 0.0.0-use.local resolution: "@graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha" dependencies: "@types/grecaptcha": "npm:^3.0.7" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2918,32 +2918,32 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googletagmanager@npm:8.0.0-canary.88, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": +"@graphcommerce/googletagmanager@npm:8.0.0-canary.89, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": version: 0.0.0-use.local resolution: "@graphcommerce/googletagmanager@workspace:packages/googletagmanager" dependencies: "@types/gapi.client.tagmanager": "npm:^2.0.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/graphcms-ui@npm:8.0.0-canary.88, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": +"@graphcommerce/graphcms-ui@npm:8.0.0-canary.89, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": version: 0.0.0-use.local resolution: "@graphcommerce/graphcms-ui@workspace:packages/hygraph-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2962,14 +2962,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.88, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": +"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.89, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file" dependencies: @@ -2980,14 +2980,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.88, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": +"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.89, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin" dependencies: @@ -3001,13 +3001,13 @@ __metadata: ts-jest: "npm:29.1.1" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-mesh@npm:8.0.0-canary.88, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": +"@graphcommerce/graphql-mesh@npm:8.0.0-canary.89, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-mesh@workspace:packages/graphql-mesh" dependencies: @@ -3030,19 +3030,19 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql@npm:8.0.0-canary.88, @graphcommerce/graphql@workspace:packages/graphql": +"@graphcommerce/graphql@npm:8.0.0-canary.89, @graphcommerce/graphql@workspace:packages/graphql": version: 0.0.0-use.local resolution: "@graphcommerce/graphql@workspace:packages/graphql" dependencies: - "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.88" - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.88" + "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.89" + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.89" "@graphql-codegen/add": "npm:5.0.0" "@graphql-codegen/fragment-matcher": "npm:5.0.0" "@graphql-codegen/introspection": "npm:4.0.0" @@ -3055,16 +3055,16 @@ __metadata: apollo3-cache-persist: "npm:^0.14.1" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.7.1 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/hygraph-cli@npm:8.0.0-canary.88, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": +"@graphcommerce/hygraph-cli@npm:8.0.0-canary.89, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-cli@workspace:packages/hygraph-cli" dependencies: @@ -3076,10 +3076,10 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 dotenv: ^16.1.4 graphql: ^16.7.1 languageName: unknown @@ -3090,10 +3090,10 @@ __metadata: resolution: "@graphcommerce/hygraph-dynamic-rows-ui@workspace:packages/hygraph-dynamic-rows-ui" dependencies: "@apollo/client": "npm:~3.8.8" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/next-config": "npm:8.0.0-canary.88" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/next-config": "npm:8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@hygraph/app-sdk-react": "npm:^0.0.3" "@lingui/core": "npm:^4.2.1" "@lingui/macro": "npm:^4.2.1" @@ -3114,17 +3114,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.88, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": +"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.89, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphcms-ui": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphcms-ui": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3136,9 +3136,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/image-example@workspace:packages/image/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3172,14 +3172,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/image@npm:8.0.0-canary.88, @graphcommerce/image@workspace:packages/image": +"@graphcommerce/image@npm:8.0.0-canary.89, @graphcommerce/image@workspace:packages/image": version: 0.0.0-use.local resolution: "@graphcommerce/image@workspace:packages/image" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3191,24 +3191,24 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/lighthouse@workspace:packages/lighthouse" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 next: "*" languageName: unknown linkType: soft -"@graphcommerce/lingui-next@npm:8.0.0-canary.88, @graphcommerce/lingui-next@workspace:packages/lingui-next": +"@graphcommerce/lingui-next@npm:8.0.0-canary.89, @graphcommerce/lingui-next@workspace:packages/lingui-next": version: 0.0.0-use.local resolution: "@graphcommerce/lingui-next@workspace:packages/lingui-next" dependencies: "@lingui/conf": "npm:4.6.0" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3218,21 +3218,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.88, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": +"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.89, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3244,22 +3244,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.88, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": +"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.89, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3271,19 +3271,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.88, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": +"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.89, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3295,22 +3295,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-email@npm:8.0.0-canary.88, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": +"@graphcommerce/magento-cart-email@npm:8.0.0-canary.89, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-email@workspace:packages/magento-cart-email" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3322,21 +3322,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-items@npm:8.0.0-canary.88, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": +"@graphcommerce/magento-cart-items@npm:8.0.0-canary.89, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-items@workspace:packages/magento-cart-items" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3348,21 +3348,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.88, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": +"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.89, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3378,18 +3378,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-pickup@workspace:packages/magento-cart-pickup" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3401,20 +3401,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.88, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": +"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.89, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3426,21 +3426,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.88, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": +"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.89, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3452,24 +3452,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart@npm:8.0.0-canary.88, @graphcommerce/magento-cart@workspace:packages/magento-cart": +"@graphcommerce/magento-cart@npm:8.0.0-canary.89, @graphcommerce/magento-cart@workspace:packages/magento-cart": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart@workspace:packages/magento-cart" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3481,19 +3481,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-category@npm:8.0.0-canary.88, @graphcommerce/magento-category@workspace:packages/magento-category": +"@graphcommerce/magento-category@npm:8.0.0-canary.89, @graphcommerce/magento-category@workspace:packages/magento-category": version: 0.0.0-use.local resolution: "@graphcommerce/magento-category@workspace:packages/magento-category" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3504,15 +3504,15 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cms@npm:8.0.0-canary.88, @graphcommerce/magento-cms@workspace:packages/magento-cms": +"@graphcommerce/magento-cms@npm:8.0.0-canary.89, @graphcommerce/magento-cms@workspace:packages/magento-cms": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cms@workspace:packages/magento-cms" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3523,20 +3523,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-compare@npm:8.0.0-canary.88, @graphcommerce/magento-compare@workspace:packages/magento-compare": +"@graphcommerce/magento-compare@npm:8.0.0-canary.89, @graphcommerce/magento-compare@workspace:packages/magento-compare": version: 0.0.0-use.local resolution: "@graphcommerce/magento-compare@workspace:packages/magento-compare" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3553,10 +3553,10 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-account@workspace:packages/magento-customer-account" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 languageName: unknown linkType: soft @@ -3564,16 +3564,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-order@workspace:packages/magento-customer-order" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3585,23 +3585,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-customer@npm:8.0.0-canary.88, @graphcommerce/magento-customer@workspace:packages/magento-customer": +"@graphcommerce/magento-customer@npm:8.0.0-canary.89, @graphcommerce/magento-customer@workspace:packages/magento-customer": version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer@workspace:packages/magento-customer" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3620,56 +3620,56 @@ __metadata: dependencies: "@apollo/client": "npm:~3.8.8" "@ducanh2912/next-pwa": "npm:9.7.2" - "@graphcommerce/cli": "npm:8.0.0-canary.88" - "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.88" - "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.88" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.88" - "@graphcommerce/framer-scroller": "npm:8.0.0-canary.88" - "@graphcommerce/framer-utils": "npm:8.0.0-canary.88" - "@graphcommerce/googleanalytics": "npm:8.0.0-canary.88" - "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.88" - "@graphcommerce/googletagmanager": "npm:8.0.0-canary.88" - "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.88" - "@graphcommerce/graphql": "npm:8.0.0-canary.88" - "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.88" - "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.88" - "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.88" - "@graphcommerce/image": "npm:8.0.0-canary.88" - "@graphcommerce/lingui-next": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.88" - "@graphcommerce/magento-category": "npm:8.0.0-canary.88" - "@graphcommerce/magento-cms": "npm:8.0.0-canary.88" - "@graphcommerce/magento-compare": "npm:8.0.0-canary.88" - "@graphcommerce/magento-customer": "npm:8.0.0-canary.88" - "@graphcommerce/magento-graphql": "npm:8.0.0-canary.88" - "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.88" - "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.88" - "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.88" - "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.88" - "@graphcommerce/magento-review": "npm:8.0.0-canary.88" - "@graphcommerce/magento-search": "npm:8.0.0-canary.88" - "@graphcommerce/magento-store": "npm:8.0.0-canary.88" - "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.88" - "@graphcommerce/next-config": "npm:8.0.0-canary.88" - "@graphcommerce/next-ui": "npm:8.0.0-canary.88" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.88" - "@graphcommerce/react-hook-form": "npm:8.0.0-canary.88" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.88" + "@graphcommerce/cli": "npm:8.0.0-canary.89" + "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.89" + "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.89" + "@graphcommerce/framer-scroller": "npm:8.0.0-canary.89" + "@graphcommerce/framer-utils": "npm:8.0.0-canary.89" + "@graphcommerce/googleanalytics": "npm:8.0.0-canary.89" + "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.89" + "@graphcommerce/googletagmanager": "npm:8.0.0-canary.89" + "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.89" + "@graphcommerce/graphql": "npm:8.0.0-canary.89" + "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.89" + "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.89" + "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.89" + "@graphcommerce/image": "npm:8.0.0-canary.89" + "@graphcommerce/lingui-next": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.89" + "@graphcommerce/magento-category": "npm:8.0.0-canary.89" + "@graphcommerce/magento-cms": "npm:8.0.0-canary.89" + "@graphcommerce/magento-compare": "npm:8.0.0-canary.89" + "@graphcommerce/magento-customer": "npm:8.0.0-canary.89" + "@graphcommerce/magento-graphql": "npm:8.0.0-canary.89" + "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.89" + "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.89" + "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.89" + "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.89" + "@graphcommerce/magento-review": "npm:8.0.0-canary.89" + "@graphcommerce/magento-search": "npm:8.0.0-canary.89" + "@graphcommerce/magento-store": "npm:8.0.0-canary.89" + "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.89" + "@graphcommerce/next-config": "npm:8.0.0-canary.89" + "@graphcommerce/next-ui": "npm:8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/react-hook-form": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3704,33 +3704,33 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-graphql@npm:8.0.0-canary.88, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": +"@graphcommerce/magento-graphql@npm:8.0.0-canary.89, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": version: 0.0.0-use.local resolution: "@graphcommerce/magento-graphql@workspace:packages/magento-graphql" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/magento-newsletter@npm:8.0.0-canary.88, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": +"@graphcommerce/magento-newsletter@npm:8.0.0-canary.89, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": version: 0.0.0-use.local resolution: "@graphcommerce/magento-newsletter@workspace:packages/magento-newsletter" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3749,15 +3749,15 @@ __metadata: "@types/jsdom": "npm:^21.1.6" jsdom: "npm:^23.0.1" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-category": ^8.0.0-canary.88 - "@graphcommerce/magento-cms": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-category": ^8.0.0-canary.89 + "@graphcommerce/magento-cms": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3773,18 +3773,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-adyen@workspace:packages/magento-payment-adyen" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3802,19 +3802,19 @@ __metadata: "@types/braintree-web": "npm:^3.96.10" braintree-web: "npm:^3.97.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3826,23 +3826,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-payment-included@npm:8.0.0-canary.88, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": +"@graphcommerce/magento-payment-included@npm:8.0.0-canary.89, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-included@workspace:packages/magento-payment-included" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3858,14 +3858,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-klarna@workspace:packages/magento-payment-klarna" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3881,22 +3881,22 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-multisafepay@workspace:packages/magento-payment-multisafepay" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3911,16 +3911,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-paypal@workspace:packages/magento-payment-paypal" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3932,23 +3932,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.88, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": +"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.89, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.88 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3959,27 +3959,27 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.88, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": +"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.89, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/lingui-next": 8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.88 - "@graphcommerce/magento-category": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/lingui-next": 8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 + "@graphcommerce/magento-category": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3991,18 +3991,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.88, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": +"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.89, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4012,18 +4012,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.88, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": +"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.89, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.88 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4033,18 +4033,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-simple@npm:8.0.0-canary.88, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": +"@graphcommerce/magento-product-simple@npm:8.0.0-canary.89, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-simple@workspace:packages/magento-product-simple" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4054,18 +4054,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.88, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": +"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.89, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4075,25 +4075,25 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product@npm:8.0.0-canary.88, @graphcommerce/magento-product@workspace:packages/magento-product": +"@graphcommerce/magento-product@npm:8.0.0-canary.89, @graphcommerce/magento-product@workspace:packages/magento-product": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product@workspace:packages/magento-product" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4105,20 +4105,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.88, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": +"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.89, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": version: 0.0.0-use.local resolution: "@graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -4127,24 +4127,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-review@npm:8.0.0-canary.88, @graphcommerce/magento-review@workspace:packages/magento-review": +"@graphcommerce/magento-review@npm:8.0.0-canary.89, @graphcommerce/magento-review@workspace:packages/magento-review": version: 0.0.0-use.local resolution: "@graphcommerce/magento-review@workspace:packages/magento-review" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4155,19 +4155,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-search@npm:8.0.0-canary.88, @graphcommerce/magento-search@workspace:packages/magento-search": +"@graphcommerce/magento-search@npm:8.0.0-canary.89, @graphcommerce/magento-search@workspace:packages/magento-search": version: 0.0.0-use.local resolution: "@graphcommerce/magento-search@workspace:packages/magento-search" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4178,17 +4178,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-store@npm:8.0.0-canary.88, @graphcommerce/magento-store@workspace:packages/magento-store": +"@graphcommerce/magento-store@npm:8.0.0-canary.89, @graphcommerce/magento-store@workspace:packages/magento-store": version: 0.0.0-use.local resolution: "@graphcommerce/magento-store@workspace:packages/magento-store" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4199,24 +4199,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-wishlist@npm:8.0.0-canary.88, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": +"@graphcommerce/magento-wishlist@npm:8.0.0-canary.89, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": version: 0.0.0-use.local resolution: "@graphcommerce/magento-wishlist@workspace:packages/magento-wishlist" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-customer": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-config": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-customer": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-config": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4232,21 +4232,21 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/mollie-magento-payment@workspace:packages/mollie-magento-payment" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.88 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/graphql": ^8.0.0-canary.88 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/magento-cart": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.88 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.88 - "@graphcommerce/magento-product": ^8.0.0-canary.88 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.88 - "@graphcommerce/magento-store": ^8.0.0-canary.88 - "@graphcommerce/next-ui": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/react-hook-form": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/graphql": ^8.0.0-canary.89 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/magento-cart": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 + "@graphcommerce/magento-product": ^8.0.0-canary.89 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 + "@graphcommerce/magento-store": ^8.0.0-canary.89 + "@graphcommerce/next-ui": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/react-hook-form": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4257,7 +4257,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-config@npm:8.0.0-canary.88, @graphcommerce/next-config@workspace:packagesDev/next-config": +"@graphcommerce/next-config@npm:8.0.0-canary.89, @graphcommerce/next-config@workspace:packagesDev/next-config": version: 0.0.0-use.local resolution: "@graphcommerce/next-config@workspace:packagesDev/next-config" dependencies: @@ -4282,7 +4282,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-ui@npm:8.0.0-canary.88, @graphcommerce/next-ui@workspace:packages/next-ui": +"@graphcommerce/next-ui@npm:8.0.0-canary.89, @graphcommerce/next-ui@workspace:packages/next-ui": version: 0.0.0-use.local resolution: "@graphcommerce/next-ui@workspace:packages/next-ui" dependencies: @@ -4296,14 +4296,14 @@ __metadata: react-is: "npm:^18.2.0" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.88 - "@graphcommerce/framer-scroller": ^8.0.0-canary.88 - "@graphcommerce/framer-utils": ^8.0.0-canary.88 - "@graphcommerce/image": ^8.0.0-canary.88 - "@graphcommerce/lingui-next": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 + "@graphcommerce/framer-scroller": ^8.0.0-canary.89 + "@graphcommerce/framer-utils": ^8.0.0-canary.89 + "@graphcommerce/image": ^8.0.0-canary.89 + "@graphcommerce/lingui-next": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4316,7 +4316,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.88, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": +"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.89, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": version: 0.0.0-use.local resolution: "@graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config" dependencies: @@ -4326,16 +4326,16 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/react-hook-form@npm:8.0.0-canary.88, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": +"@graphcommerce/react-hook-form@npm:8.0.0-canary.89, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": version: 0.0.0-use.local resolution: "@graphcommerce/react-hook-form@workspace:packages/react-hook-form" dependencies: "@testing-library/react": "npm:^14.1.2" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.88 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.88 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 graphql: ^16.6.0 react: ^18.2.0 react-dom: ^18.2.0 @@ -4343,7 +4343,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.88, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": +"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.89, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": version: 0.0.0-use.local resolution: "@graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config" dependencies: From 3812eb42b9027488abc598351f9d65b6e1fdb513 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:41:36 +0000 Subject: [PATCH 09/75] chore(release): update prerelease versions --- .changeset/pre.json | 1 + docs/CHANGELOG.md | 2 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 102 +- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 +- packages/algolia-search/CHANGELOG.md | 2 + packages/algolia-search/package.json | 24 +- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 12 +- .../demo-magento-graphcommerce/CHANGELOG.md | 2 + .../demo-magento-graphcommerce/package.json | 18 +- packages/ecommerce-ui/CHANGELOG.md | 2 + packages/ecommerce-ui/package.json | 14 +- packages/framer-next-pages/CHANGELOG.md | 2 + .../framer-next-pages/example/CHANGELOG.md | 2 + .../framer-next-pages/example/package.json | 8 +- packages/framer-next-pages/package.json | 10 +- packages/framer-scroller/CHANGELOG.md | 2 + packages/framer-scroller/example/CHANGELOG.md | 2 + packages/framer-scroller/example/package.json | 8 +- packages/framer-scroller/package.json | 12 +- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 22 +- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 12 +- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 10 +- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 12 +- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/package.json | 10 +- packages/hygraph-dynamic-rows-ui/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows-ui/package.json | 10 +- packages/hygraph-dynamic-rows/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows/package.json | 16 +- packages/hygraph-ui/CHANGELOG.md | 2 + packages/hygraph-ui/package.json | 14 +- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 8 +- packages/image/package.json | 10 +- packages/lighthouse/CHANGELOG.md | 2 + packages/lighthouse/package.json | 8 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +- .../magento-cart-billing-address/CHANGELOG.md | 2 + .../magento-cart-billing-address/package.json | 24 +- packages/magento-cart-checkout/CHANGELOG.md | 2 + packages/magento-cart-checkout/package.json | 26 +- packages/magento-cart-coupon/CHANGELOG.md | 2 + packages/magento-cart-coupon/package.json | 20 +- packages/magento-cart-email/CHANGELOG.md | 2 + packages/magento-cart-email/package.json | 26 +- packages/magento-cart-items/CHANGELOG.md | 2 + packages/magento-cart-items/package.json | 24 +- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 24 +- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 +- .../CHANGELOG.md | 2 + .../package.json | 22 +- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 24 +- packages/magento-cart/CHANGELOG.md | 7 + packages/magento-cart/package.json | 30 +- packages/magento-category/CHANGELOG.md | 2 + packages/magento-category/package.json | 20 +- packages/magento-cms/CHANGELOG.md | 2 + packages/magento-cms/package.json | 12 +- packages/magento-compare/CHANGELOG.md | 2 + packages/magento-compare/package.json | 22 +- .../magento-customer-account/CHANGELOG.md | 2 + .../magento-customer-account/package.json | 10 +- packages/magento-customer-order/CHANGELOG.md | 2 + packages/magento-customer-order/package.json | 22 +- packages/magento-customer/CHANGELOG.md | 7 + packages/magento-customer/package.json | 28 +- packages/magento-graphql/CHANGELOG.md | 2 + packages/magento-graphql/package.json | 10 +- packages/magento-newsletter/CHANGELOG.md | 2 + packages/magento-newsletter/package.json | 20 +- packages/magento-pagebuilder/CHANGELOG.md | 2 + packages/magento-pagebuilder/package.json | 20 +- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 +- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 +- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 28 +- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 18 +- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 34 +- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 +- packages/magento-product-bundle/CHANGELOG.md | 2 + packages/magento-product-bundle/package.json | 28 +- .../magento-product-configurable/CHANGELOG.md | 2 + .../magento-product-configurable/package.json | 36 +- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 18 +- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 18 +- packages/magento-product-simple/CHANGELOG.md | 2 + packages/magento-product-simple/package.json | 18 +- packages/magento-product-virtual/CHANGELOG.md | 2 + packages/magento-product-virtual/package.json | 18 +- packages/magento-product/CHANGELOG.md | 2 + packages/magento-product/package.json | 26 +- .../CHANGELOG.md | 2 + .../package.json | 22 +- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 24 +- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 20 +- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 16 +- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 30 +- packages/mollie-magento-payment/CHANGELOG.md | 2 + packages/mollie-magento-payment/package.json | 32 +- packages/next-ui/CHANGELOG.md | 2 + packages/next-ui/package.json | 18 +- packages/react-hook-form/CHANGELOG.md | 2 + packages/react-hook-form/package.json | 8 +- packagesDev/browserslist-config/CHANGELOG.md | 2 + packagesDev/browserslist-config/package.json | 2 +- packagesDev/changeset-changelog/CHANGELOG.md | 2 + packagesDev/changeset-changelog/package.json | 2 +- packagesDev/eslint-config/CHANGELOG.md | 2 + packagesDev/eslint-config/package.json | 4 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 6 +- packagesDev/next-config/CHANGELOG.md | 2 + packagesDev/next-config/package.json | 2 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- yarn.lock | 1280 ++++++++--------- 150 files changed, 1461 insertions(+), 1302 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 8d886a6a38..d082d159a9 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -126,6 +126,7 @@ "mean-clocks-share", "metal-falcons-applaud", "modern-squids-approve", + "nasty-icons-knock", "new-crews-promise", "odd-balloons-sleep", "odd-poets-greet", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 2e02073ca4..31ad0a76f8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ### Patch Changes diff --git a/docs/package.json b/docs/package.json index a50e193de3..6bc634c0a0 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/docs", "homepage": "https://www.graphcommerce.org/docs", "repository": "github:graphcommerce-org/graphcommerce/docs", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89" + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 113735704e..1f9ee5cadd 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 0cccad9735..d54b130e79 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphcms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "private": true, "sideEffects": false, "engines": { @@ -21,53 +21,53 @@ "dependencies": { "@apollo/client": "~3.8.8", "@ducanh2912/next-pwa": "9.7.2", - "@graphcommerce/cli": "8.0.0-canary.89", - "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.89", - "@graphcommerce/ecommerce-ui": "8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "8.0.0-canary.89", - "@graphcommerce/framer-scroller": "8.0.0-canary.89", - "@graphcommerce/framer-utils": "8.0.0-canary.89", - "@graphcommerce/googleanalytics": "8.0.0-canary.89", - "@graphcommerce/googlerecaptcha": "8.0.0-canary.89", - "@graphcommerce/googletagmanager": "8.0.0-canary.89", - "@graphcommerce/graphcms-ui": "8.0.0-canary.89", - "@graphcommerce/graphql": "8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "8.0.0-canary.89", - "@graphcommerce/hygraph-cli": "8.0.0-canary.89", - "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.89", - "@graphcommerce/image": "8.0.0-canary.89", - "@graphcommerce/lingui-next": "8.0.0-canary.89", - "@graphcommerce/magento-cart": "8.0.0-canary.89", - "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.89", - "@graphcommerce/magento-cart-checkout": "8.0.0-canary.89", - "@graphcommerce/magento-cart-coupon": "8.0.0-canary.89", - "@graphcommerce/magento-cart-email": "8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.89", - "@graphcommerce/magento-category": "8.0.0-canary.89", - "@graphcommerce/magento-cms": "8.0.0-canary.89", - "@graphcommerce/magento-compare": "8.0.0-canary.89", - "@graphcommerce/magento-customer": "8.0.0-canary.89", - "@graphcommerce/magento-graphql": "8.0.0-canary.89", - "@graphcommerce/magento-newsletter": "8.0.0-canary.89", - "@graphcommerce/magento-payment-included": "8.0.0-canary.89", - "@graphcommerce/magento-product": "8.0.0-canary.89", - "@graphcommerce/magento-product-bundle": "8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "8.0.0-canary.89", - "@graphcommerce/magento-product-downloadable": "8.0.0-canary.89", - "@graphcommerce/magento-product-grouped": "8.0.0-canary.89", - "@graphcommerce/magento-product-simple": "8.0.0-canary.89", - "@graphcommerce/magento-product-virtual": "8.0.0-canary.89", - "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.89", - "@graphcommerce/magento-review": "8.0.0-canary.89", - "@graphcommerce/magento-search": "8.0.0-canary.89", - "@graphcommerce/magento-store": "8.0.0-canary.89", - "@graphcommerce/magento-wishlist": "8.0.0-canary.89", - "@graphcommerce/next-config": "8.0.0-canary.89", - "@graphcommerce/next-ui": "8.0.0-canary.89", - "@graphcommerce/react-hook-form": "8.0.0-canary.89", + "@graphcommerce/cli": "8.0.0-canary.90", + "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "8.0.0-canary.90", + "@graphcommerce/framer-scroller": "8.0.0-canary.90", + "@graphcommerce/framer-utils": "8.0.0-canary.90", + "@graphcommerce/googleanalytics": "8.0.0-canary.90", + "@graphcommerce/googlerecaptcha": "8.0.0-canary.90", + "@graphcommerce/googletagmanager": "8.0.0-canary.90", + "@graphcommerce/graphcms-ui": "8.0.0-canary.90", + "@graphcommerce/graphql": "8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "8.0.0-canary.90", + "@graphcommerce/hygraph-cli": "8.0.0-canary.90", + "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.90", + "@graphcommerce/image": "8.0.0-canary.90", + "@graphcommerce/lingui-next": "8.0.0-canary.90", + "@graphcommerce/magento-cart": "8.0.0-canary.90", + "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.90", + "@graphcommerce/magento-cart-checkout": "8.0.0-canary.90", + "@graphcommerce/magento-cart-coupon": "8.0.0-canary.90", + "@graphcommerce/magento-cart-email": "8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.90", + "@graphcommerce/magento-category": "8.0.0-canary.90", + "@graphcommerce/magento-cms": "8.0.0-canary.90", + "@graphcommerce/magento-compare": "8.0.0-canary.90", + "@graphcommerce/magento-customer": "8.0.0-canary.90", + "@graphcommerce/magento-graphql": "8.0.0-canary.90", + "@graphcommerce/magento-newsletter": "8.0.0-canary.90", + "@graphcommerce/magento-payment-included": "8.0.0-canary.90", + "@graphcommerce/magento-product": "8.0.0-canary.90", + "@graphcommerce/magento-product-bundle": "8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "8.0.0-canary.90", + "@graphcommerce/magento-product-downloadable": "8.0.0-canary.90", + "@graphcommerce/magento-product-grouped": "8.0.0-canary.90", + "@graphcommerce/magento-product-simple": "8.0.0-canary.90", + "@graphcommerce/magento-product-virtual": "8.0.0-canary.90", + "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.90", + "@graphcommerce/magento-review": "8.0.0-canary.90", + "@graphcommerce/magento-search": "8.0.0-canary.90", + "@graphcommerce/magento-store": "8.0.0-canary.90", + "@graphcommerce/magento-wishlist": "8.0.0-canary.90", + "@graphcommerce/next-config": "8.0.0-canary.90", + "@graphcommerce/next-ui": "8.0.0-canary.90", + "@graphcommerce/react-hook-form": "8.0.0-canary.90", "@lingui/core": "4.6.0", "@lingui/macro": "4.6.0", "@lingui/react": "4.6.0", @@ -90,9 +90,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index 9d52e721d5..88e90fe6ee 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index 10053805ca..f3add741ff 100644 --- a/packages/address-fields-nl/package.json +++ b/packages/address-fields-nl/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/address-fields-nl", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index e0e3b4b922..44d18958ad 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/algolia-search +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index 0f5a062739..c035559655 100644 --- a/packages/algolia-search/package.json +++ b/packages/algolia-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,17 +16,17 @@ "react-instantsearch-hooks-web": "^6.47.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-search": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-search": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6daa40a6b4..34754b6275 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/cli/package.json b/packages/cli/package.json index b2cdf93dee..a67151d798 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -38,11 +38,11 @@ "tslib": "^2.6.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/hygraph-cli": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/hygraph-cli": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1", "react": "^18.2.0" }, diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index 64f5441dc0..a7e82c5299 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/demo-magento-graphcommerce +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index 649dc33f93..b8391a51c8 100644 --- a/packages/demo-magento-graphcommerce/package.json +++ b/packages/demo-magento-graphcommerce/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/demo-magento-graphcommerce", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,14 +15,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 292ece2df5..02b5647303 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index 14c9372ab6..e554de378d 100644 --- a/packages/ecommerce-ui/package.json +++ b/packages/ecommerce-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/ecommerce-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index c059ea60ad..33c3e6a3a5 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index 2e0caf06ea..abe33bc12a 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index b256c028b3..7c08a78c97 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "scripts": { "dev": "next", "build": "next build", @@ -38,9 +38,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 582b546413..37dcaf79cc 100644 --- a/packages/framer-next-pages/package.json +++ b/packages/framer-next-pages/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-next-pages", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "framer-motion": "^10.0.0", "next": "*", "react": "^18.2.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index 5d61547561..d28014bf6c 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index 67db4f0bbd..e01cc7e48a 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index d35925df6f..315e178b8d 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index 8e788cd08e..3131a3cd59 100644 --- a/packages/framer-scroller/package.json +++ b/packages/framer-scroller/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-scroller", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/react": "^4.2.1", "@mui/material": "^5.10.16", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index c7b9ca81d9..34ec7454de 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 7b69e55bc7..711131da7d 100644 --- a/packages/framer-utils/package.json +++ b/packages/framer-utils/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-utils", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "framer-motion": "^10.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index e5e967f87b..0a2619877b 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index 07bfdaaf5f..22a18fd5d3 100644 --- a/packages/googleanalytics/package.json +++ b/packages/googleanalytics/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googleanalytics", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ "@types/gtag.js": "^0.0.18" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index e3160a37c3..1cb3a0e6bf 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 0a5b79f68f..0e29709d0d 100644 --- a/packages/googlerecaptcha/package.json +++ b/packages/googlerecaptcha/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googlerecaptcha", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ "@types/grecaptcha": "^3.0.7" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index c2eb8ff6eb..0f3bd4bd85 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index f9d855531d..0313c697c9 100644 --- a/packages/googletagmanager/package.json +++ b/packages/googletagmanager/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googletagmanager", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,10 +15,10 @@ "@types/gapi.client.tagmanager": "^2.0.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 527bed23f8..952edeb422 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 199a634bff..9ab916fd37 100644 --- a/packages/graphql-mesh/package.json +++ b/packages/graphql-mesh/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-mesh", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "main": "index.ts", "dependencies": { "@graphql-mesh/apollo-link": "latest", @@ -24,9 +24,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1" }, "devDependencies": { diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index b2d2247bcb..b43708df61 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 8935318786..1a50c7aa96 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,8 +13,8 @@ } }, "dependencies": { - "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.89", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.89", + "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.90", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.90", "@graphql-codegen/add": "5.0.0", "@graphql-codegen/fragment-matcher": "5.0.0", "@graphql-codegen/introspection": "4.0.0", @@ -28,9 +28,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 8f1a66aa52..25d662febb 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index 2af6f48ad3..a8b5551ce7 100644 --- a/packages/hygraph-cli/package.json +++ b/packages/hygraph-cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -19,10 +19,10 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "dotenv": "^16.1.4", "graphql": "^16.7.1" }, diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index f0387c5640..2b9f5049d3 100644 --- a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows-ui +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index f47141ca9a..02ea2b251c 100644 --- a/packages/hygraph-dynamic-rows-ui/package.json +++ b/packages/hygraph-dynamic-rows-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "type": "commonjs", "prettier": "@graphcommerce/prettier-config-pwa", @@ -17,7 +17,7 @@ }, "dependencies": { "@apollo/client": "~3.8.8", - "@graphcommerce/next-config": "8.0.0-canary.89", + "@graphcommerce/next-config": "8.0.0-canary.90", "@hygraph/app-sdk-react": "^0.0.3", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", @@ -32,9 +32,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@types/react-is": "^18.2.4", "babel-plugin-macros": "^3.1.0", "eslint": "8.55.0", diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index f0fd7fb832..320cfc5fc3 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index c6e24ecbb2..09059c6b37 100644 --- a/packages/hygraph-dynamic-rows/package.json +++ b/packages/hygraph-dynamic-rows/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphcms-ui": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphcms-ui": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index ab8232e961..2160cf9abf 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index ad670972a4..6d864a8457 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index cc4ec200c3..d8061f9033 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 575c1f16d1..6686e038dc 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 523afc0781..6c64888dc6 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/image/package.json b/packages/image/package.json index 37116932bc..a714bbe5a9 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/image", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,10 +15,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index 5178f8bbdb..d8e4de41fe 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index b904d7d54f..61090af95c 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lighthouse", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,9 +13,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "next": "*" } } diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index 728a297865..d16fd21112 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index dd23248516..a7aadaa260 100644 --- a/packages/lingui-next/package.json +++ b/packages/lingui-next/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lingui-next", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "@lingui/conf": "4.6.0" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-billing-address/CHANGELOG.md b/packages/magento-cart-billing-address/CHANGELOG.md index 03821b0a58..2fa3c40466 100644 --- a/packages/magento-cart-billing-address/CHANGELOG.md +++ b/packages/magento-cart-billing-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-billing-address/package.json b/packages/magento-cart-billing-address/package.json index 43be0df770..73722cd165 100644 --- a/packages/magento-cart-billing-address/package.json +++ b/packages/magento-cart-billing-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-billing-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index bd10133906..0f1b11c150 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index 72224a5c84..efccab15fa 100644 --- a/packages/magento-cart-checkout/package.json +++ b/packages/magento-cart-checkout/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-checkout", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 5d7a40c077..246cb24301 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 2e4185ab08..97a64a60ae 100644 --- a/packages/magento-cart-coupon/package.json +++ b/packages/magento-cart-coupon/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-coupon", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index 1fec57e84a..b14ee56e7b 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index ec2dc75118..8b8f7fb526 100644 --- a/packages/magento-cart-email/package.json +++ b/packages/magento-cart-email/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-email", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index 91da3f0086..3212038f71 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index b02da51596..36f9a68bd0 100644 --- a/packages/magento-cart-items/package.json +++ b/packages/magento-cart-items/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-items", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index 690c329a1f..35c02cf03a 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index e9af549f30..7ea6ed9ec9 100644 --- a/packages/magento-cart-payment-method/package.json +++ b/packages/magento-cart-payment-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-payment-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index 8487d4d86e..ebb2f8cd9c 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 30cf0d3123..0474504a49 100644 --- a/packages/magento-cart-pickup/package.json +++ b/packages/magento-cart-pickup/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-pickup", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index d7de3493c1..96280281f2 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index e4ca046f94..70dbe587fd 100644 --- a/packages/magento-cart-shipping-address/package.json +++ b/packages/magento-cart-shipping-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index 69e2911efe..2476700df0 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 67b59d6dfe..9bdcd7dacc 100644 --- a/packages/magento-cart-shipping-method/package.json +++ b/packages/magento-cart-shipping-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index e89275cc01..10aabea40d 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.0.0-canary.90 + +### Patch Changes + +- [#2170](https://github.com/graphcommerce-org/graphcommerce/pull/2170) [`f3e906f`](https://github.com/graphcommerce-org/graphcommerce/commit/f3e906f7e374ce22d36af29c0f3c8153e18300e6) - fix(GCOM-1317): fix bug where inactive cached cart could be set as currentCartId + ([@FrankHarland](https://github.com/FrankHarland)) + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index f9027fd226..a78370b164 100644 --- a/packages/magento-cart/package.json +++ b/packages/magento-cart/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index be8c30f333..36047473ed 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index 3ecc8dcfae..6def0bb1d0 100644 --- a/packages/magento-category/package.json +++ b/packages/magento-category/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-category", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index c4eb9bb7a9..3d9cef1596 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 4ebe0b5b20..0e6f002148 100644 --- a/packages/magento-cms/package.json +++ b/packages/magento-cms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,11 +12,11 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index b9e887cf95..5b7a83f202 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index 2d1b474899..320a6baee7 100644 --- a/packages/magento-compare/package.json +++ b/packages/magento-compare/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-compare", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-account/CHANGELOG.md b/packages/magento-customer-account/CHANGELOG.md index 07470df3da..ff57214434 100644 --- a/packages/magento-customer-account/CHANGELOG.md +++ b/packages/magento-customer-account/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-customer-account/package.json b/packages/magento-customer-account/package.json index 12be02aa8d..054ad5c156 100644 --- a/packages/magento-customer-account/package.json +++ b/packages/magento-customer-account/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-account", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90" } } diff --git a/packages/magento-customer-order/CHANGELOG.md b/packages/magento-customer-order/CHANGELOG.md index 80929fb11d..206848ffe0 100644 --- a/packages/magento-customer-order/CHANGELOG.md +++ b/packages/magento-customer-order/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-customer-order/package.json b/packages/magento-customer-order/package.json index 13ce146865..948fde3050 100644 --- a/packages/magento-customer-order/package.json +++ b/packages/magento-customer-order/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-order", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index c544cf727b..e147713de3 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.0.0-canary.90 + +### Patch Changes + +- [#2170](https://github.com/graphcommerce-org/graphcommerce/pull/2170) [`f3e906f`](https://github.com/graphcommerce-org/graphcommerce/commit/f3e906f7e374ce22d36af29c0f3c8153e18300e6) - fix(GCOM-1317): fix bug where inactive cached cart could be set as currentCartId + ([@FrankHarland](https://github.com/FrankHarland)) + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index cf97d10cbc..29f14fb9eb 100644 --- a/packages/magento-customer/package.json +++ b/packages/magento-customer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index f04eb6aabc..600330e960 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index 24664c4b01..c868a78709 100644 --- a/packages/magento-graphql/package.json +++ b/packages/magento-graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index b6a9c42cf8..c3004b9a56 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index 73243a6c3b..b69d4378ea 100644 --- a/packages/magento-newsletter/package.json +++ b/packages/magento-newsletter/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-newsletter", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-pagebuilder/CHANGELOG.md b/packages/magento-pagebuilder/CHANGELOG.md index 8305dd8023..5b68774e83 100644 --- a/packages/magento-pagebuilder/CHANGELOG.md +++ b/packages/magento-pagebuilder/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-pagebuilder +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-pagebuilder/package.json b/packages/magento-pagebuilder/package.json index 6a7ac8343d..6226754824 100644 --- a/packages/magento-pagebuilder/package.json +++ b/packages/magento-pagebuilder/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-pagebuilder", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,15 +18,15 @@ "jsdom": "^23.0.1" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-category": "^8.0.0-canary.89", - "@graphcommerce/magento-cms": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-category": "^8.0.0-canary.90", + "@graphcommerce/magento-cms": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index 751bc609c4..9dd13283ca 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 796e0310a8..5437145134 100644 --- a/packages/magento-payment-adyen/package.json +++ b/packages/magento-payment-adyen/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-adyen", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 1ad4497558..4e8e179ea7 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 53784c38f4..103faf0c7e 100644 --- a/packages/magento-payment-braintree/package.json +++ b/packages/magento-payment-braintree/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-braintree", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,19 +18,19 @@ "braintree-web": "^3.97.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index 1ad76960ba..b100905f87 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index f10319255c..2f06d5b5da 100644 --- a/packages/magento-payment-included/package.json +++ b/packages/magento-payment-included/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-included", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index 48ecd2c3ba..02aeaaf382 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index c45e079782..d29f3e0417 100644 --- a/packages/magento-payment-klarna/package.json +++ b/packages/magento-payment-klarna/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-klarna", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,14 +13,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index 975d9cb1c3..dacaf9ff60 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index 1002647138..c91e1e4a73 100644 --- a/packages/magento-payment-multisafepay/package.json +++ b/packages/magento-payment-multisafepay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-multisafepay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index b51aef15a2..4b3238e2d7 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index ca89574df2..a610042c18 100644 --- a/packages/magento-payment-paypal/package.json +++ b/packages/magento-payment-paypal/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-paypal", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index 7474e75e2a..2112ccb329 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index c9f2b85369..e8402edb6d 100644 --- a/packages/magento-product-bundle/package.json +++ b/packages/magento-product-bundle/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-bundle", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index dce57a3529..fa7516dacd 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 340c7a45c7..0bcd373dab 100644 --- a/packages/magento-product-configurable/package.json +++ b/packages/magento-product-configurable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-configurable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/lingui-next": "8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", - "@graphcommerce/magento-category": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/lingui-next": "8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", + "@graphcommerce/magento-category": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 70a684d146..5388e2c4ef 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 9760599ed8..380283f286 100644 --- a/packages/magento-product-downloadable/package.json +++ b/packages/magento-product-downloadable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-downloadable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 5e7bdcfd33..3c4b8ab4e7 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index 199492abe6..9d0ca77580 100644 --- a/packages/magento-product-grouped/package.json +++ b/packages/magento-product-grouped/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-grouped", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.89", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index ae2c7a356f..656a003d1a 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 87eb0c00a0..5d1df28aff 100644 --- a/packages/magento-product-simple/package.json +++ b/packages/magento-product-simple/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-simple", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index 6ec4899a0f..e0b79e2318 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index 6a8866a21b..e7ed16582f 100644 --- a/packages/magento-product-virtual/package.json +++ b/packages/magento-product-virtual/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-virtual", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index 4330dcdc62..82766f9a43 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index 17adfcda87..f8062d9581 100644 --- a/packages/magento-product/package.json +++ b/packages/magento-product/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-recently-viewed-products/CHANGELOG.md b/packages/magento-recently-viewed-products/CHANGELOG.md index 55c3884e61..6d8d52e87b 100644 --- a/packages/magento-recently-viewed-products/CHANGELOG.md +++ b/packages/magento-recently-viewed-products/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-recently-viewed-products +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index 7fef56b6cb..57640533c2 100644 --- a/packages/magento-recently-viewed-products/package.json +++ b/packages/magento-recently-viewed-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-recently-viewed-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index e69d68e0db..b82450e3fd 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index 82c7b181b0..8fd3f59f74 100644 --- a/packages/magento-review/package.json +++ b/packages/magento-review/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-review", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,17 +18,17 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index cd61246017..c9a4742ba1 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index 8498fb23ab..5b0aed31a9 100644 --- a/packages/magento-search/package.json +++ b/packages/magento-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 5e7e541b83..561a0d153e 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index 38436e27a8..fc55a27452 100644 --- a/packages/magento-store/package.json +++ b/packages/magento-store/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-store", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 7f365628f6..53bc739311 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index fbb6726331..ca7deeb9e8 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-customer": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-config": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-customer": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-config": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index adc406fb50..01eda35fb7 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index 1a719be042..a6a05063b2 100644 --- a/packages/mollie-magento-payment/package.json +++ b/packages/mollie-magento-payment/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/mollie-magento-payment", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.89", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/graphql": "^8.0.0-canary.89", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/magento-cart": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.89", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.89", - "@graphcommerce/magento-product": "^8.0.0-canary.89", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.89", - "@graphcommerce/magento-store": "^8.0.0-canary.89", - "@graphcommerce/next-ui": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/react-hook-form": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/graphql": "^8.0.0-canary.90", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/magento-cart": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", + "@graphcommerce/magento-product": "^8.0.0-canary.90", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", + "@graphcommerce/magento-store": "^8.0.0-canary.90", + "@graphcommerce/next-ui": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/react-hook-form": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 738b7f93b7..33d1c2dc98 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index f10a19e3f5..9ff7548173 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -25,14 +25,14 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.89", - "@graphcommerce/framer-scroller": "^8.0.0-canary.89", - "@graphcommerce/framer-utils": "^8.0.0-canary.89", - "@graphcommerce/image": "^8.0.0-canary.89", - "@graphcommerce/lingui-next": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", + "@graphcommerce/framer-scroller": "^8.0.0-canary.90", + "@graphcommerce/framer-utils": "^8.0.0-canary.90", + "@graphcommerce/image": "^8.0.0-canary.90", + "@graphcommerce/lingui-next": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 380f830a9b..075a978759 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 8cf62ec788..c9b84baf94 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/react-hook-form", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,9 +16,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index 22cf9d0386..c4ca790b87 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index b9cb9713a9..ac23273872 100644 --- a/packagesDev/browserslist-config/package.json +++ b/packagesDev/browserslist-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/browserslist-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "main": "index.js", "sideEffects": false } diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 67472dacf3..4123f87632 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index 0b36830147..d2591c71f0 100644 --- a/packagesDev/changeset-changelog/package.json +++ b/packagesDev/changeset-changelog/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/changeset-changelog", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 98211d2d0e..2b1f46527c 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index 22dfc29fd6..e16c33ba13 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "main": "index.js", "dependencies": { - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.89", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", "@next/eslint-plugin-next": "14.0.4", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index c55d78d0b8..0cc56aaf8c 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 4774b01062..6a197dbbdc 100644 --- a/packagesDev/graphql-codegen-markdown-docs/package.json +++ b/packagesDev/graphql-codegen-markdown-docs/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-markdown-docs", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 090522b0a5..249cba2d18 100644 --- a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md +++ b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index 3c9990d3b9..9a77b8c959 100644 --- a/packagesDev/graphql-codegen-near-operation-file/package.json +++ b/packagesDev/graphql-codegen-near-operation-file/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-near-operation-file", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index f17b576b1b..0df01afa33 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index 11de41d439..e998a48f6a 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "type": "commonjs", "main": "dist/index.js", @@ -27,8 +27,8 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.89", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.89", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", "graphql": "^16.7.1" }, "prettier": "@graphcommerce/prettier-config-pwa", diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index 9201817f23..639ab10381 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 81840f6a6f..2743561720 100644 --- a/packagesDev/next-config/package.json +++ b/packagesDev/next-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-config", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index cc4d60f6f3..add3ee221f 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index f2c131b28a..862e779dde 100644 --- a/packagesDev/prettier-config/package.json +++ b/packagesDev/prettier-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/prettier-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "dependencies": { "prettier-plugin-jsdoc": "^1.1.1" }, diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index a7656878cc..1869d65ec3 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.90 + ## 8.0.0-canary.89 ## 8.0.0-canary.88 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index 0658f5333f..368511ec9d 100644 --- a/packagesDev/typescript-config/package.json +++ b/packagesDev/typescript-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/typescript-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.89", + "version": "8.0.0-canary.90", "sideEffects": false, "devDependencies": { "@tsconfig/node18": "^18.2.2" diff --git a/yarn.lock b/yarn.lock index 73420c1b38..ad46126f73 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2570,14 +2570,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/address-fields-nl@workspace:packages/address-fields-nl" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2595,17 +2595,17 @@ __metadata: algoliasearch: "npm:^4.21.0" react-instantsearch-hooks-web: "npm:^6.47.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-search": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-search": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2630,7 +2630,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/cli@npm:8.0.0-canary.89, @graphcommerce/cli@workspace:packages/cli": +"@graphcommerce/cli@npm:8.0.0-canary.90, @graphcommerce/cli@workspace:packages/cli": version: 0.0.0-use.local resolution: "@graphcommerce/cli@workspace:packages/cli" dependencies: @@ -2649,11 +2649,11 @@ __metadata: rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/hygraph-cli": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/hygraph-cli": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 react: ^18.2.0 bin: @@ -2668,18 +2668,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.89, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": +"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.90, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": version: 0.0.0-use.local resolution: "@graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -2692,20 +2692,20 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/docs@workspace:docs" peerDependencies: - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 languageName: unknown linkType: soft -"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.89, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": +"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.90, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": version: 0.0.0-use.local resolution: "@graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2717,11 +2717,11 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.89, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": +"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.90, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": version: 0.0.0-use.local resolution: "@graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config" dependencies: - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@next/eslint-plugin-next": "npm:14.0.4" "@typescript-eslint/eslint-plugin": "npm:^6.14.0" "@typescript-eslint/parser": "npm:^6.14.0" @@ -2741,9 +2741,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages-example@workspace:packages/framer-next-pages/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2777,14 +2777,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-next-pages@npm:8.0.0-canary.89, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": +"@graphcommerce/framer-next-pages@npm:8.0.0-canary.90, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages@workspace:packages/framer-next-pages" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 framer-motion: ^10.0.0 next: "*" react: ^18.2.0 @@ -2796,9 +2796,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller-example@workspace:packages/framer-scroller/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2832,17 +2832,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-scroller@npm:8.0.0-canary.89, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": +"@graphcommerce/framer-scroller@npm:8.0.0-canary.90, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller@workspace:packages/framer-scroller" dependencies: popmotion: "npm:11.0.5" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/react": ^4.2.1 "@mui/material": ^5.10.16 @@ -2853,37 +2853,37 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-utils@npm:8.0.0-canary.89, @graphcommerce/framer-utils@workspace:packages/framer-utils": +"@graphcommerce/framer-utils@npm:8.0.0-canary.90, @graphcommerce/framer-utils@workspace:packages/framer-utils": version: 0.0.0-use.local resolution: "@graphcommerce/framer-utils@workspace:packages/framer-utils" dependencies: framesync: "npm:^6.1.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 framer-motion: ^10.0.0 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/googleanalytics@npm:8.0.0-canary.89, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": +"@graphcommerce/googleanalytics@npm:8.0.0-canary.90, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": version: 0.0.0-use.local resolution: "@graphcommerce/googleanalytics@workspace:packages/googleanalytics" dependencies: "@types/gtag.js": "npm:^0.0.18" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2900,17 +2900,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.89, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": +"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.90, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": version: 0.0.0-use.local resolution: "@graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha" dependencies: "@types/grecaptcha": "npm:^3.0.7" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2918,32 +2918,32 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googletagmanager@npm:8.0.0-canary.89, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": +"@graphcommerce/googletagmanager@npm:8.0.0-canary.90, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": version: 0.0.0-use.local resolution: "@graphcommerce/googletagmanager@workspace:packages/googletagmanager" dependencies: "@types/gapi.client.tagmanager": "npm:^2.0.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/graphcms-ui@npm:8.0.0-canary.89, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": +"@graphcommerce/graphcms-ui@npm:8.0.0-canary.90, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": version: 0.0.0-use.local resolution: "@graphcommerce/graphcms-ui@workspace:packages/hygraph-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2962,14 +2962,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.89, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": +"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.90, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file" dependencies: @@ -2980,14 +2980,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.89, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": +"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.90, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin" dependencies: @@ -3001,13 +3001,13 @@ __metadata: ts-jest: "npm:29.1.1" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-mesh@npm:8.0.0-canary.89, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": +"@graphcommerce/graphql-mesh@npm:8.0.0-canary.90, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-mesh@workspace:packages/graphql-mesh" dependencies: @@ -3030,19 +3030,19 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql@npm:8.0.0-canary.89, @graphcommerce/graphql@workspace:packages/graphql": +"@graphcommerce/graphql@npm:8.0.0-canary.90, @graphcommerce/graphql@workspace:packages/graphql": version: 0.0.0-use.local resolution: "@graphcommerce/graphql@workspace:packages/graphql" dependencies: - "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.89" - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.89" + "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.90" + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.90" "@graphql-codegen/add": "npm:5.0.0" "@graphql-codegen/fragment-matcher": "npm:5.0.0" "@graphql-codegen/introspection": "npm:4.0.0" @@ -3055,16 +3055,16 @@ __metadata: apollo3-cache-persist: "npm:^0.14.1" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.7.1 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/hygraph-cli@npm:8.0.0-canary.89, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": +"@graphcommerce/hygraph-cli@npm:8.0.0-canary.90, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-cli@workspace:packages/hygraph-cli" dependencies: @@ -3076,10 +3076,10 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 dotenv: ^16.1.4 graphql: ^16.7.1 languageName: unknown @@ -3090,10 +3090,10 @@ __metadata: resolution: "@graphcommerce/hygraph-dynamic-rows-ui@workspace:packages/hygraph-dynamic-rows-ui" dependencies: "@apollo/client": "npm:~3.8.8" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/next-config": "npm:8.0.0-canary.89" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/next-config": "npm:8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@hygraph/app-sdk-react": "npm:^0.0.3" "@lingui/core": "npm:^4.2.1" "@lingui/macro": "npm:^4.2.1" @@ -3114,17 +3114,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.89, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": +"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.90, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphcms-ui": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphcms-ui": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3136,9 +3136,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/image-example@workspace:packages/image/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3172,14 +3172,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/image@npm:8.0.0-canary.89, @graphcommerce/image@workspace:packages/image": +"@graphcommerce/image@npm:8.0.0-canary.90, @graphcommerce/image@workspace:packages/image": version: 0.0.0-use.local resolution: "@graphcommerce/image@workspace:packages/image" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3191,24 +3191,24 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/lighthouse@workspace:packages/lighthouse" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 next: "*" languageName: unknown linkType: soft -"@graphcommerce/lingui-next@npm:8.0.0-canary.89, @graphcommerce/lingui-next@workspace:packages/lingui-next": +"@graphcommerce/lingui-next@npm:8.0.0-canary.90, @graphcommerce/lingui-next@workspace:packages/lingui-next": version: 0.0.0-use.local resolution: "@graphcommerce/lingui-next@workspace:packages/lingui-next" dependencies: "@lingui/conf": "npm:4.6.0" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3218,21 +3218,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.89, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": +"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.90, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3244,22 +3244,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.89, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": +"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.90, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3271,19 +3271,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.89, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": +"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.90, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3295,22 +3295,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-email@npm:8.0.0-canary.89, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": +"@graphcommerce/magento-cart-email@npm:8.0.0-canary.90, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-email@workspace:packages/magento-cart-email" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3322,21 +3322,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-items@npm:8.0.0-canary.89, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": +"@graphcommerce/magento-cart-items@npm:8.0.0-canary.90, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-items@workspace:packages/magento-cart-items" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3348,21 +3348,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.89, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": +"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.90, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3378,18 +3378,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-pickup@workspace:packages/magento-cart-pickup" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3401,20 +3401,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.89, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": +"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.90, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3426,21 +3426,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.89, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": +"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.90, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3452,24 +3452,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart@npm:8.0.0-canary.89, @graphcommerce/magento-cart@workspace:packages/magento-cart": +"@graphcommerce/magento-cart@npm:8.0.0-canary.90, @graphcommerce/magento-cart@workspace:packages/magento-cart": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart@workspace:packages/magento-cart" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3481,19 +3481,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-category@npm:8.0.0-canary.89, @graphcommerce/magento-category@workspace:packages/magento-category": +"@graphcommerce/magento-category@npm:8.0.0-canary.90, @graphcommerce/magento-category@workspace:packages/magento-category": version: 0.0.0-use.local resolution: "@graphcommerce/magento-category@workspace:packages/magento-category" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3504,15 +3504,15 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cms@npm:8.0.0-canary.89, @graphcommerce/magento-cms@workspace:packages/magento-cms": +"@graphcommerce/magento-cms@npm:8.0.0-canary.90, @graphcommerce/magento-cms@workspace:packages/magento-cms": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cms@workspace:packages/magento-cms" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3523,20 +3523,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-compare@npm:8.0.0-canary.89, @graphcommerce/magento-compare@workspace:packages/magento-compare": +"@graphcommerce/magento-compare@npm:8.0.0-canary.90, @graphcommerce/magento-compare@workspace:packages/magento-compare": version: 0.0.0-use.local resolution: "@graphcommerce/magento-compare@workspace:packages/magento-compare" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3553,10 +3553,10 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-account@workspace:packages/magento-customer-account" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 languageName: unknown linkType: soft @@ -3564,16 +3564,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-order@workspace:packages/magento-customer-order" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3585,23 +3585,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-customer@npm:8.0.0-canary.89, @graphcommerce/magento-customer@workspace:packages/magento-customer": +"@graphcommerce/magento-customer@npm:8.0.0-canary.90, @graphcommerce/magento-customer@workspace:packages/magento-customer": version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer@workspace:packages/magento-customer" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3620,56 +3620,56 @@ __metadata: dependencies: "@apollo/client": "npm:~3.8.8" "@ducanh2912/next-pwa": "npm:9.7.2" - "@graphcommerce/cli": "npm:8.0.0-canary.89" - "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.89" - "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.89" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.89" - "@graphcommerce/framer-scroller": "npm:8.0.0-canary.89" - "@graphcommerce/framer-utils": "npm:8.0.0-canary.89" - "@graphcommerce/googleanalytics": "npm:8.0.0-canary.89" - "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.89" - "@graphcommerce/googletagmanager": "npm:8.0.0-canary.89" - "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.89" - "@graphcommerce/graphql": "npm:8.0.0-canary.89" - "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.89" - "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.89" - "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.89" - "@graphcommerce/image": "npm:8.0.0-canary.89" - "@graphcommerce/lingui-next": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.89" - "@graphcommerce/magento-category": "npm:8.0.0-canary.89" - "@graphcommerce/magento-cms": "npm:8.0.0-canary.89" - "@graphcommerce/magento-compare": "npm:8.0.0-canary.89" - "@graphcommerce/magento-customer": "npm:8.0.0-canary.89" - "@graphcommerce/magento-graphql": "npm:8.0.0-canary.89" - "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.89" - "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.89" - "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.89" - "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.89" - "@graphcommerce/magento-review": "npm:8.0.0-canary.89" - "@graphcommerce/magento-search": "npm:8.0.0-canary.89" - "@graphcommerce/magento-store": "npm:8.0.0-canary.89" - "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.89" - "@graphcommerce/next-config": "npm:8.0.0-canary.89" - "@graphcommerce/next-ui": "npm:8.0.0-canary.89" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.89" - "@graphcommerce/react-hook-form": "npm:8.0.0-canary.89" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.89" + "@graphcommerce/cli": "npm:8.0.0-canary.90" + "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.90" + "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.90" + "@graphcommerce/framer-scroller": "npm:8.0.0-canary.90" + "@graphcommerce/framer-utils": "npm:8.0.0-canary.90" + "@graphcommerce/googleanalytics": "npm:8.0.0-canary.90" + "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.90" + "@graphcommerce/googletagmanager": "npm:8.0.0-canary.90" + "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.90" + "@graphcommerce/graphql": "npm:8.0.0-canary.90" + "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.90" + "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.90" + "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.90" + "@graphcommerce/image": "npm:8.0.0-canary.90" + "@graphcommerce/lingui-next": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.90" + "@graphcommerce/magento-category": "npm:8.0.0-canary.90" + "@graphcommerce/magento-cms": "npm:8.0.0-canary.90" + "@graphcommerce/magento-compare": "npm:8.0.0-canary.90" + "@graphcommerce/magento-customer": "npm:8.0.0-canary.90" + "@graphcommerce/magento-graphql": "npm:8.0.0-canary.90" + "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.90" + "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.90" + "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.90" + "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.90" + "@graphcommerce/magento-review": "npm:8.0.0-canary.90" + "@graphcommerce/magento-search": "npm:8.0.0-canary.90" + "@graphcommerce/magento-store": "npm:8.0.0-canary.90" + "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.90" + "@graphcommerce/next-config": "npm:8.0.0-canary.90" + "@graphcommerce/next-ui": "npm:8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/react-hook-form": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3704,33 +3704,33 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-graphql@npm:8.0.0-canary.89, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": +"@graphcommerce/magento-graphql@npm:8.0.0-canary.90, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": version: 0.0.0-use.local resolution: "@graphcommerce/magento-graphql@workspace:packages/magento-graphql" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/magento-newsletter@npm:8.0.0-canary.89, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": +"@graphcommerce/magento-newsletter@npm:8.0.0-canary.90, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": version: 0.0.0-use.local resolution: "@graphcommerce/magento-newsletter@workspace:packages/magento-newsletter" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3749,15 +3749,15 @@ __metadata: "@types/jsdom": "npm:^21.1.6" jsdom: "npm:^23.0.1" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-category": ^8.0.0-canary.89 - "@graphcommerce/magento-cms": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-category": ^8.0.0-canary.90 + "@graphcommerce/magento-cms": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3773,18 +3773,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-adyen@workspace:packages/magento-payment-adyen" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3802,19 +3802,19 @@ __metadata: "@types/braintree-web": "npm:^3.96.10" braintree-web: "npm:^3.97.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3826,23 +3826,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-payment-included@npm:8.0.0-canary.89, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": +"@graphcommerce/magento-payment-included@npm:8.0.0-canary.90, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-included@workspace:packages/magento-payment-included" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3858,14 +3858,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-klarna@workspace:packages/magento-payment-klarna" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3881,22 +3881,22 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-multisafepay@workspace:packages/magento-payment-multisafepay" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3911,16 +3911,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-paypal@workspace:packages/magento-payment-paypal" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3932,23 +3932,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.89, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": +"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.90, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3959,27 +3959,27 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.89, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": +"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.90, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/lingui-next": 8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 - "@graphcommerce/magento-category": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/lingui-next": 8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 + "@graphcommerce/magento-category": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3991,18 +3991,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.89, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": +"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.90, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4012,18 +4012,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.89, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": +"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.90, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.89 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4033,18 +4033,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-simple@npm:8.0.0-canary.89, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": +"@graphcommerce/magento-product-simple@npm:8.0.0-canary.90, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-simple@workspace:packages/magento-product-simple" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4054,18 +4054,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.89, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": +"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.90, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4075,25 +4075,25 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product@npm:8.0.0-canary.89, @graphcommerce/magento-product@workspace:packages/magento-product": +"@graphcommerce/magento-product@npm:8.0.0-canary.90, @graphcommerce/magento-product@workspace:packages/magento-product": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product@workspace:packages/magento-product" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4105,20 +4105,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.89, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": +"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.90, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": version: 0.0.0-use.local resolution: "@graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -4127,24 +4127,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-review@npm:8.0.0-canary.89, @graphcommerce/magento-review@workspace:packages/magento-review": +"@graphcommerce/magento-review@npm:8.0.0-canary.90, @graphcommerce/magento-review@workspace:packages/magento-review": version: 0.0.0-use.local resolution: "@graphcommerce/magento-review@workspace:packages/magento-review" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4155,19 +4155,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-search@npm:8.0.0-canary.89, @graphcommerce/magento-search@workspace:packages/magento-search": +"@graphcommerce/magento-search@npm:8.0.0-canary.90, @graphcommerce/magento-search@workspace:packages/magento-search": version: 0.0.0-use.local resolution: "@graphcommerce/magento-search@workspace:packages/magento-search" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4178,17 +4178,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-store@npm:8.0.0-canary.89, @graphcommerce/magento-store@workspace:packages/magento-store": +"@graphcommerce/magento-store@npm:8.0.0-canary.90, @graphcommerce/magento-store@workspace:packages/magento-store": version: 0.0.0-use.local resolution: "@graphcommerce/magento-store@workspace:packages/magento-store" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4199,24 +4199,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-wishlist@npm:8.0.0-canary.89, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": +"@graphcommerce/magento-wishlist@npm:8.0.0-canary.90, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": version: 0.0.0-use.local resolution: "@graphcommerce/magento-wishlist@workspace:packages/magento-wishlist" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-customer": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-config": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-customer": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-config": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4232,21 +4232,21 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/mollie-magento-payment@workspace:packages/mollie-magento-payment" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.89 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/graphql": ^8.0.0-canary.89 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/magento-cart": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.89 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.89 - "@graphcommerce/magento-product": ^8.0.0-canary.89 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.89 - "@graphcommerce/magento-store": ^8.0.0-canary.89 - "@graphcommerce/next-ui": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/react-hook-form": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/graphql": ^8.0.0-canary.90 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/magento-cart": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 + "@graphcommerce/magento-product": ^8.0.0-canary.90 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 + "@graphcommerce/magento-store": ^8.0.0-canary.90 + "@graphcommerce/next-ui": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/react-hook-form": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4257,7 +4257,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-config@npm:8.0.0-canary.89, @graphcommerce/next-config@workspace:packagesDev/next-config": +"@graphcommerce/next-config@npm:8.0.0-canary.90, @graphcommerce/next-config@workspace:packagesDev/next-config": version: 0.0.0-use.local resolution: "@graphcommerce/next-config@workspace:packagesDev/next-config" dependencies: @@ -4282,7 +4282,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-ui@npm:8.0.0-canary.89, @graphcommerce/next-ui@workspace:packages/next-ui": +"@graphcommerce/next-ui@npm:8.0.0-canary.90, @graphcommerce/next-ui@workspace:packages/next-ui": version: 0.0.0-use.local resolution: "@graphcommerce/next-ui@workspace:packages/next-ui" dependencies: @@ -4296,14 +4296,14 @@ __metadata: react-is: "npm:^18.2.0" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.89 - "@graphcommerce/framer-scroller": ^8.0.0-canary.89 - "@graphcommerce/framer-utils": ^8.0.0-canary.89 - "@graphcommerce/image": ^8.0.0-canary.89 - "@graphcommerce/lingui-next": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 + "@graphcommerce/framer-scroller": ^8.0.0-canary.90 + "@graphcommerce/framer-utils": ^8.0.0-canary.90 + "@graphcommerce/image": ^8.0.0-canary.90 + "@graphcommerce/lingui-next": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4316,7 +4316,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.89, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": +"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.90, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": version: 0.0.0-use.local resolution: "@graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config" dependencies: @@ -4326,16 +4326,16 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/react-hook-form@npm:8.0.0-canary.89, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": +"@graphcommerce/react-hook-form@npm:8.0.0-canary.90, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": version: 0.0.0-use.local resolution: "@graphcommerce/react-hook-form@workspace:packages/react-hook-form" dependencies: "@testing-library/react": "npm:^14.1.2" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.89 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.89 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 graphql: ^16.6.0 react: ^18.2.0 react-dom: ^18.2.0 @@ -4343,7 +4343,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.89, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": +"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.90, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": version: 0.0.0-use.local resolution: "@graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config" dependencies: From b5e67fe5f09b9a27e1419a437e272bdb594f4cb6 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 18 Jan 2024 13:59:07 +0100 Subject: [PATCH 10/75] Added reference to Adobe Sensei --- docs/roadmap.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/roadmap.md b/docs/roadmap.md index 29ab9641d7..f9a20b8464 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -34,6 +34,7 @@ roadmap. ## Considering / researching +- [ ] Adobe Sensei integration - [ ] Gallery support on category/search pages. - [ ] Authorize.net payment service integration - [ ] Web Vitals: Use CSS theme variables or wait for MUI v6 release with static From 279599e7a86bd96ea9e36065af3c367df9e02a63 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Fri, 19 Jan 2024 12:46:17 +0100 Subject: [PATCH 11/75] Updated documentation to reflect recent changes --- .changeset/modern-carpets-sell.md | 7 + docs/framework/config.md | 5 +- docs/framework/static-generation.md | 51 ++-- docs/getting-started/graphcms-component.md | 2 +- docs/getting-started/pages.md | 219 ++++++++++++------ docs/getting-started/start-building.md | 17 +- .../graphql/DefaultPage.graphql | 4 - packages/algolia-search/README.md | 9 +- packagesDev/next-config/Config.graphqls | 4 +- .../next-config/src/generated/config.ts | 7 +- 10 files changed, 200 insertions(+), 125 deletions(-) create mode 100644 .changeset/modern-carpets-sell.md delete mode 100644 examples/magento-graphcms/graphql/DefaultPage.graphql diff --git a/.changeset/modern-carpets-sell.md b/.changeset/modern-carpets-sell.md new file mode 100644 index 0000000000..f8669cbca8 --- /dev/null +++ b/.changeset/modern-carpets-sell.md @@ -0,0 +1,7 @@ +--- +"@graphcommerce/algolia-search": patch +"@graphcommerce/next-config": patch +"@graphcommerce/docs": patch +--- + +Updated documentation to reflect recent code changes diff --git a/docs/framework/config.md b/docs/framework/config.md index 197634b670..cd66ee7c74 100644 --- a/docs/framework/config.md +++ b/docs/framework/config.md @@ -251,7 +251,10 @@ yarn graphcommerce hygraph-migrate #### limitSsg: boolean -Limit the static generation of SSG when building +Limit the static generation of SSG when building. + +By default GraphCommerce will statically generate all product and category pages during build. +This can take quite a long time, to skip this step set this value to true. #### previewSecret: string diff --git a/docs/framework/static-generation.md b/docs/framework/static-generation.md index e0c2f86e7d..82a8ca4eec 100644 --- a/docs/framework/static-generation.md +++ b/docs/framework/static-generation.md @@ -24,20 +24,19 @@ For example, client-side rendering is used to display customer data on the // Example from /pages/account/index.tsx function AccountIndexPage() { - const { data, loading, error } = useQuery(AccountDashboardDocument, { + const dashboard = useCustomerQuery(AccountDashboardDocument, { fetchPolicy: 'cache-and-network', - ssr: false, }) const { data: config } = useQuery(StoreConfigDocument) ... - const customer = data?.customer + const customer = dashboard.data?.customer ... } ``` -In the same file, `getStaticProps` runs the DefaultPageDocument query to fetch -the data needed to render the layout (header, footer, menu etc.) +In the same file, `getStaticProps` runs the LayoutDocument query to fetch the +data needed to render the layout (header, footer, menu etc.) ```tsx // Example from /pages/account/index.tsx @@ -45,17 +44,11 @@ the data needed to render the layout (header, footer, menu etc.) export const getStaticProps: GetPageStaticProps = async ({ locale }) => { ... - const page = staticClient.query({ - query: DefaultPageDocument, - variables: { - url: 'account', - rootCategory: (await conf).data.storeConfig?.root_category_uid ?? '', - }, - }) + const layout = staticClient.query({ query: LayoutDocument, fetchPolicy: 'cache-first' }) return { props: { - ...(await page).data, + ...(await layout).data, up: { href: '/', title: 'Home' }, apolloState: await conf.then(() => client.cache.extract()), }, @@ -71,19 +64,14 @@ All paths specified by a function called `getStaticPaths` will be statically pre-rendered at build-time. For example, `getStaticPaths` runs the ProductStaticPaths query to fetch a list -of all configurable product paths: +of all products: ```tsx -// Example from /pages/product/configurable/[url].tsx +// Example from /pages/p/[url].tsx export const getStaticPaths: GetPageStaticPaths = async ({ locales = [] }) => { - ... const path = (locale: string) => - getProductStaticPaths( - graphqlSsrClient(locale), - locale, - 'ConfigurableProduct', - ) + getProductStaticPaths(graphqlSsrClient(locale), locale) const paths = (await Promise.all(locales.map(path))).flat(1) return { paths, fallback: 'blocking' } @@ -117,7 +105,7 @@ You can test the static build process by running it locally: The build proces locally will not pre-render product pages to reduce build time: ```tsx -// Example from /pages/product/configurable/[url].tsx +// Example from /pages/p/[url].tsx export const getStaticPaths: GetPageStaticPaths = async ({ locales = [] }) => { @@ -129,11 +117,14 @@ export const getStaticPaths: GetPageStaticPaths = async ({ locales = [] }) => {
Disabling Static Generation on production -To disable or limit the amount of pages that are statically pre-redered, slice -the paths array. This will reduce build-time: +To limit the static generation of pages you can configure the +[limitSsg](../framework/config.md#limitssg-boolean) + +To disable or limit the amount of product apges that are statically pre-redered, +slice the paths array. This will reduce build-time: ```tsx -// Example from /pages/product/configurable/[url].tsx +// Example from /pages/p/[url].tsx export const getStaticPaths: GetPageStaticPaths = async ({ locales = [] }) => { ... @@ -153,12 +144,12 @@ Most pages have value for `revalidate` in the object that is returned by `getStaticProps`: ```tsx -// Example from /pages/product/configurable/[url].tsx +// Example from /pages/p/[url].tsx return { props: { ...(await productPage).data, - ...(await typeProductPage).data, + // other stuff apolloState: await conf.then(() => client.cache.extract()), up, }, @@ -166,14 +157,16 @@ return { } ``` -When set, static pages will be regenerated at run-time (on-demand) every 20 +When set, static pages will be revalidated at run-time (on-demand) every 20 minutes. The initial request to the product page will show the cached page. After 20 -minutes, the regeneration of the page is triggered on the first following +minutes, the revalidation of the page is triggered on the first following request. Once the page has been successfully generated, the cache will be invalidated and the updated product page is shown. +Note: Pages that aren't visited will not be revalidated automatically. + ## FAQ
diff --git a/docs/getting-started/graphcms-component.md b/docs/getting-started/graphcms-component.md index ac0ff0647f..93a1d3cd81 100644 --- a/docs/getting-started/graphcms-component.md +++ b/docs/getting-started/graphcms-component.md @@ -172,7 +172,7 @@ fragment RowRenderer on Page @inject(into: ["HygraphPage"]) { ...RowServiceOptions ...RowContentLinks ...RowProduct - ...Banner + ...RowLinks } } ``` diff --git a/docs/getting-started/pages.md b/docs/getting-started/pages.md index 253b0b96d6..bbbfcb726b 100644 --- a/docs/getting-started/pages.md +++ b/docs/getting-started/pages.md @@ -3,7 +3,7 @@ menu: 4. Build pages metaTitle: Build pages --- -# Build pages in GraphCommerce +# Build custom pages in GraphCommerce Previously, you created a custom storefront and started customizing your storefront in GraphCommerce. You're now ready to build pages in your @@ -13,6 +13,11 @@ In this tutorial, you'll accomplish a series of tasks to add some specific functionality to your custom storefront. The result will be simple, but you'll learn where to find resources to build more complex features on your own. +> When you only want to create a new content page for a specific URL based on +> Hygraph rows, you don't need to create a custom template: After creating a +> page in Hygraph it will automatically be handled by the `/pages/[...url].tsx` +> route. + ## What you'll learn - Create a new route @@ -49,54 +54,61 @@ export default function AboutUs() { ```tsx import { PageOptions } from '@graphcommerce/framer-next-pages' import { StoreConfigDocument } from '@graphcommerce/magento-store' -import { GetStaticProps } from '@graphcommerce/next-ui' -import { Container } from '@mui/material' -import { GetStaticPaths } from 'next' -import { LayoutFull, LayoutFullProps } from '../../components' import { - DefaultPageDocument, - DefaultPageQuery, -} from '../../graphql/DefaultPage.gql' -import { PagesStaticPathsDocument } from '../../graphql/PagesStaticPaths.gql' + GetStaticProps, + LayoutOverlayHeader, + LayoutTitle, + PageMeta, +} from '@graphcommerce/next-ui' +import { + LayoutDocument, + LayoutNavigation, + LayoutNavigationProps, +} from '../../components' import { graphqlSsrClient, graphqlSharedClient, } from '../../lib/graphql/graphqlSsrClient' -type Props = DefaultPageQuery -type RouteProps = { url: string } -type GetPageStaticPaths = GetStaticPaths -type GetPageStaticProps = GetStaticProps +type GetPageStaticProps = GetStaticProps function AboutUs() { - return About Us + return ( + <> + + + About us + + + + About us + + ) } -AboutUs.pageOptions = { - Layout: LayoutFull, -} as PageOptions +const pageOptions: PageOptions = { + Layout: LayoutNavigation, +} +AboutUs.pageOptions = pageOptions export default AboutUs -export const getStaticProps: GetPageStaticProps = async (context) => { - const { locale } = context +export const getStaticProps: GetPageStaticProps = async ({ locale }) => { const client = graphqlSharedClient(locale) const staticClient = graphqlSsrClient(locale) const conf = client.query({ query: StoreConfigDocument }) - const page = staticClient.query({ - query: DefaultPageDocument, - variables: { - url: '', - rootCategory: (await conf).data.storeConfig?.root_category_uid ?? '', - }, + const layout = staticClient.query({ + query: LayoutDocument, + fetchPolicy: 'cache-first', }) - // if (!(await page).data.pages?.[0]) return { notFound: true } + return { props: { - ...(await page).data, + ...(await layout).data, apolloState: await conf.then(() => client.cache.extract()), }, + revalidate: 60 * 20, } } ``` @@ -105,29 +117,25 @@ export const getStaticProps: GetPageStaticProps = async (context) => {
-![Page with page layout (header, footer)](https://user-images.githubusercontent.com/1251986/157832869-44b7fc7a-d5f7-4779-a017-869718e679aa.png) +![Page with page layout (header, footer)](https://github.com/graphcommerce-org/graphcommerce/assets/1244416/9a7476d2-4763-4d8e-86a9-046fd27cb846)
Page with page layout (header, footer)
-```tsx -// Example from /graphql/DefaultPage.graphql (DefaultPageDocument) - -query DefaultPage($url: String!, $rootCategory: String!) { +```graphql +# Example from /components/Layout/Layout.graphql (LayoutDocument) +query Layout { + menu: categories { + __typename + } ...MenuQueryFragment ...FooterQueryFragment - ...PageContentQueryFragment } ``` In the `getStaticProps` function, the query `StoreConfigDocument` is used to -fetch information about the Magento storeview. Then, the query -`DefaultPageDocument` is used to fetch the data required to render the menu, -footer and page content. - -In this example, the URL variable is empty. As a result, the -`...PageContentQueryFragment` will have no result when trying to fetch a Hygraph -page with URL `''`. +fetch information about the Magento storeview. Then, the query `LayoutDocument` +is used to fetch the data required to render the menu, footer and page content. The function `getStaticProps` is used to fetch data, meaning content is rendered on the server. Review the page's source code and search for `About Us` to @@ -137,25 +145,92 @@ validate that this string (currently hard-coded) is part of the source code. - Login to Hygraph, navigate to Content and add a new Page entry with URL: about/about-us -- In /about/about-us.tsx, make the following change to `getStaticProps`: +- Replace the content of the about-us.tsx file with: ```tsx -const page = staticClient.query({ - query: DefaultPageDocument, - variables: { - url: 'about/about-us', - rootCategory: (await conf).data.storeConfig?.root_category_uid ?? '', - }, -}) -``` +import { PageOptions } from '@graphcommerce/framer-next-pages' +import { + hygraphPageContent, + HygraphPagesQuery, +} from '@graphcommerce/graphcms-ui' +import { StoreConfigDocument } from '@graphcommerce/magento-store' +import { + GetStaticProps, + LayoutOverlayHeader, + LayoutTitle, + PageMeta, +} from '@graphcommerce/next-ui' +import { GetStaticPaths } from 'next' +import { + LayoutDocument, + LayoutNavigation, + LayoutNavigationProps, + RowRenderer, +} from '../../components' +import { + graphqlSsrClient, + graphqlSharedClient, +} from '../../lib/graphql/graphqlSsrClient' -And replace the previous AboutUs function with the following: +type Props = HygraphPagesQuery +type RouteProps = { url: string } +type GetPageStaticPaths = GetStaticPaths +type GetPageStaticProps = GetStaticProps< + LayoutNavigationProps, + Props, + RouteProps +> + +function AboutUs(props: Props) { + const { pages } = props + const page = pages[0] + + return ( + <> + + + {page.title} + + + + {page.title} + + + + ) +} -```tsx -function AboutUs({ pages }: Props) { - const title = pages?.[0].title ?? '' +const pageOptions: PageOptions = { + Layout: LayoutNavigation, +} +AboutUs.pageOptions = pageOptions + +export default AboutUs + +export const getStaticProps: GetPageStaticProps = async ({ locale }) => { + const client = graphqlSharedClient(locale) + const staticClient = graphqlSsrClient(locale) + + const conf = client.query({ query: StoreConfigDocument }) + const page = hygraphPageContent(staticClient, 'about/about-us') + const layout = staticClient.query({ + query: LayoutDocument, + fetchPolicy: 'cache-first', + }) + + if (!(await page).data.pages?.[0]) return { notFound: true } - return {title} + return { + props: { + ...(await page).data, + ...(await layout).data, + apolloState: await conf.then(() => client.cache.extract()), + }, + revalidate: 60 * 20, + } } ``` @@ -184,25 +259,29 @@ export const getStaticPaths: GetPageStaticPaths = (context) => ({ fallback: 'blocking', }) -export const getStaticProps: GetPageStaticProps = async (context) => { - const { locale, params } = context +export const getStaticProps: GetPageStaticProps = async ({ + locale, + params, +}) => { const client = graphqlSharedClient(locale) const staticClient = graphqlSsrClient(locale) const conf = client.query({ query: StoreConfigDocument }) - const page = staticClient.query({ - query: DefaultPageDocument, - variables: { - url: `about/${params?.url}`, - rootCategory: (await conf).data.storeConfig?.root_category_uid ?? '', - }, + const page = hygraphPageContent(staticClient, `about/${params?.url}`) + const layout = staticClient.query({ + query: LayoutDocument, + fetchPolicy: 'cache-first', }) - // if (!(await page).data.pages?.[0]) return { notFound: true } + + if (!(await page).data.pages?.[0]) return { notFound: true } + return { props: { ...(await page).data, + ...(await layout).data, apolloState: await conf.then(() => client.cache.extract()), }, + revalidate: 60 * 20, } } ``` @@ -230,26 +309,26 @@ built-time will not result in a 404: - In /about/[url].tsx, replace the getStaticPaths function with the following: ```tsx -export const getStaticPaths: GetPageStaticPaths = async (context) => { - const { locales = [] } = context - // if (process.env.NODE_ENV === 'development') return { paths: [], fallback: 'blocking' } +export const getStaticPaths: GetPageStaticPaths = async ({ locales = [] }) => { + if (process.env.NODE_ENV === 'development') + return { paths: [], fallback: 'blocking' } const path = async (locale: string) => { - const client = graphqlSharedClient(locale) + const client = graphqlSsrClient(locale) const { data } = await client.query({ query: PagesStaticPathsDocument, variables: { - first: 10, + first: import.meta.graphCommerce.limitSsg ? 1 : 1000, urlStartsWith: 'about', }, }) return data.pages.map((page) => ({ - params: { url: page.url.split('/').slice(1)[0] }, + params: { url: page.url.split('/').slice(1) }, locale, })) } const paths = (await Promise.all(locales.map(path))).flat(1) - // console.log(paths) + return { paths, fallback: 'blocking' } } ``` diff --git a/docs/getting-started/start-building.md b/docs/getting-started/start-building.md index 00e990bedc..c0f30985d6 100644 --- a/docs/getting-started/start-building.md +++ b/docs/getting-started/start-building.md @@ -84,31 +84,26 @@ property, you need to modify a query. /node_modules/@graphcommerce/magento-category/queries/CategoryQueryFragment.graphql, and copy it's contents - In /graphql/CategoryPage.graphql, paste the contents of - `...CategoryQueryFragment` and add `children_count` property: + `...CategoryQueryFragment`, remove the existing fragments and add + `children_count` property: ```graphql -query CategoryPage($url: String!, $rootCategory: String!) { - ...MenuQueryFragment - ...FooterQueryFragment - ...PageContentQueryFragment +query CategoryPage($url: String!) { ...CategoryQueryFragment categories(filters: { url_path: { eq: $url } }) { items { uid children_count - ...CategoryBreadcrumb - ...CategoryDescription - ...CategoryChildren - ...CategoryMeta - ...CategoryHeroNav } } } ``` - Save the file. /graphql/CategoryPage.gql.ts should be regenerated, and contain - the following addition: + the following addition. +- GraphCommerce's GraphQL Codegen will automatically merge the added query with + the query in the fragment (only if the query and arguments match exactly). ```json { "kind": "Field", "name": { "kind": "Name", "value": "children_count" } } diff --git a/examples/magento-graphcms/graphql/DefaultPage.graphql b/examples/magento-graphcms/graphql/DefaultPage.graphql deleted file mode 100644 index 86ae409e85..0000000000 --- a/examples/magento-graphcms/graphql/DefaultPage.graphql +++ /dev/null @@ -1,4 +0,0 @@ -# @deprecated, please use pageContent form @graphcommerce/graphcms-ui -query DefaultPage($url: String!) { - ...PageContentQueryFragment -} diff --git a/packages/algolia-search/README.md b/packages/algolia-search/README.md index c3aade0244..21972e02da 100644 --- a/packages/algolia-search/README.md +++ b/packages/algolia-search/README.md @@ -113,14 +113,9 @@ npm install react-instantsearch-hooks-server 2. Add the new serverState property to the `SearchResultProps` type ``` -type SearchResultProps = DefaultPageQuery & - ProductListQuery & +type SearchResultProps = ProductListQuery & ProductFiltersQuery & - CategorySearchQuery & { - filterTypes: FilterTypes - params: ProductListParams -+ serverState?: unknown - } + CategorySearchQuery & { filterTypes: FilterTypes; params: ProductListParams, serverState?: unknown } ``` 3. Add the `getServerState` method from the `react-instantsearch-hooks-server` diff --git a/packagesDev/next-config/Config.graphqls b/packagesDev/next-config/Config.graphqls index 21be2a0696..05f9839015 100644 --- a/packagesDev/next-config/Config.graphqls +++ b/packagesDev/next-config/Config.graphqls @@ -82,7 +82,9 @@ input GraphCommerceConfig { storefront: [GraphCommerceStorefrontConfig!]! """ - Limit the static generation of SSG when building + Limit the static generation of SSG when building. + + By default GraphCommerce will statically generate all product and category pages during build. This can take quite a long time, to skip this step set this value to true. """ limitSsg: Boolean diff --git a/packagesDev/next-config/src/generated/config.ts b/packagesDev/next-config/src/generated/config.ts index 2313390b42..1ac4a31b54 100644 --- a/packagesDev/next-config/src/generated/config.ts +++ b/packagesDev/next-config/src/generated/config.ts @@ -253,7 +253,12 @@ export type GraphCommerceConfig = { * ``` */ hygraphWriteAccessToken?: InputMaybe; - /** Limit the static generation of SSG when building */ + /** + * Limit the static generation of SSG when building. + * + * By default GraphCommerce will statically generate all product and category pages during build. + * This can take quite a long time, to skip this step set this value to true. + */ limitSsg?: InputMaybe; /** * GraphQL Magento endpoint. From 871e07ac8bbb7e6c392a740a8244f69992b42b76 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Fri, 19 Jan 2024 12:47:46 +0100 Subject: [PATCH 12/75] Recently viewed products would show skeleton items even after loading succeeded --- .changeset/twelve-tigers-pretend.md | 6 ++++++ .../plugins/demo/DemoRecentlyViewedProducts.tsx | 8 +++++--- .../components/RecentlyViewedProducts.tsx | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 .changeset/twelve-tigers-pretend.md diff --git a/.changeset/twelve-tigers-pretend.md b/.changeset/twelve-tigers-pretend.md new file mode 100644 index 0000000000..a742d92965 --- /dev/null +++ b/.changeset/twelve-tigers-pretend.md @@ -0,0 +1,6 @@ +--- +'@graphcommerce/magento-recently-viewed-products': patch +'@graphcommerce/demo-magento-graphcommerce': patch +--- + +Recently viewed products would show skeleton items even after loading succeeded diff --git a/packages/demo-magento-graphcommerce/plugins/demo/DemoRecentlyViewedProducts.tsx b/packages/demo-magento-graphcommerce/plugins/demo/DemoRecentlyViewedProducts.tsx index bba3fbaf12..19f1d39d78 100644 --- a/packages/demo-magento-graphcommerce/plugins/demo/DemoRecentlyViewedProducts.tsx +++ b/packages/demo-magento-graphcommerce/plugins/demo/DemoRecentlyViewedProducts.tsx @@ -1,4 +1,4 @@ -import { AddProductsToCartForm } from '@graphcommerce/magento-product' +import { AddProductsToCartForm, ProductListItemType } from '@graphcommerce/magento-product' import { useRecentlyViewedProducts, useRecentlyViewedSkus, @@ -39,14 +39,16 @@ function DemoRecentlyViewedProducts(props: PluginProps {title}}> - {filterNonNullableKeys([...loadingProducts, ...productList.products]).map((item) => ( + {filterNonNullableKeys(items).map((item) => ( ) From 8137bd401c8e63f0a9a987db110a4a05a78c53ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:32:05 +0000 Subject: [PATCH 13/75] chore(release): update prerelease versions --- .changeset/pre.json | 2 + docs/CHANGELOG.md | 7 + docs/package.json | 4 +- examples/magento-graphcms/CHANGELOG.md | 2 + examples/magento-graphcms/package.json | 102 +- packages/address-fields-nl/CHANGELOG.md | 2 + packages/address-fields-nl/package.json | 18 +- packages/algolia-search/CHANGELOG.md | 7 + packages/algolia-search/package.json | 24 +- packages/cli/CHANGELOG.md | 2 + packages/cli/package.json | 12 +- .../demo-magento-graphcommerce/CHANGELOG.md | 7 + .../demo-magento-graphcommerce/package.json | 18 +- packages/ecommerce-ui/CHANGELOG.md | 2 + packages/ecommerce-ui/package.json | 14 +- packages/framer-next-pages/CHANGELOG.md | 2 + .../framer-next-pages/example/CHANGELOG.md | 2 + .../framer-next-pages/example/package.json | 8 +- packages/framer-next-pages/package.json | 10 +- packages/framer-scroller/CHANGELOG.md | 2 + packages/framer-scroller/example/CHANGELOG.md | 2 + packages/framer-scroller/example/package.json | 8 +- packages/framer-scroller/package.json | 12 +- packages/framer-utils/CHANGELOG.md | 2 + packages/framer-utils/package.json | 8 +- packages/googleanalytics/CHANGELOG.md | 2 + packages/googleanalytics/package.json | 22 +- packages/googlerecaptcha/CHANGELOG.md | 2 + packages/googlerecaptcha/package.json | 12 +- packages/googletagmanager/CHANGELOG.md | 2 + packages/googletagmanager/package.json | 10 +- packages/graphql-mesh/CHANGELOG.md | 2 + packages/graphql-mesh/package.json | 8 +- packages/graphql/CHANGELOG.md | 2 + packages/graphql/package.json | 12 +- packages/hygraph-cli/CHANGELOG.md | 2 + packages/hygraph-cli/package.json | 10 +- packages/hygraph-dynamic-rows-ui/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows-ui/package.json | 10 +- packages/hygraph-dynamic-rows/CHANGELOG.md | 2 + packages/hygraph-dynamic-rows/package.json | 16 +- packages/hygraph-ui/CHANGELOG.md | 2 + packages/hygraph-ui/package.json | 14 +- packages/image/CHANGELOG.md | 2 + packages/image/example/CHANGELOG.md | 2 + packages/image/example/package.json | 8 +- packages/image/package.json | 10 +- packages/lighthouse/CHANGELOG.md | 2 + packages/lighthouse/package.json | 8 +- packages/lingui-next/CHANGELOG.md | 2 + packages/lingui-next/package.json | 12 +- .../magento-cart-billing-address/CHANGELOG.md | 2 + .../magento-cart-billing-address/package.json | 24 +- packages/magento-cart-checkout/CHANGELOG.md | 2 + packages/magento-cart-checkout/package.json | 26 +- packages/magento-cart-coupon/CHANGELOG.md | 2 + packages/magento-cart-coupon/package.json | 20 +- packages/magento-cart-email/CHANGELOG.md | 2 + packages/magento-cart-email/package.json | 26 +- packages/magento-cart-items/CHANGELOG.md | 2 + packages/magento-cart-items/package.json | 24 +- .../magento-cart-payment-method/CHANGELOG.md | 2 + .../magento-cart-payment-method/package.json | 24 +- packages/magento-cart-pickup/CHANGELOG.md | 2 + packages/magento-cart-pickup/package.json | 26 +- .../CHANGELOG.md | 2 + .../package.json | 22 +- .../magento-cart-shipping-method/CHANGELOG.md | 2 + .../magento-cart-shipping-method/package.json | 24 +- packages/magento-cart/CHANGELOG.md | 2 + packages/magento-cart/package.json | 30 +- packages/magento-category/CHANGELOG.md | 2 + packages/magento-category/package.json | 20 +- packages/magento-cms/CHANGELOG.md | 2 + packages/magento-cms/package.json | 12 +- packages/magento-compare/CHANGELOG.md | 2 + packages/magento-compare/package.json | 22 +- .../magento-customer-account/CHANGELOG.md | 2 + .../magento-customer-account/package.json | 10 +- packages/magento-customer-order/CHANGELOG.md | 2 + packages/magento-customer-order/package.json | 22 +- packages/magento-customer/CHANGELOG.md | 2 + packages/magento-customer/package.json | 28 +- packages/magento-graphql/CHANGELOG.md | 2 + packages/magento-graphql/package.json | 10 +- packages/magento-newsletter/CHANGELOG.md | 2 + packages/magento-newsletter/package.json | 20 +- packages/magento-pagebuilder/CHANGELOG.md | 2 + packages/magento-pagebuilder/package.json | 20 +- packages/magento-payment-adyen/CHANGELOG.md | 2 + packages/magento-payment-adyen/package.json | 26 +- .../magento-payment-braintree/CHANGELOG.md | 2 + .../magento-payment-braintree/package.json | 28 +- .../magento-payment-included/CHANGELOG.md | 2 + .../magento-payment-included/package.json | 28 +- packages/magento-payment-klarna/CHANGELOG.md | 2 + packages/magento-payment-klarna/package.json | 18 +- .../magento-payment-multisafepay/CHANGELOG.md | 2 + .../magento-payment-multisafepay/package.json | 34 +- packages/magento-payment-paypal/CHANGELOG.md | 2 + packages/magento-payment-paypal/package.json | 22 +- packages/magento-product-bundle/CHANGELOG.md | 2 + packages/magento-product-bundle/package.json | 28 +- .../magento-product-configurable/CHANGELOG.md | 2 + .../magento-product-configurable/package.json | 36 +- .../magento-product-downloadable/CHANGELOG.md | 2 + .../magento-product-downloadable/package.json | 18 +- packages/magento-product-grouped/CHANGELOG.md | 2 + packages/magento-product-grouped/package.json | 18 +- packages/magento-product-simple/CHANGELOG.md | 2 + packages/magento-product-simple/package.json | 18 +- packages/magento-product-virtual/CHANGELOG.md | 2 + packages/magento-product-virtual/package.json | 18 +- packages/magento-product/CHANGELOG.md | 2 + packages/magento-product/package.json | 26 +- .../CHANGELOG.md | 7 + .../package.json | 22 +- packages/magento-review/CHANGELOG.md | 2 + packages/magento-review/package.json | 24 +- packages/magento-search/CHANGELOG.md | 2 + packages/magento-search/package.json | 20 +- packages/magento-store/CHANGELOG.md | 2 + packages/magento-store/package.json | 16 +- packages/magento-wishlist/CHANGELOG.md | 2 + packages/magento-wishlist/package.json | 30 +- packages/mollie-magento-payment/CHANGELOG.md | 2 + packages/mollie-magento-payment/package.json | 32 +- packages/next-ui/CHANGELOG.md | 2 + packages/next-ui/package.json | 18 +- packages/react-hook-form/CHANGELOG.md | 2 + packages/react-hook-form/package.json | 8 +- packagesDev/browserslist-config/CHANGELOG.md | 2 + packagesDev/browserslist-config/package.json | 2 +- packagesDev/changeset-changelog/CHANGELOG.md | 2 + packagesDev/changeset-changelog/package.json | 2 +- packagesDev/eslint-config/CHANGELOG.md | 2 + packagesDev/eslint-config/package.json | 4 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 8 +- .../CHANGELOG.md | 2 + .../package.json | 6 +- packagesDev/next-config/CHANGELOG.md | 7 + packagesDev/next-config/package.json | 2 +- packagesDev/prettier-config/CHANGELOG.md | 2 + packagesDev/prettier-config/package.json | 2 +- packagesDev/typescript-config/CHANGELOG.md | 2 + packagesDev/typescript-config/package.json | 2 +- yarn.lock | 1280 ++++++++--------- 150 files changed, 1477 insertions(+), 1302 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index d082d159a9..61dcca3d89 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -125,6 +125,7 @@ "lovely-drinks-rescue", "mean-clocks-share", "metal-falcons-applaud", + "modern-carpets-sell", "modern-squids-approve", "nasty-icons-knock", "new-crews-promise", @@ -184,6 +185,7 @@ "three-dogs-clap", "tricky-spoons-lick", "twelve-deers-begin", + "twelve-tigers-pretend", "two-years-relate", "wild-ways-sin", "wise-wombats-remain" diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 31ad0a76f8..74c882da52 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.0.0-canary.91 + +### Patch Changes + +- [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`279599e`](https://github.com/graphcommerce-org/graphcommerce/commit/279599e7a86bd96ea9e36065af3c367df9e02a63) - Updated documentation to reflect recent code changes + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/docs/package.json b/docs/package.json index 6bc634c0a0..c4799f1896 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/docs", "homepage": "https://www.graphcommerce.org/docs", "repository": "github:graphcommerce-org/graphcommerce/docs", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": true, "peerDependencies": { - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90" + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91" }, "prettier": "@graphcommerce/prettier-config-pwa" } diff --git a/examples/magento-graphcms/CHANGELOG.md b/examples/magento-graphcms/CHANGELOG.md index 1f9ee5cadd..5c07217d31 100644 --- a/examples/magento-graphcms/CHANGELOG.md +++ b/examples/magento-graphcms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index d54b130e79..04b26cd33e 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphcms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "private": true, "sideEffects": false, "engines": { @@ -21,53 +21,53 @@ "dependencies": { "@apollo/client": "~3.8.8", "@ducanh2912/next-pwa": "9.7.2", - "@graphcommerce/cli": "8.0.0-canary.90", - "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.90", - "@graphcommerce/ecommerce-ui": "8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "8.0.0-canary.90", - "@graphcommerce/framer-scroller": "8.0.0-canary.90", - "@graphcommerce/framer-utils": "8.0.0-canary.90", - "@graphcommerce/googleanalytics": "8.0.0-canary.90", - "@graphcommerce/googlerecaptcha": "8.0.0-canary.90", - "@graphcommerce/googletagmanager": "8.0.0-canary.90", - "@graphcommerce/graphcms-ui": "8.0.0-canary.90", - "@graphcommerce/graphql": "8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "8.0.0-canary.90", - "@graphcommerce/hygraph-cli": "8.0.0-canary.90", - "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.90", - "@graphcommerce/image": "8.0.0-canary.90", - "@graphcommerce/lingui-next": "8.0.0-canary.90", - "@graphcommerce/magento-cart": "8.0.0-canary.90", - "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.90", - "@graphcommerce/magento-cart-checkout": "8.0.0-canary.90", - "@graphcommerce/magento-cart-coupon": "8.0.0-canary.90", - "@graphcommerce/magento-cart-email": "8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.90", - "@graphcommerce/magento-category": "8.0.0-canary.90", - "@graphcommerce/magento-cms": "8.0.0-canary.90", - "@graphcommerce/magento-compare": "8.0.0-canary.90", - "@graphcommerce/magento-customer": "8.0.0-canary.90", - "@graphcommerce/magento-graphql": "8.0.0-canary.90", - "@graphcommerce/magento-newsletter": "8.0.0-canary.90", - "@graphcommerce/magento-payment-included": "8.0.0-canary.90", - "@graphcommerce/magento-product": "8.0.0-canary.90", - "@graphcommerce/magento-product-bundle": "8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "8.0.0-canary.90", - "@graphcommerce/magento-product-downloadable": "8.0.0-canary.90", - "@graphcommerce/magento-product-grouped": "8.0.0-canary.90", - "@graphcommerce/magento-product-simple": "8.0.0-canary.90", - "@graphcommerce/magento-product-virtual": "8.0.0-canary.90", - "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.90", - "@graphcommerce/magento-review": "8.0.0-canary.90", - "@graphcommerce/magento-search": "8.0.0-canary.90", - "@graphcommerce/magento-store": "8.0.0-canary.90", - "@graphcommerce/magento-wishlist": "8.0.0-canary.90", - "@graphcommerce/next-config": "8.0.0-canary.90", - "@graphcommerce/next-ui": "8.0.0-canary.90", - "@graphcommerce/react-hook-form": "8.0.0-canary.90", + "@graphcommerce/cli": "8.0.0-canary.91", + "@graphcommerce/demo-magento-graphcommerce": "8.0.0-canary.91", + "@graphcommerce/ecommerce-ui": "8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "8.0.0-canary.91", + "@graphcommerce/framer-scroller": "8.0.0-canary.91", + "@graphcommerce/framer-utils": "8.0.0-canary.91", + "@graphcommerce/googleanalytics": "8.0.0-canary.91", + "@graphcommerce/googlerecaptcha": "8.0.0-canary.91", + "@graphcommerce/googletagmanager": "8.0.0-canary.91", + "@graphcommerce/graphcms-ui": "8.0.0-canary.91", + "@graphcommerce/graphql": "8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "8.0.0-canary.91", + "@graphcommerce/hygraph-cli": "8.0.0-canary.91", + "@graphcommerce/hygraph-dynamic-rows": "8.0.0-canary.91", + "@graphcommerce/image": "8.0.0-canary.91", + "@graphcommerce/lingui-next": "8.0.0-canary.91", + "@graphcommerce/magento-cart": "8.0.0-canary.91", + "@graphcommerce/magento-cart-billing-address": "8.0.0-canary.91", + "@graphcommerce/magento-cart-checkout": "8.0.0-canary.91", + "@graphcommerce/magento-cart-coupon": "8.0.0-canary.91", + "@graphcommerce/magento-cart-email": "8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-method": "8.0.0-canary.91", + "@graphcommerce/magento-category": "8.0.0-canary.91", + "@graphcommerce/magento-cms": "8.0.0-canary.91", + "@graphcommerce/magento-compare": "8.0.0-canary.91", + "@graphcommerce/magento-customer": "8.0.0-canary.91", + "@graphcommerce/magento-graphql": "8.0.0-canary.91", + "@graphcommerce/magento-newsletter": "8.0.0-canary.91", + "@graphcommerce/magento-payment-included": "8.0.0-canary.91", + "@graphcommerce/magento-product": "8.0.0-canary.91", + "@graphcommerce/magento-product-bundle": "8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "8.0.0-canary.91", + "@graphcommerce/magento-product-downloadable": "8.0.0-canary.91", + "@graphcommerce/magento-product-grouped": "8.0.0-canary.91", + "@graphcommerce/magento-product-simple": "8.0.0-canary.91", + "@graphcommerce/magento-product-virtual": "8.0.0-canary.91", + "@graphcommerce/magento-recently-viewed-products": "8.0.0-canary.91", + "@graphcommerce/magento-review": "8.0.0-canary.91", + "@graphcommerce/magento-search": "8.0.0-canary.91", + "@graphcommerce/magento-store": "8.0.0-canary.91", + "@graphcommerce/magento-wishlist": "8.0.0-canary.91", + "@graphcommerce/next-config": "8.0.0-canary.91", + "@graphcommerce/next-ui": "8.0.0-canary.91", + "@graphcommerce/react-hook-form": "8.0.0-canary.91", "@lingui/core": "4.6.0", "@lingui/macro": "4.6.0", "@lingui/react": "4.6.0", @@ -90,9 +90,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/address-fields-nl/CHANGELOG.md b/packages/address-fields-nl/CHANGELOG.md index 88e90fe6ee..144a9121d1 100644 --- a/packages/address-fields-nl/CHANGELOG.md +++ b/packages/address-fields-nl/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/address-fields-nl +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/address-fields-nl/package.json b/packages/address-fields-nl/package.json index f3add741ff..20f147e425 100644 --- a/packages/address-fields-nl/package.json +++ b/packages/address-fields-nl/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/address-fields-nl", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/algolia-search/CHANGELOG.md b/packages/algolia-search/CHANGELOG.md index 44d18958ad..76a7092476 100644 --- a/packages/algolia-search/CHANGELOG.md +++ b/packages/algolia-search/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphcommerce/algolia-search +## 8.0.0-canary.91 + +### Patch Changes + +- [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`279599e`](https://github.com/graphcommerce-org/graphcommerce/commit/279599e7a86bd96ea9e36065af3c367df9e02a63) - Updated documentation to reflect recent code changes + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/algolia-search/package.json b/packages/algolia-search/package.json index c035559655..ae42f03c8f 100644 --- a/packages/algolia-search/package.json +++ b/packages/algolia-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/algolia-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,17 +16,17 @@ "react-instantsearch-hooks-web": "^6.47.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-search": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-search": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 34754b6275..a18e981d7f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/cli +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/cli/package.json b/packages/cli/package.json index a67151d798..8fb8bd1be4 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -38,11 +38,11 @@ "tslib": "^2.6.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/hygraph-cli": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/hygraph-cli": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1", "react": "^18.2.0" }, diff --git a/packages/demo-magento-graphcommerce/CHANGELOG.md b/packages/demo-magento-graphcommerce/CHANGELOG.md index a7e82c5299..2182720dab 100644 --- a/packages/demo-magento-graphcommerce/CHANGELOG.md +++ b/packages/demo-magento-graphcommerce/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphcommerce/demo-magento-graphcommerce +## 8.0.0-canary.91 + +### Patch Changes + +- [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`871e07a`](https://github.com/graphcommerce-org/graphcommerce/commit/871e07ac8bbb7e6c392a740a8244f69992b42b76) - Recently viewed products would show skeleton items even after loading succeeded + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/demo-magento-graphcommerce/package.json b/packages/demo-magento-graphcommerce/package.json index b8391a51c8..471de97f06 100644 --- a/packages/demo-magento-graphcommerce/package.json +++ b/packages/demo-magento-graphcommerce/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/demo-magento-graphcommerce", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,14 +15,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-recently-viewed-products": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/ecommerce-ui/CHANGELOG.md b/packages/ecommerce-ui/CHANGELOG.md index 02b5647303..9ea5666eea 100644 --- a/packages/ecommerce-ui/CHANGELOG.md +++ b/packages/ecommerce-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/ecommerce-ui +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/ecommerce-ui/package.json b/packages/ecommerce-ui/package.json index e554de378d..97f8c8ceb4 100644 --- a/packages/ecommerce-ui/package.json +++ b/packages/ecommerce-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/ecommerce-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/framer-next-pages/CHANGELOG.md b/packages/framer-next-pages/CHANGELOG.md index 33c3e6a3a5..368dc8c5fd 100644 --- a/packages/framer-next-pages/CHANGELOG.md +++ b/packages/framer-next-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/framer-next-pages/example/CHANGELOG.md b/packages/framer-next-pages/example/CHANGELOG.md index abe33bc12a..c62a2a1021 100644 --- a/packages/framer-next-pages/example/CHANGELOG.md +++ b/packages/framer-next-pages/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/framer-next-pages/example/package.json b/packages/framer-next-pages/example/package.json index 7c08a78c97..ed655dd290 100644 --- a/packages/framer-next-pages/example/package.json +++ b/packages/framer-next-pages/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "scripts": { "dev": "next", "build": "next build", @@ -38,9 +38,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-next-pages/package.json b/packages/framer-next-pages/package.json index 37dcaf79cc..cdbd95f033 100644 --- a/packages/framer-next-pages/package.json +++ b/packages/framer-next-pages/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-next-pages", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,10 +12,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "framer-motion": "^10.0.0", "next": "*", "react": "^18.2.0", diff --git a/packages/framer-scroller/CHANGELOG.md b/packages/framer-scroller/CHANGELOG.md index d28014bf6c..a6f41433d6 100644 --- a/packages/framer-scroller/CHANGELOG.md +++ b/packages/framer-scroller/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/framer-scroller/example/CHANGELOG.md b/packages/framer-scroller/example/CHANGELOG.md index e01cc7e48a..8800fcfb00 100644 --- a/packages/framer-scroller/example/CHANGELOG.md +++ b/packages/framer-scroller/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/framer-scroller/example/package.json b/packages/framer-scroller/example/package.json index 315e178b8d..4779a9cc39 100644 --- a/packages/framer-scroller/example/package.json +++ b/packages/framer-scroller/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/framer-scroller/package.json b/packages/framer-scroller/package.json index 3131a3cd59..8978ac6ad2 100644 --- a/packages/framer-scroller/package.json +++ b/packages/framer-scroller/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-scroller", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "popmotion": "11.0.5" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/react": "^4.2.1", "@mui/material": "^5.10.16", diff --git a/packages/framer-utils/CHANGELOG.md b/packages/framer-utils/CHANGELOG.md index 34ec7454de..3d018daea1 100644 --- a/packages/framer-utils/CHANGELOG.md +++ b/packages/framer-utils/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/framer-utils/package.json b/packages/framer-utils/package.json index 711131da7d..58840e56f9 100644 --- a/packages/framer-utils/package.json +++ b/packages/framer-utils/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/framer-utils", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,9 +15,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "framer-motion": "^10.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/googleanalytics/CHANGELOG.md b/packages/googleanalytics/CHANGELOG.md index 0a2619877b..3f9463c03a 100644 --- a/packages/googleanalytics/CHANGELOG.md +++ b/packages/googleanalytics/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/googleanalytics/package.json b/packages/googleanalytics/package.json index 22a18fd5d3..ef35794e5f 100644 --- a/packages/googleanalytics/package.json +++ b/packages/googleanalytics/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googleanalytics", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,16 +15,16 @@ "@types/gtag.js": "^0.0.18" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googlerecaptcha/CHANGELOG.md b/packages/googlerecaptcha/CHANGELOG.md index 1cb3a0e6bf..c2c3463588 100644 --- a/packages/googlerecaptcha/CHANGELOG.md +++ b/packages/googlerecaptcha/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/googlerecaptcha/package.json b/packages/googlerecaptcha/package.json index 0e29709d0d..dc3c534d22 100644 --- a/packages/googlerecaptcha/package.json +++ b/packages/googlerecaptcha/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googlerecaptcha", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,11 +15,11 @@ "@types/grecaptcha": "^3.0.7" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/googletagmanager/CHANGELOG.md b/packages/googletagmanager/CHANGELOG.md index 0f3bd4bd85..3a1b5274c5 100644 --- a/packages/googletagmanager/CHANGELOG.md +++ b/packages/googletagmanager/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/googletagmanager/package.json b/packages/googletagmanager/package.json index 0313c697c9..97060a93c7 100644 --- a/packages/googletagmanager/package.json +++ b/packages/googletagmanager/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/googletagmanager", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -15,10 +15,10 @@ "@types/gapi.client.tagmanager": "^2.0.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/graphql-mesh/CHANGELOG.md b/packages/graphql-mesh/CHANGELOG.md index 952edeb422..b9d7b46fed 100644 --- a/packages/graphql-mesh/CHANGELOG.md +++ b/packages/graphql-mesh/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/graphql-mesh/package.json b/packages/graphql-mesh/package.json index 9ab916fd37..c0a4ababd4 100644 --- a/packages/graphql-mesh/package.json +++ b/packages/graphql-mesh/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-mesh", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "main": "index.ts", "dependencies": { "@graphql-mesh/apollo-link": "latest", @@ -24,9 +24,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1" }, "devDependencies": { diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index b43708df61..a5db8022d9 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 1a50c7aa96..8ca4004c91 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,8 +13,8 @@ } }, "dependencies": { - "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.90", - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.90", + "@graphcommerce/graphql-codegen-near-operation-file": "8.0.0-canary.91", + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "8.0.0-canary.91", "@graphql-codegen/add": "5.0.0", "@graphql-codegen/fragment-matcher": "5.0.0", "@graphql-codegen/introspection": "4.0.0", @@ -28,9 +28,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/hygraph-cli/CHANGELOG.md b/packages/hygraph-cli/CHANGELOG.md index 25d662febb..93b04e0211 100644 --- a/packages/hygraph-cli/CHANGELOG.md +++ b/packages/hygraph-cli/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-cli +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/hygraph-cli/package.json b/packages/hygraph-cli/package.json index a8b5551ce7..8a084be8c7 100644 --- a/packages/hygraph-cli/package.json +++ b/packages/hygraph-cli/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-cli", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "scripts": { "dev": "tsc --preserveWatchOutput --watch", "build": "tsc", @@ -19,10 +19,10 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "dotenv": "^16.1.4", "graphql": "^16.7.1" }, diff --git a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md index 2b9f5049d3..40610e098c 100644 --- a/packages/hygraph-dynamic-rows-ui/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows-ui +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/hygraph-dynamic-rows-ui/package.json b/packages/hygraph-dynamic-rows-ui/package.json index 02ea2b251c..68f76b2584 100644 --- a/packages/hygraph-dynamic-rows-ui/package.json +++ b/packages/hygraph-dynamic-rows-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "type": "commonjs", "prettier": "@graphcommerce/prettier-config-pwa", @@ -17,7 +17,7 @@ }, "dependencies": { "@apollo/client": "~3.8.8", - "@graphcommerce/next-config": "8.0.0-canary.90", + "@graphcommerce/next-config": "8.0.0-canary.91", "@hygraph/app-sdk-react": "^0.0.3", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", @@ -32,9 +32,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@types/react-is": "^18.2.4", "babel-plugin-macros": "^3.1.0", "eslint": "8.55.0", diff --git a/packages/hygraph-dynamic-rows/CHANGELOG.md b/packages/hygraph-dynamic-rows/CHANGELOG.md index 320cfc5fc3..d36c6243ff 100644 --- a/packages/hygraph-dynamic-rows/CHANGELOG.md +++ b/packages/hygraph-dynamic-rows/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/hygraph-dynamic-rows +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/hygraph-dynamic-rows/package.json b/packages/hygraph-dynamic-rows/package.json index 09059c6b37..231e324cfd 100644 --- a/packages/hygraph-dynamic-rows/package.json +++ b/packages/hygraph-dynamic-rows/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/hygraph-dynamic-rows", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphcms-ui": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphcms-ui": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/hygraph-ui/CHANGELOG.md b/packages/hygraph-ui/CHANGELOG.md index 2160cf9abf..dff89cfd2a 100644 --- a/packages/hygraph-ui/CHANGELOG.md +++ b/packages/hygraph-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/hygraph-ui/package.json b/packages/hygraph-ui/package.json index 6d864a8457..3ca033ae04 100644 --- a/packages/hygraph-ui/package.json +++ b/packages/hygraph-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphcms-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,12 +12,12 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/image/CHANGELOG.md b/packages/image/CHANGELOG.md index d8061f9033..604d39a6c4 100644 --- a/packages/image/CHANGELOG.md +++ b/packages/image/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/image/example/CHANGELOG.md b/packages/image/example/CHANGELOG.md index 6686e038dc..1cd7ecd762 100644 --- a/packages/image/example/CHANGELOG.md +++ b/packages/image/example/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/image/example/package.json b/packages/image/example/package.json index 6c64888dc6..e738977a67 100644 --- a/packages/image/example/package.json +++ b/packages/image/example/package.json @@ -3,7 +3,7 @@ "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", "private": true, - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "scripts": { "dev": "next", "build": "next build", @@ -31,9 +31,9 @@ "webpack": "5.89.0" }, "devDependencies": { - "@graphcommerce/eslint-config-pwa": "8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@lingui/cli": "4.6.0", "@playwright/test": "1.40.1", "@types/node": "^18", diff --git a/packages/image/package.json b/packages/image/package.json index a714bbe5a9..bec5458114 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/image", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -15,10 +15,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "next": "*", "react": "^18.2.0", diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md index d8e4de41fe..9960b995f8 100644 --- a/packages/lighthouse/CHANGELOG.md +++ b/packages/lighthouse/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index 61090af95c..c6930790bb 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lighthouse", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,9 +13,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "next": "*" } } diff --git a/packages/lingui-next/CHANGELOG.md b/packages/lingui-next/CHANGELOG.md index d16fd21112..c5e4ec2321 100644 --- a/packages/lingui-next/CHANGELOG.md +++ b/packages/lingui-next/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/lingui-next/package.json b/packages/lingui-next/package.json index a7aadaa260..18975738ae 100644 --- a/packages/lingui-next/package.json +++ b/packages/lingui-next/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/lingui-next", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "scripts": { "dev": "tsc -W" @@ -18,11 +18,11 @@ "@lingui/conf": "4.6.0" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-billing-address/CHANGELOG.md b/packages/magento-cart-billing-address/CHANGELOG.md index 2fa3c40466..8f3e94ed38 100644 --- a/packages/magento-cart-billing-address/CHANGELOG.md +++ b/packages/magento-cart-billing-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-billing-address/package.json b/packages/magento-cart-billing-address/package.json index 73722cd165..ecbc3aeb48 100644 --- a/packages/magento-cart-billing-address/package.json +++ b/packages/magento-cart-billing-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-billing-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-checkout/CHANGELOG.md b/packages/magento-cart-checkout/CHANGELOG.md index 0f1b11c150..b270c206f0 100644 --- a/packages/magento-cart-checkout/CHANGELOG.md +++ b/packages/magento-cart-checkout/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-checkout/package.json b/packages/magento-cart-checkout/package.json index efccab15fa..c631d18073 100644 --- a/packages/magento-cart-checkout/package.json +++ b/packages/magento-cart-checkout/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-checkout", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-coupon": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-coupon/CHANGELOG.md b/packages/magento-cart-coupon/CHANGELOG.md index 246cb24301..020eca5f18 100644 --- a/packages/magento-cart-coupon/CHANGELOG.md +++ b/packages/magento-cart-coupon/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-coupon/package.json b/packages/magento-cart-coupon/package.json index 97a64a60ae..2815a58a3d 100644 --- a/packages/magento-cart-coupon/package.json +++ b/packages/magento-cart-coupon/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-coupon", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-email/CHANGELOG.md b/packages/magento-cart-email/CHANGELOG.md index b14ee56e7b..8b243ed4f3 100644 --- a/packages/magento-cart-email/CHANGELOG.md +++ b/packages/magento-cart-email/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-email/package.json b/packages/magento-cart-email/package.json index 8b8f7fb526..439904bb9a 100644 --- a/packages/magento-cart-email/package.json +++ b/packages/magento-cart-email/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-email", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-items/CHANGELOG.md b/packages/magento-cart-items/CHANGELOG.md index 3212038f71..22c1b27b21 100644 --- a/packages/magento-cart-items/CHANGELOG.md +++ b/packages/magento-cart-items/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-items/package.json b/packages/magento-cart-items/package.json index 36f9a68bd0..533c7b8812 100644 --- a/packages/magento-cart-items/package.json +++ b/packages/magento-cart-items/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-items", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-payment-method/CHANGELOG.md b/packages/magento-cart-payment-method/CHANGELOG.md index 35c02cf03a..fd495fd17a 100644 --- a/packages/magento-cart-payment-method/CHANGELOG.md +++ b/packages/magento-cart-payment-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-payment-method/package.json b/packages/magento-cart-payment-method/package.json index 7ea6ed9ec9..d7d50254d2 100644 --- a/packages/magento-cart-payment-method/package.json +++ b/packages/magento-cart-payment-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-payment-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-pickup/CHANGELOG.md b/packages/magento-cart-pickup/CHANGELOG.md index ebb2f8cd9c..eda3de7995 100644 --- a/packages/magento-cart-pickup/CHANGELOG.md +++ b/packages/magento-cart-pickup/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-pickup/package.json b/packages/magento-cart-pickup/package.json index 0474504a49..c41fcaff0a 100644 --- a/packages/magento-cart-pickup/package.json +++ b/packages/magento-cart-pickup/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-pickup", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-method": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-address/CHANGELOG.md b/packages/magento-cart-shipping-address/CHANGELOG.md index 96280281f2..451e2db092 100644 --- a/packages/magento-cart-shipping-address/CHANGELOG.md +++ b/packages/magento-cart-shipping-address/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-shipping-address/package.json b/packages/magento-cart-shipping-address/package.json index 70dbe587fd..f75cb56d6a 100644 --- a/packages/magento-cart-shipping-address/package.json +++ b/packages/magento-cart-shipping-address/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-address", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart-shipping-method/CHANGELOG.md b/packages/magento-cart-shipping-method/CHANGELOG.md index 2476700df0..85e64be2d0 100644 --- a/packages/magento-cart-shipping-method/CHANGELOG.md +++ b/packages/magento-cart-shipping-method/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cart-shipping-method/package.json b/packages/magento-cart-shipping-method/package.json index 9bdcd7dacc..b4dd4fb08f 100644 --- a/packages/magento-cart-shipping-method/package.json +++ b/packages/magento-cart-shipping-method/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart-shipping-method", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,17 +12,17 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cart/CHANGELOG.md b/packages/magento-cart/CHANGELOG.md index 10aabea40d..7dc2ae5e76 100644 --- a/packages/magento-cart/CHANGELOG.md +++ b/packages/magento-cart/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ### Patch Changes diff --git a/packages/magento-cart/package.json b/packages/magento-cart/package.json index a78370b164..86a98bc73c 100644 --- a/packages/magento-cart/package.json +++ b/packages/magento-cart/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cart", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,20 +12,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-category/CHANGELOG.md b/packages/magento-category/CHANGELOG.md index 36047473ed..4fe6ba381d 100644 --- a/packages/magento-category/CHANGELOG.md +++ b/packages/magento-category/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-category/package.json b/packages/magento-category/package.json index 6def0bb1d0..a9ef055ecf 100644 --- a/packages/magento-category/package.json +++ b/packages/magento-category/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-category", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-cms/CHANGELOG.md b/packages/magento-cms/CHANGELOG.md index 3d9cef1596..22fa9c2647 100644 --- a/packages/magento-cms/CHANGELOG.md +++ b/packages/magento-cms/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-cms/package.json b/packages/magento-cms/package.json index 0e6f002148..2fb05ec81e 100644 --- a/packages/magento-cms/package.json +++ b/packages/magento-cms/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-cms", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,11 +12,11 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-compare/CHANGELOG.md b/packages/magento-compare/CHANGELOG.md index 5b7a83f202..bdcd17ff9b 100644 --- a/packages/magento-compare/CHANGELOG.md +++ b/packages/magento-compare/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-compare +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-compare/package.json b/packages/magento-compare/package.json index 320a6baee7..5f03b11e77 100644 --- a/packages/magento-compare/package.json +++ b/packages/magento-compare/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-compare", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer-account/CHANGELOG.md b/packages/magento-customer-account/CHANGELOG.md index ff57214434..33838ba9ec 100644 --- a/packages/magento-customer-account/CHANGELOG.md +++ b/packages/magento-customer-account/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-customer-account/package.json b/packages/magento-customer-account/package.json index 054ad5c156..9a52462b39 100644 --- a/packages/magento-customer-account/package.json +++ b/packages/magento-customer-account/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-account", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,9 +12,9 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91" } } diff --git a/packages/magento-customer-order/CHANGELOG.md b/packages/magento-customer-order/CHANGELOG.md index 206848ffe0..0c6c9a1f06 100644 --- a/packages/magento-customer-order/CHANGELOG.md +++ b/packages/magento-customer-order/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-customer-order/package.json b/packages/magento-customer-order/package.json index 948fde3050..72d3accefd 100644 --- a/packages/magento-customer-order/package.json +++ b/packages/magento-customer-order/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer-order", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-customer/CHANGELOG.md b/packages/magento-customer/CHANGELOG.md index e147713de3..dcd285c656 100644 --- a/packages/magento-customer/CHANGELOG.md +++ b/packages/magento-customer/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ### Patch Changes diff --git a/packages/magento-customer/package.json b/packages/magento-customer/package.json index 29f14fb9eb..0531043492 100644 --- a/packages/magento-customer/package.json +++ b/packages/magento-customer/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-customer", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-graphql/CHANGELOG.md b/packages/magento-graphql/CHANGELOG.md index 600330e960..c775c6382b 100644 --- a/packages/magento-graphql/CHANGELOG.md +++ b/packages/magento-graphql/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-graphql/package.json b/packages/magento-graphql/package.json index c868a78709..ad11156328 100644 --- a/packages/magento-graphql/package.json +++ b/packages/magento-graphql/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-graphql", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "main": "index.ts", "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,10 +13,10 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "next": "*", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/packages/magento-newsletter/CHANGELOG.md b/packages/magento-newsletter/CHANGELOG.md index c3004b9a56..b802dec7ef 100644 --- a/packages/magento-newsletter/CHANGELOG.md +++ b/packages/magento-newsletter/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-newsletter/package.json b/packages/magento-newsletter/package.json index b69d4378ea..7f35779698 100644 --- a/packages/magento-newsletter/package.json +++ b/packages/magento-newsletter/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-newsletter", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-pagebuilder/CHANGELOG.md b/packages/magento-pagebuilder/CHANGELOG.md index 5b68774e83..aab4b1882f 100644 --- a/packages/magento-pagebuilder/CHANGELOG.md +++ b/packages/magento-pagebuilder/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-pagebuilder +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-pagebuilder/package.json b/packages/magento-pagebuilder/package.json index 6226754824..648fee375a 100644 --- a/packages/magento-pagebuilder/package.json +++ b/packages/magento-pagebuilder/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-pagebuilder", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,15 +18,15 @@ "jsdom": "^23.0.1" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-category": "^8.0.0-canary.90", - "@graphcommerce/magento-cms": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-category": "^8.0.0-canary.91", + "@graphcommerce/magento-cms": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-adyen/CHANGELOG.md b/packages/magento-payment-adyen/CHANGELOG.md index 9dd13283ca..8bf6ff889d 100644 --- a/packages/magento-payment-adyen/CHANGELOG.md +++ b/packages/magento-payment-adyen/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-adyen +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-adyen/package.json b/packages/magento-payment-adyen/package.json index 5437145134..ebba974f40 100644 --- a/packages/magento-payment-adyen/package.json +++ b/packages/magento-payment-adyen/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-adyen", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,18 +12,18 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-braintree/CHANGELOG.md b/packages/magento-payment-braintree/CHANGELOG.md index 4e8e179ea7..c9dc3a8654 100644 --- a/packages/magento-payment-braintree/CHANGELOG.md +++ b/packages/magento-payment-braintree/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-braintree/package.json b/packages/magento-payment-braintree/package.json index 103faf0c7e..580357da8e 100644 --- a/packages/magento-payment-braintree/package.json +++ b/packages/magento-payment-braintree/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-braintree", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,19 +18,19 @@ "braintree-web": "^3.97.4" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-included/CHANGELOG.md b/packages/magento-payment-included/CHANGELOG.md index b100905f87..6650012a1c 100644 --- a/packages/magento-payment-included/CHANGELOG.md +++ b/packages/magento-payment-included/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-included/package.json b/packages/magento-payment-included/package.json index 2f06d5b5da..dfbd5e6841 100644 --- a/packages/magento-payment-included/package.json +++ b/packages/magento-payment-included/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-included", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-klarna/CHANGELOG.md b/packages/magento-payment-klarna/CHANGELOG.md index 02aeaaf382..7623d345cc 100644 --- a/packages/magento-payment-klarna/CHANGELOG.md +++ b/packages/magento-payment-klarna/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-klarna/package.json b/packages/magento-payment-klarna/package.json index d29f3e0417..9b72ac283f 100644 --- a/packages/magento-payment-klarna/package.json +++ b/packages/magento-payment-klarna/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-klarna", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "private": true, "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", @@ -13,14 +13,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-multisafepay/CHANGELOG.md b/packages/magento-payment-multisafepay/CHANGELOG.md index dacaf9ff60..b81b2177b7 100644 --- a/packages/magento-payment-multisafepay/CHANGELOG.md +++ b/packages/magento-payment-multisafepay/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-multisafepay +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-multisafepay/package.json b/packages/magento-payment-multisafepay/package.json index c91e1e4a73..4a8a0ae41c 100644 --- a/packages/magento-payment-multisafepay/package.json +++ b/packages/magento-payment-multisafepay/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-multisafepay", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,22 +12,22 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-checkout": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-payment-paypal/CHANGELOG.md b/packages/magento-payment-paypal/CHANGELOG.md index 4b3238e2d7..4ceec8d5f1 100644 --- a/packages/magento-payment-paypal/CHANGELOG.md +++ b/packages/magento-payment-paypal/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-payment-paypal +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-payment-paypal/package.json b/packages/magento-payment-paypal/package.json index a610042c18..96f9eb0167 100644 --- a/packages/magento-payment-paypal/package.json +++ b/packages/magento-payment-paypal/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-payment-paypal", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-bundle/CHANGELOG.md b/packages/magento-product-bundle/CHANGELOG.md index 2112ccb329..76a998d122 100644 --- a/packages/magento-product-bundle/CHANGELOG.md +++ b/packages/magento-product-bundle/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-bundle/package.json b/packages/magento-product-bundle/package.json index e8402edb6d..ea74ead8c9 100644 --- a/packages/magento-product-bundle/package.json +++ b/packages/magento-product-bundle/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-bundle", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,19 +12,19 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.91", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-configurable/CHANGELOG.md b/packages/magento-product-configurable/CHANGELOG.md index fa7516dacd..2e79603b8e 100644 --- a/packages/magento-product-configurable/CHANGELOG.md +++ b/packages/magento-product-configurable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-configurable/package.json b/packages/magento-product-configurable/package.json index 0bcd373dab..75f4e4f617 100644 --- a/packages/magento-product-configurable/package.json +++ b/packages/magento-product-configurable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-configurable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,23 +12,23 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/lingui-next": "8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", - "@graphcommerce/magento-category": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/lingui-next": "8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.91", + "@graphcommerce/magento-category": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-downloadable/CHANGELOG.md b/packages/magento-product-downloadable/CHANGELOG.md index 5388e2c4ef..30e40c24d2 100644 --- a/packages/magento-product-downloadable/CHANGELOG.md +++ b/packages/magento-product-downloadable/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-downloadable/package.json b/packages/magento-product-downloadable/package.json index 380283f286..521ca8c150 100644 --- a/packages/magento-product-downloadable/package.json +++ b/packages/magento-product-downloadable/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-downloadable", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-grouped/CHANGELOG.md b/packages/magento-product-grouped/CHANGELOG.md index 3c4b8ab4e7..4c42e3bc85 100644 --- a/packages/magento-product-grouped/CHANGELOG.md +++ b/packages/magento-product-grouped/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-grouped/package.json b/packages/magento-product-grouped/package.json index 9d0ca77580..5dba423d5e 100644 --- a/packages/magento-product-grouped/package.json +++ b/packages/magento-product-grouped/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-grouped", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-simple": "^8.0.0-canary.90", - "@graphcommerce/magento-product-virtual": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-simple": "^8.0.0-canary.91", + "@graphcommerce/magento-product-virtual": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-simple/CHANGELOG.md b/packages/magento-product-simple/CHANGELOG.md index 656a003d1a..95ec358f24 100644 --- a/packages/magento-product-simple/CHANGELOG.md +++ b/packages/magento-product-simple/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-simple/package.json b/packages/magento-product-simple/package.json index 5d1df28aff..86253d2441 100644 --- a/packages/magento-product-simple/package.json +++ b/packages/magento-product-simple/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-simple", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product-virtual/CHANGELOG.md b/packages/magento-product-virtual/CHANGELOG.md index e0b79e2318..2b7ed220c7 100644 --- a/packages/magento-product-virtual/CHANGELOG.md +++ b/packages/magento-product-virtual/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product-virtual/package.json b/packages/magento-product-virtual/package.json index e7ed16582f..c2cdba461e 100644 --- a/packages/magento-product-virtual/package.json +++ b/packages/magento-product-virtual/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product-virtual", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,14 +12,14 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-items": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-items": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-product/CHANGELOG.md b/packages/magento-product/CHANGELOG.md index 82766f9a43..e2bddbf629 100644 --- a/packages/magento-product/CHANGELOG.md +++ b/packages/magento-product/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-product/package.json b/packages/magento-product/package.json index f8062d9581..3235d3d154 100644 --- a/packages/magento-product/package.json +++ b/packages/magento-product/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-product", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,18 +18,18 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-recently-viewed-products/CHANGELOG.md b/packages/magento-recently-viewed-products/CHANGELOG.md index 6d8d52e87b..f4dd3c3303 100644 --- a/packages/magento-recently-viewed-products/CHANGELOG.md +++ b/packages/magento-recently-viewed-products/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphcommerce/magento-recently-viewed-products +## 8.0.0-canary.91 + +### Patch Changes + +- [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`871e07a`](https://github.com/graphcommerce-org/graphcommerce/commit/871e07ac8bbb7e6c392a740a8244f69992b42b76) - Recently viewed products would show skeleton items even after loading succeeded + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-recently-viewed-products/package.json b/packages/magento-recently-viewed-products/package.json index 57640533c2..a1e33c7f9f 100644 --- a/packages/magento-recently-viewed-products/package.json +++ b/packages/magento-recently-viewed-products/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-recently-viewed-products", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,16 +12,16 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@mui/material": "^5.10.16", "framer-motion": "^10.0.0", "next": "*", diff --git a/packages/magento-review/CHANGELOG.md b/packages/magento-review/CHANGELOG.md index b82450e3fd..a6bd5ecebf 100644 --- a/packages/magento-review/CHANGELOG.md +++ b/packages/magento-review/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-review/package.json b/packages/magento-review/package.json index 8fd3f59f74..e1c105ed3e 100644 --- a/packages/magento-review/package.json +++ b/packages/magento-review/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-review", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -18,17 +18,17 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-search/CHANGELOG.md b/packages/magento-search/CHANGELOG.md index c9a4742ba1..fd3d340f68 100644 --- a/packages/magento-search/CHANGELOG.md +++ b/packages/magento-search/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-search/package.json b/packages/magento-search/package.json index 5b0aed31a9..b8213f5e16 100644 --- a/packages/magento-search/package.json +++ b/packages/magento-search/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-search", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,15 +12,15 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-store/CHANGELOG.md b/packages/magento-store/CHANGELOG.md index 561a0d153e..9ef9893c7c 100644 --- a/packages/magento-store/CHANGELOG.md +++ b/packages/magento-store/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-store/package.json b/packages/magento-store/package.json index fc55a27452..2606dc5543 100644 --- a/packages/magento-store/package.json +++ b/packages/magento-store/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/magento-store", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,13 +12,13 @@ } }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/magento-wishlist/CHANGELOG.md b/packages/magento-wishlist/CHANGELOG.md index 53bc739311..2c13b4cc62 100644 --- a/packages/magento-wishlist/CHANGELOG.md +++ b/packages/magento-wishlist/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/magento-wishlist +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/magento-wishlist/package.json b/packages/magento-wishlist/package.json index ca7deeb9e8..fc32d3ed42 100644 --- a/packages/magento-wishlist/package.json +++ b/packages/magento-wishlist/package.json @@ -1,6 +1,6 @@ { "name": "@graphcommerce/magento-wishlist", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "browserslist": [ @@ -13,20 +13,20 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-customer": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-config": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-customer": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-config": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/mollie-magento-payment/CHANGELOG.md b/packages/mollie-magento-payment/CHANGELOG.md index 01eda35fb7..f22f1ae6f5 100644 --- a/packages/mollie-magento-payment/CHANGELOG.md +++ b/packages/mollie-magento-payment/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/mollie-magento-payment/package.json b/packages/mollie-magento-payment/package.json index a6a05063b2..14cc449a52 100644 --- a/packages/mollie-magento-payment/package.json +++ b/packages/mollie-magento-payment/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/mollie-magento-payment", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -12,21 +12,21 @@ } }, "peerDependencies": { - "@graphcommerce/ecommerce-ui": "^8.0.0-canary.90", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/graphql": "^8.0.0-canary.90", - "@graphcommerce/graphql-mesh": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/magento-cart": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.90", - "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.90", - "@graphcommerce/magento-product": "^8.0.0-canary.90", - "@graphcommerce/magento-product-configurable": "^8.0.0-canary.90", - "@graphcommerce/magento-store": "^8.0.0-canary.90", - "@graphcommerce/next-ui": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/react-hook-form": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/ecommerce-ui": "^8.0.0-canary.91", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/graphql": "^8.0.0-canary.91", + "@graphcommerce/graphql-mesh": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/magento-cart": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-payment-method": "^8.0.0-canary.91", + "@graphcommerce/magento-cart-shipping-address": "^8.0.0-canary.91", + "@graphcommerce/magento-product": "^8.0.0-canary.91", + "@graphcommerce/magento-product-configurable": "^8.0.0-canary.91", + "@graphcommerce/magento-store": "^8.0.0-canary.91", + "@graphcommerce/next-ui": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/react-hook-form": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/next-ui/CHANGELOG.md b/packages/next-ui/CHANGELOG.md index 33d1c2dc98..1b175e4343 100644 --- a/packages/next-ui/CHANGELOG.md +++ b/packages/next-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/next-ui/package.json b/packages/next-ui/package.json index 9ff7548173..988a3066f2 100644 --- a/packages/next-ui/package.json +++ b/packages/next-ui/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-ui", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -25,14 +25,14 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/framer-next-pages": "^8.0.0-canary.90", - "@graphcommerce/framer-scroller": "^8.0.0-canary.90", - "@graphcommerce/framer-utils": "^8.0.0-canary.90", - "@graphcommerce/image": "^8.0.0-canary.90", - "@graphcommerce/lingui-next": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/framer-next-pages": "^8.0.0-canary.91", + "@graphcommerce/framer-scroller": "^8.0.0-canary.91", + "@graphcommerce/framer-utils": "^8.0.0-canary.91", + "@graphcommerce/image": "^8.0.0-canary.91", + "@graphcommerce/lingui-next": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "@lingui/core": "^4.2.1", "@lingui/macro": "^4.2.1", "@lingui/react": "^4.2.1", diff --git a/packages/react-hook-form/CHANGELOG.md b/packages/react-hook-form/CHANGELOG.md index 075a978759..c08044f477 100644 --- a/packages/react-hook-form/CHANGELOG.md +++ b/packages/react-hook-form/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index c9b84baf94..66347c6c05 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/react-hook-form", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "prettier": "@graphcommerce/prettier-config-pwa", "eslintConfig": { @@ -16,9 +16,9 @@ }, "peerDependencies": { "@apollo/client": "^3", - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/packagesDev/browserslist-config/CHANGELOG.md b/packagesDev/browserslist-config/CHANGELOG.md index c4ca790b87..d80ce4a4a9 100644 --- a/packagesDev/browserslist-config/CHANGELOG.md +++ b/packagesDev/browserslist-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/browserslist-config/package.json b/packagesDev/browserslist-config/package.json index ac23273872..22c1ee491c 100644 --- a/packagesDev/browserslist-config/package.json +++ b/packagesDev/browserslist-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/browserslist-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "main": "index.js", "sideEffects": false } diff --git a/packagesDev/changeset-changelog/CHANGELOG.md b/packagesDev/changeset-changelog/CHANGELOG.md index 4123f87632..4b749ad9cd 100644 --- a/packagesDev/changeset-changelog/CHANGELOG.md +++ b/packagesDev/changeset-changelog/CHANGELOG.md @@ -1,5 +1,7 @@ # @graphcommerce/changeset-changelog +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/changeset-changelog/package.json b/packagesDev/changeset-changelog/package.json index d2591c71f0..8b4a241bfc 100644 --- a/packagesDev/changeset-changelog/package.json +++ b/packagesDev/changeset-changelog/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/changeset-changelog", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/eslint-config/CHANGELOG.md b/packagesDev/eslint-config/CHANGELOG.md index 2b1f46527c..d3f70099d3 100644 --- a/packagesDev/eslint-config/CHANGELOG.md +++ b/packagesDev/eslint-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/eslint-config/package.json b/packagesDev/eslint-config/package.json index e16c33ba13..08614261ad 100644 --- a/packagesDev/eslint-config/package.json +++ b/packagesDev/eslint-config/package.json @@ -2,10 +2,10 @@ "name": "@graphcommerce/eslint-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "main": "index.js", "dependencies": { - "@graphcommerce/typescript-config-pwa": "8.0.0-canary.90", + "@graphcommerce/typescript-config-pwa": "8.0.0-canary.91", "@next/eslint-plugin-next": "14.0.4", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", diff --git a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md index 0cc56aaf8c..68d17cda15 100644 --- a/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md +++ b/packagesDev/graphql-codegen-markdown-docs/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/graphql-codegen-markdown-docs/package.json b/packagesDev/graphql-codegen-markdown-docs/package.json index 6a197dbbdc..d12b3cde0f 100644 --- a/packagesDev/graphql-codegen-markdown-docs/package.json +++ b/packagesDev/graphql-codegen-markdown-docs/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-markdown-docs", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md index 249cba2d18..17dfa6ef0c 100644 --- a/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md +++ b/packagesDev/graphql-codegen-near-operation-file/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/graphql-codegen-near-operation-file/package.json b/packagesDev/graphql-codegen-near-operation-file/package.json index 9a77b8c959..96e836bc00 100644 --- a/packagesDev/graphql-codegen-near-operation-file/package.json +++ b/packagesDev/graphql-codegen-near-operation-file/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-near-operation-file", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "type": "commonjs", "main": "dist/index.js", @@ -29,9 +29,9 @@ "parse-filepath": "^1.0.2" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/typescript-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1" } } diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md index 0df01afa33..3b3253e3cb 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json index e998a48f6a..652284ec54 100644 --- a/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json +++ b/packagesDev/graphql-codegen-relay-optimizer-plugin/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.", "type": "commonjs", "main": "dist/index.js", @@ -27,8 +27,8 @@ "typescript": "5.3.3" }, "peerDependencies": { - "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.90", - "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.90", + "@graphcommerce/eslint-config-pwa": "^8.0.0-canary.91", + "@graphcommerce/prettier-config-pwa": "^8.0.0-canary.91", "graphql": "^16.7.1" }, "prettier": "@graphcommerce/prettier-config-pwa", diff --git a/packagesDev/next-config/CHANGELOG.md b/packagesDev/next-config/CHANGELOG.md index 639ab10381..8a8ba6ff90 100644 --- a/packagesDev/next-config/CHANGELOG.md +++ b/packagesDev/next-config/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.0.0-canary.91 + +### Patch Changes + +- [#2172](https://github.com/graphcommerce-org/graphcommerce/pull/2172) [`279599e`](https://github.com/graphcommerce-org/graphcommerce/commit/279599e7a86bd96ea9e36065af3c367df9e02a63) - Updated documentation to reflect recent code changes + ([@paales](https://github.com/paales)) + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/next-config/package.json b/packagesDev/next-config/package.json index 2743561720..48d03423c7 100644 --- a/packagesDev/next-config/package.json +++ b/packagesDev/next-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/next-config", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "type": "commonjs", "main": "dist/index.js", "types": "src/index.ts", diff --git a/packagesDev/prettier-config/CHANGELOG.md b/packagesDev/prettier-config/CHANGELOG.md index add3ee221f..2edc4ef138 100644 --- a/packagesDev/prettier-config/CHANGELOG.md +++ b/packagesDev/prettier-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/prettier-config/package.json b/packagesDev/prettier-config/package.json index 862e779dde..1eabdb8a5b 100644 --- a/packagesDev/prettier-config/package.json +++ b/packagesDev/prettier-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/prettier-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "dependencies": { "prettier-plugin-jsdoc": "^1.1.1" }, diff --git a/packagesDev/typescript-config/CHANGELOG.md b/packagesDev/typescript-config/CHANGELOG.md index 1869d65ec3..5c2b69ead6 100644 --- a/packagesDev/typescript-config/CHANGELOG.md +++ b/packagesDev/typescript-config/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.0.0-canary.91 + ## 8.0.0-canary.90 ## 8.0.0-canary.89 diff --git a/packagesDev/typescript-config/package.json b/packagesDev/typescript-config/package.json index 368511ec9d..34251eed81 100644 --- a/packagesDev/typescript-config/package.json +++ b/packagesDev/typescript-config/package.json @@ -2,7 +2,7 @@ "name": "@graphcommerce/typescript-config-pwa", "homepage": "https://www.graphcommerce.org/", "repository": "github:graphcommerce-org/graphcommerce", - "version": "8.0.0-canary.90", + "version": "8.0.0-canary.91", "sideEffects": false, "devDependencies": { "@tsconfig/node18": "^18.2.2" diff --git a/yarn.lock b/yarn.lock index ad46126f73..77654c6b51 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2570,14 +2570,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/address-fields-nl@workspace:packages/address-fields-nl" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2595,17 +2595,17 @@ __metadata: algoliasearch: "npm:^4.21.0" react-instantsearch-hooks-web: "npm:^6.47.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-search": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-search": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2630,7 +2630,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/cli@npm:8.0.0-canary.90, @graphcommerce/cli@workspace:packages/cli": +"@graphcommerce/cli@npm:8.0.0-canary.91, @graphcommerce/cli@workspace:packages/cli": version: 0.0.0-use.local resolution: "@graphcommerce/cli@workspace:packages/cli" dependencies: @@ -2649,11 +2649,11 @@ __metadata: rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/hygraph-cli": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/hygraph-cli": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 react: ^18.2.0 bin: @@ -2668,18 +2668,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.90, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": +"@graphcommerce/demo-magento-graphcommerce@npm:8.0.0-canary.91, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": version: 0.0.0-use.local resolution: "@graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-recently-viewed-products": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -2692,20 +2692,20 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/docs@workspace:docs" peerDependencies: - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 languageName: unknown linkType: soft -"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.90, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": +"@graphcommerce/ecommerce-ui@npm:8.0.0-canary.91, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": version: 0.0.0-use.local resolution: "@graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2717,11 +2717,11 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.90, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": +"@graphcommerce/eslint-config-pwa@npm:8.0.0-canary.91, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": version: 0.0.0-use.local resolution: "@graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config" dependencies: - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@next/eslint-plugin-next": "npm:14.0.4" "@typescript-eslint/eslint-plugin": "npm:^6.14.0" "@typescript-eslint/parser": "npm:^6.14.0" @@ -2741,9 +2741,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages-example@workspace:packages/framer-next-pages/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2777,14 +2777,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-next-pages@npm:8.0.0-canary.90, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": +"@graphcommerce/framer-next-pages@npm:8.0.0-canary.91, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages@workspace:packages/framer-next-pages" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 framer-motion: ^10.0.0 next: "*" react: ^18.2.0 @@ -2796,9 +2796,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller-example@workspace:packages/framer-scroller/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -2832,17 +2832,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-scroller@npm:8.0.0-canary.90, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": +"@graphcommerce/framer-scroller@npm:8.0.0-canary.91, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller@workspace:packages/framer-scroller" dependencies: popmotion: "npm:11.0.5" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/react": ^4.2.1 "@mui/material": ^5.10.16 @@ -2853,37 +2853,37 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-utils@npm:8.0.0-canary.90, @graphcommerce/framer-utils@workspace:packages/framer-utils": +"@graphcommerce/framer-utils@npm:8.0.0-canary.91, @graphcommerce/framer-utils@workspace:packages/framer-utils": version: 0.0.0-use.local resolution: "@graphcommerce/framer-utils@workspace:packages/framer-utils" dependencies: framesync: "npm:^6.1.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 framer-motion: ^10.0.0 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/googleanalytics@npm:8.0.0-canary.90, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": +"@graphcommerce/googleanalytics@npm:8.0.0-canary.91, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": version: 0.0.0-use.local resolution: "@graphcommerce/googleanalytics@workspace:packages/googleanalytics" dependencies: "@types/gtag.js": "npm:^0.0.18" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2900,17 +2900,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.90, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": +"@graphcommerce/googlerecaptcha@npm:8.0.0-canary.91, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": version: 0.0.0-use.local resolution: "@graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha" dependencies: "@types/grecaptcha": "npm:^3.0.7" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2918,32 +2918,32 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googletagmanager@npm:8.0.0-canary.90, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": +"@graphcommerce/googletagmanager@npm:8.0.0-canary.91, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": version: 0.0.0-use.local resolution: "@graphcommerce/googletagmanager@workspace:packages/googletagmanager" dependencies: "@types/gapi.client.tagmanager": "npm:^2.0.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/graphcms-ui@npm:8.0.0-canary.90, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": +"@graphcommerce/graphcms-ui@npm:8.0.0-canary.91, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": version: 0.0.0-use.local resolution: "@graphcommerce/graphcms-ui@workspace:packages/hygraph-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -2962,14 +2962,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.90, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": +"@graphcommerce/graphql-codegen-near-operation-file@npm:8.0.0-canary.91, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file" dependencies: @@ -2980,14 +2980,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.90, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": +"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:8.0.0-canary.91, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin" dependencies: @@ -3001,13 +3001,13 @@ __metadata: ts-jest: "npm:29.1.1" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-mesh@npm:8.0.0-canary.90, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": +"@graphcommerce/graphql-mesh@npm:8.0.0-canary.91, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-mesh@workspace:packages/graphql-mesh" dependencies: @@ -3030,19 +3030,19 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql@npm:8.0.0-canary.90, @graphcommerce/graphql@workspace:packages/graphql": +"@graphcommerce/graphql@npm:8.0.0-canary.91, @graphcommerce/graphql@workspace:packages/graphql": version: 0.0.0-use.local resolution: "@graphcommerce/graphql@workspace:packages/graphql" dependencies: - "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.90" - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.90" + "@graphcommerce/graphql-codegen-near-operation-file": "npm:8.0.0-canary.91" + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:8.0.0-canary.91" "@graphql-codegen/add": "npm:5.0.0" "@graphql-codegen/fragment-matcher": "npm:5.0.0" "@graphql-codegen/introspection": "npm:4.0.0" @@ -3055,16 +3055,16 @@ __metadata: apollo3-cache-persist: "npm:^0.14.1" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.7.1 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/hygraph-cli@npm:8.0.0-canary.90, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": +"@graphcommerce/hygraph-cli@npm:8.0.0-canary.91, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-cli@workspace:packages/hygraph-cli" dependencies: @@ -3076,10 +3076,10 @@ __metadata: typescript: "npm:5.3.3" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 dotenv: ^16.1.4 graphql: ^16.7.1 languageName: unknown @@ -3090,10 +3090,10 @@ __metadata: resolution: "@graphcommerce/hygraph-dynamic-rows-ui@workspace:packages/hygraph-dynamic-rows-ui" dependencies: "@apollo/client": "npm:~3.8.8" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/next-config": "npm:8.0.0-canary.90" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/next-config": "npm:8.0.0-canary.91" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@hygraph/app-sdk-react": "npm:^0.0.3" "@lingui/core": "npm:^4.2.1" "@lingui/macro": "npm:^4.2.1" @@ -3114,17 +3114,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.90, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": +"@graphcommerce/hygraph-dynamic-rows@npm:8.0.0-canary.91, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphcms-ui": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphcms-ui": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3136,9 +3136,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/image-example@workspace:packages/image/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3172,14 +3172,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/image@npm:8.0.0-canary.90, @graphcommerce/image@workspace:packages/image": +"@graphcommerce/image@npm:8.0.0-canary.91, @graphcommerce/image@workspace:packages/image": version: 0.0.0-use.local resolution: "@graphcommerce/image@workspace:packages/image" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 next: "*" react: ^18.2.0 @@ -3191,24 +3191,24 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/lighthouse@workspace:packages/lighthouse" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 next: "*" languageName: unknown linkType: soft -"@graphcommerce/lingui-next@npm:8.0.0-canary.90, @graphcommerce/lingui-next@workspace:packages/lingui-next": +"@graphcommerce/lingui-next@npm:8.0.0-canary.91, @graphcommerce/lingui-next@workspace:packages/lingui-next": version: 0.0.0-use.local resolution: "@graphcommerce/lingui-next@workspace:packages/lingui-next" dependencies: "@lingui/conf": "npm:4.6.0" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3218,21 +3218,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.90, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": +"@graphcommerce/magento-cart-billing-address@npm:8.0.0-canary.91, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3244,22 +3244,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.90, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": +"@graphcommerce/magento-cart-checkout@npm:8.0.0-canary.91, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-coupon": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3271,19 +3271,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.90, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": +"@graphcommerce/magento-cart-coupon@npm:8.0.0-canary.91, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3295,22 +3295,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-email@npm:8.0.0-canary.90, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": +"@graphcommerce/magento-cart-email@npm:8.0.0-canary.91, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-email@workspace:packages/magento-cart-email" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3322,21 +3322,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-items@npm:8.0.0-canary.90, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": +"@graphcommerce/magento-cart-items@npm:8.0.0-canary.91, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-items@workspace:packages/magento-cart-items" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3348,21 +3348,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.90, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": +"@graphcommerce/magento-cart-payment-method@npm:8.0.0-canary.91, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3378,18 +3378,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-pickup@workspace:packages/magento-cart-pickup" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-method": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3401,20 +3401,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.90, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": +"@graphcommerce/magento-cart-shipping-address@npm:8.0.0-canary.91, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3426,21 +3426,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.90, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": +"@graphcommerce/magento-cart-shipping-method@npm:8.0.0-canary.91, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3452,24 +3452,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart@npm:8.0.0-canary.90, @graphcommerce/magento-cart@workspace:packages/magento-cart": +"@graphcommerce/magento-cart@npm:8.0.0-canary.91, @graphcommerce/magento-cart@workspace:packages/magento-cart": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart@workspace:packages/magento-cart" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3481,19 +3481,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-category@npm:8.0.0-canary.90, @graphcommerce/magento-category@workspace:packages/magento-category": +"@graphcommerce/magento-category@npm:8.0.0-canary.91, @graphcommerce/magento-category@workspace:packages/magento-category": version: 0.0.0-use.local resolution: "@graphcommerce/magento-category@workspace:packages/magento-category" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3504,15 +3504,15 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cms@npm:8.0.0-canary.90, @graphcommerce/magento-cms@workspace:packages/magento-cms": +"@graphcommerce/magento-cms@npm:8.0.0-canary.91, @graphcommerce/magento-cms@workspace:packages/magento-cms": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cms@workspace:packages/magento-cms" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3523,20 +3523,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-compare@npm:8.0.0-canary.90, @graphcommerce/magento-compare@workspace:packages/magento-compare": +"@graphcommerce/magento-compare@npm:8.0.0-canary.91, @graphcommerce/magento-compare@workspace:packages/magento-compare": version: 0.0.0-use.local resolution: "@graphcommerce/magento-compare@workspace:packages/magento-compare" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3553,10 +3553,10 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-account@workspace:packages/magento-customer-account" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 languageName: unknown linkType: soft @@ -3564,16 +3564,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-order@workspace:packages/magento-customer-order" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3585,23 +3585,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-customer@npm:8.0.0-canary.90, @graphcommerce/magento-customer@workspace:packages/magento-customer": +"@graphcommerce/magento-customer@npm:8.0.0-canary.91, @graphcommerce/magento-customer@workspace:packages/magento-customer": version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer@workspace:packages/magento-customer" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3620,56 +3620,56 @@ __metadata: dependencies: "@apollo/client": "npm:~3.8.8" "@ducanh2912/next-pwa": "npm:9.7.2" - "@graphcommerce/cli": "npm:8.0.0-canary.90" - "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.90" - "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.90" - "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.90" - "@graphcommerce/framer-scroller": "npm:8.0.0-canary.90" - "@graphcommerce/framer-utils": "npm:8.0.0-canary.90" - "@graphcommerce/googleanalytics": "npm:8.0.0-canary.90" - "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.90" - "@graphcommerce/googletagmanager": "npm:8.0.0-canary.90" - "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.90" - "@graphcommerce/graphql": "npm:8.0.0-canary.90" - "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.90" - "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.90" - "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.90" - "@graphcommerce/image": "npm:8.0.0-canary.90" - "@graphcommerce/lingui-next": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.90" - "@graphcommerce/magento-category": "npm:8.0.0-canary.90" - "@graphcommerce/magento-cms": "npm:8.0.0-canary.90" - "@graphcommerce/magento-compare": "npm:8.0.0-canary.90" - "@graphcommerce/magento-customer": "npm:8.0.0-canary.90" - "@graphcommerce/magento-graphql": "npm:8.0.0-canary.90" - "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.90" - "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.90" - "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.90" - "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.90" - "@graphcommerce/magento-review": "npm:8.0.0-canary.90" - "@graphcommerce/magento-search": "npm:8.0.0-canary.90" - "@graphcommerce/magento-store": "npm:8.0.0-canary.90" - "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.90" - "@graphcommerce/next-config": "npm:8.0.0-canary.90" - "@graphcommerce/next-ui": "npm:8.0.0-canary.90" - "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.90" - "@graphcommerce/react-hook-form": "npm:8.0.0-canary.90" - "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.90" + "@graphcommerce/cli": "npm:8.0.0-canary.91" + "@graphcommerce/demo-magento-graphcommerce": "npm:8.0.0-canary.91" + "@graphcommerce/ecommerce-ui": "npm:8.0.0-canary.91" + "@graphcommerce/eslint-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/framer-next-pages": "npm:8.0.0-canary.91" + "@graphcommerce/framer-scroller": "npm:8.0.0-canary.91" + "@graphcommerce/framer-utils": "npm:8.0.0-canary.91" + "@graphcommerce/googleanalytics": "npm:8.0.0-canary.91" + "@graphcommerce/googlerecaptcha": "npm:8.0.0-canary.91" + "@graphcommerce/googletagmanager": "npm:8.0.0-canary.91" + "@graphcommerce/graphcms-ui": "npm:8.0.0-canary.91" + "@graphcommerce/graphql": "npm:8.0.0-canary.91" + "@graphcommerce/graphql-mesh": "npm:8.0.0-canary.91" + "@graphcommerce/hygraph-cli": "npm:8.0.0-canary.91" + "@graphcommerce/hygraph-dynamic-rows": "npm:8.0.0-canary.91" + "@graphcommerce/image": "npm:8.0.0-canary.91" + "@graphcommerce/lingui-next": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-billing-address": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-checkout": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-coupon": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-email": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-items": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-payment-method": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-shipping-address": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cart-shipping-method": "npm:8.0.0-canary.91" + "@graphcommerce/magento-category": "npm:8.0.0-canary.91" + "@graphcommerce/magento-cms": "npm:8.0.0-canary.91" + "@graphcommerce/magento-compare": "npm:8.0.0-canary.91" + "@graphcommerce/magento-customer": "npm:8.0.0-canary.91" + "@graphcommerce/magento-graphql": "npm:8.0.0-canary.91" + "@graphcommerce/magento-newsletter": "npm:8.0.0-canary.91" + "@graphcommerce/magento-payment-included": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-bundle": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-configurable": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-downloadable": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-grouped": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-simple": "npm:8.0.0-canary.91" + "@graphcommerce/magento-product-virtual": "npm:8.0.0-canary.91" + "@graphcommerce/magento-recently-viewed-products": "npm:8.0.0-canary.91" + "@graphcommerce/magento-review": "npm:8.0.0-canary.91" + "@graphcommerce/magento-search": "npm:8.0.0-canary.91" + "@graphcommerce/magento-store": "npm:8.0.0-canary.91" + "@graphcommerce/magento-wishlist": "npm:8.0.0-canary.91" + "@graphcommerce/next-config": "npm:8.0.0-canary.91" + "@graphcommerce/next-ui": "npm:8.0.0-canary.91" + "@graphcommerce/prettier-config-pwa": "npm:8.0.0-canary.91" + "@graphcommerce/react-hook-form": "npm:8.0.0-canary.91" + "@graphcommerce/typescript-config-pwa": "npm:8.0.0-canary.91" "@lingui/cli": "npm:4.6.0" "@lingui/core": "npm:4.6.0" "@lingui/macro": "npm:4.6.0" @@ -3704,33 +3704,33 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-graphql@npm:8.0.0-canary.90, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": +"@graphcommerce/magento-graphql@npm:8.0.0-canary.91, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": version: 0.0.0-use.local resolution: "@graphcommerce/magento-graphql@workspace:packages/magento-graphql" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 next: "*" react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/magento-newsletter@npm:8.0.0-canary.90, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": +"@graphcommerce/magento-newsletter@npm:8.0.0-canary.91, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": version: 0.0.0-use.local resolution: "@graphcommerce/magento-newsletter@workspace:packages/magento-newsletter" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3749,15 +3749,15 @@ __metadata: "@types/jsdom": "npm:^21.1.6" jsdom: "npm:^23.0.1" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-category": ^8.0.0-canary.90 - "@graphcommerce/magento-cms": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-category": ^8.0.0-canary.91 + "@graphcommerce/magento-cms": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3773,18 +3773,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-adyen@workspace:packages/magento-payment-adyen" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3802,19 +3802,19 @@ __metadata: "@types/braintree-web": "npm:^3.96.10" braintree-web: "npm:^3.97.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3826,23 +3826,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-payment-included@npm:8.0.0-canary.90, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": +"@graphcommerce/magento-payment-included@npm:8.0.0-canary.91, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-included@workspace:packages/magento-payment-included" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3858,14 +3858,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-klarna@workspace:packages/magento-payment-klarna" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3881,22 +3881,22 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-multisafepay@workspace:packages/magento-payment-multisafepay" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-checkout": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3911,16 +3911,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-paypal@workspace:packages/magento-payment-paypal" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3932,23 +3932,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.90, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": +"@graphcommerce/magento-product-bundle@npm:8.0.0-canary.91, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.91 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3959,27 +3959,27 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.90, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": +"@graphcommerce/magento-product-configurable@npm:8.0.0-canary.91, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/lingui-next": 8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 - "@graphcommerce/magento-category": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/lingui-next": 8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.91 + "@graphcommerce/magento-category": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3991,18 +3991,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.90, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": +"@graphcommerce/magento-product-downloadable@npm:8.0.0-canary.91, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4012,18 +4012,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.90, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": +"@graphcommerce/magento-product-grouped@npm:8.0.0-canary.91, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-simple": ^8.0.0-canary.90 - "@graphcommerce/magento-product-virtual": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-simple": ^8.0.0-canary.91 + "@graphcommerce/magento-product-virtual": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4033,18 +4033,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-simple@npm:8.0.0-canary.90, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": +"@graphcommerce/magento-product-simple@npm:8.0.0-canary.91, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-simple@workspace:packages/magento-product-simple" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4054,18 +4054,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.90, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": +"@graphcommerce/magento-product-virtual@npm:8.0.0-canary.91, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-items": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-items": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4075,25 +4075,25 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product@npm:8.0.0-canary.90, @graphcommerce/magento-product@workspace:packages/magento-product": +"@graphcommerce/magento-product@npm:8.0.0-canary.91, @graphcommerce/magento-product@workspace:packages/magento-product": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product@workspace:packages/magento-product" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4105,20 +4105,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.90, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": +"@graphcommerce/magento-recently-viewed-products@npm:8.0.0-canary.91, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": version: 0.0.0-use.local resolution: "@graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: "*" @@ -4127,24 +4127,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-review@npm:8.0.0-canary.90, @graphcommerce/magento-review@workspace:packages/magento-review": +"@graphcommerce/magento-review@npm:8.0.0-canary.91, @graphcommerce/magento-review@workspace:packages/magento-review": version: 0.0.0-use.local resolution: "@graphcommerce/magento-review@workspace:packages/magento-review" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4155,19 +4155,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-search@npm:8.0.0-canary.90, @graphcommerce/magento-search@workspace:packages/magento-search": +"@graphcommerce/magento-search@npm:8.0.0-canary.91, @graphcommerce/magento-search@workspace:packages/magento-search": version: 0.0.0-use.local resolution: "@graphcommerce/magento-search@workspace:packages/magento-search" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4178,17 +4178,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-store@npm:8.0.0-canary.90, @graphcommerce/magento-store@workspace:packages/magento-store": +"@graphcommerce/magento-store@npm:8.0.0-canary.91, @graphcommerce/magento-store@workspace:packages/magento-store": version: 0.0.0-use.local resolution: "@graphcommerce/magento-store@workspace:packages/magento-store" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4199,24 +4199,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-wishlist@npm:8.0.0-canary.90, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": +"@graphcommerce/magento-wishlist@npm:8.0.0-canary.91, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": version: 0.0.0-use.local resolution: "@graphcommerce/magento-wishlist@workspace:packages/magento-wishlist" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-customer": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-config": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-customer": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-config": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4232,21 +4232,21 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/mollie-magento-payment@workspace:packages/mollie-magento-payment" peerDependencies: - "@graphcommerce/ecommerce-ui": ^8.0.0-canary.90 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/graphql": ^8.0.0-canary.90 - "@graphcommerce/graphql-mesh": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/magento-cart": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.90 - "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.90 - "@graphcommerce/magento-product": ^8.0.0-canary.90 - "@graphcommerce/magento-product-configurable": ^8.0.0-canary.90 - "@graphcommerce/magento-store": ^8.0.0-canary.90 - "@graphcommerce/next-ui": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/react-hook-form": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/ecommerce-ui": ^8.0.0-canary.91 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/graphql": ^8.0.0-canary.91 + "@graphcommerce/graphql-mesh": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/magento-cart": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-payment-method": ^8.0.0-canary.91 + "@graphcommerce/magento-cart-shipping-address": ^8.0.0-canary.91 + "@graphcommerce/magento-product": ^8.0.0-canary.91 + "@graphcommerce/magento-product-configurable": ^8.0.0-canary.91 + "@graphcommerce/magento-store": ^8.0.0-canary.91 + "@graphcommerce/next-ui": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/react-hook-form": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4257,7 +4257,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-config@npm:8.0.0-canary.90, @graphcommerce/next-config@workspace:packagesDev/next-config": +"@graphcommerce/next-config@npm:8.0.0-canary.91, @graphcommerce/next-config@workspace:packagesDev/next-config": version: 0.0.0-use.local resolution: "@graphcommerce/next-config@workspace:packagesDev/next-config" dependencies: @@ -4282,7 +4282,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-ui@npm:8.0.0-canary.90, @graphcommerce/next-ui@workspace:packages/next-ui": +"@graphcommerce/next-ui@npm:8.0.0-canary.91, @graphcommerce/next-ui@workspace:packages/next-ui": version: 0.0.0-use.local resolution: "@graphcommerce/next-ui@workspace:packages/next-ui" dependencies: @@ -4296,14 +4296,14 @@ __metadata: react-is: "npm:^18.2.0" typescript: "npm:5.3.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/framer-next-pages": ^8.0.0-canary.90 - "@graphcommerce/framer-scroller": ^8.0.0-canary.90 - "@graphcommerce/framer-utils": ^8.0.0-canary.90 - "@graphcommerce/image": ^8.0.0-canary.90 - "@graphcommerce/lingui-next": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/framer-next-pages": ^8.0.0-canary.91 + "@graphcommerce/framer-scroller": ^8.0.0-canary.91 + "@graphcommerce/framer-utils": ^8.0.0-canary.91 + "@graphcommerce/image": ^8.0.0-canary.91 + "@graphcommerce/lingui-next": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4316,7 +4316,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.90, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": +"@graphcommerce/prettier-config-pwa@npm:8.0.0-canary.91, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": version: 0.0.0-use.local resolution: "@graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config" dependencies: @@ -4326,16 +4326,16 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/react-hook-form@npm:8.0.0-canary.90, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": +"@graphcommerce/react-hook-form@npm:8.0.0-canary.91, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": version: 0.0.0-use.local resolution: "@graphcommerce/react-hook-form@workspace:packages/react-hook-form" dependencies: "@testing-library/react": "npm:^14.1.2" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.90 - "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.90 + "@graphcommerce/eslint-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/prettier-config-pwa": ^8.0.0-canary.91 + "@graphcommerce/typescript-config-pwa": ^8.0.0-canary.91 graphql: ^16.6.0 react: ^18.2.0 react-dom: ^18.2.0 @@ -4343,7 +4343,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.90, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": +"@graphcommerce/typescript-config-pwa@npm:8.0.0-canary.91, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": version: 0.0.0-use.local resolution: "@graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config" dependencies: From 967a606c5b3b32cdac663f6554e9fc9b7e31fcb0 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Fri, 19 Jan 2024 17:47:47 +0100 Subject: [PATCH 14/75] Updated changelog --- .changeset/afraid-baboons-move.md | 2 +- .changeset/blue-coats-draw.md | 4 ++-- .changeset/brown-planes-retire.md | 2 +- .changeset/calm-bees-care.md | 2 +- .changeset/chilled-pens-mate.md | 2 +- .changeset/chilly-brooms-move.md | 2 +- .changeset/chilly-plants-destroy.md | 5 ----- .changeset/curvy-grapes-accept.md | 5 ----- .changeset/curvy-hairs-suffer.md | 2 +- .changeset/dull-jobs-flash.md | 2 +- .changeset/famous-impalas-destroy.md | 2 +- .changeset/fifty-taxis-speak.md | 2 +- .changeset/forty-islands-march.md | 4 ++-- .changeset/forty-rocks-bow.md | 2 +- .changeset/four-peaches-bake.md | 4 ++-- .changeset/fresh-pens-hide.md | 2 +- .changeset/friendly-islands-cough.md | 2 +- .changeset/friendly-rings-roll.md | 2 +- .changeset/fuzzy-clocks-hug.md | 2 +- .changeset/fuzzy-rings-hug.md | 2 +- .changeset/giant-years-worry.md | 2 +- .changeset/great-fans-thank.md | 5 ----- .changeset/happy-mails-tickle.md | 2 +- .changeset/hip-zoos-refuse.md | 2 +- .changeset/itchy-tables-drive.md | 5 ----- .changeset/lazy-seahorses-rhyme.md | 2 +- .changeset/little-shirts-film.md | 4 ++-- .changeset/little-waves-bow.md | 2 +- .changeset/long-llamas-cheer.md | 2 +- .changeset/long-toys-applaud.md | 5 ----- .changeset/lovely-drinks-rescue.md | 6 ------ .changeset/mean-clocks-share.md | 2 +- .changeset/metal-falcons-applaud.md | 4 ++-- .changeset/modern-carpets-sell.md | 8 ++++---- .changeset/modern-squids-approve.md | 4 ++-- .changeset/nasty-icons-knock.md | 6 +++--- .changeset/new-crews-promise.md | 8 ++++---- .changeset/odd-balloons-sleep.md | 2 +- .changeset/odd-poets-greet.md | 2 +- .changeset/old-bears-push.md | 4 ++-- .changeset/old-cycles-enjoy.md | 6 ------ .changeset/plenty-icons-cough.md | 2 +- .changeset/pretty-hairs-prove.md | 2 +- .changeset/purple-shirts-allow.md | 4 ++-- .changeset/quiet-boats-leave.md | 2 +- .changeset/quiet-cheetahs-build.md | 6 ------ .changeset/quiet-tomatoes-melt.md | 2 +- .changeset/red-ghosts-cry.md | 2 +- .changeset/red-gifts-listen.md | 2 +- .changeset/red-poems-kick.md | 2 +- .changeset/rotten-balloons-think.md | 2 +- .changeset/rotten-lions-chew.md | 2 +- .changeset/rude-bags-draw.md | 4 ++-- .changeset/selfish-peas-fold.md | 4 ++-- .changeset/serious-wasps-itch.md | 2 +- .changeset/seven-seas-shop.md | 2 +- .changeset/sharp-apes-burn.md | 2 +- .changeset/sharp-shrimps-flow.md | 2 +- .changeset/shiny-bikes-kiss.md | 2 +- .changeset/shiny-gifts-mate.md | 2 +- .changeset/shiny-radios-cover.md | 2 +- .changeset/silver-bears-kneel.md | 2 +- .changeset/six-horses-repeat.md | 2 +- .changeset/slow-flies-scream.md | 2 +- .changeset/spicy-squids-compete.md | 4 ++-- .changeset/spotty-pens-explain.md | 4 ++-- .changeset/strong-ants-confess.md | 5 ----- .changeset/stupid-ears-wink.md | 2 +- .changeset/swift-buckets-love.md | 4 ++-- .changeset/tall-candles-watch.md | 2 +- .changeset/tall-spies-reflect.md | 2 +- .changeset/tall-tips-float.md | 2 +- .changeset/tame-dots-call.md | 2 +- .changeset/thick-cougars-cheer.md | 2 +- .changeset/thirty-spiders-battle.md | 2 +- .changeset/three-dogs-clap.md | 2 +- .changeset/twelve-deers-begin.md | 5 ----- .changeset/twelve-tigers-pretend.md | 6 ------ .changeset/wild-ways-sin.md | 2 +- 79 files changed, 89 insertions(+), 148 deletions(-) delete mode 100644 .changeset/chilly-plants-destroy.md delete mode 100644 .changeset/curvy-grapes-accept.md delete mode 100644 .changeset/great-fans-thank.md delete mode 100644 .changeset/itchy-tables-drive.md delete mode 100644 .changeset/long-toys-applaud.md delete mode 100644 .changeset/lovely-drinks-rescue.md delete mode 100644 .changeset/old-cycles-enjoy.md delete mode 100644 .changeset/quiet-cheetahs-build.md delete mode 100644 .changeset/strong-ants-confess.md delete mode 100644 .changeset/twelve-deers-begin.md delete mode 100644 .changeset/twelve-tigers-pretend.md diff --git a/.changeset/afraid-baboons-move.md b/.changeset/afraid-baboons-move.md index 51575d9445..557d748bb3 100644 --- a/.changeset/afraid-baboons-move.md +++ b/.changeset/afraid-baboons-move.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-graphcms': patch --- -Added ProductScroller component with built-in skeleton loader +New `` component for easy horizontal product scrollers. diff --git a/.changeset/blue-coats-draw.md b/.changeset/blue-coats-draw.md index b6f596fd1d..dc019ef15a 100644 --- a/.changeset/blue-coats-draw.md +++ b/.changeset/blue-coats-draw.md @@ -1,5 +1,5 @@ --- -"@graphcommerce/next-ui": patch +'@graphcommerce/next-ui': patch --- -Removed whitespace on top of the zoomed in image on the PDP. +On certain breakpoints the Product page gallery had additional padding applied. diff --git a/.changeset/brown-planes-retire.md b/.changeset/brown-planes-retire.md index d50c37657f..85431dba14 100644 --- a/.changeset/brown-planes-retire.md +++ b/.changeset/brown-planes-retire.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-product': patch --- -Filters which are not yet applied and which option has 0 as item count will not be shown anymore. +Filters which are not yet applied and all options have 0 results, will not be shown anymore. diff --git a/.changeset/calm-bees-care.md b/.changeset/calm-bees-care.md index 20bbd65b8b..b9d3862727 100644 --- a/.changeset/calm-bees-care.md +++ b/.changeset/calm-bees-care.md @@ -2,4 +2,4 @@ '@graphcommerce/next-ui': patch --- -Wrap the logo in a div on the homepage to prevent redirection. +When viewing the homepage the logo will not have a `` tag wrapped anymore. diff --git a/.changeset/chilled-pens-mate.md b/.changeset/chilled-pens-mate.md index c840bca813..de06478bd4 100644 --- a/.changeset/chilled-pens-mate.md +++ b/.changeset/chilled-pens-mate.md @@ -2,4 +2,4 @@ '@graphcommerce/graphcms-ui': patch --- -Add alt text to image inside rich text +Added support for the alt attribute for images inside Rich text areas coming from Hygraph. diff --git a/.changeset/chilly-brooms-move.md b/.changeset/chilly-brooms-move.md index 6b585095d5..674f67525c 100644 --- a/.changeset/chilly-brooms-move.md +++ b/.changeset/chilly-brooms-move.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-product-configurable': patch --- -When selecting a non-existing option on a configurable product page, the price would not update. +When selecting a non-existing option on a configurable product page, the price would be updated. diff --git a/.changeset/chilly-plants-destroy.md b/.changeset/chilly-plants-destroy.md deleted file mode 100644 index 39ce3f3def..0000000000 --- a/.changeset/chilly-plants-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphcommerce/hygraph-dynamic-rows-ui': patch ---- - -Fix eslint errors in Dynamic Rows UI package diff --git a/.changeset/curvy-grapes-accept.md b/.changeset/curvy-grapes-accept.md deleted file mode 100644 index 6bdb1483b8..0000000000 --- a/.changeset/curvy-grapes-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphcommerce/magento-product': patch ---- - -Removed the duplicate omitted name attribute from AddToCartQuantityProps diff --git a/.changeset/curvy-hairs-suffer.md b/.changeset/curvy-hairs-suffer.md index 4387fbadca..1c71d8cd87 100644 --- a/.changeset/curvy-hairs-suffer.md +++ b/.changeset/curvy-hairs-suffer.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-customer': patch --- -Update OrderDetails and styling +Order details page in the customer account section is completely redesigned to be more in line with other areas. diff --git a/.changeset/dull-jobs-flash.md b/.changeset/dull-jobs-flash.md index 15a1a76a83..50b606dfd5 100644 --- a/.changeset/dull-jobs-flash.md +++ b/.changeset/dull-jobs-flash.md @@ -2,4 +2,4 @@ '@graphcommerce/hygraph-dynamic-rows': patch --- -enabled multiple rows per Dynamic Row +Allow muiltiple rows for each Dynamic Row entry in Hygraph diff --git a/.changeset/famous-impalas-destroy.md b/.changeset/famous-impalas-destroy.md index ca38c60a16..d729dbedd8 100644 --- a/.changeset/famous-impalas-destroy.md +++ b/.changeset/famous-impalas-destroy.md @@ -2,4 +2,4 @@ '@graphcommerce/next-ui': patch --- -Added info icon for Snackbar when severity is set to info +The `` component now accepts an icon when severity is set to info diff --git a/.changeset/fifty-taxis-speak.md b/.changeset/fifty-taxis-speak.md index a20b684170..36e4cb6dff 100644 --- a/.changeset/fifty-taxis-speak.md +++ b/.changeset/fifty-taxis-speak.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-graphcms': patch --- -Added recently viewed products to product pages +Added the `` feature to product pages. diff --git a/.changeset/forty-islands-march.md b/.changeset/forty-islands-march.md index 50df326516..e5b6ec338d 100644 --- a/.changeset/forty-islands-march.md +++ b/.changeset/forty-islands-march.md @@ -1,5 +1,5 @@ --- -"@graphcommerce/magento-search": patch +'@graphcommerce/magento-search': patch --- -Make sure the search link in the header is a nextjs navigation +Make sure the search link in the header is a soft navigation instead of a hard browser navigation. diff --git a/.changeset/forty-rocks-bow.md b/.changeset/forty-rocks-bow.md index 020310ef14..0c576880d2 100644 --- a/.changeset/forty-rocks-bow.md +++ b/.changeset/forty-rocks-bow.md @@ -3,4 +3,4 @@ '@graphcommerce/react-hook-form': patch --- -Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This feature can be enabled via the `experimental_useV2` prop on the `useFormGql` component +Created a new experimental mutation abort feature inside `useFormGql`. This will allow redundant mutations to be canceled. This is enabled when the `experimental_useV2` prop on the `useFormGql` hook is used. diff --git a/.changeset/four-peaches-bake.md b/.changeset/four-peaches-bake.md index fc3d4577a2..4aea313cff 100644 --- a/.changeset/four-peaches-bake.md +++ b/.changeset/four-peaches-bake.md @@ -1,5 +1,5 @@ --- -"@graphcommerce/magento-cart": patch +'@graphcommerce/magento-cart': patch --- -When signing in the cartFab would not always properly reflect the current items in the cart +After signing in the `` would not always properly reflect if there are items in the customers cart. diff --git a/.changeset/fresh-pens-hide.md b/.changeset/fresh-pens-hide.md index 56d9e29d23..ce136397b1 100644 --- a/.changeset/fresh-pens-hide.md +++ b/.changeset/fresh-pens-hide.md @@ -2,4 +2,4 @@ '@graphcommerce/next-config': patch --- -Created ./devcontainer/devcontainer.json to automatically run Graphcommerce after opening Codespaces +Created `./devcontainer/devcontainer.json` to automatically run Graphcommerce after opening Codespaces diff --git a/.changeset/friendly-islands-cough.md b/.changeset/friendly-islands-cough.md index 4bdaddea45..f239b91c43 100644 --- a/.changeset/friendly-islands-cough.md +++ b/.changeset/friendly-islands-cough.md @@ -2,4 +2,4 @@ '@graphcommerce/framer-scroller': patch --- -SideBarGallery image won't start scrolling from the beginning if user clicks multiple times on the scroll button. +Fixes issue where the `` would start jumping around if a user clicks the next button multiple times in short succession. diff --git a/.changeset/friendly-rings-roll.md b/.changeset/friendly-rings-roll.md index 0d0496a02c..9e2b173951 100644 --- a/.changeset/friendly-rings-roll.md +++ b/.changeset/friendly-rings-roll.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-compare': patch --- -Fix compare button hover state on product page +Compare button didn't have a proper hover state on the product page. diff --git a/.changeset/fuzzy-clocks-hug.md b/.changeset/fuzzy-clocks-hug.md index ab20bf047d..3e2895d9df 100644 --- a/.changeset/fuzzy-clocks-hug.md +++ b/.changeset/fuzzy-clocks-hug.md @@ -2,4 +2,4 @@ '@graphcommerce/mollie-magento-payment': patch --- -Show error snackbar when payment failed instead of when it was successful +An error message would be shown when a payment was sucessfull instead of when an error occured. diff --git a/.changeset/fuzzy-rings-hug.md b/.changeset/fuzzy-rings-hug.md index 2715f1e5d3..9e04899730 100644 --- a/.changeset/fuzzy-rings-hug.md +++ b/.changeset/fuzzy-rings-hug.md @@ -2,4 +2,4 @@ '@graphcommerce/next-config': patch --- -Moved all internal @graphcommerce/\* dependencies to peerDependencies and resolve remaining peerDependency issues +Moved all internal `@graphcommerce/*` dependencies to `peerDependencies` and resolve remaining peer dependency issues diff --git a/.changeset/giant-years-worry.md b/.changeset/giant-years-worry.md index 145cb927e6..56ba3a51a5 100644 --- a/.changeset/giant-years-worry.md +++ b/.changeset/giant-years-worry.md @@ -2,4 +2,4 @@ '@graphcommerce/magento-cart-items': minor --- -Add crosssells to cart +Added a new `` component to render crosssells in a horizontal scroller in the cart. diff --git a/.changeset/great-fans-thank.md b/.changeset/great-fans-thank.md deleted file mode 100644 index 8002253de3..0000000000 --- a/.changeset/great-fans-thank.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@graphcommerce/next-config': patch ---- - -When releasing there will be changes to the yarn.lock file, but those weren't committed. diff --git a/.changeset/happy-mails-tickle.md b/.changeset/happy-mails-tickle.md index 6a8e1ef524..4030cd0f76 100644 --- a/.changeset/happy-mails-tickle.md +++ b/.changeset/happy-mails-tickle.md @@ -3,4 +3,4 @@ '@graphcommerce/next-ui': minor --- -Added lazy hydration to improve total blocking time. Added LazyHydrate component which can be wrapped around other components you want to lazy hydrate. +Added new `` component to improve the Total Blocking Time and implemented them in, ``, ``, `