@graphql-codegen/plugin-helpers 5.0.0 → 5.0.1-alpha-20230709155609-a2faf1e2c
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 +1 -1
- 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": "5.0.
|
|
3
|
+
"version": "5.0.1-alpha-20230709155609-a2faf1e2c",
|
|
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"
|
package/typings/types.d.cts
CHANGED
|
@@ -502,6 +502,10 @@ export declare namespace Types {
|
|
|
502
502
|
* For more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks
|
|
503
503
|
*/
|
|
504
504
|
hooks?: Partial<LifecycleHooksDefinition>;
|
|
505
|
+
/**
|
|
506
|
+
* @description Alows to raise errors if any matched files are not valid GraphQL. Default: false.
|
|
507
|
+
*/
|
|
508
|
+
noSilentErrors?: boolean;
|
|
505
509
|
}
|
|
506
510
|
type ComplexPluginOutput = {
|
|
507
511
|
content: string;
|
package/typings/types.d.ts
CHANGED
|
@@ -502,6 +502,10 @@ export declare namespace Types {
|
|
|
502
502
|
* For more details: https://graphql-code-generator.com/docs/config-reference/lifecycle-hooks
|
|
503
503
|
*/
|
|
504
504
|
hooks?: Partial<LifecycleHooksDefinition>;
|
|
505
|
+
/**
|
|
506
|
+
* @description Alows to raise errors if any matched files are not valid GraphQL. Default: false.
|
|
507
|
+
*/
|
|
508
|
+
noSilentErrors?: boolean;
|
|
505
509
|
}
|
|
506
510
|
type ComplexPluginOutput = {
|
|
507
511
|
content: string;
|