nitro-graphql 1.7.0-beta.4 → 1.7.0-beta.5
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/dist/routes/apollo-server-ws.d.mts +2 -2
- package/dist/routes/apollo-server.d.mts +2 -2
- package/dist/routes/debug.d.mts +2 -2
- package/dist/routes/graphql-yoga-ws.d.mts +2 -2
- package/dist/routes/health.d.mts +2 -2
- package/dist/subscribe/index.d.mts +0 -2
- package/dist/subscribe/index.mjs +0 -1
- package/dist/utils/client-codegen.mjs +0 -3
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as h31 from "h3";
|
|
2
2
|
|
|
3
3
|
//#region src/routes/apollo-server-ws.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: h31.EventHandler<h31.EventHandlerRequest, never>;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as h35 from "h3";
|
|
2
2
|
|
|
3
3
|
//#region src/routes/apollo-server.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: h35.EventHandler<h35.EventHandlerRequest, Promise<any>>;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
package/dist/routes/debug.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as h37 from "h3";
|
|
2
2
|
|
|
3
3
|
//#region src/routes/debug.d.ts
|
|
4
4
|
|
|
@@ -10,7 +10,7 @@ import * as h33 from "h3";
|
|
|
10
10
|
* - /_nitro/graphql/debug - HTML dashboard
|
|
11
11
|
* - /_nitro/graphql/debug?format=json - JSON API
|
|
12
12
|
*/
|
|
13
|
-
declare const _default:
|
|
13
|
+
declare const _default: h37.EventHandler<h37.EventHandlerRequest, Promise<string | {
|
|
14
14
|
timestamp: string;
|
|
15
15
|
environment: {
|
|
16
16
|
dev: any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as h33 from "h3";
|
|
2
2
|
|
|
3
3
|
//#region src/routes/graphql-yoga-ws.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: h33.EventHandler<h33.EventHandlerRequest, never>;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { _default as default };
|
package/dist/routes/health.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as h39 from "h3";
|
|
2
2
|
|
|
3
3
|
//#region src/routes/health.d.ts
|
|
4
|
-
declare const _default:
|
|
4
|
+
declare const _default: h39.EventHandler<h39.EventHandlerRequest, Promise<{
|
|
5
5
|
status: string;
|
|
6
6
|
message: string;
|
|
7
7
|
timestamp: string;
|
|
@@ -58,8 +58,6 @@ type SubscriptionTransport = 'websocket' | 'sse' | 'auto';
|
|
|
58
58
|
interface TransportOptions {
|
|
59
59
|
/** Transport type: 'websocket' (default), 'sse', or 'auto' (WS first, SSE fallback) */
|
|
60
60
|
transport?: SubscriptionTransport;
|
|
61
|
-
/** Shorthand for { transport: 'sse' } */
|
|
62
|
-
sse?: boolean;
|
|
63
61
|
}
|
|
64
62
|
interface SubscriptionOptions<TVariables = Record<string, unknown>> {
|
|
65
63
|
query: string;
|
package/dist/subscribe/index.mjs
CHANGED
|
@@ -564,7 +564,6 @@ function createSession(endpoint, connectionParams, maxRetries, connectionTimeout
|
|
|
564
564
|
* Resolve transport type from options
|
|
565
565
|
*/
|
|
566
566
|
function resolveTransport(options) {
|
|
567
|
-
if (options?.sse) return "sse";
|
|
568
567
|
return options?.transport ?? "websocket";
|
|
569
568
|
}
|
|
570
569
|
function createSubscriptionClient(config = {}) {
|
|
@@ -380,8 +380,6 @@ export interface UseSubscriptionOptions<T> {
|
|
|
380
380
|
onStateChange?: (state: ConnectionState) => void
|
|
381
381
|
/** Use existing session for multiplexing (pass result from useSubscriptionSession) */
|
|
382
382
|
session?: UseSubscriptionSessionReturn
|
|
383
|
-
/** Use SSE transport instead of WebSocket (shorthand for transport: 'sse') */
|
|
384
|
-
sse?: boolean
|
|
385
383
|
/** Transport type: 'websocket' (default), 'sse', or 'auto' (WS first, SSE fallback) */
|
|
386
384
|
transport?: SubscriptionTransport
|
|
387
385
|
}
|
|
@@ -565,7 +563,6 @@ function createUseSubscription<TData, TVariables = undefined>(
|
|
|
565
563
|
|
|
566
564
|
// Resolve transport options
|
|
567
565
|
const transportOptions: TransportOptions = {
|
|
568
|
-
sse: options.sse,
|
|
569
566
|
transport: options.transport,
|
|
570
567
|
}
|
|
571
568
|
|