@graphql-codegen/plugin-helpers 3.1.1 → 3.1.2-alpha-20221226202933-65185bd2b
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": "3.1.
|
|
3
|
+
"version": "3.1.2-alpha-20221226202933-65185bd2b",
|
|
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
|
@@ -469,6 +469,10 @@ export declare namespace Types {
|
|
|
469
469
|
* @description Overrides the name of the default GraphQL name identifier.
|
|
470
470
|
*/
|
|
471
471
|
globalIdentifier?: string;
|
|
472
|
+
/**
|
|
473
|
+
* @description Allows to use a global identifier instead of a module import.
|
|
474
|
+
*/
|
|
475
|
+
globalGqlIdentifierName?: string | string[];
|
|
472
476
|
};
|
|
473
477
|
/**
|
|
474
478
|
* @description Specifies scripts to run when events are happening in the codegen core.
|
package/typings/types.d.ts
CHANGED
|
@@ -469,6 +469,10 @@ export declare namespace Types {
|
|
|
469
469
|
* @description Overrides the name of the default GraphQL name identifier.
|
|
470
470
|
*/
|
|
471
471
|
globalIdentifier?: string;
|
|
472
|
+
/**
|
|
473
|
+
* @description Allows to use a global identifier instead of a module import.
|
|
474
|
+
*/
|
|
475
|
+
globalGqlIdentifierName?: string | string[];
|
|
472
476
|
};
|
|
473
477
|
/**
|
|
474
478
|
* @description Specifies scripts to run when events are happening in the codegen core.
|