@graphql-codegen/cli 5.0.4-alpha-20250127165237-01bd27aa1497ea98e2f9e9d68dd2d1d31cec24cb → 5.0.4-rc-20250123211445-ea82e054b8fb90a30ab2b5d7dcaa4d7c43c7e9b9
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/config.d.cts +1 -1
- package/typings/config.d.ts +1 -1
- package/typings/load.d.cts +1 -1
- package/typings/load.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/cli",
|
|
3
|
-
"version": "5.0.4-
|
|
3
|
+
"version": "5.0.4-rc-20250123211445-ea82e054b8fb90a30ab2b5d7dcaa4d7c43c7e9b9",
|
|
4
4
|
"peerDependenciesMeta": {
|
|
5
5
|
"@parcel/watcher": {
|
|
6
6
|
"optional": true
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@babel/generator": "^7.18.13",
|
|
15
15
|
"@babel/template": "^7.18.10",
|
|
16
16
|
"@babel/types": "^7.18.13",
|
|
17
|
-
"@graphql-codegen/client-preset": "4.6.0-
|
|
17
|
+
"@graphql-codegen/client-preset": "4.6.0-rc-20250123211445-ea82e054b8fb90a30ab2b5d7dcaa4d7c43c7e9b9",
|
|
18
18
|
"@graphql-codegen/core": "^4.0.2",
|
|
19
19
|
"@graphql-codegen/plugin-helpers": "^5.0.3",
|
|
20
20
|
"@graphql-tools/apollo-engine-loader": "^8.0.0",
|
package/typings/config.d.cts
CHANGED
|
@@ -133,7 +133,7 @@ export declare class CodegenContext {
|
|
|
133
133
|
getPluginContext(): {
|
|
134
134
|
[key: string]: any;
|
|
135
135
|
};
|
|
136
|
-
loadSchema(pointer: Types.Schema
|
|
136
|
+
loadSchema(pointer: Types.Schema): Promise<GraphQLSchema>;
|
|
137
137
|
loadDocuments(pointer: Types.OperationDocument[]): Promise<Types.DocumentFile[]>;
|
|
138
138
|
}
|
|
139
139
|
export declare function ensureContext(input: CodegenContext | Types.Config): CodegenContext;
|
package/typings/config.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ export declare class CodegenContext {
|
|
|
133
133
|
getPluginContext(): {
|
|
134
134
|
[key: string]: any;
|
|
135
135
|
};
|
|
136
|
-
loadSchema(pointer: Types.Schema
|
|
136
|
+
loadSchema(pointer: Types.Schema): Promise<GraphQLSchema>;
|
|
137
137
|
loadDocuments(pointer: Types.OperationDocument[]): Promise<Types.DocumentFile[]>;
|
|
138
138
|
}
|
|
139
139
|
export declare function ensureContext(input: CodegenContext | Types.Config): CodegenContext;
|
package/typings/load.d.cts
CHANGED
|
@@ -11,5 +11,5 @@ export declare const defaultDocumentsLoadOptions: {
|
|
|
11
11
|
sort: boolean;
|
|
12
12
|
skipGraphQLImport: boolean;
|
|
13
13
|
};
|
|
14
|
-
export declare function loadSchema(schemaPointers: UnnormalizedTypeDefPointer
|
|
14
|
+
export declare function loadSchema(schemaPointers: UnnormalizedTypeDefPointer, config: Types.Config): Promise<GraphQLSchema>;
|
|
15
15
|
export declare function loadDocuments(documentPointers: UnnormalizedTypeDefPointer | UnnormalizedTypeDefPointer[], config: Types.Config): Promise<Types.DocumentFile[]>;
|
package/typings/load.d.ts
CHANGED
|
@@ -11,5 +11,5 @@ export declare const defaultDocumentsLoadOptions: {
|
|
|
11
11
|
sort: boolean;
|
|
12
12
|
skipGraphQLImport: boolean;
|
|
13
13
|
};
|
|
14
|
-
export declare function loadSchema(schemaPointers: UnnormalizedTypeDefPointer
|
|
14
|
+
export declare function loadSchema(schemaPointers: UnnormalizedTypeDefPointer, config: Types.Config): Promise<GraphQLSchema>;
|
|
15
15
|
export declare function loadDocuments(documentPointers: UnnormalizedTypeDefPointer | UnnormalizedTypeDefPointer[], config: Types.Config): Promise<Types.DocumentFile[]>;
|