@burdenoff/fe-libs 2026.529.2 → 2026.529.4

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.
@@ -0,0 +1,270 @@
1
+ import { CloseCode as e, MessageType as t, isObject as n, limitCloseReason as r, parseMessage as i, stringifyMessage as a } from "./common-CGW11Fyb.js";
2
+ //#region node_modules/graphql-ws/dist/client.js
3
+ function o(n) {
4
+ let { url: o, connectionParams: d, lazy: f = !0, onNonLazyError: p = console.error, lazyCloseTimeout: m = 0, keepAlive: h = 0, disablePong: g, connectionAckWaitTimeout: _ = 0, retryAttempts: v = 5, retryWait: y = async function(e) {
5
+ let t = 2 ** e;
6
+ await new Promise((e) => setTimeout(e, t * 1e3 + Math.floor(Math.random() * 2700 + 300)));
7
+ }, shouldRetry: b = c, on: x, webSocketImpl: S, generateID: C = function() {
8
+ return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (e) => {
9
+ let t = Math.random() * 16 | 0;
10
+ return (e == "x" ? t : t & 3 | 8).toString(16);
11
+ });
12
+ }, jsonMessageReplacer: w, jsonMessageReviver: T } = n, E;
13
+ if (S) {
14
+ if (!u(S)) throw Error("Invalid WebSocket implementation provided");
15
+ E = S;
16
+ } else typeof WebSocket < "u" ? E = WebSocket : typeof global < "u" ? E = global.WebSocket || global.MozWebSocket : typeof window < "u" && (E = window.WebSocket || window.MozWebSocket);
17
+ if (!E) throw Error("WebSocket implementation missing; on Node you can `import WebSocket from 'ws';` and pass `webSocketImpl: WebSocket` to `createClient`");
18
+ let D = E, O = (() => {
19
+ let e = /* @__PURE__ */ (() => {
20
+ let e = {};
21
+ return {
22
+ on(t, n) {
23
+ return e[t] = n, () => {
24
+ delete e[t];
25
+ };
26
+ },
27
+ emit(t) {
28
+ "id" in t && e[t.id]?.(t);
29
+ }
30
+ };
31
+ })(), t = {
32
+ connecting: x?.connecting ? [x.connecting] : [],
33
+ opened: x?.opened ? [x.opened] : [],
34
+ connected: x?.connected ? [x.connected] : [],
35
+ ping: x?.ping ? [x.ping] : [],
36
+ pong: x?.pong ? [x.pong] : [],
37
+ message: x?.message ? [e.emit, x.message] : [e.emit],
38
+ closed: x?.closed ? [x.closed] : [],
39
+ error: x?.error ? [x.error] : []
40
+ };
41
+ return {
42
+ onMessage: e.on,
43
+ on(e, n) {
44
+ let r = t[e];
45
+ return r.push(n), () => {
46
+ r.splice(r.indexOf(n), 1);
47
+ };
48
+ },
49
+ emit(e, ...n) {
50
+ for (let r of [...t[e]]) r(...n);
51
+ }
52
+ };
53
+ })();
54
+ function k(e) {
55
+ let t = [O.on("error", (n) => {
56
+ t.forEach((e) => e()), e(n);
57
+ }), O.on("closed", (n) => {
58
+ t.forEach((e) => e()), e(n);
59
+ })];
60
+ }
61
+ let A, j = 0, M, N = !1, P = 0, F = !1;
62
+ async function I() {
63
+ clearTimeout(M);
64
+ let [n, c] = await (A ??= new Promise((n, c) => (async () => {
65
+ if (N) {
66
+ if (await y(P), !j) return A = void 0, c({
67
+ code: 1e3,
68
+ reason: "All Subscriptions Gone"
69
+ });
70
+ P++;
71
+ }
72
+ O.emit("connecting", N);
73
+ let l = new D(typeof o == "function" ? await o() : o, "graphql-transport-ws"), u, f;
74
+ function p() {
75
+ isFinite(h) && h > 0 && (clearTimeout(f), f = setTimeout(() => {
76
+ l.readyState === D.OPEN && (l.send(a({ type: t.Ping })), O.emit("ping", !1, void 0));
77
+ }, h));
78
+ }
79
+ k((e) => {
80
+ A = void 0, clearTimeout(u), clearTimeout(f), c(e), e instanceof s && (l.close(4499, "Terminated"), l.onerror = null, l.onclose = null);
81
+ }), l.onerror = (e) => O.emit("error", e), l.onclose = (e) => O.emit("closed", e), l.onopen = async () => {
82
+ try {
83
+ O.emit("opened", l);
84
+ let n = typeof d == "function" ? await d() : d;
85
+ if (l.readyState !== D.OPEN) return;
86
+ l.send(a(n ? {
87
+ type: t.ConnectionInit,
88
+ payload: n
89
+ } : { type: t.ConnectionInit }, w)), isFinite(_) && _ > 0 && (u = setTimeout(() => {
90
+ l.close(e.ConnectionAcknowledgementTimeout, "Connection acknowledgement timeout");
91
+ }, _)), p();
92
+ } catch (t) {
93
+ O.emit("error", t), l.close(e.InternalClientError, r(t instanceof Error ? t.message : String(t), "Internal client error"));
94
+ }
95
+ };
96
+ let m = !1;
97
+ l.onmessage = ({ data: o }) => {
98
+ try {
99
+ let e = i(o, T);
100
+ if (O.emit("message", e), e.type === "ping" || e.type === "pong") {
101
+ O.emit(e.type, !0, e.payload), e.type === "pong" ? p() : g || (l.send(a(e.payload ? {
102
+ type: t.Pong,
103
+ payload: e.payload
104
+ } : { type: t.Pong })), O.emit("pong", !1, e.payload));
105
+ return;
106
+ }
107
+ if (m) return;
108
+ if (e.type !== t.ConnectionAck) throw Error(`First message cannot be of type ${e.type}`);
109
+ clearTimeout(u), m = !0, O.emit("connected", l, e.payload, N), N = !1, P = 0, n([l, new Promise((e, t) => k(t))]);
110
+ } catch (t) {
111
+ l.onmessage = null, O.emit("error", t), l.close(e.BadResponse, r(t instanceof Error ? t.message : String(t), "Bad response"));
112
+ }
113
+ };
114
+ })()));
115
+ n.readyState === D.CLOSING && await c;
116
+ let l = () => {}, u = new Promise((e) => l = e);
117
+ return [
118
+ n,
119
+ l,
120
+ Promise.race([u.then(() => {
121
+ if (!j) {
122
+ let e = () => n.close(1e3, "Normal Closure");
123
+ isFinite(m) && m > 0 ? M = setTimeout(() => {
124
+ n.readyState === D.OPEN && e();
125
+ }, m) : e();
126
+ }
127
+ }), c])
128
+ ];
129
+ }
130
+ function L(t) {
131
+ if (c(t) && (l(t.code) || [
132
+ e.InternalServerError,
133
+ e.InternalClientError,
134
+ e.BadRequest,
135
+ e.BadResponse,
136
+ e.Unauthorized,
137
+ e.SubprotocolNotAcceptable,
138
+ e.SubscriberAlreadyExists,
139
+ e.TooManyInitialisationRequests
140
+ ].includes(t.code))) throw t;
141
+ if (F) return !1;
142
+ if (c(t) && t.code === 1e3) return j > 0;
143
+ if (!v || P >= v || !b(t)) throw t;
144
+ return N = !0;
145
+ }
146
+ f || (async () => {
147
+ for (j++;;) try {
148
+ let [, , e] = await I();
149
+ await e;
150
+ } catch (e) {
151
+ try {
152
+ if (!L(e)) return;
153
+ } catch (e) {
154
+ return p?.(e);
155
+ }
156
+ }
157
+ })();
158
+ function R(e, n) {
159
+ let r = C(e), i = !1, o = !1, s = () => {
160
+ j--, i = !0;
161
+ };
162
+ return (async () => {
163
+ for (j++;;) try {
164
+ let [c, l, u] = await I();
165
+ if (i) return l();
166
+ let d = O.onMessage(r, (e) => {
167
+ switch (e.type) {
168
+ case t.Next:
169
+ n.next(e.payload);
170
+ return;
171
+ case t.Error:
172
+ o = !0, i = !0, n.error(e.payload), s();
173
+ return;
174
+ case t.Complete:
175
+ i = !0, s();
176
+ return;
177
+ }
178
+ });
179
+ c.send(a({
180
+ id: r,
181
+ type: t.Subscribe,
182
+ payload: e
183
+ }, w)), s = () => {
184
+ !i && c.readyState === D.OPEN && c.send(a({
185
+ id: r,
186
+ type: t.Complete
187
+ }, w)), j--, i = !0, l();
188
+ }, await u.finally(d);
189
+ return;
190
+ } catch (e) {
191
+ if (!L(e)) return;
192
+ }
193
+ })().then(() => {
194
+ o || n.complete();
195
+ }).catch((e) => {
196
+ n.error(e);
197
+ }), () => {
198
+ i || s();
199
+ };
200
+ }
201
+ return {
202
+ on: O.on,
203
+ subscribe: R,
204
+ iterate(e) {
205
+ let t = [], n = {
206
+ done: !1,
207
+ error: null,
208
+ resolve: () => {}
209
+ }, r = R(e, {
210
+ next(e) {
211
+ t.push(e), n.resolve();
212
+ },
213
+ error(e) {
214
+ n.done = !0, n.error = e, n.resolve();
215
+ },
216
+ complete() {
217
+ n.done = !0, n.resolve();
218
+ }
219
+ }), i = async function* () {
220
+ for (;;) {
221
+ for (t.length || await new Promise((e) => n.resolve = e); t.length;) yield t.shift();
222
+ if (n.error) throw n.error;
223
+ if (n.done) return;
224
+ }
225
+ }();
226
+ return i.throw = async (e) => (n.done || (n.done = !0, n.error = e, n.resolve()), {
227
+ done: !0,
228
+ value: void 0
229
+ }), i.return = async () => (r(), {
230
+ done: !0,
231
+ value: void 0
232
+ }), i;
233
+ },
234
+ async dispose() {
235
+ if (F = !0, A) {
236
+ let [e] = await A;
237
+ e.close(1e3, "Normal Closure");
238
+ }
239
+ },
240
+ terminate() {
241
+ A && O.emit("closed", new s());
242
+ }
243
+ };
244
+ }
245
+ var s = class extends Error {
246
+ name = "TerminatedCloseEvent";
247
+ message = "4499: Terminated";
248
+ code = 4499;
249
+ reason = "Terminated";
250
+ wasClean = !1;
251
+ };
252
+ function c(e) {
253
+ return n(e) && "code" in e && "reason" in e;
254
+ }
255
+ function l(e) {
256
+ return [
257
+ 1e3,
258
+ 1001,
259
+ 1006,
260
+ 1005,
261
+ 1012,
262
+ 1013,
263
+ 1014
264
+ ].includes(e) ? !1 : e >= 1e3 && e <= 1999;
265
+ }
266
+ function u(e) {
267
+ return typeof e == "function" && "constructor" in e && "CLOSED" in e && "CLOSING" in e && "CONNECTING" in e && "OPEN" in e;
268
+ }
269
+ //#endregion
270
+ export { o as createClient };
@@ -0,0 +1,60 @@
1
+ //#region node_modules/graphql-ws/dist/common-CGW11Fyb.js
2
+ function e(e) {
3
+ return e === null ? "null" : Array.isArray(e) ? "array" : typeof e;
4
+ }
5
+ function t(t) {
6
+ return e(t) === "object";
7
+ }
8
+ function n(e) {
9
+ return Array.isArray(e) && e.length > 0 && e.every((e) => "message" in e);
10
+ }
11
+ function r(e, t) {
12
+ return e.length < 124 ? e : t;
13
+ }
14
+ var i = "graphql-transport-ws", a = /* @__PURE__ */ ((e) => (e[e.InternalServerError = 4500] = "InternalServerError", e[e.InternalClientError = 4005] = "InternalClientError", e[e.BadRequest = 4400] = "BadRequest", e[e.BadResponse = 4004] = "BadResponse", e[e.Unauthorized = 4401] = "Unauthorized", e[e.Forbidden = 4403] = "Forbidden", e[e.SubprotocolNotAcceptable = 4406] = "SubprotocolNotAcceptable", e[e.ConnectionInitialisationTimeout = 4408] = "ConnectionInitialisationTimeout", e[e.ConnectionAcknowledgementTimeout = 4504] = "ConnectionAcknowledgementTimeout", e[e.SubscriberAlreadyExists = 4409] = "SubscriberAlreadyExists", e[e.TooManyInitialisationRequests = 4429] = "TooManyInitialisationRequests", e))(a || {}), o = /* @__PURE__ */ ((e) => (e.ConnectionInit = "connection_init", e.ConnectionAck = "connection_ack", e.Ping = "ping", e.Pong = "pong", e.Subscribe = "subscribe", e.Next = "next", e.Error = "error", e.Complete = "complete", e))(o || {});
15
+ function s(r) {
16
+ if (!t(r)) throw Error(`Message is expected to be an object, but got ${e(r)}`);
17
+ if (!r.type) throw Error("Message is missing the 'type' property");
18
+ if (typeof r.type != "string") throw Error(`Message is expects the 'type' property to be a string, but got ${e(r.type)}`);
19
+ switch (r.type) {
20
+ case "connection_init":
21
+ case "connection_ack":
22
+ case "ping":
23
+ case "pong":
24
+ if (r.payload != null && !t(r.payload)) throw Error(`"${r.type}" message expects the 'payload' property to be an object or nullish or missing, but got "${r.payload}"`);
25
+ break;
26
+ case "subscribe":
27
+ if (typeof r.id != "string") throw Error(`"${r.type}" message expects the 'id' property to be a string, but got ${e(r.id)}`);
28
+ if (!r.id) throw Error(`"${r.type}" message requires a non-empty 'id' property`);
29
+ if (!t(r.payload)) throw Error(`"${r.type}" message expects the 'payload' property to be an object, but got ${e(r.payload)}`);
30
+ if (typeof r.payload.query != "string") throw Error(`"${r.type}" message payload expects the 'query' property to be a string, but got ${e(r.payload.query)}`);
31
+ if (r.payload.variables != null && !t(r.payload.variables)) throw Error(`"${r.type}" message payload expects the 'variables' property to be a an object or nullish or missing, but got ${e(r.payload.variables)}`);
32
+ if (r.payload.operationName != null && e(r.payload.operationName) !== "string") throw Error(`"${r.type}" message payload expects the 'operationName' property to be a string or nullish or missing, but got ${e(r.payload.operationName)}`);
33
+ if (r.payload.extensions != null && !t(r.payload.extensions)) throw Error(`"${r.type}" message payload expects the 'extensions' property to be a an object or nullish or missing, but got ${e(r.payload.extensions)}`);
34
+ break;
35
+ case "next":
36
+ if (typeof r.id != "string") throw Error(`"${r.type}" message expects the 'id' property to be a string, but got ${e(r.id)}`);
37
+ if (!r.id) throw Error(`"${r.type}" message requires a non-empty 'id' property`);
38
+ if (!t(r.payload)) throw Error(`"${r.type}" message expects the 'payload' property to be an object, but got ${e(r.payload)}`);
39
+ break;
40
+ case "error":
41
+ if (typeof r.id != "string") throw Error(`"${r.type}" message expects the 'id' property to be a string, but got ${e(r.id)}`);
42
+ if (!r.id) throw Error(`"${r.type}" message requires a non-empty 'id' property`);
43
+ if (!n(r.payload)) throw Error(`"${r.type}" message expects the 'payload' property to be an array of GraphQL errors, but got ${JSON.stringify(r.payload)}`);
44
+ break;
45
+ case "complete":
46
+ if (typeof r.id != "string") throw Error(`"${r.type}" message expects the 'id' property to be a string, but got ${e(r.id)}`);
47
+ if (!r.id) throw Error(`"${r.type}" message requires a non-empty 'id' property`);
48
+ break;
49
+ default: throw Error(`Invalid message 'type' property "${r.type}"`);
50
+ }
51
+ return r;
52
+ }
53
+ function c(e, t) {
54
+ return s(typeof e == "string" ? JSON.parse(e, t) : e);
55
+ }
56
+ function l(e, t) {
57
+ return s(e), JSON.stringify(e, t);
58
+ }
59
+ //#endregion
60
+ export { a as CloseCode, i as GRAPHQL_TRANSPORT_WS_PROTOCOL, o as MessageType, t as isObject, r as limitCloseReason, c as parseMessage, l as stringifyMessage, s as validateMessage };
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/shared/graphql/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/shared/graphql/client.ts"],"names":[],"mappings":"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"}