@graphql-codegen/plugin-helpers 7.0.1 → 7.0.2-alpha-20260603142609-c200bb102ff19a966cbef664cd4b5bef49c7aff0

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Dotan Simha
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/cjs/federation.js CHANGED
@@ -155,6 +155,8 @@ function addFederationReferencesToSchema(schema, config) {
155
155
  typeConfig.fields = {
156
156
  [resolveReferenceFieldName]: {
157
157
  type,
158
+ args: {},
159
+ extensions: {},
158
160
  },
159
161
  ...typeConfig.fields,
160
162
  };
@@ -193,6 +195,8 @@ function addFederationReferencesToSchema(schema, config) {
193
195
  typeConfig.fields = {
194
196
  [resolveReferenceFieldName]: {
195
197
  type,
198
+ args: {},
199
+ extensions: {},
196
200
  },
197
201
  ...typeConfig.fields,
198
202
  };
package/esm/federation.js CHANGED
@@ -150,6 +150,8 @@ export function addFederationReferencesToSchema(schema, config) {
150
150
  typeConfig.fields = {
151
151
  [resolveReferenceFieldName]: {
152
152
  type,
153
+ args: {},
154
+ extensions: {},
153
155
  },
154
156
  ...typeConfig.fields,
155
157
  };
@@ -188,6 +190,8 @@ export function addFederationReferencesToSchema(schema, config) {
188
190
  typeConfig.fields = {
189
191
  [resolveReferenceFieldName]: {
190
192
  type,
193
+ args: {},
194
+ extensions: {},
191
195
  },
192
196
  ...typeConfig.fields,
193
197
  };
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@graphql-codegen/plugin-helpers",
3
- "version": "7.0.1",
3
+ "version": "7.0.2-alpha-20260603142609-c200bb102ff19a966cbef664cd4b5bef49c7aff0",
4
4
  "description": "GraphQL Code Generator common utils and types",
5
5
  "peerDependencies": {
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"
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 || ^17.0.0"
7
7
  },
8
8
  "dependencies": {
9
9
  "@graphql-tools/utils": "^11.0.0",