@doswiftly/storefront-operations 17.0.0 → 18.1.0
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/AGENTS.md +1 -1
- package/CHANGELOG.md +550 -0
- package/README.md +7 -7
- package/fragments.graphql +43 -25
- package/llms-full.txt +66 -30
- package/mutations.graphql +1 -1
- package/operations.json +45 -29
- package/package.json +4 -2
- package/schema.graphql +777 -275
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doswiftly/storefront-operations",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.1.0",
|
|
4
4
|
"description": "GraphQL operations for DoSwiftly Storefront - SSOT from backend",
|
|
5
5
|
"homepage": "https://doswiftly.pl",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"./queries.graphql": "./queries.graphql",
|
|
13
13
|
"./mutations.graphql": "./mutations.graphql",
|
|
14
14
|
"./fragments.graphql": "./fragments.graphql",
|
|
15
|
+
"./operations.json": "./operations.json",
|
|
15
16
|
"./*.graphql": "./*.graphql"
|
|
16
17
|
},
|
|
17
18
|
"devDependencies": {
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"sync": "node scripts/sync-operations.js",
|
|
42
43
|
"validate": "node scripts/validate-operations.js",
|
|
43
44
|
"build": "npm run sync",
|
|
44
|
-
"test": "node --test scripts/__tests__/*.test.js"
|
|
45
|
+
"test": "node --test scripts/__tests__/*.test.js",
|
|
46
|
+
"yalc:push": "yalc publish --push"
|
|
45
47
|
}
|
|
46
48
|
}
|