@graphql-codegen/plugin-helpers 6.2.1 → 6.2.2-alpha-20260409162855-ddd7b21f77c57fe0549f1f454720a3ba080a6ad7
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/package.json +2 -2
- package/typings/types.d.cts +4 -0
- package/typings/types.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/plugin-helpers",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.2-alpha-20260409162855-ddd7b21f77c57fe0549f1f454720a3ba080a6ad7",
|
|
4
4
|
"description": "GraphQL Code Generator common utils and types",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"change-case-all": "1.0.15",
|
|
11
11
|
"common-tags": "1.8.2",
|
|
12
12
|
"import-from": "4.0.0",
|
|
13
|
-
"tslib": "~2.
|
|
13
|
+
"tslib": "~2.8.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
package/typings/types.d.cts
CHANGED
|
@@ -509,6 +509,10 @@ export declare namespace Types {
|
|
|
509
509
|
* @description If `true`, write to files whichever `generates` block succeeds. If `false`, one failed `generates` means no output is written to files. Default: false
|
|
510
510
|
*/
|
|
511
511
|
allowPartialOutputs?: boolean;
|
|
512
|
+
/**
|
|
513
|
+
* Working directory
|
|
514
|
+
*/
|
|
515
|
+
cwd?: string;
|
|
512
516
|
}
|
|
513
517
|
type ComplexPluginOutput<M = Record<string, unknown>> = {
|
|
514
518
|
content: string;
|
package/typings/types.d.ts
CHANGED
|
@@ -509,6 +509,10 @@ export declare namespace Types {
|
|
|
509
509
|
* @description If `true`, write to files whichever `generates` block succeeds. If `false`, one failed `generates` means no output is written to files. Default: false
|
|
510
510
|
*/
|
|
511
511
|
allowPartialOutputs?: boolean;
|
|
512
|
+
/**
|
|
513
|
+
* Working directory
|
|
514
|
+
*/
|
|
515
|
+
cwd?: string;
|
|
512
516
|
}
|
|
513
517
|
type ComplexPluginOutput<M = Record<string, unknown>> = {
|
|
514
518
|
content: string;
|