@evenicanpm/admin-graphql-codegen 2.0.1 → 2.4.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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
3
|
+
../../apps/strapi | [43m[30m WARN [39m[49m Unsupported engine: wanted: {"node":">=18.0.0 <=22.x.x"} (current: {"node":"v24.16.0","pnpm":"11.0.0"})
|
|
4
|
+
[2m$ pnpm dlx @biomejs/biome check --write .[22m
|
|
5
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
6
|
+
[43m[30m WARN [39m[49m Failed to replace env in config: ${NPM_TOKEN}
|
|
7
|
+
[0m[34mChecked 10 files in 16[0m[0m[2m[34mms[0m[0m[34m.[0m[0m[34m No fixes applied.[0m
|
package/CHANGELOG.md
ADDED
|
@@ -71,3 +71,15 @@ const _SWAP_INDEX = gql`
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
`;
|
|
74
|
+
|
|
75
|
+
const _DELETE_INDEX = gql`
|
|
76
|
+
mutation deleteIndex($index: String) {
|
|
77
|
+
deleteIndex(index: $index)
|
|
78
|
+
}
|
|
79
|
+
`;
|
|
80
|
+
|
|
81
|
+
const _REMOVE_INDEX_HISTORY = gql`
|
|
82
|
+
mutation removeIndexHistory($id: ID!, $index: String) {
|
|
83
|
+
removeIndexHistory(id: $id, index: $index)
|
|
84
|
+
}
|
|
85
|
+
`;
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
2
|
+
"name": "@evenicanpm/admin-graphql-codegen",
|
|
3
|
+
"version": "2.4.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"author": "",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"gitHead": "2a4307173bbfb888c935e45b3aca3c6227861368",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@graphql-codegen/cli": "^5.0.5",
|
|
11
|
+
"@graphql-codegen/typescript": "^4.1.6",
|
|
12
|
+
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
|
|
13
|
+
"glob": "^11.0.1",
|
|
14
|
+
"graphql": "^16.10.0",
|
|
15
|
+
"graphql-request": "^7.1.2"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
|
+
"codegen:insecure": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run codegen",
|
|
20
|
+
"codegen": "graphql-codegen"
|
|
21
|
+
}
|
|
22
|
+
}
|