@graphcommerce/magento-graphql 5.2.0-canary.8 → 6.0.0-canary.20
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 +24 -0
- package/Config.graphqls +23 -0
- package/README.md +6 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0-canary.20
|
|
4
|
+
|
|
5
|
+
## 5.2.0-canary.19
|
|
6
|
+
|
|
7
|
+
## 5.2.0-canary.18
|
|
8
|
+
|
|
9
|
+
## 5.2.0-canary.17
|
|
10
|
+
|
|
11
|
+
## 5.2.0-canary.16
|
|
12
|
+
|
|
13
|
+
## 5.2.0-canary.15
|
|
14
|
+
|
|
15
|
+
## 5.2.0-canary.14
|
|
16
|
+
|
|
17
|
+
## 5.2.0-canary.13
|
|
18
|
+
|
|
19
|
+
## 5.2.0-canary.12
|
|
20
|
+
|
|
21
|
+
## 5.2.0-canary.11
|
|
22
|
+
|
|
23
|
+
## 5.2.0-canary.10
|
|
24
|
+
|
|
25
|
+
## 5.2.0-canary.9
|
|
26
|
+
|
|
3
27
|
## 5.2.0-canary.8
|
|
4
28
|
|
|
5
29
|
## 5.2.0-canary.7
|
package/Config.graphqls
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
extend input GraphCommerceConfig {
|
|
2
|
+
"""
|
|
3
|
+
GraphQL Magento endpoint.
|
|
4
|
+
|
|
5
|
+
Examples:
|
|
6
|
+
- https://magento2.test/graphql
|
|
7
|
+
"""
|
|
8
|
+
magentoEndpoint: String!
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
extend input GraphCommerceI18nConfig {
|
|
12
|
+
"""
|
|
13
|
+
Magento store code.
|
|
14
|
+
|
|
15
|
+
Stores => All Stores => [Store View] => Store View Code
|
|
16
|
+
|
|
17
|
+
Examples:
|
|
18
|
+
- default
|
|
19
|
+
- en-us
|
|
20
|
+
- b2b-us
|
|
21
|
+
"""
|
|
22
|
+
magentoStoreCode: String!
|
|
23
|
+
}
|
package/README.md
ADDED
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": "
|
|
5
|
+
"version": "6.0.0-canary.20",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "index.ts",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@graphcommerce/eslint-config-pwa": "
|
|
17
|
-
"@graphcommerce/prettier-config-pwa": "
|
|
18
|
-
"@graphcommerce/typescript-config-pwa": "
|
|
16
|
+
"@graphcommerce/eslint-config-pwa": "6.0.0-canary.20",
|
|
17
|
+
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.20",
|
|
18
|
+
"@graphcommerce/typescript-config-pwa": "6.0.0-canary.20"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@graphcommerce/graphql": "
|
|
21
|
+
"@graphcommerce/graphql": "6.0.0-canary.20"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"next": "^13.1.1",
|