Comparing version 3.0.0-alpha-95ec5510.0 to 3.0.0-alpha-96baf453.0
import type { Client } from 'graphql-ws'; | ||
import type { Promisable } from 'type-fest'; | ||
import { GQtyError } from '../../Error'; | ||
import type { LegacySelection as Selection } from './selection'; | ||
type Promisable<T> = T | Promise<T>; | ||
export type LegacySubscriptionsClient<TData extends Record<string, unknown> = Record<string, unknown>> = { | ||
@@ -35,1 +35,2 @@ subscribe(opts: { | ||
export declare const createLegacySubscriptionsClient: (subscriptionsClient: LegacySubscriptionsClient) => Client; | ||
export {}; |
import { type ExecutionResult } from 'graphql'; | ||
import { type Constructor } from 'type-fest'; | ||
import { type CloseEvent, type WebSocket } from 'ws'; | ||
@@ -9,2 +8,5 @@ import { type FetchOptions } from '.'; | ||
import { type Debugger } from './debugger'; | ||
type Constructor<T> = { | ||
new (...args: any[]): T; | ||
}; | ||
export type FetchSelectionsOptions = { | ||
@@ -33,1 +35,2 @@ cache?: Cache; | ||
export declare const isCloseEvent: (input: unknown, wsImpl: Constructor<WebSocket>) => input is CloseEvent; | ||
export {}; |
{ | ||
"name": "gqty", | ||
"version": "3.0.0-alpha-95ec5510.0", | ||
"version": "3.0.0-alpha-96baf453.0", | ||
"description": "gqty client without queries", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
274474
7890