@graphql-yoga/nestjs 3.16.0 → 3.17.0-alpha-20250923153050-e49232f82bb9277da93c3e8b34d14a2eb5b879d5
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 +9 -0
- package/dist/package.json +1 -1
- package/dist/typings/index.d.cts +1 -1
- package/dist/typings/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @graphql-yoga/nestjs
|
|
2
2
|
|
|
3
|
+
## 3.17.0-alpha-20250923153050-e49232f82bb9277da93c3e8b34d14a2eb5b879d5
|
|
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
package/dist/typings/index.d.cts
CHANGED
|
@@ -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/dist/typings/index.d.ts
CHANGED
|
@@ -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
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
|
};
|