@graphcommerce/graphql 9.1.0-canary.16 → 9.1.0-canary.17

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,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.1.0-canary.17
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2496](https://github.com/graphcommerce-org/graphcommerce/pull/2496) [`a261149`](https://github.com/graphcommerce-org/graphcommerce/commit/a261149b6b32ad6a35606da2d530b8e41bfa10a0) - ReCaptcha now using the `recaptchaV3Config` query and add a fallback for Magento 2.4.6 and earlier to still use the configuration. Magento 2.4.7 doesn't need that configuration anymore. ([@paales](https://github.com/paales))
8
+
3
9
  ## 9.1.0-canary.16
4
10
 
5
11
  ## 9.1.0-canary.15
@@ -33,9 +33,12 @@ export const persistenceMapper = (data: string): Promise<string> => {
33
33
  'ROOT_QUERY.countries',
34
34
  'ROOT_QUERY.checkoutAgreements',
35
35
  'ROOT_QUERY.storeConfig',
36
+ 'ROOT_QUERY.currency',
36
37
  'ROOT_QUERY.guestOrder',
38
+ 'ROOT_QUERY.cmsBlocks',
37
39
  'ROOT_QUERY.__type*',
38
40
  '*Product:{"uid":"*"}.crosssell_products',
41
+ 'ROOT_QUERY.recaptchaV3Config',
39
42
  ])
40
43
 
41
44
  const cache = new InMemoryCache({})
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/graphql",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.1.0-canary.16",
5
+ "version": "9.1.0-canary.17",
6
6
  "sideEffects": false,
7
7
  "main": "index.ts",
8
8
  "prettier": "@graphcommerce/prettier-config-pwa",
@@ -27,11 +27,11 @@
27
27
  "graphql": "^16.10.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@graphcommerce/eslint-config-pwa": "^9.1.0-canary.16",
31
- "@graphcommerce/graphql-codegen-near-operation-file": "9.1.0-canary.16",
32
- "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.1.0-canary.16",
33
- "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.16",
34
- "@graphcommerce/typescript-config-pwa": "^9.1.0-canary.16",
30
+ "@graphcommerce/eslint-config-pwa": "^9.1.0-canary.17",
31
+ "@graphcommerce/graphql-codegen-near-operation-file": "9.1.0-canary.17",
32
+ "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.1.0-canary.17",
33
+ "@graphcommerce/prettier-config-pwa": "^9.1.0-canary.17",
34
+ "@graphcommerce/typescript-config-pwa": "^9.1.0-canary.17",
35
35
  "@graphql-mesh/plugin-http-details-extensions": "*",
36
36
  "react": "^18.2.0",
37
37
  "react-dom": "^18.2.0"