@graphcommerce/graphql-codegen-markdown-docs 9.0.0-canary.103 → 9.0.0-canary.104

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
  # Change Log
2
2
 
3
+ ## 9.0.0-canary.104
4
+
3
5
  ## 9.0.0-canary.103
4
6
 
5
7
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/graphql-codegen-markdown-docs",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.0-canary.103",
5
+ "version": "9.0.0-canary.104",
6
6
  "sideEffects": false,
7
7
  "type": "commonjs",
8
8
  "main": "dist/index.js",
@@ -30,8 +30,8 @@
30
30
  "parse-filepath": "^1.0.2"
31
31
  },
32
32
  "peerDependencies": {
33
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.103",
34
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.103",
35
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.103"
33
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.104",
34
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.104",
35
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.104"
36
36
  }
37
37
  }
package/src/graphql.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
+ Kind,
2
3
  type ListTypeNode,
3
- type NonNullTypeNode,
4
4
  type NamedTypeNode,
5
- type TypeNode,
5
+ type NonNullTypeNode,
6
6
  type ObjectTypeDefinitionNode,
7
- Kind,
7
+ type TypeNode,
8
8
  } from 'graphql'
9
9
 
10
10
  export const isListType = (typ?: TypeNode): typ is ListTypeNode => typ?.kind === Kind.LIST_TYPE