@mindignited/continuum-client 3.0.0-beta.0 → 3.0.0-beta.1
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/continuum.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { RxStomp as
|
|
2
|
-
import { ReconnectionTimeMode as
|
|
1
|
+
import { RxStomp as B } from "@stomp/rx-stomp";
|
|
2
|
+
import { ReconnectionTimeMode as $ } from "@stomp/stompjs";
|
|
3
3
|
import { v4 as S } from "uuid";
|
|
4
|
-
import
|
|
5
|
-
import b, { propagation as
|
|
4
|
+
import w from "debug";
|
|
5
|
+
import b, { propagation as q, context as F, SpanKind as U, SpanStatusCode as Y } from "@opentelemetry/api";
|
|
6
6
|
import { Subject as A, firstValueFrom as V, Observable as j, throwError as N } from "rxjs";
|
|
7
7
|
import { map as R, multicast as J, filter as X, first as W } from "rxjs/operators";
|
|
8
8
|
import { Optional as C } from "typescript-optional";
|
|
@@ -10,12 +10,12 @@ import "reflect-metadata";
|
|
|
10
10
|
import { ATTR_SERVER_ADDRESS as G, ATTR_SERVER_PORT as K } from "@opentelemetry/semantic-conventions";
|
|
11
11
|
class Le {
|
|
12
12
|
}
|
|
13
|
-
class
|
|
13
|
+
class I {
|
|
14
14
|
host;
|
|
15
15
|
port;
|
|
16
16
|
useSSL;
|
|
17
17
|
}
|
|
18
|
-
class Me extends
|
|
18
|
+
class Me extends I {
|
|
19
19
|
/**
|
|
20
20
|
* The headers to send during the connection to the continuum server.
|
|
21
21
|
* If a function is provided, it will be called to get the headers each time the connection is established.
|
|
@@ -34,9 +34,9 @@ class Me extends w {
|
|
|
34
34
|
*/
|
|
35
35
|
disableStickySession;
|
|
36
36
|
}
|
|
37
|
-
class
|
|
37
|
+
class v extends Error {
|
|
38
38
|
constructor(e) {
|
|
39
|
-
super(e), Object.setPrototypeOf(this,
|
|
39
|
+
super(e), Object.setPrototypeOf(this, v.prototype);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
var o = /* @__PURE__ */ ((s) => (s.CONTENT_TYPE_HEADER = "content-type", s.CONTENT_LENGTH_HEADER = "content-length", s.REPLY_TO_HEADER = "reply-to", s.REPLY_TO_ID_HEADER = "reply-to-id", s.SESSION_HEADER = "session", s.CONNECTED_INFO_HEADER = "connected-info", s.DISABLE_STICKY_SESSION_HEADER = "disable-sticky-session", s.CORRELATION_ID_HEADER = "__correlation-id", s.ERROR_HEADER = "error", s.COMPLETE_HEADER = "complete", s.CONTROL_HEADER = "control", s.CONTROL_VALUE_COMPLETE = "complete", s.CONTROL_VALUE_CANCEL = "cancel", s.CONTROL_VALUE_SUSPEND = "suspend", s.CONTROL_VALUE_RESUME = "resume", s.SERVICE_DESTINATION_PREFIX = "srv://", s.SERVICE_DESTINATION_SCHEME = "srv", s.STREAM_DESTINATION_PREFIX = "stream://", s.STREAM_DESTINATION_SCHEME = "stream", s.CONTENT_JSON = "application/json", s.CONTENT_TEXT = "text/plain", s.TRACEPARENT_HEADER = "traceparent", s.TRACESTATE_HEADER = "tracestate", s))(o || {});
|
|
@@ -53,7 +53,7 @@ class z {
|
|
|
53
53
|
JITTER_MAX = 5e3;
|
|
54
54
|
connectionAttempts = 0;
|
|
55
55
|
initialConnectionSuccessful = !1;
|
|
56
|
-
debugLogger =
|
|
56
|
+
debugLogger = w("continuum:stomp");
|
|
57
57
|
replyToId = S();
|
|
58
58
|
replyToCri = o.SERVICE_DESTINATION_PREFIX + this.replyToId + ":" + S() + "@continuum.js.EventBus/replyHandler";
|
|
59
59
|
deactivationHandler = null;
|
|
@@ -85,7 +85,7 @@ class z {
|
|
|
85
85
|
}
|
|
86
86
|
this.connectionAttempts = 0, this.initialConnectionSuccessful = !1, this.lastWebsocketError = null, this.maxConnectionAttemptsReached = !1;
|
|
87
87
|
const i = "ws" + (e.useSSL ? "s" : "") + "://" + e.host + (e.port ? ":" + e.port : "") + "/v1";
|
|
88
|
-
this.rxStomp = new
|
|
88
|
+
this.rxStomp = new B();
|
|
89
89
|
let n = typeof e.connectHeaders != "function" && e.connectHeaders != null ? e.connectHeaders : {};
|
|
90
90
|
const c = {
|
|
91
91
|
brokerURL: i,
|
|
@@ -113,7 +113,7 @@ class z {
|
|
|
113
113
|
};
|
|
114
114
|
this.debugLogger.enabled && (c.debug = (u) => {
|
|
115
115
|
this.debugLogger(u);
|
|
116
|
-
}), this.rxStomp.configure(c), this.rxStomp.stompClient.maxReconnectDelay = this.MAX_RECONNECT_DELAY, this.rxStomp.stompClient.reconnectTimeMode =
|
|
116
|
+
}), this.rxStomp.configure(c), this.rxStomp.stompClient.maxReconnectDelay = this.MAX_RECONNECT_DELAY, this.rxStomp.stompClient.reconnectTimeMode = $.EXPONENTIAL, this.rxStomp.webSocketErrors$.subscribe((u) => {
|
|
117
117
|
this.lastWebsocketError = u;
|
|
118
118
|
});
|
|
119
119
|
const a = this.rxStomp.connected$.subscribe(() => {
|
|
@@ -158,7 +158,7 @@ class z {
|
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
|
-
class
|
|
161
|
+
class g {
|
|
162
162
|
cri;
|
|
163
163
|
headers;
|
|
164
164
|
data;
|
|
@@ -199,7 +199,7 @@ class Z {
|
|
|
199
199
|
constructor() {
|
|
200
200
|
this.fatalErrors = this.errorSubject.pipe(R((e) => (this.disconnect().catch((t) => {
|
|
201
201
|
console && console.error("Error disconnecting from Stomp: " + t);
|
|
202
|
-
}), new
|
|
202
|
+
}), new v(e.headers.message)))), this.stompConnectionManager.deactivationHandler = () => {
|
|
203
203
|
this.cleanup();
|
|
204
204
|
};
|
|
205
205
|
}
|
|
@@ -215,7 +215,7 @@ class Z {
|
|
|
215
215
|
{
|
|
216
216
|
this.cleanup();
|
|
217
217
|
const t = await this.stompConnectionManager.activate(e);
|
|
218
|
-
return this.serverInfo = new
|
|
218
|
+
return this.serverInfo = new I(), this.serverInfo.host = e.host, this.serverInfo.port = e.port, this.serverInfo.useSSL = e.useSSL, this.replyToCri = this.stompConnectionManager.replyToCri, this.errorSubjectSubscription = this.stompConnectionManager.rxStomp?.stompErrors$.subscribe(this.errorSubject), t;
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
async disconnect(e) {
|
|
@@ -227,7 +227,7 @@ class Z {
|
|
|
227
227
|
for (const [i, n] of e.headers.entries())
|
|
228
228
|
t[i] = n;
|
|
229
229
|
const r = {};
|
|
230
|
-
|
|
230
|
+
q.inject(F.active(), r), r.traceparent && (t[o.TRACEPARENT_HEADER] = r.traceparent), r.tracestate && (t[o.TRACESTATE_HEADER] = r.tracestate), this.stompConnectionManager.rxStomp.publish({
|
|
231
231
|
destination: e.cri,
|
|
232
232
|
headers: t,
|
|
233
233
|
binaryBody: e.data.orUndefined()
|
|
@@ -260,7 +260,7 @@ class Z {
|
|
|
260
260
|
});
|
|
261
261
|
return r.add(c), e.setHeader(o.REPLY_TO_HEADER, this.replyToCri), e.setHeader(o.CORRELATION_ID_HEADER, n), this.send(e), () => {
|
|
262
262
|
if (t && !i) {
|
|
263
|
-
const a = new
|
|
263
|
+
const a = new g(e.cri);
|
|
264
264
|
a.setHeader(o.CONTROL_HEADER, o.CONTROL_VALUE_CANCEL), a.setHeader(o.CORRELATION_ID_HEADER, n), this.send(a);
|
|
265
265
|
}
|
|
266
266
|
};
|
|
@@ -294,7 +294,7 @@ class Z {
|
|
|
294
294
|
let i = "";
|
|
295
295
|
for (const n of Object.keys(t.headers))
|
|
296
296
|
n === "destination" ? i = t.headers[n] : r.set(n, t.headers[n]);
|
|
297
|
-
return new
|
|
297
|
+
return new g(i, r, t.binaryBody);
|
|
298
298
|
})) : N(() => this.createSendUnavailableError());
|
|
299
299
|
}
|
|
300
300
|
}
|
|
@@ -381,7 +381,7 @@ class E {
|
|
|
381
381
|
return t && (c += `${t}@`), c += r, i && (c += `/${i}`), n && (c += `#${n}`), c;
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
|
-
function
|
|
384
|
+
function O(...s) {
|
|
385
385
|
if (s.length === 1) return new E(s[0]);
|
|
386
386
|
if (s.length === 2) return new E(s[0], null, s[1], null, null);
|
|
387
387
|
if (s.length === 3) return new E(s[0], s[1], s[2], null, null);
|
|
@@ -401,7 +401,7 @@ class Q {
|
|
|
401
401
|
return t != null && t !== "" && t === "application/json";
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
|
-
class
|
|
404
|
+
class P {
|
|
405
405
|
static createReplyEvent(e, t, r) {
|
|
406
406
|
if (!e)
|
|
407
407
|
throw new Error("incomingHeaders cannot be null");
|
|
@@ -414,12 +414,12 @@ class O {
|
|
|
414
414
|
if (t)
|
|
415
415
|
for (const [c, a] of t)
|
|
416
416
|
n.set(c, a);
|
|
417
|
-
return new
|
|
417
|
+
return new g(i, n, r || void 0);
|
|
418
418
|
}
|
|
419
419
|
}
|
|
420
420
|
class ee {
|
|
421
421
|
convert(e, t) {
|
|
422
|
-
return
|
|
422
|
+
return P.createReplyEvent(
|
|
423
423
|
e,
|
|
424
424
|
/* @__PURE__ */ new Map([[o.CONTENT_TYPE_HEADER, "application/json"]]),
|
|
425
425
|
new TextEncoder().encode(JSON.stringify(t))
|
|
@@ -463,7 +463,7 @@ class re {
|
|
|
463
463
|
* @return the cri for this {@link ServiceIdentifier}
|
|
464
464
|
*/
|
|
465
465
|
cri() {
|
|
466
|
-
return this._cri == null && (this._cri =
|
|
466
|
+
return this._cri == null && (this._cri = O(
|
|
467
467
|
o.SERVICE_DESTINATION_SCHEME,
|
|
468
468
|
// scheme
|
|
469
469
|
this.scope || null,
|
|
@@ -477,34 +477,34 @@ class re {
|
|
|
477
477
|
)), this._cri;
|
|
478
478
|
}
|
|
479
479
|
}
|
|
480
|
-
const
|
|
480
|
+
const x = /* @__PURE__ */ Symbol("scope"), D = /* @__PURE__ */ Symbol("version"), _ = /* @__PURE__ */ Symbol("context");
|
|
481
481
|
function ke(s, e, t) {
|
|
482
|
-
Reflect.defineMetadata(
|
|
482
|
+
Reflect.defineMetadata(x, e, s);
|
|
483
483
|
}
|
|
484
484
|
function Be(s) {
|
|
485
485
|
if (!/^\d+\.\d+\.\d+(-[a-zA-Z0-9]+)?$/.test(s))
|
|
486
486
|
throw new Error(`Invalid semantic version: ${s}. Must follow X.Y.Z[-optional] format.`);
|
|
487
487
|
return function(e) {
|
|
488
|
-
Reflect.defineMetadata(
|
|
488
|
+
Reflect.defineMetadata(D, s, e);
|
|
489
489
|
};
|
|
490
490
|
}
|
|
491
|
-
function
|
|
491
|
+
function $e() {
|
|
492
492
|
return function(s, e, t) {
|
|
493
493
|
const r = Reflect.getMetadata(_, s, e) || [];
|
|
494
494
|
r.push(t), Reflect.defineMetadata(_, r, s, e);
|
|
495
495
|
};
|
|
496
496
|
}
|
|
497
|
-
function
|
|
497
|
+
function qe(s, e) {
|
|
498
498
|
return function(t) {
|
|
499
|
-
const r = t, i = new re(s, e || t.name), n = Reflect.getMetadata(
|
|
499
|
+
const r = t, i = new re(s, e || t.name), n = Reflect.getMetadata(D, t);
|
|
500
500
|
n && (i.version = n);
|
|
501
501
|
const c = function(...a) {
|
|
502
|
-
const h = Reflect.construct(r, a), p = Reflect.getMetadata(
|
|
502
|
+
const h = Reflect.construct(r, a), p = Reflect.getMetadata(x, t.prototype);
|
|
503
503
|
if (p) {
|
|
504
504
|
const u = h[p];
|
|
505
505
|
i.scope = typeof u == "function" ? u.call(h) : u;
|
|
506
506
|
}
|
|
507
|
-
return
|
|
507
|
+
return H.serviceRegistry.register(i, h), h;
|
|
508
508
|
};
|
|
509
509
|
return c.prototype = r.prototype, c;
|
|
510
510
|
};
|
|
@@ -584,7 +584,7 @@ class se {
|
|
|
584
584
|
this.log.trace(`Processing control event for correlationId: ${t}`);
|
|
585
585
|
}
|
|
586
586
|
async processInvocationRequest(e) {
|
|
587
|
-
const t =
|
|
587
|
+
const t = O(e.cri).path();
|
|
588
588
|
if (!t)
|
|
589
589
|
throw new Error("The methodId must not be blank");
|
|
590
590
|
const r = this.methodMap[t];
|
|
@@ -620,7 +620,7 @@ class se {
|
|
|
620
620
|
this._eventBus.send(r);
|
|
621
621
|
}
|
|
622
622
|
handleException(e, t) {
|
|
623
|
-
const r =
|
|
623
|
+
const r = P.createReplyEvent(
|
|
624
624
|
e.headers,
|
|
625
625
|
/* @__PURE__ */ new Map([
|
|
626
626
|
[o.ERROR_HEADER, t.message || "Unknown error"],
|
|
@@ -635,18 +635,18 @@ class se {
|
|
|
635
635
|
return t ? t.trim() === "" ? (this.log.warn("Reply-to header must not be blank"), !1) : t.startsWith(`${o.SERVICE_DESTINATION_SCHEME}:`) ? !0 : (this.log.warn("Reply-to header must be a valid service destination"), !1) : (this.log.warn("No reply-to header found in event"), !1);
|
|
636
636
|
}
|
|
637
637
|
}
|
|
638
|
-
const ie = "3.0.0-beta.
|
|
638
|
+
const ie = "3.0.0-beta.1", ne = {
|
|
639
639
|
version: ie
|
|
640
640
|
};
|
|
641
641
|
class oe {
|
|
642
642
|
create(e, t) {
|
|
643
|
-
const r = new
|
|
643
|
+
const r = new g(e);
|
|
644
644
|
return r.setHeader(o.CONTENT_TYPE_HEADER, o.CONTENT_JSON), t != null && r.setDataString(JSON.stringify(t)), r;
|
|
645
645
|
}
|
|
646
646
|
}
|
|
647
|
-
class
|
|
647
|
+
class Fe {
|
|
648
648
|
create(e, t) {
|
|
649
|
-
const r = new
|
|
649
|
+
const r = new g(e);
|
|
650
650
|
if (r.setHeader(o.CONTENT_TYPE_HEADER, o.CONTENT_TEXT), t != null) {
|
|
651
651
|
let i = "", n = 0;
|
|
652
652
|
for (const c of t)
|
|
@@ -661,6 +661,7 @@ class ce {
|
|
|
661
661
|
_eventBus;
|
|
662
662
|
supervisors = /* @__PURE__ */ new Map();
|
|
663
663
|
contextInterceptor = null;
|
|
664
|
+
debugLogger = w("continuum:serviceRegistry");
|
|
664
665
|
constructor(e) {
|
|
665
666
|
this._eventBus = e;
|
|
666
667
|
}
|
|
@@ -678,6 +679,7 @@ class ce {
|
|
|
678
679
|
register(e, t) {
|
|
679
680
|
const r = e.cri().raw();
|
|
680
681
|
if (!this.supervisors.has(r)) {
|
|
682
|
+
this.debugLogger(`Registering service for CRI: ${r}`);
|
|
681
683
|
const i = new se(
|
|
682
684
|
e,
|
|
683
685
|
t,
|
|
@@ -689,7 +691,7 @@ class ce {
|
|
|
689
691
|
}
|
|
690
692
|
unRegister(e) {
|
|
691
693
|
const t = e.cri().raw(), r = this.supervisors.get(t);
|
|
692
|
-
r && (r.stop(), this.supervisors.delete(t));
|
|
694
|
+
r && (this.debugLogger(`Unregistering service for CRI: ${t}`), r.stop(), this.supervisors.delete(t));
|
|
693
695
|
}
|
|
694
696
|
registerContextInterceptor(e) {
|
|
695
697
|
this.contextInterceptor = e;
|
|
@@ -747,7 +749,7 @@ class ue {
|
|
|
747
749
|
}));
|
|
748
750
|
}
|
|
749
751
|
}
|
|
750
|
-
class
|
|
752
|
+
class y {
|
|
751
753
|
pageable;
|
|
752
754
|
currentPage;
|
|
753
755
|
firstPage = !0;
|
|
@@ -792,7 +794,7 @@ class T {
|
|
|
792
794
|
return this.currentPage.content;
|
|
793
795
|
}
|
|
794
796
|
}
|
|
795
|
-
class le extends
|
|
797
|
+
class le extends y {
|
|
796
798
|
crudServiceProxy;
|
|
797
799
|
constructor(e, t, r) {
|
|
798
800
|
super(e, t), this.crudServiceProxy = r;
|
|
@@ -801,7 +803,7 @@ class le extends T {
|
|
|
801
803
|
return this.crudServiceProxy.findAllSinglePage(e);
|
|
802
804
|
}
|
|
803
805
|
}
|
|
804
|
-
class he extends
|
|
806
|
+
class he extends y {
|
|
805
807
|
searchText;
|
|
806
808
|
crudServiceProxy;
|
|
807
809
|
constructor(e, t, r, i) {
|
|
@@ -956,15 +958,15 @@ class fe {
|
|
|
956
958
|
return i;
|
|
957
959
|
}
|
|
958
960
|
}
|
|
959
|
-
const
|
|
960
|
-
var
|
|
961
|
-
class
|
|
961
|
+
const H = new fe();
|
|
962
|
+
var ge = /* @__PURE__ */ ((s) => (s.TRACE = "TRACE", s.DEBUG = "DEBUG", s.INFO = "INFO", s.WARN = "WARN", s.ERROR = "ERROR", s.FATAL = "FATAL", s.OFF = "OFF", s))(ge || {});
|
|
963
|
+
class T {
|
|
962
964
|
configuredLevel;
|
|
963
965
|
}
|
|
964
|
-
class
|
|
966
|
+
class ve extends T {
|
|
965
967
|
members = [];
|
|
966
968
|
}
|
|
967
|
-
class me extends
|
|
969
|
+
class me extends T {
|
|
968
970
|
effectiveLevel;
|
|
969
971
|
}
|
|
970
972
|
class Ue {
|
|
@@ -975,7 +977,7 @@ class Ue {
|
|
|
975
977
|
class Se {
|
|
976
978
|
serviceProxy;
|
|
977
979
|
constructor() {
|
|
978
|
-
this.serviceProxy =
|
|
980
|
+
this.serviceProxy = H.serviceProxy("org.kinotic.continuum.api.log.LogManager");
|
|
979
981
|
}
|
|
980
982
|
loggers(e) {
|
|
981
983
|
return this.serviceProxy.invoke("loggers", null, e);
|
|
@@ -983,21 +985,21 @@ class Se {
|
|
|
983
985
|
async loggerLevels(e, t) {
|
|
984
986
|
const r = await this.serviceProxy.invoke("loggerLevels", [t], e);
|
|
985
987
|
let i = null;
|
|
986
|
-
return r.hasOwnProperty("members") ? i = new
|
|
988
|
+
return r.hasOwnProperty("members") ? i = new ve() : r.hasOwnProperty("effectiveLevel") ? i = new me() : i = new T(), Object.assign(i, r), i;
|
|
987
989
|
}
|
|
988
990
|
configureLogLevel(e, t, r) {
|
|
989
991
|
return this.serviceProxy.invoke("configureLogLevel", [t, r], e);
|
|
990
992
|
}
|
|
991
993
|
}
|
|
992
994
|
const Ye = new Se();
|
|
993
|
-
class
|
|
995
|
+
class L extends v {
|
|
994
996
|
constructor(e) {
|
|
995
|
-
super(e), Object.setPrototypeOf(this,
|
|
997
|
+
super(e), Object.setPrototypeOf(this, L.prototype);
|
|
996
998
|
}
|
|
997
999
|
}
|
|
998
|
-
class
|
|
1000
|
+
class M extends v {
|
|
999
1001
|
constructor(e) {
|
|
1000
|
-
super(e), Object.setPrototypeOf(this,
|
|
1002
|
+
super(e), Object.setPrototypeOf(this, M.prototype);
|
|
1001
1003
|
}
|
|
1002
1004
|
}
|
|
1003
1005
|
class Ve {
|
|
@@ -1034,7 +1036,7 @@ class Xe {
|
|
|
1034
1036
|
return this.value !== null && this.value !== void 0;
|
|
1035
1037
|
}
|
|
1036
1038
|
}
|
|
1037
|
-
class We extends
|
|
1039
|
+
class We extends y {
|
|
1038
1040
|
pageFunction;
|
|
1039
1041
|
constructor(e, t, r) {
|
|
1040
1042
|
super(e, t), this.pageFunction = r;
|
|
@@ -1048,7 +1050,7 @@ class Ge {
|
|
|
1048
1050
|
return "create" in e;
|
|
1049
1051
|
}
|
|
1050
1052
|
}
|
|
1051
|
-
class
|
|
1053
|
+
class k {
|
|
1052
1054
|
/**
|
|
1053
1055
|
* Returns the sorting parameters (optional).
|
|
1054
1056
|
*/
|
|
@@ -1073,10 +1075,10 @@ class M {
|
|
|
1073
1075
|
* @param sort the sorting parameters (optional).
|
|
1074
1076
|
*/
|
|
1075
1077
|
static createWithCursor(e, t, r) {
|
|
1076
|
-
return new
|
|
1078
|
+
return new ye(e, t, r);
|
|
1077
1079
|
}
|
|
1078
1080
|
}
|
|
1079
|
-
class _e extends
|
|
1081
|
+
class _e extends k {
|
|
1080
1082
|
/**
|
|
1081
1083
|
* Returns the page to be returned.
|
|
1082
1084
|
*/
|
|
@@ -1091,7 +1093,7 @@ class _e extends M {
|
|
|
1091
1093
|
super(), this.pageNumber = e, this.pageSize = t, this.sort = r;
|
|
1092
1094
|
}
|
|
1093
1095
|
}
|
|
1094
|
-
class
|
|
1096
|
+
class ye extends k {
|
|
1095
1097
|
/**
|
|
1096
1098
|
* The cursor to be used for subsequent retrieval of data, or null if this is the first page.
|
|
1097
1099
|
*/
|
|
@@ -1106,7 +1108,7 @@ class Te extends M {
|
|
|
1106
1108
|
super(), this.cursor = e, this.pageSize = t, this.sort = r;
|
|
1107
1109
|
}
|
|
1108
1110
|
}
|
|
1109
|
-
var
|
|
1111
|
+
var Te = /* @__PURE__ */ ((s) => (s.ASC = "ASC", s.DESC = "DESC", s))(Te || {}), be = /* @__PURE__ */ ((s) => (s.NATIVE = "NATIVE", s.NULLS_FIRST = "NULLS_FIRST", s.NULLS_LAST = "NULLS_LAST", s))(be || {});
|
|
1110
1112
|
class Ke {
|
|
1111
1113
|
property;
|
|
1112
1114
|
direction = "ASC";
|
|
@@ -1131,51 +1133,51 @@ class ze {
|
|
|
1131
1133
|
orders = [];
|
|
1132
1134
|
}
|
|
1133
1135
|
export {
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1136
|
+
y as AbstractIterablePage,
|
|
1137
|
+
L as AuthenticationError,
|
|
1138
|
+
M as AuthorizationError,
|
|
1137
1139
|
_ as CONTEXT_METADATA_KEY,
|
|
1138
1140
|
Le as ConnectHeaders,
|
|
1139
1141
|
Ve as ConnectedInfo,
|
|
1140
1142
|
Me as ConnectionInfo,
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
+
$e as Context,
|
|
1144
|
+
H as Continuum,
|
|
1143
1145
|
f as ContinuumContextStack,
|
|
1144
|
-
|
|
1146
|
+
v as ContinuumError,
|
|
1145
1147
|
fe as ContinuumSingleton,
|
|
1146
1148
|
pe as CrudServiceProxy,
|
|
1147
1149
|
de as CrudServiceProxyFactory,
|
|
1148
|
-
|
|
1150
|
+
ye as CursorPageable,
|
|
1149
1151
|
Ge as DataSourceUtils,
|
|
1150
1152
|
E as DefaultCRI,
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
+
Te as Direction,
|
|
1154
|
+
g as Event,
|
|
1153
1155
|
Z as EventBus,
|
|
1154
1156
|
o as EventConstants,
|
|
1155
1157
|
We as FunctionalIterablePage,
|
|
1156
|
-
|
|
1158
|
+
ve as GroupLoggerLevelsDescriptor,
|
|
1157
1159
|
oe as JsonEventFactory,
|
|
1158
|
-
|
|
1160
|
+
ge as LogLevel,
|
|
1159
1161
|
Se as LogManager,
|
|
1160
|
-
|
|
1162
|
+
T as LoggerLevelsDescriptor,
|
|
1161
1163
|
Ue as LoggersDescriptor,
|
|
1162
1164
|
be as NullHandling,
|
|
1163
1165
|
_e as OffsetPageable,
|
|
1164
1166
|
Ke as Order,
|
|
1165
|
-
|
|
1167
|
+
k as Pageable,
|
|
1166
1168
|
je as Participant,
|
|
1167
1169
|
Je as ParticipantConstants,
|
|
1168
|
-
|
|
1170
|
+
qe as Publish,
|
|
1169
1171
|
ke as Scope,
|
|
1170
|
-
|
|
1172
|
+
I as ServerInfo,
|
|
1171
1173
|
ce as ServiceRegistry,
|
|
1172
1174
|
me as SingleLoggerLevelsDescriptor,
|
|
1173
1175
|
ze as Sort,
|
|
1174
1176
|
Xe as StreamData,
|
|
1175
1177
|
Re as StreamOperation,
|
|
1176
|
-
|
|
1178
|
+
Fe as TextEventFactory,
|
|
1177
1179
|
Be as Version,
|
|
1178
|
-
|
|
1180
|
+
O as createCRI,
|
|
1179
1181
|
Ye as logManager
|
|
1180
1182
|
};
|
|
1181
1183
|
//# sourceMappingURL=continuum.js.map
|