@aghamdi/shared-types 0.2.6 → 0.2.8
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/index.d.mts +9 -3
- package/dist/index.d.ts +9 -3
- package/dist/index.js +17 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -17,11 +17,9 @@ interface Notification {
|
|
|
17
17
|
}
|
|
18
18
|
interface UserNotification extends Notification {
|
|
19
19
|
userId: string;
|
|
20
|
-
target: "user";
|
|
21
20
|
}
|
|
22
21
|
interface DeviceNotification extends Notification {
|
|
23
22
|
deviceId: string;
|
|
24
|
-
target: "device";
|
|
25
23
|
}
|
|
26
24
|
declare class MiaNotifications {
|
|
27
25
|
static sendtoDevice(message: DeviceNotification): Promise<void>;
|
|
@@ -33,4 +31,12 @@ declare class MessagingBus {
|
|
|
33
31
|
static publish(channel: string, message: any): Promise<void>;
|
|
34
32
|
}
|
|
35
33
|
|
|
36
|
-
|
|
34
|
+
interface MultilanguageString {
|
|
35
|
+
lang: string;
|
|
36
|
+
value: string;
|
|
37
|
+
}
|
|
38
|
+
declare class MultilanguageStrings {
|
|
39
|
+
static getString: (inLang: string, from: MultilanguageString[]) => void;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export { type DeviceNotification, MessagingBus, MiaNotifications, MiaServerResponse, type MultilanguageString, MultilanguageStrings, type Notification, type UserNotification };
|
package/dist/index.d.ts
CHANGED
|
@@ -17,11 +17,9 @@ interface Notification {
|
|
|
17
17
|
}
|
|
18
18
|
interface UserNotification extends Notification {
|
|
19
19
|
userId: string;
|
|
20
|
-
target: "user";
|
|
21
20
|
}
|
|
22
21
|
interface DeviceNotification extends Notification {
|
|
23
22
|
deviceId: string;
|
|
24
|
-
target: "device";
|
|
25
23
|
}
|
|
26
24
|
declare class MiaNotifications {
|
|
27
25
|
static sendtoDevice(message: DeviceNotification): Promise<void>;
|
|
@@ -33,4 +31,12 @@ declare class MessagingBus {
|
|
|
33
31
|
static publish(channel: string, message: any): Promise<void>;
|
|
34
32
|
}
|
|
35
33
|
|
|
36
|
-
|
|
34
|
+
interface MultilanguageString {
|
|
35
|
+
lang: string;
|
|
36
|
+
value: string;
|
|
37
|
+
}
|
|
38
|
+
declare class MultilanguageStrings {
|
|
39
|
+
static getString: (inLang: string, from: MultilanguageString[]) => void;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export { type DeviceNotification, MessagingBus, MiaNotifications, MiaServerResponse, type MultilanguageString, MultilanguageStrings, type Notification, type UserNotification };
|
package/dist/index.js
CHANGED
|
@@ -46,7 +46,8 @@ var src_exports = {};
|
|
|
46
46
|
__export(src_exports, {
|
|
47
47
|
MessagingBus: () => MessagingBus,
|
|
48
48
|
MiaNotifications: () => MiaNotifications,
|
|
49
|
-
MiaServerResponse: () => MiaServerResponse
|
|
49
|
+
MiaServerResponse: () => MiaServerResponse,
|
|
50
|
+
MultilanguageStrings: () => MultilanguageStrings
|
|
50
51
|
});
|
|
51
52
|
module.exports = __toCommonJS(src_exports);
|
|
52
53
|
|
|
@@ -83,6 +84,9 @@ var import_nats = require("nats");
|
|
|
83
84
|
var MessagingBus = class {
|
|
84
85
|
static subscribe(channel, queue, onMessage) {
|
|
85
86
|
return __async(this, null, function* () {
|
|
87
|
+
if (!process.env.NATS_HOST) {
|
|
88
|
+
throw new Error("NATS_HOST ENV is not defined");
|
|
89
|
+
}
|
|
86
90
|
const nc = yield (0, import_nats.connect)({ servers: process.env.NATS_HOST });
|
|
87
91
|
const sc = (0, import_nats.JSONCodec)();
|
|
88
92
|
const subscription = nc.subscribe(channel, { queue });
|
|
@@ -125,19 +129,28 @@ var MessagingBus = class {
|
|
|
125
129
|
var MiaNotifications = class {
|
|
126
130
|
static sendtoDevice(message) {
|
|
127
131
|
return __async(this, null, function* () {
|
|
128
|
-
yield MessagingBus.publish(
|
|
132
|
+
yield MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || "general"}`, message);
|
|
129
133
|
});
|
|
130
134
|
}
|
|
131
135
|
static sendtoUserDevices(message) {
|
|
132
136
|
return __async(this, null, function* () {
|
|
133
|
-
yield MessagingBus.publish(
|
|
137
|
+
yield MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || "general"}`, message);
|
|
134
138
|
});
|
|
135
139
|
}
|
|
136
140
|
};
|
|
141
|
+
|
|
142
|
+
// src/multilanguage-string.ts
|
|
143
|
+
var MultilanguageStrings = class {
|
|
144
|
+
};
|
|
145
|
+
MultilanguageStrings.getString = (inLang, from) => {
|
|
146
|
+
var _a;
|
|
147
|
+
(_a = from.filter((ml) => ml.lang === inLang)[0]) == null ? void 0 : _a.value;
|
|
148
|
+
};
|
|
137
149
|
// Annotate the CommonJS export names for ESM import in node:
|
|
138
150
|
0 && (module.exports = {
|
|
139
151
|
MessagingBus,
|
|
140
152
|
MiaNotifications,
|
|
141
|
-
MiaServerResponse
|
|
153
|
+
MiaServerResponse,
|
|
154
|
+
MultilanguageStrings
|
|
142
155
|
});
|
|
143
156
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/mia-server-response.ts","../src/messaging-bus.ts","../src/notifications.ts"],"sourcesContent":["export * from './mia-server-response'\nexport * from './notifications'\nexport * from './messaging-bus'","export class MiaServerResponse {\n status?: number;\n message?: string;\n data: any;\n\n static send = (status: number, message: string, data: any) => {\n const response: MiaServerResponse = {\n status: status,\n message: message,\n data: data\n };\n return response;\n }\n static sendData = (data: any) => {\n const response: MiaServerResponse = {\n status: 200,\n message: \"Success\",\n data: data\n };\n return response;\n }\n static sendError = (error: any) => {\n const response: MiaServerResponse = {\n status: 400,\n message: \"Failed\",\n data: error\n };\n return response;\n }\n}\n","import { connect, JSONCodec } from \"nats\";\n\nexport class MessagingBus {\n static async subscribe(channel: string, queue: string, onMessage: Function) {\n const nc = await connect({ servers: process.env.NATS_HOST });\n const sc = JSONCodec();\n const subscription = nc.subscribe(channel, { queue: queue });\n\n (async (sub) => {\n\n console.log(`listening for ${sub.getSubject()} requests...`);\n\n for await (const m of sub) {\n const msg = sc.decode(m.data);\n onMessage(msg);\n }\n\n console.log(`subscription ${sub.getSubject()} drained.`);\n })(subscription);\n }\n\n static async publish(channel: string, message: any) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const jc = JSONCodec();\n nc.publish(channel, jc.encode(message));\n await nc.drain();\n }\n}\n","import {
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/mia-server-response.ts","../src/messaging-bus.ts","../src/notifications.ts","../src/multilanguage-string.ts"],"sourcesContent":["export * from './mia-server-response'\nexport * from './notifications'\nexport * from './messaging-bus'\nexport * from './multilanguage-string'","export class MiaServerResponse {\n status?: number;\n message?: string;\n data: any;\n\n static send = (status: number, message: string, data: any) => {\n const response: MiaServerResponse = {\n status: status,\n message: message,\n data: data\n };\n return response;\n }\n static sendData = (data: any) => {\n const response: MiaServerResponse = {\n status: 200,\n message: \"Success\",\n data: data\n };\n return response;\n }\n static sendError = (error: any) => {\n const response: MiaServerResponse = {\n status: 400,\n message: \"Failed\",\n data: error\n };\n return response;\n }\n}\n","import { connect, JSONCodec } from \"nats\";\n\nexport class MessagingBus {\n static async subscribe(channel: string, queue: string, onMessage: Function) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const sc = JSONCodec();\n const subscription = nc.subscribe(channel, { queue: queue });\n\n (async (sub) => {\n\n console.log(`listening for ${sub.getSubject()} requests...`);\n\n for await (const m of sub) {\n const msg = sc.decode(m.data);\n onMessage(msg);\n }\n\n console.log(`subscription ${sub.getSubject()} drained.`);\n })(subscription);\n }\n\n static async publish(channel: string, message: any) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const jc = JSONCodec();\n nc.publish(channel, jc.encode(message));\n await nc.drain();\n }\n}\n","import { MessagingBus } from \"./messaging-bus\";\nexport interface Notification {\n title?: string,\n body: string,\n badge?: number,\n topic?: string,\n payload?: any,\n target?: string\n}\nexport interface UserNotification extends Notification {\n userId: string\n}\nexport interface DeviceNotification extends Notification {\n deviceId: string\n}\n\nexport class MiaNotifications {\n static async sendtoDevice(message: DeviceNotification) {\n await MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || \"general\"}`, message);\n }\n static async sendtoUserDevices(message: UserNotification) {\n await MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || \"general\"}`, message);\n }\n}","export interface MultilanguageString {\n lang: string;\n value: string;\n}\nexport class MultilanguageStrings {\n static getString = (inLang: string, from: MultilanguageString[]) => {\n from.filter((ml) => ml.lang === inLang)[0]?.value\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAO,IAAM,oBAAN,MAAwB;AA6B/B;AA7Ba,kBAKJ,OAAO,CAAC,QAAgB,SAAiB,SAAc;AAC5D,QAAM,WAA8B;AAAA,IAClC;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,SAAO;AACT;AAZW,kBAaJ,WAAW,CAAC,SAAc;AAC/B,QAAM,WAA8B;AAAA,IAClC,QAAQ;AAAA,IACR,SAAS;AAAA,IACT;AAAA,EACF;AACA,SAAO;AACT;AApBW,kBAqBJ,YAAY,CAAC,UAAe;AACjC,QAAM,WAA8B;AAAA,IAClC,QAAQ;AAAA,IACR,SAAS;AAAA,IACT,MAAM;AAAA,EACR;AACA,SAAO;AACT;;;AC5BF,kBAAmC;AAE5B,IAAM,eAAN,MAAmB;AAAA,EACxB,OAAa,UAAU,SAAiB,OAAe,WAAqB;AAAA;AAC1E,UAAI,CAAC,QAAQ,IAAI,WAAW;AAC1B,cAAM,IAAI,MAAM,8BAA8B;AAAA,MAChD;AACA,YAAM,KAAK,UAAM,qBAAQ,EAAE,SAAS,QAAQ,IAAI,UAAU,CAAC;AAC3D,YAAM,SAAK,uBAAU;AACrB,YAAM,eAAe,GAAG,UAAU,SAAS,EAAE,MAAa,CAAC;AAE3D,OAAC,CAAO,QAAQ;AAEd,gBAAQ,IAAI,iBAAiB,IAAI,WAAW,CAAC,cAAc;AAE3D;AAAA,qCAAsB,MAAtB,0EAA2B;AAAhB,kBAAM,IAAjB;AACE,kBAAM,MAAM,GAAG,OAAO,EAAE,IAAI;AAC5B,sBAAU,GAAG;AAAA,UACf;AAAA,iBAHA,MAfN;AAeM;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA,gBAAQ,IAAI,gBAAgB,IAAI,WAAW,CAAC,WAAW;AAAA,MACzD,IAAG,YAAY;AAAA,IACjB;AAAA;AAAA,EAEA,OAAa,QAAQ,SAAiB,SAAc;AAAA;AAClD,UAAI,CAAC,QAAQ,IAAI,WAAW;AAC1B,cAAM,IAAI,MAAM,8BAA8B;AAAA,MAChD;AACA,YAAM,KAAK,UAAM,qBAAQ,EAAE,SAAS,QAAQ,IAAI,UAAU,CAAC;AAC3D,YAAM,SAAK,uBAAU;AACrB,SAAG,QAAQ,SAAS,GAAG,OAAO,OAAO,CAAC;AACtC,YAAM,GAAG,MAAM;AAAA,IACjB;AAAA;AACF;;;ACjBO,IAAM,mBAAN,MAAuB;AAAA,EAC5B,OAAa,aAAa,SAA6B;AAAA;AACrD,YAAM,aAAa,QAAQ,qBAAqB,QAAQ,IAAI,gBAAgB,SAAS,IAAI,OAAO;AAAA,IAClG;AAAA;AAAA,EACA,OAAa,kBAAkB,SAA2B;AAAA;AACxD,YAAM,aAAa,QAAQ,qBAAqB,QAAQ,IAAI,gBAAgB,SAAS,IAAI,OAAO;AAAA,IAClG;AAAA;AACF;;;ACnBO,IAAM,uBAAN,MAA2B;AAIlC;AAJa,qBACJ,YAAY,CAAC,QAAgB,SAAgC;AALtE;AAMI,aAAK,OAAO,CAAC,OAAO,GAAG,SAAS,MAAM,EAAE,CAAC,MAAzC,mBAA4C;AAC9C;","names":[]}
|
package/dist/index.mjs
CHANGED
|
@@ -56,6 +56,9 @@ import { connect, JSONCodec } from "nats";
|
|
|
56
56
|
var MessagingBus = class {
|
|
57
57
|
static subscribe(channel, queue, onMessage) {
|
|
58
58
|
return __async(this, null, function* () {
|
|
59
|
+
if (!process.env.NATS_HOST) {
|
|
60
|
+
throw new Error("NATS_HOST ENV is not defined");
|
|
61
|
+
}
|
|
59
62
|
const nc = yield connect({ servers: process.env.NATS_HOST });
|
|
60
63
|
const sc = JSONCodec();
|
|
61
64
|
const subscription = nc.subscribe(channel, { queue });
|
|
@@ -98,18 +101,27 @@ var MessagingBus = class {
|
|
|
98
101
|
var MiaNotifications = class {
|
|
99
102
|
static sendtoDevice(message) {
|
|
100
103
|
return __async(this, null, function* () {
|
|
101
|
-
yield MessagingBus.publish(
|
|
104
|
+
yield MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || "general"}`, message);
|
|
102
105
|
});
|
|
103
106
|
}
|
|
104
107
|
static sendtoUserDevices(message) {
|
|
105
108
|
return __async(this, null, function* () {
|
|
106
|
-
yield MessagingBus.publish(
|
|
109
|
+
yield MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || "general"}`, message);
|
|
107
110
|
});
|
|
108
111
|
}
|
|
109
112
|
};
|
|
113
|
+
|
|
114
|
+
// src/multilanguage-string.ts
|
|
115
|
+
var MultilanguageStrings = class {
|
|
116
|
+
};
|
|
117
|
+
MultilanguageStrings.getString = (inLang, from) => {
|
|
118
|
+
var _a;
|
|
119
|
+
(_a = from.filter((ml) => ml.lang === inLang)[0]) == null ? void 0 : _a.value;
|
|
120
|
+
};
|
|
110
121
|
export {
|
|
111
122
|
MessagingBus,
|
|
112
123
|
MiaNotifications,
|
|
113
|
-
MiaServerResponse
|
|
124
|
+
MiaServerResponse,
|
|
125
|
+
MultilanguageStrings
|
|
114
126
|
};
|
|
115
127
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/mia-server-response.ts","../src/messaging-bus.ts","../src/notifications.ts"],"sourcesContent":["export class MiaServerResponse {\n status?: number;\n message?: string;\n data: any;\n\n static send = (status: number, message: string, data: any) => {\n const response: MiaServerResponse = {\n status: status,\n message: message,\n data: data\n };\n return response;\n }\n static sendData = (data: any) => {\n const response: MiaServerResponse = {\n status: 200,\n message: \"Success\",\n data: data\n };\n return response;\n }\n static sendError = (error: any) => {\n const response: MiaServerResponse = {\n status: 400,\n message: \"Failed\",\n data: error\n };\n return response;\n }\n}\n","import { connect, JSONCodec } from \"nats\";\n\nexport class MessagingBus {\n static async subscribe(channel: string, queue: string, onMessage: Function) {\n const nc = await connect({ servers: process.env.NATS_HOST });\n const sc = JSONCodec();\n const subscription = nc.subscribe(channel, { queue: queue });\n\n (async (sub) => {\n\n console.log(`listening for ${sub.getSubject()} requests...`);\n\n for await (const m of sub) {\n const msg = sc.decode(m.data);\n onMessage(msg);\n }\n\n console.log(`subscription ${sub.getSubject()} drained.`);\n })(subscription);\n }\n\n static async publish(channel: string, message: any) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const jc = JSONCodec();\n nc.publish(channel, jc.encode(message));\n await nc.drain();\n }\n}\n","import {
|
|
1
|
+
{"version":3,"sources":["../src/mia-server-response.ts","../src/messaging-bus.ts","../src/notifications.ts","../src/multilanguage-string.ts"],"sourcesContent":["export class MiaServerResponse {\n status?: number;\n message?: string;\n data: any;\n\n static send = (status: number, message: string, data: any) => {\n const response: MiaServerResponse = {\n status: status,\n message: message,\n data: data\n };\n return response;\n }\n static sendData = (data: any) => {\n const response: MiaServerResponse = {\n status: 200,\n message: \"Success\",\n data: data\n };\n return response;\n }\n static sendError = (error: any) => {\n const response: MiaServerResponse = {\n status: 400,\n message: \"Failed\",\n data: error\n };\n return response;\n }\n}\n","import { connect, JSONCodec } from \"nats\";\n\nexport class MessagingBus {\n static async subscribe(channel: string, queue: string, onMessage: Function) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const sc = JSONCodec();\n const subscription = nc.subscribe(channel, { queue: queue });\n\n (async (sub) => {\n\n console.log(`listening for ${sub.getSubject()} requests...`);\n\n for await (const m of sub) {\n const msg = sc.decode(m.data);\n onMessage(msg);\n }\n\n console.log(`subscription ${sub.getSubject()} drained.`);\n })(subscription);\n }\n\n static async publish(channel: string, message: any) {\n if (!process.env.NATS_HOST) {\n throw new Error(\"NATS_HOST ENV is not defined\");\n }\n const nc = await connect({ servers: process.env.NATS_HOST });\n const jc = JSONCodec();\n nc.publish(channel, jc.encode(message));\n await nc.drain();\n }\n}\n","import { MessagingBus } from \"./messaging-bus\";\nexport interface Notification {\n title?: string,\n body: string,\n badge?: number,\n topic?: string,\n payload?: any,\n target?: string\n}\nexport interface UserNotification extends Notification {\n userId: string\n}\nexport interface DeviceNotification extends Notification {\n deviceId: string\n}\n\nexport class MiaNotifications {\n static async sendtoDevice(message: DeviceNotification) {\n await MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || \"general\"}`, message);\n }\n static async sendtoUserDevices(message: UserNotification) {\n await MessagingBus.publish(`mia.notifications.${process.env.APP_HOSTNAME || \"general\"}`, message);\n }\n}","export interface MultilanguageString {\n lang: string;\n value: string;\n}\nexport class MultilanguageStrings {\n static getString = (inLang: string, from: MultilanguageString[]) => {\n from.filter((ml) => ml.lang === inLang)[0]?.value\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAO,IAAM,oBAAN,MAAwB;AA6B/B;AA7Ba,kBAKJ,OAAO,CAAC,QAAgB,SAAiB,SAAc;AAC5D,QAAM,WAA8B;AAAA,IAClC;AAAA,IACA;AAAA,IACA;AAAA,EACF;AACA,SAAO;AACT;AAZW,kBAaJ,WAAW,CAAC,SAAc;AAC/B,QAAM,WAA8B;AAAA,IAClC,QAAQ;AAAA,IACR,SAAS;AAAA,IACT;AAAA,EACF;AACA,SAAO;AACT;AApBW,kBAqBJ,YAAY,CAAC,UAAe;AACjC,QAAM,WAA8B;AAAA,IAClC,QAAQ;AAAA,IACR,SAAS;AAAA,IACT,MAAM;AAAA,EACR;AACA,SAAO;AACT;;;AC5BF,SAAS,SAAS,iBAAiB;AAE5B,IAAM,eAAN,MAAmB;AAAA,EACxB,OAAa,UAAU,SAAiB,OAAe,WAAqB;AAAA;AAC1E,UAAI,CAAC,QAAQ,IAAI,WAAW;AAC1B,cAAM,IAAI,MAAM,8BAA8B;AAAA,MAChD;AACA,YAAM,KAAK,MAAM,QAAQ,EAAE,SAAS,QAAQ,IAAI,UAAU,CAAC;AAC3D,YAAM,KAAK,UAAU;AACrB,YAAM,eAAe,GAAG,UAAU,SAAS,EAAE,MAAa,CAAC;AAE3D,OAAC,CAAO,QAAQ;AAEd,gBAAQ,IAAI,iBAAiB,IAAI,WAAW,CAAC,cAAc;AAE3D;AAAA,qCAAsB,MAAtB,0EAA2B;AAAhB,kBAAM,IAAjB;AACE,kBAAM,MAAM,GAAG,OAAO,EAAE,IAAI;AAC5B,sBAAU,GAAG;AAAA,UACf;AAAA,iBAHA,MAfN;AAeM;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA,gBAAQ,IAAI,gBAAgB,IAAI,WAAW,CAAC,WAAW;AAAA,MACzD,IAAG,YAAY;AAAA,IACjB;AAAA;AAAA,EAEA,OAAa,QAAQ,SAAiB,SAAc;AAAA;AAClD,UAAI,CAAC,QAAQ,IAAI,WAAW;AAC1B,cAAM,IAAI,MAAM,8BAA8B;AAAA,MAChD;AACA,YAAM,KAAK,MAAM,QAAQ,EAAE,SAAS,QAAQ,IAAI,UAAU,CAAC;AAC3D,YAAM,KAAK,UAAU;AACrB,SAAG,QAAQ,SAAS,GAAG,OAAO,OAAO,CAAC;AACtC,YAAM,GAAG,MAAM;AAAA,IACjB;AAAA;AACF;;;ACjBO,IAAM,mBAAN,MAAuB;AAAA,EAC5B,OAAa,aAAa,SAA6B;AAAA;AACrD,YAAM,aAAa,QAAQ,qBAAqB,QAAQ,IAAI,gBAAgB,SAAS,IAAI,OAAO;AAAA,IAClG;AAAA;AAAA,EACA,OAAa,kBAAkB,SAA2B;AAAA;AACxD,YAAM,aAAa,QAAQ,qBAAqB,QAAQ,IAAI,gBAAgB,SAAS,IAAI,OAAO;AAAA,IAClG;AAAA;AACF;;;ACnBO,IAAM,uBAAN,MAA2B;AAIlC;AAJa,qBACJ,YAAY,CAAC,QAAgB,SAAgC;AALtE;AAMI,aAAK,OAAO,CAAC,OAAO,GAAG,SAAS,MAAM,EAAE,CAAC,MAAzC,mBAA4C;AAC9C;","names":[]}
|