nucleus-core-ts 0.8.99 → 0.8.101
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/dist/index.d.ts +10 -10
- package/dist/index.js +20 -20
- package/dist/src/ElysiaPlugin/routes/auth/admin/impersonate.d.ts +3 -1
- package/dist/src/ElysiaPlugin/routes/auth/index.d.ts +3 -1
- package/dist/src/ElysiaPlugin/routes/auth/login/index.d.ts +3 -1
- package/dist/src/ElysiaPlugin/routes/auth/oauth/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/dist/index.d.ts
CHANGED
|
@@ -19,12 +19,12 @@ declare function o5(n: any): {
|
|
|
19
19
|
reconnectAttempt: number;
|
|
20
20
|
connect: () => void;
|
|
21
21
|
disconnect: () => void;
|
|
22
|
-
subscribe: (
|
|
23
|
-
unsubscribe: (
|
|
22
|
+
subscribe: (D: any) => void;
|
|
23
|
+
unsubscribe: (D: any) => void;
|
|
24
24
|
clearEvents: unknown;
|
|
25
|
-
getEventsByTopic: (
|
|
25
|
+
getEventsByTopic: (D: any) => never[];
|
|
26
26
|
};
|
|
27
|
-
declare var F2:
|
|
27
|
+
declare var F2: sa;
|
|
28
28
|
declare function jd(): {};
|
|
29
29
|
declare function Kd(n: any): {};
|
|
30
30
|
declare function qd(n: any): {};
|
|
@@ -72,7 +72,7 @@ declare function Z2(n: any, r: any, t: any, o: any): (e: any, s: any) => Promise
|
|
|
72
72
|
message: any;
|
|
73
73
|
}>;
|
|
74
74
|
declare function J2(n: any, r: any): () => {};
|
|
75
|
-
declare class
|
|
75
|
+
declare class sa {
|
|
76
76
|
constructor(n?: {});
|
|
77
77
|
config: {
|
|
78
78
|
timeout: number;
|
|
@@ -519,8 +519,8 @@ declare class Gr {
|
|
|
519
519
|
static resetInstance(): void;
|
|
520
520
|
constructor(n: {} | undefined, r: {} | undefined, t: any);
|
|
521
521
|
config: any;
|
|
522
|
-
transports:
|
|
523
|
-
auditTransports:
|
|
522
|
+
transports: _i[];
|
|
523
|
+
auditTransports: gi[];
|
|
524
524
|
context: {};
|
|
525
525
|
correlationId: any;
|
|
526
526
|
child(n: any, r: any): Gr;
|
|
@@ -555,7 +555,7 @@ declare class Gr {
|
|
|
555
555
|
traceSync(n: any): void;
|
|
556
556
|
}
|
|
557
557
|
import fh from "elysia";
|
|
558
|
-
declare class
|
|
558
|
+
declare class _i {
|
|
559
559
|
constructor(n?: {});
|
|
560
560
|
name: string;
|
|
561
561
|
colorize: any;
|
|
@@ -568,11 +568,11 @@ declare class bi {
|
|
|
568
568
|
(...data: any[]): void;
|
|
569
569
|
};
|
|
570
570
|
}
|
|
571
|
-
declare class
|
|
571
|
+
declare class gi {
|
|
572
572
|
constructor(n?: {});
|
|
573
573
|
name: string;
|
|
574
574
|
enabled: any;
|
|
575
575
|
write(n: any): void;
|
|
576
576
|
}
|
|
577
|
-
export { Os as usePubSubStore, o5 as usePubSub, F2 as serverFetch, jd as generateSystemTableEndpoints, Kd as generateMonitoringEndpoints, qd as generateEndpointsFromConfig, Fd as generateAuthEndpoints, G2 as generateAllEndpoints, vd as generateAdminEndpoints, Z2 as createServerFactory, J2 as createApiHook,
|
|
577
|
+
export { Os as usePubSubStore, o5 as usePubSub, F2 as serverFetch, jd as generateSystemTableEndpoints, Kd as generateMonitoringEndpoints, qd as generateEndpointsFromConfig, Fd as generateAuthEndpoints, G2 as generateAllEndpoints, vd as generateAdminEndpoints, Z2 as createServerFactory, J2 as createApiHook, sa as ServerFetch, BR as NucleusElysiaPlugin, Ds as AUTH_ENDPOINT_CONFIGS };
|
|
578
578
|
//# sourceMappingURL=index.d.ts.map
|