@toa.io/bindings.amqp 0.20.0-dev.38 → 0.20.0-dev.39
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 +6 -6
- package/transpiled/broadcast.d.ts +10 -0
- package/transpiled/broadcast.js +31 -0
- package/transpiled/broadcast.js.map +1 -0
- package/transpiled/communication.d.ts +9 -0
- package/transpiled/communication.js +37 -0
- package/transpiled/communication.js.map +1 -0
- package/transpiled/constants.d.ts +1 -0
- package/transpiled/constants.js +3 -0
- package/transpiled/constants.js.map +1 -0
- package/transpiled/consumer.d.ts +9 -0
- package/transpiled/consumer.js +23 -0
- package/transpiled/consumer.js.map +1 -0
- package/transpiled/deployment/annotation.d.ts +10 -0
- package/transpiled/deployment/annotation.js +43 -0
- package/transpiled/deployment/annotation.js.map +1 -0
- package/transpiled/deployment/context.d.ts +7 -0
- package/transpiled/deployment/context.js +86 -0
- package/transpiled/deployment/context.js.map +1 -0
- package/transpiled/deployment/index.d.ts +4 -0
- package/transpiled/deployment/index.js +34 -0
- package/transpiled/deployment/index.js.map +1 -0
- package/transpiled/deployment/instance.d.ts +2 -0
- package/transpiled/deployment/instance.js +3 -0
- package/transpiled/deployment/instance.js.map +1 -0
- package/transpiled/deployment/sources.d.ts +8 -0
- package/transpiled/deployment/sources.js +35 -0
- package/transpiled/deployment/sources.js.map +1 -0
- package/transpiled/deployment.d.ts +4 -0
- package/transpiled/deployment.js +38 -0
- package/transpiled/deployment.js.map +1 -0
- package/transpiled/emitter.d.ts +9 -0
- package/transpiled/emitter.js +24 -0
- package/transpiled/emitter.js.map +1 -0
- package/transpiled/factory.d.ts +13 -0
- package/transpiled/factory.js +46 -0
- package/transpiled/factory.js.map +1 -0
- package/transpiled/index.d.ts +5 -0
- package/transpiled/index.js +9 -0
- package/transpiled/index.js.map +1 -0
- package/transpiled/producer.d.ts +5 -0
- package/transpiled/producer.js +31 -0
- package/transpiled/producer.js.map +1 -0
- package/transpiled/queues.d.ts +6 -0
- package/transpiled/queues.js +10 -0
- package/transpiled/queues.js.map +1 -0
- package/transpiled/receiver.d.ts +5 -0
- package/transpiled/receiver.js +34 -0
- package/transpiled/receiver.js.map +1 -0
- package/transpiled/tsconfig.tsbuildinfo +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/bindings.amqp",
|
|
3
|
-
"version": "0.20.0-dev.
|
|
3
|
+
"version": "0.20.0-dev.39",
|
|
4
4
|
"description": "Toa AMQP Binding",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"main": "transpiled/index.js",
|
|
18
18
|
"types": "transpiled/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@toa.io/console": "0.20.0-dev.
|
|
21
|
-
"@toa.io/core": "0.20.0-dev.
|
|
22
|
-
"@toa.io/generic": "0.20.0-dev.
|
|
23
|
-
"@toa.io/pointer": "0.20.0-dev.
|
|
20
|
+
"@toa.io/console": "0.20.0-dev.39",
|
|
21
|
+
"@toa.io/core": "0.20.0-dev.39",
|
|
22
|
+
"@toa.io/generic": "0.20.0-dev.39",
|
|
23
|
+
"@toa.io/pointer": "0.20.0-dev.39",
|
|
24
24
|
"comq": "0.8.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"preset": "ts-jest",
|
|
32
32
|
"testEnvironment": "node"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "501be16de01f5ad46b3425eff85d6c641f81b885"
|
|
35
35
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @implements {toa.core.bindings.Broadcast}
|
|
3
|
+
*/
|
|
4
|
+
export class Broadcast extends Connector implements toa.core.bindings.Broadcast {
|
|
5
|
+
constructor(comm: any, locator: any, group: any);
|
|
6
|
+
transmit(label: any, payload: any): Promise<void>;
|
|
7
|
+
receive(label: any, callback: any): Promise<void>;
|
|
8
|
+
#private;
|
|
9
|
+
}
|
|
10
|
+
import { Connector } from "@toa.io/core";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Connector } = require('@toa.io/core');
|
|
3
|
+
const { name } = require('./queues');
|
|
4
|
+
/**
|
|
5
|
+
* @implements {toa.core.bindings.Broadcast}
|
|
6
|
+
*/
|
|
7
|
+
class Broadcast extends Connector {
|
|
8
|
+
/** @type {toa.amqp.Communication} */
|
|
9
|
+
#comm;
|
|
10
|
+
/** @type {toa.core.Locator} */
|
|
11
|
+
#locator;
|
|
12
|
+
/** @type {string} */
|
|
13
|
+
#group;
|
|
14
|
+
constructor(comm, locator, group) {
|
|
15
|
+
super();
|
|
16
|
+
this.#comm = comm;
|
|
17
|
+
this.#locator = locator;
|
|
18
|
+
this.#group = group;
|
|
19
|
+
this.depends(comm);
|
|
20
|
+
}
|
|
21
|
+
async transmit(label, payload) {
|
|
22
|
+
const exchange = name(this.#locator, label);
|
|
23
|
+
await this.#comm.emit(exchange, payload);
|
|
24
|
+
}
|
|
25
|
+
async receive(label, callback) {
|
|
26
|
+
const exchange = name(this.#locator, label);
|
|
27
|
+
await this.#comm.consume(exchange, this.#group, callback);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.Broadcast = Broadcast;
|
|
31
|
+
//# sourceMappingURL=broadcast.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"broadcast.js","sourceRoot":"","sources":["../source/broadcast.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE7C,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC,CAAA;AAEpC;;GAEG;AACH,MAAM,SAAU,SAAQ,SAAS;IAC/B,qCAAqC;IACrC,KAAK,CAAA;IAEL,+BAA+B;IAC/B,QAAQ,CAAA;IAER,qBAAqB;IACrB,MAAM,CAAA;IAEN,YAAa,IAAI,EAAE,OAAO,EAAE,KAAK;QAC/B,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;QACjB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QAEnB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IACpB,CAAC;IAED,KAAK,CAAC,QAAQ,CAAE,KAAK,EAAE,OAAO;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;QAE3C,MAAM,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;IAC1C,CAAC;IAED,KAAK,CAAC,OAAO,CAAE,KAAK,EAAE,QAAQ;QAC5B,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAA;QAE3C,MAAM,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;IAC3D,CAAC;CACF;AAED,OAAO,CAAC,SAAS,GAAG,SAAS,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export class Communication extends Connector {
|
|
2
|
+
constructor(resolve: any);
|
|
3
|
+
reply(queue: any, process: any): Promise<void>;
|
|
4
|
+
request(queue: any, request: any): Promise<any>;
|
|
5
|
+
emit(exchange: any, message: any, properties: any): Promise<void>;
|
|
6
|
+
consume(exchange: any, group: any, consumer: any): Promise<void>;
|
|
7
|
+
#private;
|
|
8
|
+
}
|
|
9
|
+
import { Connector } from "@toa.io/core";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { assert } = require('comq');
|
|
3
|
+
const { Connector } = require('@toa.io/core');
|
|
4
|
+
class Communication extends Connector {
|
|
5
|
+
#resolve;
|
|
6
|
+
/** @type {comq.IO} */
|
|
7
|
+
#io;
|
|
8
|
+
constructor(resolve) {
|
|
9
|
+
super();
|
|
10
|
+
this.#resolve = resolve;
|
|
11
|
+
}
|
|
12
|
+
async open() {
|
|
13
|
+
const references = await this.#resolve();
|
|
14
|
+
this.#io = await assert(...references);
|
|
15
|
+
}
|
|
16
|
+
async close() {
|
|
17
|
+
await this.#io.seal();
|
|
18
|
+
}
|
|
19
|
+
async dispose() {
|
|
20
|
+
if (this.#io !== undefined)
|
|
21
|
+
await this.#io.close();
|
|
22
|
+
}
|
|
23
|
+
async reply(queue, process) {
|
|
24
|
+
await this.#io.reply(queue, process);
|
|
25
|
+
}
|
|
26
|
+
async request(queue, request) {
|
|
27
|
+
return this.#io.request(queue, request);
|
|
28
|
+
}
|
|
29
|
+
async emit(exchange, message, properties) {
|
|
30
|
+
await this.#io.emit(exchange, message, properties);
|
|
31
|
+
}
|
|
32
|
+
async consume(exchange, group, consumer) {
|
|
33
|
+
await this.#io.consume(exchange, group, consumer);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.Communication = Communication;
|
|
37
|
+
//# sourceMappingURL=communication.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"communication.js","sourceRoot":"","sources":["../source/communication.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;AAClC,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE7C,MAAM,aAAc,SAAQ,SAAS;IACnC,QAAQ,CAAA;IAER,sBAAsB;IACtB,GAAG,CAAA;IAEH,YAAa,OAAO;QAClB,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;IACzB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAA;QAExC,IAAI,CAAC,GAAG,GAAG,MAAM,MAAM,CAAC,GAAG,UAAU,CAAC,CAAA;IACxC,CAAC;IAED,KAAK,CAAC,KAAK;QACT,MAAM,IAAI,CAAC,GAAG,CAAC,IAAI,EAAE,CAAA;IACvB,CAAC;IAED,KAAK,CAAC,OAAO;QACX,IAAI,IAAI,CAAC,GAAG,KAAK,SAAS;YAAE,MAAM,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,CAAA;IACpD,CAAC;IAED,KAAK,CAAC,KAAK,CAAE,KAAK,EAAE,OAAO;QACzB,MAAM,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IACtC,CAAC;IAED,KAAK,CAAC,OAAO,CAAE,KAAK,EAAE,OAAO;QAC3B,OAAO,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;IACzC,CAAC;IAED,KAAK,CAAC,IAAI,CAAE,QAAQ,EAAE,OAAO,EAAE,UAAU;QACvC,MAAM,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,CAAC,CAAA;IACpD,CAAC;IAED,KAAK,CAAC,OAAO,CAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ;QACtC,MAAM,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAA;IACnD,CAAC;CACF;AAED,OAAO,CAAC,aAAa,GAAG,aAAa,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const SYSTEM: "system";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../source/constants.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,CAAC,MAAM,GAAG,QAAQ,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @implements {toa.core.bindings.Consumer}
|
|
3
|
+
*/
|
|
4
|
+
export class Consumer extends Connector implements toa.core.bindings.Consumer {
|
|
5
|
+
constructor(comm: any, locator: any, endpoint: any);
|
|
6
|
+
request(request: any): Promise<any>;
|
|
7
|
+
#private;
|
|
8
|
+
}
|
|
9
|
+
import { Connector } from "@toa.io/core";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Connector } = require('@toa.io/core');
|
|
3
|
+
const { name } = require('./queues');
|
|
4
|
+
/**
|
|
5
|
+
* @implements {toa.core.bindings.Consumer}
|
|
6
|
+
*/
|
|
7
|
+
class Consumer extends Connector {
|
|
8
|
+
/** @type {string} */
|
|
9
|
+
#queue;
|
|
10
|
+
/** @type {toa.amqp.Communication} */
|
|
11
|
+
#comm;
|
|
12
|
+
constructor(comm, locator, endpoint) {
|
|
13
|
+
super();
|
|
14
|
+
this.#queue = name(locator, endpoint);
|
|
15
|
+
this.#comm = comm;
|
|
16
|
+
this.depends(comm);
|
|
17
|
+
}
|
|
18
|
+
async request(request) {
|
|
19
|
+
return this.#comm.request(this.#queue, request);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.Consumer = Consumer;
|
|
23
|
+
//# sourceMappingURL=consumer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consumer.js","sourceRoot":"","sources":["../source/consumer.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAC7C,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC,CAAA;AAEpC;;GAEG;AACH,MAAM,QAAS,SAAQ,SAAS;IAC9B,qBAAqB;IACrB,MAAM,CAAA;IAEN,qCAAqC;IACrC,KAAK,CAAA;IAEL,YAAa,IAAI,EAAE,OAAO,EAAE,QAAQ;QAClC,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAA;QACrC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;QAEjB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IACpB,CAAC;IAED,KAAK,CAAC,OAAO,CAAE,OAAO;QACpB,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;CACF;AAED,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type URIMap } from '@toa.io/pointer';
|
|
2
|
+
export declare function normalize(declaration: string | Declaration): Annotation;
|
|
3
|
+
export interface Annotation {
|
|
4
|
+
context: URIMap;
|
|
5
|
+
sources?: URIMap;
|
|
6
|
+
}
|
|
7
|
+
export interface Declaration {
|
|
8
|
+
context: string | Record<string, string | string[]>;
|
|
9
|
+
sources?: Record<string, string | string[]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.normalize = void 0;
|
|
27
|
+
const pointer = __importStar(require("@toa.io/pointer"));
|
|
28
|
+
function normalize(declaration) {
|
|
29
|
+
const annotation = expand(declaration);
|
|
30
|
+
const context = pointer.normalize(annotation.context);
|
|
31
|
+
const sources = pointer.normalize(annotation.sources);
|
|
32
|
+
return { context, sources };
|
|
33
|
+
}
|
|
34
|
+
exports.normalize = normalize;
|
|
35
|
+
function expand(declaration) {
|
|
36
|
+
if (typeof declaration === 'string')
|
|
37
|
+
return { context: { '.': [declaration] } };
|
|
38
|
+
else if (Array.isArray(declaration))
|
|
39
|
+
return { context: { '.': declaration } };
|
|
40
|
+
else
|
|
41
|
+
return declaration;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=annotation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"annotation.js","sourceRoot":"","sources":["../../source/deployment/annotation.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yDAA0C;AAG1C,SAAgB,SAAS,CAAE,WAAiC;IAC1D,MAAM,UAAU,GAAG,MAAM,CAAC,WAAW,CAAC,CAAA;IACtC,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;IACrD,MAAM,OAAO,GAAG,OAAO,CAAC,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;IAErD,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,CAAA;AAC7B,CAAC;AAND,8BAMC;AAED,SAAS,MAAM,CAAE,WAAiC;IAChD,IAAI,OAAO,WAAW,KAAK,QAAQ;QAAE,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,WAAW,CAAC,EAAE,EAAE,CAAA;SAC1E,IAAI,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;QAAE,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,WAAW,EAAE,EAAE,CAAA;;QACxE,OAAO,WAAW,CAAA;AACzB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type Dependency } from '@toa.io/operations';
|
|
2
|
+
import { type Locator } from '@toa.io/core';
|
|
3
|
+
import { type Annotation } from './annotation';
|
|
4
|
+
export declare function createDependency(context: Context): Dependency;
|
|
5
|
+
export declare function resolveURIs(locator: Locator): Promise<string[]>;
|
|
6
|
+
type Context = Annotation['context'];
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveURIs = exports.createDependency = void 0;
|
|
4
|
+
const generic_1 = require("@toa.io/generic");
|
|
5
|
+
const pointer_1 = require("@toa.io/pointer");
|
|
6
|
+
const dns_1 = require("@toa.io/dns");
|
|
7
|
+
function createDependency(context) {
|
|
8
|
+
const global = [];
|
|
9
|
+
const variables = { global };
|
|
10
|
+
const contextVariables = createVariables(context);
|
|
11
|
+
global.push(...contextVariables);
|
|
12
|
+
return { variables };
|
|
13
|
+
}
|
|
14
|
+
exports.createDependency = createDependency;
|
|
15
|
+
async function resolveURIs(locator) {
|
|
16
|
+
if (process.env.TOA_DEV === '1')
|
|
17
|
+
return ['amqp://developer:secret@localhost'];
|
|
18
|
+
const value = process.env[VARIABLE];
|
|
19
|
+
if (value === undefined)
|
|
20
|
+
throw new Error(`Environment variable ${VARIABLE} is not specified`);
|
|
21
|
+
const map = (0, generic_1.decode)(value);
|
|
22
|
+
const record = (0, pointer_1.resolveRecord)(map, locator.id);
|
|
23
|
+
return await parseRecord(record);
|
|
24
|
+
}
|
|
25
|
+
exports.resolveURIs = resolveURIs;
|
|
26
|
+
function createVariables(context) {
|
|
27
|
+
const variables = [];
|
|
28
|
+
const uris = (0, generic_1.encode)(context);
|
|
29
|
+
const contextVariable = {
|
|
30
|
+
name: VARIABLE,
|
|
31
|
+
value: uris
|
|
32
|
+
};
|
|
33
|
+
const secrets = createSecrets(context);
|
|
34
|
+
variables.push(contextVariable, ...secrets);
|
|
35
|
+
return variables;
|
|
36
|
+
}
|
|
37
|
+
function createSecrets(context) {
|
|
38
|
+
const secrets = [];
|
|
39
|
+
for (const key of Object.keys(context)) {
|
|
40
|
+
const keySecrets = createKeySecrets(key);
|
|
41
|
+
secrets.push(...keySecrets);
|
|
42
|
+
}
|
|
43
|
+
return secrets;
|
|
44
|
+
}
|
|
45
|
+
function createKeySecrets(key) {
|
|
46
|
+
const username = createSecretVariable(key, 'username');
|
|
47
|
+
const password = createSecretVariable(key, 'password');
|
|
48
|
+
return [username, password];
|
|
49
|
+
}
|
|
50
|
+
function createSecretVariable(key, secretKey) {
|
|
51
|
+
const varKey = key === '.' ? '' : key;
|
|
52
|
+
const varName = pointer_1.naming.nameVariable(ID, varKey, secretKey.toUpperCase());
|
|
53
|
+
const secName = pointer_1.naming.nameSecret(ID, key);
|
|
54
|
+
return {
|
|
55
|
+
name: varName,
|
|
56
|
+
secret: {
|
|
57
|
+
name: secName,
|
|
58
|
+
key: secretKey
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
async function parseRecord(record) {
|
|
63
|
+
const unique = await (0, dns_1.dedupe)(record.references);
|
|
64
|
+
const urls = new Array(unique.length);
|
|
65
|
+
const key = record.key === '.' ? '' : record.key;
|
|
66
|
+
const username = readEnv(key, 'USERNAME');
|
|
67
|
+
const password = readEnv(key, 'PASSWORD');
|
|
68
|
+
for (let i = 0; i < record.references.length; i++) {
|
|
69
|
+
const url = new URL(record.references[i]);
|
|
70
|
+
url.username = username;
|
|
71
|
+
url.password = password;
|
|
72
|
+
urls[i] = url.href;
|
|
73
|
+
}
|
|
74
|
+
return urls;
|
|
75
|
+
}
|
|
76
|
+
function readEnv(key, name) {
|
|
77
|
+
const variable = pointer_1.naming.nameVariable(ID, key, name);
|
|
78
|
+
const value = process.env[variable];
|
|
79
|
+
if (value === undefined)
|
|
80
|
+
throw new Error(variable + ' is not set');
|
|
81
|
+
else
|
|
82
|
+
return value;
|
|
83
|
+
}
|
|
84
|
+
const ID = 'amqp-context';
|
|
85
|
+
const VARIABLE = 'TOA_AMQP_CONTEXT';
|
|
86
|
+
//# sourceMappingURL=context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../source/deployment/context.ts"],"names":[],"mappings":";;;AACA,6CAAgD;AAChD,6CAAuD;AAGvD,qCAAoC;AAGpC,SAAgB,gBAAgB,CAAE,OAAgB;IAChD,MAAM,MAAM,GAAe,EAAE,CAAA;IAC7B,MAAM,SAAS,GAAG,EAAE,MAAM,EAAE,CAAA;IAE5B,MAAM,gBAAgB,GAAG,eAAe,CAAC,OAAO,CAAC,CAAA;IAEjD,MAAM,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,CAAA;IAEhC,OAAO,EAAE,SAAS,EAAE,CAAA;AACtB,CAAC;AATD,4CASC;AAEM,KAAK,UAAU,WAAW,CAAE,OAAgB;IACjD,IAAI,OAAO,CAAC,GAAG,CAAC,OAAO,KAAK,GAAG;QAAE,OAAO,CAAC,mCAAmC,CAAC,CAAA;IAE7E,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAEnC,IAAI,KAAK,KAAK,SAAS;QAAE,MAAM,IAAI,KAAK,CAAC,wBAAwB,QAAQ,mBAAmB,CAAC,CAAA;IAE7F,MAAM,GAAG,GAAG,IAAA,gBAAM,EAAC,KAAK,CAAC,CAAA;IACzB,MAAM,MAAM,GAAG,IAAA,uBAAa,EAAC,GAAG,EAAE,OAAO,CAAC,EAAE,CAAC,CAAA;IAE7C,OAAO,MAAM,WAAW,CAAC,MAAM,CAAC,CAAA;AAClC,CAAC;AAXD,kCAWC;AAED,SAAS,eAAe,CAAE,OAAgB;IACxC,MAAM,SAAS,GAAe,EAAE,CAAA;IAChC,MAAM,IAAI,GAAG,IAAA,gBAAM,EAAC,OAAO,CAAC,CAAA;IAE5B,MAAM,eAAe,GAAa;QAChC,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,IAAI;KACZ,CAAA;IAED,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,CAAC,CAAA;IAEtC,SAAS,CAAC,IAAI,CAAC,eAAe,EAAE,GAAG,OAAO,CAAC,CAAA;IAE3C,OAAO,SAAS,CAAA;AAClB,CAAC;AAED,SAAS,aAAa,CAAE,OAAgB;IACtC,MAAM,OAAO,GAAe,EAAE,CAAA;IAE9B,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE;QACtC,MAAM,UAAU,GAAG,gBAAgB,CAAC,GAAG,CAAC,CAAA;QAExC,OAAO,CAAC,IAAI,CAAC,GAAG,UAAU,CAAC,CAAA;KAC5B;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AAED,SAAS,gBAAgB,CAAE,GAAW;IACpC,MAAM,QAAQ,GAAG,oBAAoB,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IACtD,MAAM,QAAQ,GAAG,oBAAoB,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IAEtD,OAAO,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;AAC7B,CAAC;AAED,SAAS,oBAAoB,CAAE,GAAW,EAAE,SAAiB;IAC3D,MAAM,MAAM,GAAG,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAA;IACrC,MAAM,OAAO,GAAG,gBAAM,CAAC,YAAY,CAAC,EAAE,EAAE,MAAM,EAAE,SAAS,CAAC,WAAW,EAAE,CAAC,CAAA;IACxE,MAAM,OAAO,GAAG,gBAAM,CAAC,UAAU,CAAC,EAAE,EAAE,GAAG,CAAC,CAAA;IAE1C,OAAO;QACL,IAAI,EAAE,OAAO;QACb,MAAM,EAAE;YACN,IAAI,EAAE,OAAO;YACb,GAAG,EAAE,SAAS;SACf;KACF,CAAA;AACH,CAAC;AAED,KAAK,UAAU,WAAW,CAAE,MAAwB;IAClD,MAAM,MAAM,GAAG,MAAM,IAAA,YAAM,EAAC,MAAM,CAAC,UAAU,CAAC,CAAA;IAC9C,MAAM,IAAI,GAAG,IAAI,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;IACrC,MAAM,GAAG,GAAG,MAAM,CAAC,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAA;IAChD,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IACzC,MAAM,QAAQ,GAAG,OAAO,CAAC,GAAG,EAAE,UAAU,CAAC,CAAA;IAEzC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;QACjD,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAA;QAEzC,GAAG,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACvB,GAAG,CAAC,QAAQ,GAAG,QAAQ,CAAA;QAEvB,IAAI,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,IAAI,CAAA;KACnB;IAED,OAAO,IAAI,CAAA;AACb,CAAC;AAED,SAAS,OAAO,CAAE,GAAW,EAAE,IAAY;IACzC,MAAM,QAAQ,GAAG,gBAAM,CAAC,YAAY,CAAC,EAAE,EAAE,GAAG,EAAE,IAAI,CAAC,CAAA;IACnD,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAEnC,IAAI,KAAK,KAAK,SAAS;QAAE,MAAM,IAAI,KAAK,CAAC,QAAQ,GAAG,aAAa,CAAC,CAAA;;QAC7D,OAAO,KAAK,CAAA;AACnB,CAAC;AAED,MAAM,EAAE,GAAG,cAAc,CAAA;AACzB,MAAM,QAAQ,GAAG,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.deployment = void 0;
|
|
27
|
+
const annotation_1 = require("./annotation");
|
|
28
|
+
const sources = __importStar(require("./sources"));
|
|
29
|
+
function deployment(instances, declaration) {
|
|
30
|
+
const annotation = (0, annotation_1.normalize)(declaration);
|
|
31
|
+
return sources.createDependency(annotation.sources, instances);
|
|
32
|
+
}
|
|
33
|
+
exports.deployment = deployment;
|
|
34
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../source/deployment/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAA0D;AAC1D,mDAAoC;AAGpC,SAAgB,UAAU,CAAE,SAAqB,EAAE,WAAwB;IACzE,MAAM,UAAU,GAAG,IAAA,sBAAS,EAAC,WAAW,CAAC,CAAA;IAEzC,OAAO,OAAO,CAAC,gBAAgB,CAAC,UAAU,CAAC,OAAO,EAAE,SAAS,CAAC,CAAA;AAChE,CAAC;AAJD,gCAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../source/deployment/instance.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type Dependency } from '@toa.io/operations';
|
|
2
|
+
import { type Locator } from '@toa.io/core';
|
|
3
|
+
import { type Instance } from './instance';
|
|
4
|
+
import { type Annotation } from './annotation';
|
|
5
|
+
export declare function createDependency(sources: Sources, instances: Instance[]): Dependency;
|
|
6
|
+
export declare function resolveURIs(locator: Locator, label: string): Promise<string[]>;
|
|
7
|
+
type Sources = Annotation['sources'];
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolveURIs = exports.createDependency = void 0;
|
|
4
|
+
const pointer_1 = require("@toa.io/pointer");
|
|
5
|
+
function createDependency(sources, instances) {
|
|
6
|
+
const requests = [];
|
|
7
|
+
for (const instance of instances) {
|
|
8
|
+
const request = createRequest(instance);
|
|
9
|
+
if (request !== null)
|
|
10
|
+
requests.push(request);
|
|
11
|
+
}
|
|
12
|
+
const variables = (0, pointer_1.createVariables)(ID, sources, requests);
|
|
13
|
+
return { variables };
|
|
14
|
+
}
|
|
15
|
+
exports.createDependency = createDependency;
|
|
16
|
+
async function resolveURIs(locator, label) {
|
|
17
|
+
return await (0, pointer_1.resolve)(ID, locator.id);
|
|
18
|
+
}
|
|
19
|
+
exports.resolveURIs = resolveURIs;
|
|
20
|
+
function createRequest(instance) {
|
|
21
|
+
const group = instance.locator.label;
|
|
22
|
+
const selectors = createSelectors(instance.component);
|
|
23
|
+
if (selectors === null)
|
|
24
|
+
return null;
|
|
25
|
+
else
|
|
26
|
+
return { group, selectors };
|
|
27
|
+
}
|
|
28
|
+
function createSelectors(component) {
|
|
29
|
+
if (component.receivers === undefined)
|
|
30
|
+
return null;
|
|
31
|
+
const sources = Object.values(component.receivers).map((receiver) => receiver.source);
|
|
32
|
+
return sources.filter((source) => source !== undefined);
|
|
33
|
+
}
|
|
34
|
+
const ID = 'amqp-sources';
|
|
35
|
+
//# sourceMappingURL=sources.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sources.js","sourceRoot":"","sources":["../../source/deployment/sources.ts"],"names":[],"mappings":";;;AAAA,6CAAwE;AAOxE,SAAgB,gBAAgB,CAAE,OAAgB,EAAE,SAAqB;IACvE,MAAM,QAAQ,GAAG,EAAE,CAAA;IAEnB,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;QAChC,MAAM,OAAO,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAA;QAEvC,IAAI,OAAO,KAAK,IAAI;YAAE,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;KAC7C;IAED,MAAM,SAAS,GAAG,IAAA,yBAAe,EAAC,EAAE,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAA;IAExD,OAAO,EAAE,SAAS,EAAE,CAAA;AACtB,CAAC;AAZD,4CAYC;AAEM,KAAK,UAAU,WAAW,CAAE,OAAgB,EAAE,KAAa;IAChE,OAAO,MAAM,IAAA,iBAAO,EAAC,EAAE,EAAE,OAAO,CAAC,EAAE,CAAC,CAAA;AACtC,CAAC;AAFD,kCAEC;AAED,SAAS,aAAa,CAAE,QAAkB;IACxC,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAA;IACpC,MAAM,SAAS,GAAG,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAA;IAErD,IAAI,SAAS,KAAK,IAAI;QAAE,OAAO,IAAI,CAAA;;QAC9B,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,CAAA;AAClC,CAAC;AAED,SAAS,eAAe,CAAE,SAA8B;IACtD,IAAI,SAAS,CAAC,SAAS,KAAK,SAAS;QAAE,OAAO,IAAI,CAAA;IAElD,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;IAErF,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,KAAK,SAAS,CAAa,CAAA;AACrE,CAAC;AAED,MAAM,EAAE,GAAG,cAAc,CAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.deployment = void 0;
|
|
27
|
+
const generic_1 = require("@toa.io/generic");
|
|
28
|
+
const annotation_1 = require("./deployment/annotation");
|
|
29
|
+
const sources = __importStar(require("./deployment/sources"));
|
|
30
|
+
const context = __importStar(require("./deployment/context"));
|
|
31
|
+
function deployment(instances, declaration) {
|
|
32
|
+
const annotation = (0, annotation_1.normalize)(declaration);
|
|
33
|
+
const contextDependency = context.createDependency(annotation.context);
|
|
34
|
+
const sourcesDependency = sources.createDependency(annotation.sources, instances);
|
|
35
|
+
return (0, generic_1.merge)(contextDependency, sourcesDependency);
|
|
36
|
+
}
|
|
37
|
+
exports.deployment = deployment;
|
|
38
|
+
//# sourceMappingURL=deployment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../source/deployment.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAAuC;AACvC,wDAAqE;AACrE,8DAA+C;AAC/C,8DAA+C;AAG/C,SAAgB,UAAU,CAAE,SAAqB,EAAE,WAAwB;IACzE,MAAM,UAAU,GAAG,IAAA,sBAAS,EAAC,WAAW,CAAC,CAAA;IACzC,MAAM,iBAAiB,GAAG,OAAO,CAAC,gBAAgB,CAAC,UAAU,CAAC,OAAO,CAAC,CAAA;IACtE,MAAM,iBAAiB,GAAG,OAAO,CAAC,gBAAgB,CAAC,UAAU,CAAC,OAAO,EAAE,SAAS,CAAC,CAAA;IAEjF,OAAO,IAAA,eAAK,EAAC,iBAAiB,EAAE,iBAAiB,CAAC,CAAA;AACpD,CAAC;AAND,gCAMC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @implements {toa.core.bindings.Emitter}
|
|
3
|
+
*/
|
|
4
|
+
export class Emitter extends Connector implements toa.core.bindings.Emitter {
|
|
5
|
+
constructor(comm: any, locator: any, label: any);
|
|
6
|
+
emit(message: any): Promise<void>;
|
|
7
|
+
#private;
|
|
8
|
+
}
|
|
9
|
+
import { Connector } from "@toa.io/core";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Connector } = require('@toa.io/core');
|
|
3
|
+
const { name } = require('./queues');
|
|
4
|
+
/**
|
|
5
|
+
* @implements {toa.core.bindings.Emitter}
|
|
6
|
+
*/
|
|
7
|
+
class Emitter extends Connector {
|
|
8
|
+
/** @type {string} */
|
|
9
|
+
#exchange;
|
|
10
|
+
/** @type {toa.amqp.Communication} */
|
|
11
|
+
#comm;
|
|
12
|
+
constructor(comm, locator, label) {
|
|
13
|
+
super();
|
|
14
|
+
this.#exchange = name(locator, label);
|
|
15
|
+
this.#comm = comm;
|
|
16
|
+
this.depends(comm);
|
|
17
|
+
}
|
|
18
|
+
async emit(message) {
|
|
19
|
+
await this.#comm.emit(this.#exchange, message, PROPERTIES);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const PROPERTIES = { headers: { 'toa.io/amqp': '0' } };
|
|
23
|
+
exports.Emitter = Emitter;
|
|
24
|
+
//# sourceMappingURL=emitter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"emitter.js","sourceRoot":"","sources":["../source/emitter.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE7C,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC,CAAA;AAEpC;;GAEG;AACH,MAAM,OAAQ,SAAQ,SAAS;IAC7B,qBAAqB;IACrB,SAAS,CAAA;IAET,qCAAqC;IACrC,KAAK,CAAA;IAEL,YAAa,IAAI,EAAE,OAAO,EAAE,KAAK;QAC/B,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QACrC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;QAEjB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IACpB,CAAC;IAED,KAAK,CAAC,IAAI,CAAE,OAAO;QACjB,MAAM,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE,UAAU,CAAC,CAAA;IAC5D,CAAC;CACF;AAED,MAAM,UAAU,GAAG,EAAE,OAAO,EAAE,EAAE,aAAa,EAAE,GAAG,EAAE,EAAE,CAAA;AAEtD,OAAO,CAAC,OAAO,GAAG,OAAO,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export class Factory {
|
|
2
|
+
producer(locator: any, endpoints: any, component: any): Producer;
|
|
3
|
+
consumer(locator: any, endpoint: any): Consumer;
|
|
4
|
+
emitter(locator: any, label: any): Emitter;
|
|
5
|
+
receiver(locator: any, label: any, group: any, receiver: any): Receiver;
|
|
6
|
+
broadcast(name: any, group: any): Broadcast;
|
|
7
|
+
#private;
|
|
8
|
+
}
|
|
9
|
+
import { Producer } from "./producer";
|
|
10
|
+
import { Consumer } from "./consumer";
|
|
11
|
+
import { Emitter } from "./emitter";
|
|
12
|
+
import { Receiver } from "./receiver";
|
|
13
|
+
import { Broadcast } from "./broadcast";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Locator } = require('@toa.io/core');
|
|
3
|
+
const { Producer } = require('./producer');
|
|
4
|
+
const { Consumer } = require('./consumer');
|
|
5
|
+
const { Emitter } = require('./emitter');
|
|
6
|
+
const { Receiver } = require('./receiver');
|
|
7
|
+
const { Broadcast } = require('./broadcast');
|
|
8
|
+
const context = require('./deployment/context');
|
|
9
|
+
const sources = require('./deployment/sources');
|
|
10
|
+
const { SYSTEM } = require('./constants');
|
|
11
|
+
const { Communication } = require('./communication');
|
|
12
|
+
class Factory {
|
|
13
|
+
producer(locator, endpoints, component) {
|
|
14
|
+
const comm = this.#getContext(locator);
|
|
15
|
+
return new Producer(comm, locator, endpoints, component);
|
|
16
|
+
}
|
|
17
|
+
consumer(locator, endpoint) {
|
|
18
|
+
const comm = this.#getContext(locator);
|
|
19
|
+
return new Consumer(comm, locator, endpoint);
|
|
20
|
+
}
|
|
21
|
+
emitter(locator, label) {
|
|
22
|
+
const comm = this.#getContext(locator);
|
|
23
|
+
return new Emitter(comm, locator, label);
|
|
24
|
+
}
|
|
25
|
+
receiver(locator, label, group, receiver) {
|
|
26
|
+
const comm = this.#getSource(locator, label);
|
|
27
|
+
return new Receiver(comm, label, group, receiver);
|
|
28
|
+
}
|
|
29
|
+
broadcast(name, group) {
|
|
30
|
+
const locator = new Locator(name, SYSTEM);
|
|
31
|
+
const comm = this.#getContext(locator);
|
|
32
|
+
return new Broadcast(comm, locator, group);
|
|
33
|
+
}
|
|
34
|
+
#getContext(locator) {
|
|
35
|
+
const resolve = async () => context.resolveURIs(locator);
|
|
36
|
+
return new Communication(resolve);
|
|
37
|
+
}
|
|
38
|
+
#getSource(locator, label) {
|
|
39
|
+
const resolve = (locator.namespace === undefined)
|
|
40
|
+
? async () => sources.resolveURIs(locator, label)
|
|
41
|
+
: async () => context.resolveURIs(locator);
|
|
42
|
+
return new Communication(resolve);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.Factory = Factory;
|
|
46
|
+
//# sourceMappingURL=factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"factory.js","sourceRoot":"","sources":["../source/factory.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE3C,MAAM,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAAA;AAC1C,MAAM,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAAA;AAC1C,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC,CAAA;AACxC,MAAM,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAAA;AAC1C,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,aAAa,CAAC,CAAA;AAC5C,MAAM,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAAA;AAC/C,MAAM,OAAO,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAAA;AAE/C,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,aAAa,CAAC,CAAA;AACzC,MAAM,EAAE,aAAa,EAAE,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAEpD,MAAM,OAAO;IACX,QAAQ,CAAE,OAAO,EAAE,SAAS,EAAE,SAAS;QACrC,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAEtC,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,CAAC,CAAA;IAC1D,CAAC;IAED,QAAQ,CAAE,OAAO,EAAE,QAAQ;QACzB,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAEtC,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAA;IAC9C,CAAC;IAED,OAAO,CAAE,OAAO,EAAE,KAAK;QACrB,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAEtC,OAAO,IAAI,OAAO,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAA;IAC1C,CAAC;IAED,QAAQ,CAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ;QACvC,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QAE5C,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,CAAC,CAAA;IACnD,CAAC;IAED,SAAS,CAAE,IAAI,EAAE,KAAK;QACpB,MAAM,OAAO,GAAG,IAAI,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;QACzC,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAEtC,OAAO,IAAI,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,CAAC,CAAA;IAC5C,CAAC;IAED,WAAW,CAAE,OAAO;QAClB,MAAM,OAAO,GAAG,KAAK,IAAI,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAExD,OAAO,IAAI,aAAa,CAAC,OAAO,CAAC,CAAA;IACnC,CAAC;IAED,UAAU,CAAE,OAAO,EAAE,KAAK;QACxB,MAAM,OAAO,GAAG,CAAC,OAAO,CAAC,SAAS,KAAK,SAAS,CAAC;YAC/C,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC;YACjD,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;QAE5C,OAAO,IAAI,aAAa,CAAC,OAAO,CAAC,CAAA;IACnC,CAAC;CACF;AAED,OAAO,CAAC,OAAO,GAAG,OAAO,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { deployment } = require('./deployment');
|
|
3
|
+
const { Factory } = require('./factory');
|
|
4
|
+
/** @type {toa.core.bindings.Properties} */
|
|
5
|
+
const properties = { async: true };
|
|
6
|
+
exports.properties = properties;
|
|
7
|
+
exports.deployment = deployment;
|
|
8
|
+
exports.Factory = Factory;
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAC9C,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC,CAAA;AAExC,2CAA2C;AAC3C,MAAM,UAAU,GAAG,EAAE,KAAK,EAAE,IAAI,EAAE,CAAA;AAElC,OAAO,CAAC,UAAU,GAAG,UAAU,CAAA;AAC/B,OAAO,CAAC,UAAU,GAAG,UAAU,CAAA;AAC/B,OAAO,CAAC,OAAO,GAAG,OAAO,CAAA"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Connector } = require('@toa.io/core');
|
|
3
|
+
const { name } = require('./queues');
|
|
4
|
+
class Producer extends Connector {
|
|
5
|
+
/** @type {toa.amqp.Communication} */
|
|
6
|
+
#comm;
|
|
7
|
+
/** @type {toa.core.Locator} */
|
|
8
|
+
#locator;
|
|
9
|
+
/** @type {string[]} */
|
|
10
|
+
#endpoints;
|
|
11
|
+
/** @type {toa.core.Component} */
|
|
12
|
+
#component;
|
|
13
|
+
constructor(comm, locator, endpoints, component) {
|
|
14
|
+
super();
|
|
15
|
+
this.#comm = comm;
|
|
16
|
+
this.#locator = locator;
|
|
17
|
+
this.#endpoints = endpoints;
|
|
18
|
+
this.#component = component;
|
|
19
|
+
this.depends(comm);
|
|
20
|
+
this.depends(component);
|
|
21
|
+
}
|
|
22
|
+
async open() {
|
|
23
|
+
await Promise.all(this.#endpoints.map((endpoint) => this.#endpoint(endpoint)));
|
|
24
|
+
}
|
|
25
|
+
async #endpoint(endpoint) {
|
|
26
|
+
const queue = name(this.#locator, endpoint);
|
|
27
|
+
await this.#comm.reply(queue, (request) => this.#component.invoke(endpoint, request));
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.Producer = Producer;
|
|
31
|
+
//# sourceMappingURL=producer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"producer.js","sourceRoot":"","sources":["../source/producer.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE7C,MAAM,EAAE,IAAI,EAAE,GAAG,OAAO,CAAC,UAAU,CAAC,CAAA;AAEpC,MAAM,QAAS,SAAQ,SAAS;IAC9B,qCAAqC;IACrC,KAAK,CAAA;IAEL,+BAA+B;IAC/B,QAAQ,CAAA;IAER,uBAAuB;IACvB,UAAU,CAAA;IAEV,iCAAiC;IACjC,UAAU,CAAA;IAEV,YAAa,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS;QAC9C,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;QACjB,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAA;QACvB,IAAI,CAAC,UAAU,GAAG,SAAS,CAAA;QAC3B,IAAI,CAAC,UAAU,GAAG,SAAS,CAAA;QAE3B,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;QAClB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IACzB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAA;IAChF,CAAC;IAED,KAAK,CAAC,SAAS,CAAE,QAAQ;QACvB,MAAM,KAAK,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;QAE3C,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAA;IACvF,CAAC;CACF;AAED,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { concat } = require('@toa.io/generic');
|
|
3
|
+
/**
|
|
4
|
+
* @param {toa.core.Locator} locator
|
|
5
|
+
* @param {string} endpoint
|
|
6
|
+
* @returns {string}
|
|
7
|
+
*/
|
|
8
|
+
const name = (locator, endpoint) => locator.namespace + '.' + concat(locator.name, '.') + endpoint;
|
|
9
|
+
exports.name = name;
|
|
10
|
+
//# sourceMappingURL=queues.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"queues.js","sourceRoot":"","sources":["../source/queues.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAA;AAE7C;;;;GAIG;AACH,MAAM,IAAI,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE,CACjC,OAAO,CAAC,SAAS,GAAG,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC,GAAG,QAAQ,CAAA;AAEhE,OAAO,CAAC,IAAI,GAAG,IAAI,CAAA"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
const { Connector } = require('@toa.io/core');
|
|
3
|
+
class Receiver extends Connector {
|
|
4
|
+
/** @type {string} */
|
|
5
|
+
#exchange;
|
|
6
|
+
/** @type {string} */
|
|
7
|
+
#group;
|
|
8
|
+
/** @type {toa.amqp.Communication} */
|
|
9
|
+
#comm;
|
|
10
|
+
/** @type {toa.core.Receiver} */
|
|
11
|
+
#receiver;
|
|
12
|
+
constructor(comm, exchange, group, receiver) {
|
|
13
|
+
super();
|
|
14
|
+
this.#exchange = exchange;
|
|
15
|
+
this.#group = group;
|
|
16
|
+
this.#comm = comm;
|
|
17
|
+
this.#receiver = receiver;
|
|
18
|
+
this.depends(comm);
|
|
19
|
+
}
|
|
20
|
+
async open() {
|
|
21
|
+
await this.#comm.consume(this.#exchange, this.#group, this.#receive);
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @param {any} message
|
|
25
|
+
* @param {object} properties
|
|
26
|
+
*/
|
|
27
|
+
#receive = async (message, properties) => {
|
|
28
|
+
if (!('toa.io/amqp' in properties.headers))
|
|
29
|
+
message = { payload: message };
|
|
30
|
+
await this.#receiver.receive(message);
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
exports.Receiver = Receiver;
|
|
34
|
+
//# sourceMappingURL=receiver.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"receiver.js","sourceRoot":"","sources":["../source/receiver.js"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,MAAM,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAE7C,MAAM,QAAS,SAAQ,SAAS;IAC9B,qBAAqB;IACrB,SAAS,CAAA;IAET,qBAAqB;IACrB,MAAM,CAAA;IAEN,qCAAqC;IACrC,KAAK,CAAA;IAEL,gCAAgC;IAChC,SAAS,CAAA;IAET,YAAa,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ;QAC1C,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QACzB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAA;QACnB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;QACjB,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAA;QAEzB,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;IACpB,CAAC;IAED,KAAK,CAAC,IAAI;QACR,MAAM,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;IACtE,CAAC;IAED;;;OAGG;IACH,QAAQ,GAAG,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE;QACvC,IAAI,CAAC,CAAC,aAAa,IAAI,UAAU,CAAC,OAAO,CAAC;YAAE,OAAO,GAAG,EAAE,OAAO,EAAE,OAAO,EAAE,CAAA;QAE1E,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;IACvC,CAAC,CAAA;CACF;AAED,OAAO,CAAC,QAAQ,GAAG,QAAQ,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../../../runtime/core/types/bindings.d.ts","../../../runtime/core/types/connector.d.ts","../../../runtime/core/types/locator.d.ts","../../../runtime/core/types/request.d.ts","../../../runtime/core/types/exception.d.ts","../../../runtime/core/types/reply.d.ts","../../../runtime/core/types/component.d.ts","../../../runtime/core/types/context.d.ts","../../../runtime/core/types/storages.d.ts","../../../runtime/core/types/extensions.d.ts","../../../runtime/core/types/bridges.d.ts","../../../runtime/core/types/message.d.ts","../../../runtime/core/types/receiver.d.ts","../../../runtime/core/types/index.d.ts","../../../libraries/generic/types/promex.d.ts","../../../libraries/generic/types/merge.d.ts","../../../libraries/generic/types/map.d.ts","../../../libraries/generic/types/index.d.ts","../source/queues.js","../source/broadcast.js","../../../node_modules/comq/types/diagnostic.d.ts","../../../node_modules/comq/types/channel.d.ts","../../../node_modules/comq/types/encoding.d.ts","../../../node_modules/comq/types/topology.d.ts","../../../node_modules/comq/types/amqp.d.ts","../../../node_modules/comq/types/io.d.ts","../../../node_modules/comq/types/connection.d.ts","../../../node_modules/comq/types/index.d.ts","../source/communication.js","../source/constants.js","../source/consumer.js","../../../operations/types/dependency.d.ts","../../../operations/types/index.d.ts","../../../libraries/pointer/transpiled/deployment.d.ts","../../../libraries/pointer/transpiled/annotation.d.ts","../../../libraries/pointer/transpiled/createvariables.d.ts","../../../libraries/pointer/transpiled/resolve.d.ts","../../../libraries/pointer/transpiled/naming.d.ts","../../../libraries/pointer/transpiled/index.d.ts","../source/deployment/annotation.ts","../../../runtime/norm/types/component.d.ts","../../../runtime/norm/types/context/declaration.d.ts","../../../runtime/norm/types/context.d.ts","../../../runtime/norm/types/index.d.ts","../source/deployment/instance.ts","../source/deployment/sources.ts","../../../libraries/dns/types/dedupe.d.ts","../../../libraries/dns/types/index.d.ts","../source/deployment/context.ts","../source/deployment.ts","../source/emitter.js","../source/producer.js","../source/receiver.js","../source/factory.js","../source/index.js","../source/deployment/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/randomstring/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","5c705ea6d923f75118d05b15d9277a792534f537f3f0e3bd558706b7719e0b4b","4b0bbac779edb0daa8ac8c983a5bc3dcb22a7831efc9c3b0e1c09fb7871d5e78","f7d594d8d16c7e9fa2e0dd3635e4ad8ed3b5cf9e8cf4a0ed2b91771b91ff79d2","f215f4a31cde19ad564123449d598e8f5d54ee01723c9f2e08a6551603796c99","425a8261e16e3e5c1b4e21efbdb8b12ac26b70b1932427732840b527d9725b33","290a1a95e7f4311064d71b5307e157e2922ba6498584c77a58c2285b0e2d7886","5e1ebcc9c30ad16e8a375e471d1bdf2346aae0a7f8749ce54a85eabb98985978","eccae7a0380fece7bedcce018b5429da725a59c76eaf1f29d9483ea909115ea0","863a16bffa4414a6784927eec1b17523521761b2b2344a0b98f140c91d659859","066564658ae9be383db8fee383c4b13485924b566c48adcc7be14c0358aa69da","2ece68fc449934b9b5988584816a997bd94e8960bc28ba83b58c0b79b639447b","67f637033109e2ae0272428c6b27a0be1c323b43b37e3ac55d09c993b205867b","a06788dcbb350c361b23aad1671f6818641850ab75050e7abc0ae42f6ae49090","436a237807dbe653fffafdba822497101474034aa46d5a69fca5ecd6290964fe","349327a3c59d23ddd1ba33ca88b73b194e16be7d0c7865d4b3227b1e7fb51b41","6c898f2bb237aee867bc2f89a2d9201b4c336c10320d083371ecf148bb0ffd54","937cbc9ffa856e3e4811c23481bf5416112fd6c8e6f31bbd2525cfff22fb8905","4a7c8ebddf6d7290deb71051e65f8e406e38772d22ef5be04fd837648ffcba0c",{"version":"c5b508d2367e4e82085786d76e41d9b6269016d7705ace3094de5c2b67121307","signature":"cb0f63b77fa8c0695b36c2c78145c497702a9c63f9c75367e90d16172ba6294c"},{"version":"67be7a97796d386c07c666de32b741739c79e77dae165f72a1f086b3e68b0491","signature":"bbc7df66d7d77b810c1f473978054f0bf685ad7a4f318ea71973b7fcc0370ef0"},"e475075c6d219da551225a93b33ec762f3c24e3a64441c73d51be6ec8f74f569","92ce56201cdef91e3cbabcf6964fdd4eda19b2e97562f8aaf11ecb0d669d425f","47616fb9e067b16a03f9649d98b3c26de3f943b480b262fdf251270d48dd9a61","94f91b3d112e13ae8da95d492faaac48b36b172bbeaad21be05d0396c1f277e4","1c0c9696e9dbe9f406437da313618a3e36de69bd10cec98a28bff2e074fd1ee7","2e25dd58564011f41376b0648a7d027a9f6a6cc68a9f5865d4f0a1610a6cd9aa","27b56e1a27aee181214afecd414b21e8eba9e18bd6508bd54c191890a58b6ecb","3300876c665e589b52879833861bf27e628f1dd76ac9e583f7f1b8b1d5af9ef0",{"version":"ad111133e8f85c8ddeb485cbb090c524359726534f36ba68ac482a0ede8f4f05","signature":"f84145b518a9b01513c2a8b95ba99beae1b39b9ce239229c1a0045ef01be73be"},{"version":"c6b447bed376ceec13706436d5e09d04398199bb0bf1ab52280fe1f8b0308a48","signature":"6eb3bcdaf5b58cf3faff44d24c19b1ab2bde0c5969b16621eb65a9babdd1c06c"},{"version":"eea72484f1d8ca7fe6fb3fada9dd40e996fa50e83307287ec5e5afd42d70395f","signature":"193839645ca92e9888132b719b6f3cbbffbc1dcf46d33d811b952d65b01f255a"},"b58986684afb62bf350474b924d15c873a504de447f1e109ccdabffe502ec5be","6e77fb2250275d3945569ac61104a29927624b5a7ba0e905e7e1defd1f2ed151","2790a9aa9f46374da594d045c1c92f277d74741c9adf0591353528148004cc50","31db44390050eec522abcf9268e697fc78d609e2b5e547c51533f885b9e3c9a8","ee3ed46dc8dccb018423839a1ee04b4bce7b0300d1debcaf52abbf97aaf75e87","e8bb99484b05d5b923363d02b6641cd2d2feac44d6f9480cf0be54f59db2c480","53d785402c344d04199b00b6dd00e9382cad52548ddc6c907f49157efa44cb00","95edbe862fbb62a384d2adec2b2278c5ece55d935d382da1386c4a63057b39a5",{"version":"ee2e65cab35f3fb56b5a7447dac6cf5d183b4657cf90d79812a3fa254fe76513","signature":"47e67da18b2557386142f3b1e10ea108a2ac4f346c62afd3e48b0cc2db390842"},"76ac98764b6a936d05a6e20e5fb1862f225d192ba2bed9727456ac5b7f06c0e6","71e46111f57a5c82031adbac22eb542b5f63a8be4d5ee9253036cafe81d16112","a81bed88a08bcbcb5c00b045c880dd751854145a91f8bb4c0e00fad06d164c99","2c477c8745f634853a063e08af9951f1cc4f858c324a95796f191e6a623e3d12",{"version":"d174e7a74c4e930390824e3e8f725aa10c2464f2dd820226b75a3e9ad8a0796e","signature":"705f2bfb6ce918511afba46efaa21ec00be376eb3b93e92590e8abc600ea7a12"},{"version":"c49d06dd0c6c8953980c9b3c040bf616cae9488209fe7c30ef30dade6047fc17","signature":"3588b476b878ccf31ba193521dc3a9d4327ddcc565a8dd05010b9f798c66b27e"},"9f792b43058474ce37332cdc70e5cec9ecf1cec686beef5227b3fd4b348ca1a3","1cd9644fb0ebc14cfbe8c18a2a81e97f0c737cb9e870c353fda1996ec14f01f9",{"version":"125ed0d5f6b16c9bbc52f97c7446b631b5bfa9632dfe9e8f961c826a55e5ea3a","signature":"d3a651b4aec733b7c9c8342cd092126f372d415ed5ef021db49c629077e6e6c0"},{"version":"bc60b45b07248d7ae3355b6b4bb0140615562eeb91299928a5cfde05e01b15a3","signature":"90bcc143cac35ce0aa82e027c7c647ec858e5fe672ea94a1934068cdf56a460c"},{"version":"8c37cadabe8078e12e93f169f02d392630748607a437ca6ee2ee454d0a9084e1","signature":"13c2c6eb74c6933fcf891298fcfe68ca2856bac605c8df6324c55ca3c3347a8e"},{"version":"b97bc9a16a1d97d2d60bc331950f4772fdd03707e18fca444e3b67665e80654d","signature":"b83e179b0229a2b4489628f46641ac8a10ff22fa3dd7c27d5fbfd3a79ecbc814"},{"version":"cd10abf62640c9e920a6bf922f6299be534966dda213d48fcb993fc506463f0a","signature":"191785e7dc295cca28e44f664ece0103064bc31905ed7241c64bc971d0a41c74"},{"version":"f91cd80aa5bc64fc07bf3375ac9f77bb5be17c2a37ae649e4069b46ba60a8385","signature":"b3cafeef6748bf883000e5aef70bfe260785d34b0d11a357a77344e498760d15"},{"version":"7b6a11b06b1e6c96b42a17740f1b784a20a6c79136a0857c6c4ee2e436472283","signature":"1960f4420b2efc38aa2a064e967b0897622b27637eae0e83d63c874fe32cf45f"},{"version":"133439293f86c54a33359663b6996a8dd285cd21958b1d98709b18d4c641aac6","signature":"be3237bfe9133c007afc396ce38974ee72b1b05f25daa1da956faf9f6736a882"},"3078727fed04c123165efdb42deeac5dceaa42ac62216ca13cb809dc7e13415f","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"a7534271773a27ff7d136d550e86b41894d8090fa857ba4c02b5bb18d2eb1c8e","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","b8e431e9b9bb2dc832b23d4e3e02774e953d5537998923f215ea446169e9a61e","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"b85c02e14ecb2a873dad5a1de72319b265160ba48f1b83661aeb3bba1366c1bc","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","fc3764040518a1008dd04bdc80964591b566b896283e00df85c95851c1f46237","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","790623a47c5eda62910098884ecb154dc0e5f3a23fc36c1bfb3b5b9ed44e2c2d","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true},"f5490f53d40291cc8607f5463434d1ac6c5564bc4fbb03abceb03a8f6b014457","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","0cab4d7d4edc40cd3af9eea7c3ed6d1016910c0954c49c4297e479bf3822a625","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270","1fb6c5ec52332a8b531a8d7a5300ac9301f98c4fe62f68e744e0841ccba65e7e",{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","bbda6ea452a2386093a1eda18a6e26a989e98869f1b9f37e46f510a986d2e740","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"75dd741ca6a6c8d2437a6ca8349b64b816421dbf9fe82dd026afaba965576962","affectsGlobalScope":true},{"version":"8799401a7ab57764f0d464513a7fa7c72e1d70a226b172ec60fff534ea94d108","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"247aa3419c98713231952b33801d4f46563fe542e03604acd8c63ac45a32409c","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"af9b69886a3c5cf847341a3f777d47984152051a82fffe72a97158e4ffa94780","affectsGlobalScope":true},"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","dca41e86e89dfb2e85e6935260250f02eb6683b86c2fa16bec729ddd1bcd9b4b","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621",{"version":"4698841dc5a91fe716dd41ec7136867bbde9a274ce21031e5ef6ce2d8a552ceb","affectsGlobalScope":true},"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","ea2d34766aa08df002a696e27d2140c0834cb8d7e9cb35687ecfd578253c196c","67483628398336d0f9368578a9514bd8cc823a4f3b3ab784f3942077e5047335","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750"],"options":{"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"fileIdsList":[[73,78,168],[73,87,168],[168],[77,92,99,104,105,108,168],[98,168],[73,77,92,93,98,99,107,168],[92,99,104,105,168],[103,168],[73,92,98,99,103,104,168],[73,79,88,89,90,105,108,110,111,112,168],[109,113,168],[77,168],[73,168],[106,168],[74,75,76,156,168],[93,168],[92,93,94,168],[92,168],[93,94,95,96,97,168],[116,168],[116,117,118,119,120,168],[116,118,168],[141,168,175,176],[141,168,175],[138,141,168,175,178,179],[168,177,179,180,183],[139,168,175],[168,186],[168,187],[168,192,197],[168,202,204,205,206,207,208,209,210,211,212,213,214],[168,202,203,205,206,207,208,209,210,211,212,213,214],[168,203,204,205,206,207,208,209,210,211,212,213,214],[168,202,203,204,206,207,208,209,210,211,212,213,214],[168,202,203,204,205,207,208,209,210,211,212,213,214],[168,202,203,204,205,206,208,209,210,211,212,213,214],[168,202,203,204,205,206,207,209,210,211,212,213,214],[168,202,203,204,205,206,207,208,210,211,212,213,214],[168,202,203,204,205,206,207,208,209,211,212,213,214],[168,202,203,204,205,206,207,208,209,210,212,213,214],[168,202,203,204,205,206,207,208,209,210,211,213,214],[168,202,203,204,205,206,207,208,209,210,211,212,214],[168,202,203,204,205,206,207,208,209,210,211,212,213],[168,181],[168,182],[141,167,168,175,216,217],[122,168],[125,168],[126,131,159,168],[127,138,139,146,156,167,168],[127,128,138,146,168],[129,168],[130,131,139,147,168],[131,156,164,168],[132,134,138,146,168],[133,168],[134,135,168],[138,168],[136,138,168],[138,139,140,156,167,168],[138,139,140,153,156,159,168],[168,172],[134,138,141,146,156,167,168],[138,139,141,142,146,156,164,167,168],[141,143,156,164,167,168],[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174],[138,144,168],[145,167,168],[134,138,146,156,168],[147,168],[148,168],[125,149,168],[150,166,168,172],[151,168],[152,168],[138,153,154,168],[153,155,168,170],[126,138,156,157,158,159,168],[126,156,158,168],[156,157,168],[159,168],[160,168],[156,168],[138,162,163,168],[162,163,168],[131,146,156,164,168],[165,168],[146,166,168],[126,141,152,167,168],[131,168],[156,168,169],[168,170],[168,171],[126,131,138,140,149,156,167,168,170,172],[156,168,173],[168,223,262],[168,223,247,262],[168,262],[168,223],[168,223,248,262],[168,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261],[168,248,262],[141,168,175,182],[168,175],[168,267],[80,168],[80,81,83,85,168],[85,86,168],[80,82,83,84,168],[141,156,168,175],[168,190,193],[168,190,193,194,195],[168,192],[168,189,196],[168,191],[91,168],[61,65,67,73,168],[61,62,63,65,168],[61,63,65,69,168],[60,66,67,68,73,168],[60,61,62,63,64,65,66,67,68,69,70,71,72,168],[61,71,168],[64,168],[61,62,168],[73,100,101,168],[102,168],[100,102,168],[92,99,104],[98],[73,92,99],[103],[73,92,99,104]],"referencedMap":[[79,1],[88,2],[89,3],[90,1],[109,4],[99,5],[108,6],[115,7],[104,8],[105,9],[110,1],[113,10],[114,11],[111,1],[78,12],[112,13],[106,3],[107,14],[77,15],[76,3],[75,3],[74,3],[94,16],[95,17],[93,18],[98,19],[97,3],[96,16],[118,20],[116,3],[121,21],[117,20],[119,22],[120,20],[177,23],[176,24],[180,25],[184,26],[185,27],[186,3],[187,28],[188,29],[198,30],[199,3],[200,3],[201,3],[203,31],[204,32],[202,33],[205,34],[206,35],[207,36],[208,37],[209,38],[210,39],[211,40],[212,41],[213,42],[214,43],[182,44],[181,45],[215,3],[217,3],[218,46],[122,47],[123,47],[125,48],[126,49],[127,50],[128,51],[129,52],[130,53],[131,54],[132,55],[133,56],[134,57],[135,57],[137,58],[136,59],[138,58],[139,60],[140,61],[124,62],[174,3],[141,63],[142,64],[143,65],[175,66],[144,67],[145,68],[146,69],[147,70],[148,71],[149,72],[150,73],[151,74],[152,75],[153,76],[154,76],[155,77],[156,78],[158,79],[157,80],[159,81],[160,82],[161,83],[162,84],[163,85],[164,86],[165,87],[166,88],[167,89],[168,90],[169,91],[170,92],[171,93],[172,94],[173,95],[219,3],[220,3],[221,3],[179,3],[222,3],[178,3],[247,96],[248,97],[223,98],[226,98],[245,96],[246,96],[236,96],[235,99],[233,96],[228,96],[241,96],[239,96],[243,96],[227,96],[240,96],[244,96],[229,96],[230,96],[242,96],[224,96],[231,96],[232,96],[234,96],[238,96],[249,100],[237,96],[225,96],[262,101],[261,3],[256,100],[258,102],[257,100],[250,100],[251,100],[253,100],[255,100],[259,102],[260,102],[252,102],[254,102],[183,103],[263,3],[264,3],[265,3],[266,104],[267,3],[268,105],[84,3],[81,106],[86,107],[80,3],[82,3],[87,108],[85,109],[83,3],[216,110],[190,3],[194,111],[196,112],[195,111],[193,113],[197,114],[189,3],[192,115],[191,3],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[39,3],[36,3],[37,3],[38,3],[40,3],[7,3],[41,3],[46,3],[47,3],[42,3],[43,3],[44,3],[45,3],[8,3],[51,3],[48,3],[49,3],[50,3],[52,3],[9,3],[53,3],[54,3],[55,3],[56,3],[57,3],[1,3],[10,3],[59,3],[58,3],[14,3],[13,3],[91,3],[92,116],[60,13],[70,117],[66,118],[61,3],[67,119],[64,3],[69,120],[73,121],[62,3],[71,3],[72,122],[65,123],[63,3],[68,124],[100,13],[102,125],[101,126],[103,127]],"exportedModulesMap":[[109,128],[99,129],[108,130],[115,128],[104,131],[105,132],[106,3],[107,14],[77,15],[76,3],[75,3],[74,3],[94,16],[95,17],[93,18],[98,19],[97,3],[96,16],[118,20],[116,3],[121,21],[117,20],[119,22],[120,20],[177,23],[176,24],[180,25],[184,26],[185,27],[186,3],[187,28],[188,29],[198,30],[199,3],[200,3],[201,3],[203,31],[204,32],[202,33],[205,34],[206,35],[207,36],[208,37],[209,38],[210,39],[211,40],[212,41],[213,42],[214,43],[182,44],[181,45],[215,3],[217,3],[218,46],[122,47],[123,47],[125,48],[126,49],[127,50],[128,51],[129,52],[130,53],[131,54],[132,55],[133,56],[134,57],[135,57],[137,58],[136,59],[138,58],[139,60],[140,61],[124,62],[174,3],[141,63],[142,64],[143,65],[175,66],[144,67],[145,68],[146,69],[147,70],[148,71],[149,72],[150,73],[151,74],[152,75],[153,76],[154,76],[155,77],[156,78],[158,79],[157,80],[159,81],[160,82],[161,83],[162,84],[163,85],[164,86],[165,87],[166,88],[167,89],[168,90],[169,91],[170,92],[171,93],[172,94],[173,95],[219,3],[220,3],[221,3],[179,3],[222,3],[178,3],[247,96],[248,97],[223,98],[226,98],[245,96],[246,96],[236,96],[235,99],[233,96],[228,96],[241,96],[239,96],[243,96],[227,96],[240,96],[244,96],[229,96],[230,96],[242,96],[224,96],[231,96],[232,96],[234,96],[238,96],[249,100],[237,96],[225,96],[262,101],[261,3],[256,100],[258,102],[257,100],[250,100],[251,100],[253,100],[255,100],[259,102],[260,102],[252,102],[254,102],[183,103],[263,3],[264,3],[265,3],[266,104],[267,3],[268,105],[84,3],[81,106],[86,107],[80,3],[82,3],[87,108],[85,109],[83,3],[216,110],[190,3],[194,111],[196,112],[195,111],[193,113],[197,114],[189,3],[192,115],[191,3],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[39,3],[36,3],[37,3],[38,3],[40,3],[7,3],[41,3],[46,3],[47,3],[42,3],[43,3],[44,3],[45,3],[8,3],[51,3],[48,3],[49,3],[50,3],[52,3],[9,3],[53,3],[54,3],[55,3],[56,3],[57,3],[1,3],[10,3],[59,3],[58,3],[14,3],[13,3],[91,3],[92,116],[60,13],[70,117],[66,118],[61,3],[67,119],[64,3],[69,120],[73,121],[62,3],[71,3],[72,122],[65,123],[63,3],[68,124],[100,13],[102,125],[101,126],[103,127]],"semanticDiagnosticsPerFile":[79,88,89,90,109,99,108,115,104,105,110,113,114,111,78,112,106,107,77,76,75,74,94,95,93,98,97,96,118,116,121,117,119,120,177,176,180,184,185,186,187,188,198,199,200,201,203,204,202,205,206,207,208,209,210,211,212,213,214,182,181,215,217,218,122,123,125,126,127,128,129,130,131,132,133,134,135,137,136,138,139,140,124,174,141,142,143,175,144,145,146,147,148,149,150,151,152,153,154,155,156,158,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,219,220,221,179,222,178,247,248,223,226,245,246,236,235,233,228,241,239,243,227,240,244,229,230,242,224,231,232,234,238,249,237,225,262,261,256,258,257,250,251,253,255,259,260,252,254,183,263,264,265,266,267,268,84,81,86,80,82,87,85,83,216,190,194,196,195,193,197,189,192,191,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,39,36,37,38,40,7,41,46,47,42,43,44,45,8,51,48,49,50,52,9,53,54,55,56,57,1,10,59,58,14,13,91,92,60,70,66,61,67,64,69,73,62,71,72,65,63,68,100,102,101,103]},"version":"4.9.5"}
|