@graphcommerce/hygraph-dynamic-rows-ui 9.0.0-canary.115 → 9.0.0-canary.117

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,9 @@
1
1
  # @graphcommerce/hygraph-dynamic-rows-ui
2
2
 
3
+ ## 9.0.0-canary.117
4
+
5
+ ## 9.0.0-canary.116
6
+
3
7
  ## 9.0.0-canary.115
4
8
 
5
9
  ## 9.0.0-canary.114
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/hygraph-dynamic-rows-ui",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.0-canary.115",
5
+ "version": "9.0.0-canary.117",
6
6
  "sideEffects": false,
7
7
  "type": "commonjs",
8
8
  "prettier": "@graphcommerce/prettier-config-pwa",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@apollo/client": "~3.12.3",
20
- "@graphcommerce/next-config": "9.0.0-canary.115",
20
+ "@graphcommerce/next-config": "9.0.0-canary.117",
21
21
  "@hygraph/app-sdk-react": "^0.0.5",
22
22
  "@lingui/conf": "4.14.1",
23
23
  "@lingui/core": "4.14.1",
@@ -35,9 +35,9 @@
35
35
  "webpack": "^5.97.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@graphcommerce/eslint-config-pwa": "9.0.0-canary.115",
39
- "@graphcommerce/prettier-config-pwa": "9.0.0-canary.115",
40
- "@graphcommerce/typescript-config-pwa": "9.0.0-canary.115",
38
+ "@graphcommerce/eslint-config-pwa": "9.0.0-canary.117",
39
+ "@graphcommerce/prettier-config-pwa": "9.0.0-canary.117",
40
+ "@graphcommerce/typescript-config-pwa": "9.0.0-canary.117",
41
41
  "@types/react": "^18.3.17",
42
42
  "@types/react-dom": "^18.3.5",
43
43
  "@types/react-is": "^18.3.1",
package/types/index.ts DELETED
@@ -1,38 +0,0 @@
1
- export type ProductProperty = {
2
- label: string
3
- id: string
4
- type?: string
5
- }
6
-
7
- export type Interface = {
8
- __type: __Type
9
- }
10
-
11
- export type __Type = {
12
- kind?: __TypeKind
13
- name?: string
14
- description?: string
15
- fields: __Field[]
16
- ofType?: { name?: string; fields: __Field[] }
17
- }
18
-
19
- export type __TypeKind =
20
- | 'SCALAR'
21
- | 'OBJECT'
22
- | 'INTERFACE'
23
- | 'UNION'
24
- | 'ENUM'
25
- | 'INPUT_OBJECT'
26
- | 'LIST'
27
- | 'NON_NULL'
28
-
29
- export type __Field = {
30
- name: string
31
- type: __Type
32
- isDeprecated: boolean
33
- description?: string
34
- }
35
-
36
- export type Option = { id: string; label: string }
37
-
38
- export type Options = { text: Option[]; number: Option[] }