@graphcommerce/magento-graphql 3.0.6 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1429](https://github.com/graphcommerce-org/graphcommerce/pull/1429) [`e58df7278`](https://github.com/graphcommerce-org/graphcommerce/commit/e58df727829a12941e7b2ae2159ee2233969493c) Thanks [@paales](https://github.com/paales)! - type policies for Mollie shouldn’t be in the core package
8
+
9
+ ## 3.0.8
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2)]:
14
+ - @graphcommerce/graphql@3.1.1
15
+
16
+ ## 3.0.7
17
+
18
+ ### Patch Changes
19
+
20
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Now using [@graphql-yoga](https://github.com/dotansimha/graphql-yoga) for GraphQL which has full support for [envelop](https://www.envelop.dev/) plugins.
21
+
22
+ * [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Added a new @graphcommerce/cli package to generate the mesh so it can be generated _inside_ the @graphcommerce/graphql-mesh package to allow for better future extensibility.
23
+
24
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
25
+
26
+ - Updated dependencies [[`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542), [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4)]:
27
+ - @graphcommerce/graphql@3.1.0
28
+
3
29
  ## 3.0.6
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-graphql",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "3.0.6",
5
+ "version": "3.0.9",
6
6
  "sideEffects": false,
7
7
  "main": "index.ts",
8
8
  "prettier": "@graphcommerce/prettier-config-pwa",
@@ -13,13 +13,13 @@
13
13
  }
14
14
  },
15
15
  "devDependencies": {
16
- "@graphcommerce/eslint-config-pwa": "^4.1.4",
17
- "@graphcommerce/prettier-config-pwa": "^4.0.5",
16
+ "@graphcommerce/eslint-config-pwa": "^4.1.6",
17
+ "@graphcommerce/prettier-config-pwa": "^4.0.6",
18
18
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
19
- "@playwright/test": "^1.20.1"
19
+ "@playwright/test": "^1.21.1"
20
20
  },
21
21
  "dependencies": {
22
- "@graphcommerce/graphql": "3.0.7"
22
+ "@graphcommerce/graphql": "3.1.1"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "next": "12.1.2",
package/typePolicies.ts CHANGED
@@ -1,11 +1,12 @@
1
- import { TypedTypePolicies } from '@graphcommerce/graphql'
1
+ import { StrictTypedTypePolicies } from '@graphcommerce/graphql'
2
2
 
3
+ /// /todooooo
3
4
  /**
4
5
  * By default we don't need to do anything for types with an `id` or without anything to identify.
5
6
  *
6
7
  * - https://www.apollographql.com/docs/react/caching/cache-configuration/#default-identifier-generation
7
8
  */
8
- export const magentoTypePolicies: TypedTypePolicies = {
9
+ export const magentoTypePolicies: StrictTypedTypePolicies = {
9
10
  // AddBundleProductsToCartOutput: { keyFields: false },
10
11
  // AddConfigurableProductsToCartOutput: { keyFields: false },
11
12
  // AddDownloadableProductsToCartOutput: { keyFields: false },
@@ -147,9 +148,6 @@ export const magentoTypePolicies: TypedTypePolicies = {
147
148
  // LayerFilterItemInterface: { keyFields: false },
148
149
  MediaGalleryEntry: { keyFields: ['uid'] },
149
150
  // MediaGalleryInterface: { keyFields: false },
150
- MollieIssuer: { keyFields: ['code'] },
151
- // MolliePaymentMethodMeta: { keyFields: false },
152
- // MollieTransactionOutput: { keyFields: false },
153
151
  // Money: { keyFields: false },
154
152
  Order: { keyFields: ['order_number'] },
155
153
  // OrderAddress: { keyFields: false },