@graphql-codegen/plugin-helpers 2.6.0 → 2.6.1-alpha-b4880d326.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 +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/plugin-helpers",
|
|
3
|
-
"version": "2.6.0",
|
|
3
|
+
"version": "2.6.1-alpha-b4880d326.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
|
@@ -413,6 +413,14 @@ export declare namespace Types {
|
|
|
413
413
|
* @description A flag to suppress printing errors when they occur.
|
|
414
414
|
*/
|
|
415
415
|
silent?: boolean;
|
|
416
|
+
/**
|
|
417
|
+
* @description A flag to output more detailed information about tasks
|
|
418
|
+
*/
|
|
419
|
+
verbose?: boolean;
|
|
420
|
+
/**
|
|
421
|
+
* @description A flag to output debug logs
|
|
422
|
+
*/
|
|
423
|
+
debug?: boolean;
|
|
416
424
|
/**
|
|
417
425
|
* @description A flag to print only errors.
|
|
418
426
|
*/
|