@graphql-yoga/nestjs 3.16.0 → 3.17.0-alpha-20250923153206-192dab9cb1cd8e17f3fd8ebd014d6098e82079fe

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @graphql-yoga/nestjs
2
2
 
3
+ ## 3.17.0-alpha-20250923153206-192dab9cb1cd8e17f3fd8ebd014d6098e82079fe
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4182](https://github.com/graphql-hive/graphql-yoga/pull/4182)
8
+ [`3705256`](https://github.com/graphql-hive/graphql-yoga/commit/370525642b908d78c1d6238bf12c033a18cad0cd)
9
+ Thanks [@Kalos-S](https://github.com/Kalos-S)! - Remove unused graphqlEndpoint NestJS driver
10
+ option
11
+
3
12
  ## 3.16.0
4
13
 
5
14
  ### Patch Changes
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-yoga/nestjs",
3
- "version": "3.16.0",
3
+ "version": "3.17.0-alpha-20250923153206-192dab9cb1cd8e17f3fd8ebd014d6098e82079fe",
4
4
  "description": "GraphQL Yoga driver for NestJS GraphQL.",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -10,7 +10,7 @@ export type YogaDriverServerContext<Platform extends YogaDriverPlatform> = Platf
10
10
  req: ExpressRequest;
11
11
  res: ExpressResponse;
12
12
  };
13
- export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<YogaServerOptions<YogaDriverServerContext<Platform>, never>, 'context' | 'schema'> & {
13
+ export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<YogaServerOptions<YogaDriverServerContext<Platform>, never>, 'context' | 'schema' | 'graphqlEndpoint'> & {
14
14
  conditionalSchema?: YogaSchemaDefinition<YogaDriverServerContext<Platform>, never> | undefined;
15
15
  };
16
16
  export type YogaDriverServerInstance<Platform extends YogaDriverPlatform> = YogaServerInstance<YogaDriverServerContext<Platform>, never>;
@@ -10,7 +10,7 @@ export type YogaDriverServerContext<Platform extends YogaDriverPlatform> = Platf
10
10
  req: ExpressRequest;
11
11
  res: ExpressResponse;
12
12
  };
13
- export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<YogaServerOptions<YogaDriverServerContext<Platform>, never>, 'context' | 'schema'> & {
13
+ export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<YogaServerOptions<YogaDriverServerContext<Platform>, never>, 'context' | 'schema' | 'graphqlEndpoint'> & {
14
14
  conditionalSchema?: YogaSchemaDefinition<YogaDriverServerContext<Platform>, never> | undefined;
15
15
  };
16
16
  export type YogaDriverServerInstance<Platform extends YogaDriverPlatform> = YogaServerInstance<YogaDriverServerContext<Platform>, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-yoga/nestjs",
3
- "version": "3.16.0",
3
+ "version": "3.17.0-alpha-20250923153206-192dab9cb1cd8e17f3fd8ebd014d6098e82079fe",
4
4
  "type": "module",
5
5
  "description": "GraphQL Yoga driver for NestJS GraphQL.",
6
6
  "repository": {
package/src/index.ts CHANGED
@@ -34,7 +34,7 @@ export type YogaDriverServerContext<Platform extends YogaDriverPlatform> =
34
34
 
35
35
  export type YogaDriverServerOptions<Platform extends YogaDriverPlatform> = Omit<
36
36
  YogaServerOptions<YogaDriverServerContext<Platform>, never>,
37
- 'context' | 'schema'
37
+ 'context' | 'schema' | 'graphqlEndpoint'
38
38
  > & {
39
39
  conditionalSchema?: YogaSchemaDefinition<YogaDriverServerContext<Platform>, never> | undefined;
40
40
  };