@supabase/realtime-js 2.71.2-canary.29 → 2.71.2-canary.3
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/package.json +1 -1
- package/dist/main/RealtimeChannel.d.ts +0 -235
- package/dist/main/RealtimeChannel.d.ts.map +0 -1
- package/dist/main/RealtimeChannel.js +0 -576
- package/dist/main/RealtimeChannel.js.map +0 -1
- package/dist/main/RealtimeClient.d.ts +0 -196
- package/dist/main/RealtimeClient.d.ts.map +0 -1
- package/dist/main/RealtimeClient.js +0 -736
- package/dist/main/RealtimeClient.js.map +0 -1
- package/dist/main/RealtimePresence.d.ts +0 -68
- package/dist/main/RealtimePresence.d.ts.map +0 -1
- package/dist/main/RealtimePresence.js +0 -229
- package/dist/main/RealtimePresence.js.map +0 -1
- package/dist/main/index.d.ts +0 -6
- package/dist/main/index.d.ts.map +0 -1
- package/dist/main/index.js +0 -53
- package/dist/main/index.js.map +0 -1
- package/dist/main/lib/constants.d.ts +0 -37
- package/dist/main/lib/constants.d.ts.map +0 -1
- package/dist/main/lib/constants.js +0 -46
- package/dist/main/lib/constants.js.map +0 -1
- package/dist/main/lib/push.d.ts +0 -48
- package/dist/main/lib/push.d.ts.map +0 -1
- package/dist/main/lib/push.js +0 -102
- package/dist/main/lib/push.js.map +0 -1
- package/dist/main/lib/serializer.d.ts +0 -7
- package/dist/main/lib/serializer.d.ts.map +0 -1
- package/dist/main/lib/serializer.js +0 -36
- package/dist/main/lib/serializer.js.map +0 -1
- package/dist/main/lib/timer.d.ts +0 -22
- package/dist/main/lib/timer.d.ts.map +0 -1
- package/dist/main/lib/timer.js +0 -39
- package/dist/main/lib/timer.js.map +0 -1
- package/dist/main/lib/transformers.d.ts +0 -109
- package/dist/main/lib/transformers.d.ts.map +0 -1
- package/dist/main/lib/transformers.js +0 -229
- package/dist/main/lib/transformers.js.map +0 -1
- package/dist/main/lib/version.d.ts +0 -2
- package/dist/main/lib/version.d.ts.map +0 -1
- package/dist/main/lib/version.js +0 -5
- package/dist/main/lib/version.js.map +0 -1
- package/dist/main/lib/websocket-factory.d.ts +0 -35
- package/dist/main/lib/websocket-factory.d.ts.map +0 -1
- package/dist/main/lib/websocket-factory.js +0 -90
- package/dist/main/lib/websocket-factory.js.map +0 -1
- package/dist/module/RealtimeChannel.d.ts +0 -235
- package/dist/module/RealtimeChannel.d.ts.map +0 -1
- package/dist/module/RealtimeChannel.js +0 -536
- package/dist/module/RealtimeChannel.js.map +0 -1
- package/dist/module/RealtimeClient.d.ts +0 -196
- package/dist/module/RealtimeClient.d.ts.map +0 -1
- package/dist/module/RealtimeClient.js +0 -698
- package/dist/module/RealtimeClient.js.map +0 -1
- package/dist/module/RealtimePresence.d.ts +0 -68
- package/dist/module/RealtimePresence.d.ts.map +0 -1
- package/dist/module/RealtimePresence.js +0 -225
- package/dist/module/RealtimePresence.js.map +0 -1
- package/dist/module/index.d.ts +0 -6
- package/dist/module/index.d.ts.map +0 -1
- package/dist/module/index.js +0 -6
- package/dist/module/index.js.map +0 -1
- package/dist/module/lib/constants.d.ts +0 -37
- package/dist/module/lib/constants.d.ts.map +0 -1
- package/dist/module/lib/constants.js +0 -43
- package/dist/module/lib/constants.js.map +0 -1
- package/dist/module/lib/push.d.ts +0 -48
- package/dist/module/lib/push.d.ts.map +0 -1
- package/dist/module/lib/push.js +0 -99
- package/dist/module/lib/push.js.map +0 -1
- package/dist/module/lib/serializer.d.ts +0 -7
- package/dist/module/lib/serializer.d.ts.map +0 -1
- package/dist/module/lib/serializer.js +0 -33
- package/dist/module/lib/serializer.js.map +0 -1
- package/dist/module/lib/timer.d.ts +0 -22
- package/dist/module/lib/timer.d.ts.map +0 -1
- package/dist/module/lib/timer.js +0 -36
- package/dist/module/lib/timer.js.map +0 -1
- package/dist/module/lib/transformers.d.ts +0 -109
- package/dist/module/lib/transformers.d.ts.map +0 -1
- package/dist/module/lib/transformers.js +0 -217
- package/dist/module/lib/transformers.js.map +0 -1
- package/dist/module/lib/version.d.ts +0 -2
- package/dist/module/lib/version.d.ts.map +0 -1
- package/dist/module/lib/version.js +0 -2
- package/dist/module/lib/version.js.map +0 -1
- package/dist/module/lib/websocket-factory.d.ts +0 -35
- package/dist/module/lib/websocket-factory.d.ts.map +0 -1
- package/dist/module/lib/websocket-factory.js +0 -86
- package/dist/module/lib/websocket-factory.js.map +0 -1
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
import { WebSocketLike } from './lib/websocket-factory';
|
|
2
|
-
import { CONNECTION_STATE } from './lib/constants';
|
|
3
|
-
import Serializer from './lib/serializer';
|
|
4
|
-
import Timer from './lib/timer';
|
|
5
|
-
import RealtimeChannel from './RealtimeChannel';
|
|
6
|
-
import type { RealtimeChannelOptions } from './RealtimeChannel';
|
|
7
|
-
type Fetch = typeof fetch;
|
|
8
|
-
export type Channel = {
|
|
9
|
-
name: string;
|
|
10
|
-
inserted_at: string;
|
|
11
|
-
updated_at: string;
|
|
12
|
-
id: number;
|
|
13
|
-
};
|
|
14
|
-
export type LogLevel = 'info' | 'warn' | 'error';
|
|
15
|
-
export type RealtimeMessage = {
|
|
16
|
-
topic: string;
|
|
17
|
-
event: string;
|
|
18
|
-
payload: any;
|
|
19
|
-
ref: string;
|
|
20
|
-
join_ref?: string;
|
|
21
|
-
};
|
|
22
|
-
export type RealtimeRemoveChannelResponse = 'ok' | 'timed out' | 'error';
|
|
23
|
-
export type HeartbeatStatus = 'sent' | 'ok' | 'error' | 'timeout' | 'disconnected';
|
|
24
|
-
export interface WebSocketLikeConstructor {
|
|
25
|
-
new (address: string | URL, subprotocols?: string | string[] | undefined): WebSocketLike;
|
|
26
|
-
[key: string]: any;
|
|
27
|
-
}
|
|
28
|
-
export interface WebSocketLikeError {
|
|
29
|
-
error: any;
|
|
30
|
-
message: string;
|
|
31
|
-
type: string;
|
|
32
|
-
}
|
|
33
|
-
export type RealtimeClientOptions = {
|
|
34
|
-
transport?: WebSocketLikeConstructor;
|
|
35
|
-
timeout?: number;
|
|
36
|
-
heartbeatIntervalMs?: number;
|
|
37
|
-
logger?: Function;
|
|
38
|
-
encode?: Function;
|
|
39
|
-
decode?: Function;
|
|
40
|
-
reconnectAfterMs?: Function;
|
|
41
|
-
headers?: {
|
|
42
|
-
[key: string]: string;
|
|
43
|
-
};
|
|
44
|
-
params?: {
|
|
45
|
-
[key: string]: any;
|
|
46
|
-
};
|
|
47
|
-
log_level?: LogLevel;
|
|
48
|
-
logLevel?: LogLevel;
|
|
49
|
-
fetch?: Fetch;
|
|
50
|
-
worker?: boolean;
|
|
51
|
-
workerUrl?: string;
|
|
52
|
-
accessToken?: () => Promise<string | null>;
|
|
53
|
-
};
|
|
54
|
-
export default class RealtimeClient {
|
|
55
|
-
accessTokenValue: string | null;
|
|
56
|
-
apiKey: string | null;
|
|
57
|
-
channels: RealtimeChannel[];
|
|
58
|
-
endPoint: string;
|
|
59
|
-
httpEndpoint: string;
|
|
60
|
-
/** @deprecated headers cannot be set on websocket connections */
|
|
61
|
-
headers?: {
|
|
62
|
-
[key: string]: string;
|
|
63
|
-
};
|
|
64
|
-
params?: {
|
|
65
|
-
[key: string]: string;
|
|
66
|
-
};
|
|
67
|
-
timeout: number;
|
|
68
|
-
transport: WebSocketLikeConstructor | null;
|
|
69
|
-
heartbeatIntervalMs: number;
|
|
70
|
-
heartbeatTimer: ReturnType<typeof setInterval> | undefined;
|
|
71
|
-
pendingHeartbeatRef: string | null;
|
|
72
|
-
heartbeatCallback: (status: HeartbeatStatus) => void;
|
|
73
|
-
ref: number;
|
|
74
|
-
reconnectTimer: Timer | null;
|
|
75
|
-
logger: Function;
|
|
76
|
-
logLevel?: LogLevel;
|
|
77
|
-
encode: Function;
|
|
78
|
-
decode: Function;
|
|
79
|
-
reconnectAfterMs: Function;
|
|
80
|
-
conn: WebSocketLike | null;
|
|
81
|
-
sendBuffer: Function[];
|
|
82
|
-
serializer: Serializer;
|
|
83
|
-
stateChangeCallbacks: {
|
|
84
|
-
open: Function[];
|
|
85
|
-
close: Function[];
|
|
86
|
-
error: Function[];
|
|
87
|
-
message: Function[];
|
|
88
|
-
};
|
|
89
|
-
fetch: Fetch;
|
|
90
|
-
accessToken: (() => Promise<string | null>) | null;
|
|
91
|
-
worker?: boolean;
|
|
92
|
-
workerUrl?: string;
|
|
93
|
-
workerRef?: Worker;
|
|
94
|
-
private _connectionState;
|
|
95
|
-
private _wasManualDisconnect;
|
|
96
|
-
private _authPromise;
|
|
97
|
-
/**
|
|
98
|
-
* Initializes the Socket.
|
|
99
|
-
*
|
|
100
|
-
* @param endPoint The string WebSocket endpoint, ie, "ws://example.com/socket", "wss://example.com", "/socket" (inherited host & protocol)
|
|
101
|
-
* @param httpEndpoint The string HTTP endpoint, ie, "https://example.com", "/" (inherited host & protocol)
|
|
102
|
-
* @param options.transport The Websocket Transport, for example WebSocket. This can be a custom implementation
|
|
103
|
-
* @param options.timeout The default timeout in milliseconds to trigger push timeouts.
|
|
104
|
-
* @param options.params The optional params to pass when connecting.
|
|
105
|
-
* @param options.headers Deprecated: headers cannot be set on websocket connections and this option will be removed in the future.
|
|
106
|
-
* @param options.heartbeatIntervalMs The millisec interval to send a heartbeat message.
|
|
107
|
-
* @param options.logger The optional function for specialized logging, ie: logger: (kind, msg, data) => { console.log(`${kind}: ${msg}`, data) }
|
|
108
|
-
* @param options.logLevel Sets the log level for Realtime
|
|
109
|
-
* @param options.encode The function to encode outgoing messages. Defaults to JSON: (payload, callback) => callback(JSON.stringify(payload))
|
|
110
|
-
* @param options.decode The function to decode incoming messages. Defaults to Serializer's decode.
|
|
111
|
-
* @param options.reconnectAfterMs he optional function that returns the millsec reconnect interval. Defaults to stepped backoff off.
|
|
112
|
-
* @param options.worker Use Web Worker to set a side flow. Defaults to false.
|
|
113
|
-
* @param options.workerUrl The URL of the worker script. Defaults to https://realtime.supabase.com/worker.js that includes a heartbeat event call to keep the connection alive.
|
|
114
|
-
*/
|
|
115
|
-
constructor(endPoint: string, options?: RealtimeClientOptions);
|
|
116
|
-
/**
|
|
117
|
-
* Connects the socket, unless already connected.
|
|
118
|
-
*/
|
|
119
|
-
connect(): void;
|
|
120
|
-
/**
|
|
121
|
-
* Returns the URL of the websocket.
|
|
122
|
-
* @returns string The URL of the websocket.
|
|
123
|
-
*/
|
|
124
|
-
endpointURL(): string;
|
|
125
|
-
/**
|
|
126
|
-
* Disconnects the socket.
|
|
127
|
-
*
|
|
128
|
-
* @param code A numeric status code to send on disconnect.
|
|
129
|
-
* @param reason A custom reason for the disconnect.
|
|
130
|
-
*/
|
|
131
|
-
disconnect(code?: number, reason?: string): void;
|
|
132
|
-
/**
|
|
133
|
-
* Returns all created channels
|
|
134
|
-
*/
|
|
135
|
-
getChannels(): RealtimeChannel[];
|
|
136
|
-
/**
|
|
137
|
-
* Unsubscribes and removes a single channel
|
|
138
|
-
* @param channel A RealtimeChannel instance
|
|
139
|
-
*/
|
|
140
|
-
removeChannel(channel: RealtimeChannel): Promise<RealtimeRemoveChannelResponse>;
|
|
141
|
-
/**
|
|
142
|
-
* Unsubscribes and removes all channels
|
|
143
|
-
*/
|
|
144
|
-
removeAllChannels(): Promise<RealtimeRemoveChannelResponse[]>;
|
|
145
|
-
/**
|
|
146
|
-
* Logs the message.
|
|
147
|
-
*
|
|
148
|
-
* For customized logging, `this.logger` can be overridden.
|
|
149
|
-
*/
|
|
150
|
-
log(kind: string, msg: string, data?: any): void;
|
|
151
|
-
/**
|
|
152
|
-
* Returns the current state of the socket.
|
|
153
|
-
*/
|
|
154
|
-
connectionState(): CONNECTION_STATE;
|
|
155
|
-
/**
|
|
156
|
-
* Returns `true` is the connection is open.
|
|
157
|
-
*/
|
|
158
|
-
isConnected(): boolean;
|
|
159
|
-
/**
|
|
160
|
-
* Returns `true` if the connection is currently connecting.
|
|
161
|
-
*/
|
|
162
|
-
isConnecting(): boolean;
|
|
163
|
-
/**
|
|
164
|
-
* Returns `true` if the connection is currently disconnecting.
|
|
165
|
-
*/
|
|
166
|
-
isDisconnecting(): boolean;
|
|
167
|
-
channel(topic: string, params?: RealtimeChannelOptions): RealtimeChannel;
|
|
168
|
-
/**
|
|
169
|
-
* Push out a message if the socket is connected.
|
|
170
|
-
*
|
|
171
|
-
* If the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established.
|
|
172
|
-
*/
|
|
173
|
-
push(data: RealtimeMessage): void;
|
|
174
|
-
/**
|
|
175
|
-
* Sets the JWT access token used for channel subscription authorization and Realtime RLS.
|
|
176
|
-
*
|
|
177
|
-
* If param is null it will use the `accessToken` callback function or the token set on the client.
|
|
178
|
-
*
|
|
179
|
-
* On callback used, it will set the value of the token internal to the client.
|
|
180
|
-
*
|
|
181
|
-
* @param token A JWT string to override the token set on the client.
|
|
182
|
-
*/
|
|
183
|
-
setAuth(token?: string | null): Promise<void>;
|
|
184
|
-
/**
|
|
185
|
-
* Sends a heartbeat message if the socket is connected.
|
|
186
|
-
*/
|
|
187
|
-
sendHeartbeat(): Promise<void>;
|
|
188
|
-
onHeartbeat(callback: (status: HeartbeatStatus) => void): void;
|
|
189
|
-
/**
|
|
190
|
-
* Flushes send buffer
|
|
191
|
-
*/
|
|
192
|
-
flushSendBuffer(): void;
|
|
193
|
-
private _workerObjectUrl;
|
|
194
|
-
}
|
|
195
|
-
export {};
|
|
196
|
-
//# sourceMappingURL=RealtimeClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"RealtimeClient.d.ts","sourceRoot":"","sources":["../../src/RealtimeClient.ts"],"names":[],"mappings":"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"}
|