@graphql-codegen/plugin-helpers 2.5.0-alpha-2fbcdb6d3.0 → 2.5.0-alpha-2ada7b533.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/package.json +1 -1
- 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": "2.5.0-alpha-
|
|
3
|
+
"version": "2.5.0-alpha-2ada7b533.0",
|
|
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.ts
CHANGED
|
@@ -401,6 +401,10 @@ export declare namespace Types {
|
|
|
401
401
|
usePolling: boolean;
|
|
402
402
|
interval?: number;
|
|
403
403
|
};
|
|
404
|
+
/**
|
|
405
|
+
* @description A flag to suppress non-zero exit code when there are no documents to generate.
|
|
406
|
+
*/
|
|
407
|
+
ignoreNoDocuments?: boolean;
|
|
404
408
|
/**
|
|
405
409
|
* @description A flag to suppress printing errors when they occur.
|
|
406
410
|
*/
|