UNPKG

graphql-ws

Version:

Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client

196 lines (192 loc) 7.26 kB
import { GraphQLError, GraphQLFormattedError } from 'graphql'; /** * * common * */ /** * The WebSocket sub-protocol used for the [GraphQL over WebSocket Protocol](https://github.com/graphql/graphql-over-http/blob/main/rfcs/GraphQLOverWebSocket.md). * * @category Common */ declare const GRAPHQL_TRANSPORT_WS_PROTOCOL = "graphql-transport-ws"; /** * The deprecated subprotocol used by [subscriptions-transport-ws](https://github.com/apollographql/subscriptions-transport-ws). * * @private */ declare const DEPRECATED_GRAPHQL_WS_PROTOCOL = "graphql-ws"; /** * `graphql-ws` expected and standard close codes of the [GraphQL over WebSocket Protocol](https://github.com/graphql/graphql-over-http/blob/main/rfcs/GraphQLOverWebSocket.md). * * @category Common */ declare enum CloseCode { InternalServerError = 4500, InternalClientError = 4005, BadRequest = 4400, BadResponse = 4004, /** Tried subscribing before connect ack */ Unauthorized = 4401, Forbidden = 4403, SubprotocolNotAcceptable = 4406, ConnectionInitialisationTimeout = 4408, ConnectionAcknowledgementTimeout = 4504, /** Subscriber distinction is very important */ SubscriberAlreadyExists = 4409, TooManyInitialisationRequests = 4429 } /** * ID is a string type alias representing * the globally unique ID used for identifying * subscriptions established by the client. * * @category Common */ type ID = string; /** @category Common */ interface Disposable { /** Dispose of the instance and clear up resources. */ dispose: () => void | Promise<void>; } /** * A representation of any set of values over any amount of time. * * @category Common */ interface Sink<T = unknown> { /** Next value arriving. */ next(value: T): void; /** * An error that has occured. Calling this function "closes" the sink. * Besides the errors being `Error` and `readonly GraphQLError[]`, it * can also be a `CloseEvent`, but to avoid bundling DOM typings because * the client can run in Node env too, you should assert the close event * type during implementation. */ error(error: unknown): void; /** The sink has completed. This function "closes" the sink. */ complete(): void; } /** * Types of messages allowed to be sent by the client/server over the WS protocol. * * @category Common */ declare enum MessageType { ConnectionInit = "connection_init",// Client -> Server ConnectionAck = "connection_ack",// Server -> Client Ping = "ping",// bidirectional Pong = "pong",/// bidirectional Subscribe = "subscribe",// Client -> Server Next = "next",// Server -> Client Error = "error",// Server -> Client Complete = "complete" } /** @category Common */ interface ConnectionInitMessage { readonly type: MessageType.ConnectionInit; readonly payload?: Record<string, unknown>; } /** @category Common */ interface ConnectionAckMessage { readonly type: MessageType.ConnectionAck; readonly payload?: Record<string, unknown>; } /** @category Common */ interface PingMessage { readonly type: MessageType.Ping; readonly payload?: Record<string, unknown>; } /** @category Common */ interface PongMessage { readonly type: MessageType.Pong; readonly payload?: Record<string, unknown>; } /** @category Common */ interface SubscribeMessage { readonly id: ID; readonly type: MessageType.Subscribe; readonly payload: SubscribePayload; } /** @category Common */ interface SubscribePayload { readonly operationName?: string | null | undefined; readonly query: string; readonly variables?: Record<string, unknown> | null | undefined; readonly extensions?: Record<string, unknown> | null | undefined; } /** @category Common */ interface ExecutionResult<Data = Record<string, unknown>, Extensions = Record<string, unknown>> { errors?: ReadonlyArray<GraphQLError> | undefined; data?: Data | null | undefined; hasNext?: boolean | undefined; extensions?: Extensions | undefined; } /** @category Common */ interface FormattedExecutionResult<Data = Record<string, unknown>, Extensions = Record<string, unknown>> { errors?: ReadonlyArray<GraphQLFormattedError> | undefined; data?: Data | null | undefined; hasNext?: boolean | undefined; extensions?: Extensions | undefined; } /** @category Common */ interface NextMessage { readonly id: ID; readonly type: MessageType.Next; readonly payload: FormattedExecutionResult; } /** @category Common */ interface ErrorMessage { readonly id: ID; readonly type: MessageType.Error; readonly payload: readonly GraphQLFormattedError[]; } /** @category Common */ interface CompleteMessage { readonly id: ID; readonly type: MessageType.Complete; } /** @category Common */ type Message<T extends MessageType = MessageType> = T extends MessageType.ConnectionAck ? ConnectionAckMessage : T extends MessageType.ConnectionInit ? ConnectionInitMessage : T extends MessageType.Ping ? PingMessage : T extends MessageType.Pong ? PongMessage : T extends MessageType.Subscribe ? SubscribeMessage : T extends MessageType.Next ? NextMessage : T extends MessageType.Error ? ErrorMessage : T extends MessageType.Complete ? CompleteMessage : never; /** * Validates the message against the GraphQL over WebSocket Protocol. * * Invalid messages will throw descriptive errors. * * @category Common */ declare function validateMessage(val: unknown): Message; /** * Function for transforming values within a message during JSON parsing * The values are produced by parsing the incoming raw JSON. * * Read more about using it: * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#using_the_reviver_parameter * * @category Common */ type JSONMessageReviver = (this: any, key: string, value: any) => any; /** * Parses the raw websocket message data to a valid message. * * @category Common */ declare function parseMessage(data: unknown, reviver?: JSONMessageReviver): Message; /** * Function that allows customization of the produced JSON string * for the elements of an outgoing `Message` object. * * Read more about using it: * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#the_replacer_parameter * * @category Common */ type JSONMessageReplacer = (this: any, key: string, value: any) => any; /** * Stringifies a valid message ready to be sent through the socket. * * @category Common */ declare function stringifyMessage<T extends MessageType>(msg: Message<T>, replacer?: JSONMessageReplacer): string; export { CloseCode as C, DEPRECATED_GRAPHQL_WS_PROTOCOL as D, type ExecutionResult as E, type FormattedExecutionResult as F, GRAPHQL_TRANSPORT_WS_PROTOCOL as G, type ID as I, type JSONMessageReviver as J, MessageType as M, type NextMessage as N, type PingMessage as P, type Sink as S, type Disposable as a, type ConnectionInitMessage as b, type ConnectionAckMessage as c, type PongMessage as d, type SubscribeMessage as e, type SubscribePayload as f, type ErrorMessage as g, type CompleteMessage as h, type Message as i, type JSONMessageReplacer as j, parseMessage as p, stringifyMessage as s, validateMessage as v };