@graphcommerce/magento-graphql-rest 10.0.0-canary.56 → 10.0.0-canary.57

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,7 @@
1
1
  # @graphcommerce/magento-graphql-rest
2
2
 
3
+ ## 10.0.0-canary.57
4
+
3
5
  ## 10.0.0-canary.56
4
6
 
5
7
  ### Major Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/magento-graphql-rest",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "10.0.0-canary.56",
5
+ "version": "10.0.0-canary.57",
6
6
  "sideEffects": false,
7
7
  "main": "index.ts",
8
8
  "prettier": "@graphcommerce/prettier-config-pwa",
@@ -21,11 +21,11 @@
21
21
  "generate": "tsx ./scripts/generate-spec.mts"
22
22
  },
23
23
  "peerDependencies": {
24
- "@graphcommerce/graphql-mesh": "^10.0.0-canary.56",
25
- "@graphcommerce/magento-product": "^10.0.0-canary.56",
26
- "@graphcommerce/magento-search": "^10.0.0-canary.56",
27
- "@graphcommerce/next-config": "^10.0.0-canary.56",
28
- "@graphcommerce/next-ui": "^10.0.0-canary.56",
24
+ "@graphcommerce/graphql-mesh": "^10.0.0-canary.57",
25
+ "@graphcommerce/magento-product": "^10.0.0-canary.57",
26
+ "@graphcommerce/magento-search": "^10.0.0-canary.57",
27
+ "@graphcommerce/next-config": "^10.0.0-canary.57",
28
+ "@graphcommerce/next-ui": "^10.0.0-canary.57",
29
29
  "graphql": "^16.0.0"
30
30
  },
31
31
  "devDependencies": {
@@ -1,8 +1,8 @@
1
+ import { readFile, writeFile } from 'fs/promises'
2
+ import conf from '@graphcommerce/prettier-config-pwa'
1
3
  import yaml from 'js-yaml'
2
- import { writeFile, readFile } from 'node:fs/promises'
3
4
  import { OpenAPIV3 } from 'openapi-types'
4
5
  import prettier from 'prettier'
5
- import conf from '@graphcommerce/prettier-config-pwa'
6
6
 
7
7
  function isRef(value: any): value is OpenAPIV3.ReferenceObject {
8
8
  return typeof value === 'object' && '$ref' in value