@pax2pay/model-banking 0.1.146 → 0.1.147
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/Client/Transactions/Indices.ts +28 -0
- package/Client/Transactions/index.ts +7 -6
- package/Client/index.ts +6 -2
- package/dist/Client/Transactions/Indices.d.ts +16 -0
- package/dist/Client/Transactions/Indices.js +17 -0
- package/dist/Client/Transactions/Indices.js.map +1 -0
- package/dist/Client/Transactions/index.d.ts +3 -9
- package/dist/Client/Transactions/index.js +8 -1
- package/dist/Client/Transactions/index.js.map +1 -1
- package/dist/Client/index.d.ts +6 -2
- package/dist/Client/index.js +5 -2
- package/dist/Client/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { isoly } from "isoly"
|
|
2
|
+
import { isly } from "isly"
|
|
3
|
+
|
|
4
|
+
export type Indices =
|
|
5
|
+
| ["currency", isoly.Currency]
|
|
6
|
+
| ["direction", Indices.Direction]
|
|
7
|
+
| ["rail", Indices.Rail]
|
|
8
|
+
| ["status", Indices.Status]
|
|
9
|
+
export namespace Indices {
|
|
10
|
+
const direction = ["inbound", "outbound"] as const
|
|
11
|
+
export type Direction = typeof direction[number]
|
|
12
|
+
const rail = "internal"
|
|
13
|
+
export type Rail = typeof rail
|
|
14
|
+
const status = ["review", "created", "approved", "rejected", "processing", "finalized"] as const
|
|
15
|
+
export type Status = typeof status[number]
|
|
16
|
+
export const type = isly.union(
|
|
17
|
+
isly.tuple<Indices>(isly.string("currency"), isly.fromIs("isoly.Currency", isoly.Currency.is)),
|
|
18
|
+
isly.tuple<Indices>(isly.string("direction"), isly.string(direction)),
|
|
19
|
+
isly.tuple<Indices>(isly.string("rail"), isly.string(rail)),
|
|
20
|
+
isly.tuple<Indices>(isly.string("status"), isly.string(status))
|
|
21
|
+
)
|
|
22
|
+
export const is = type.is
|
|
23
|
+
export const flaw = type.flaw
|
|
24
|
+
export function parse(value: string | undefined): Indices | undefined {
|
|
25
|
+
const indices = value?.split(",")
|
|
26
|
+
return is(indices) ? indices : undefined
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -3,6 +3,7 @@ import { isoly } from "isoly"
|
|
|
3
3
|
import { http } from "cloudly-http"
|
|
4
4
|
import * as rest from "cloudly-rest"
|
|
5
5
|
import { Transaction } from "../../Transaction"
|
|
6
|
+
import { Indices as TransactionIndex } from "./Indices"
|
|
6
7
|
import { Notes } from "./Notes"
|
|
7
8
|
|
|
8
9
|
export class Transactions extends rest.Collection<gracely.Error> {
|
|
@@ -20,7 +21,10 @@ export class Transactions extends rest.Collection<gracely.Error> {
|
|
|
20
21
|
index?: Transactions.Index
|
|
21
22
|
dateRange?: isoly.DateRange
|
|
22
23
|
}): Promise<(Transaction[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
23
|
-
const query = Object.entries({
|
|
24
|
+
const query = Object.entries({
|
|
25
|
+
...(options?.index ? { index: options.index.join(",") } : {}),
|
|
26
|
+
...(options?.dateRange ?? {}),
|
|
27
|
+
})
|
|
24
28
|
.map(([k, v]) => `${k}=${v}`)
|
|
25
29
|
.join("&")
|
|
26
30
|
const path = options?.account ? `/account/${options.account}/transaction` : `/transaction`
|
|
@@ -32,9 +36,6 @@ export class Transactions extends rest.Collection<gracely.Error> {
|
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
export namespace Transactions {
|
|
35
|
-
export type Index =
|
|
36
|
-
|
|
37
|
-
| { currency: isoly.Currency }
|
|
38
|
-
| { direction: "inbound" | "outbound" }
|
|
39
|
-
| { rail: "internal" }
|
|
39
|
+
export type Index = TransactionIndex
|
|
40
|
+
export const Index = TransactionIndex
|
|
40
41
|
}
|
package/Client/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { Operations } from "./Operations"
|
|
|
9
9
|
import { Organizations } from "./Organizations"
|
|
10
10
|
import { Rules } from "./Rules"
|
|
11
11
|
import { Settlements } from "./Settlements"
|
|
12
|
-
import { Transactions } from "./Transactions"
|
|
12
|
+
import { Transactions as ClientTransactions } from "./Transactions"
|
|
13
13
|
import { Treasury } from "./Treasury"
|
|
14
14
|
import { Version } from "./Version"
|
|
15
15
|
|
|
@@ -22,7 +22,7 @@ export class Client extends rest.Client<gracely.Error> {
|
|
|
22
22
|
readonly organizations = new Organizations(this.client)
|
|
23
23
|
readonly rules = new Rules(this.client)
|
|
24
24
|
readonly settlements = new Settlements(this.client)
|
|
25
|
-
readonly transactions = new
|
|
25
|
+
readonly transactions = new ClientTransactions(this.client)
|
|
26
26
|
readonly treasury = new Treasury(this.client)
|
|
27
27
|
readonly flags = new Flags(this.client)
|
|
28
28
|
readonly userwidgets = new userwidgets.ClientCollection(this.client, { pathPrefix: "/widgets" })
|
|
@@ -41,5 +41,9 @@ export class Client extends rest.Client<gracely.Error> {
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
export namespace Client {
|
|
44
|
+
export const Transactions = ClientTransactions
|
|
45
|
+
export namespace Transactions {
|
|
46
|
+
export type Index = ClientTransactions.Index
|
|
47
|
+
}
|
|
44
48
|
export type Unauthorized = (client: rest.Client<never>) => Promise<boolean>
|
|
45
49
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export type Indices = ["currency", isoly.Currency] | ["direction", Indices.Direction] | ["rail", Indices.Rail] | ["status", Indices.Status];
|
|
4
|
+
export declare namespace Indices {
|
|
5
|
+
const direction: readonly ["inbound", "outbound"];
|
|
6
|
+
export type Direction = typeof direction[number];
|
|
7
|
+
const rail = "internal";
|
|
8
|
+
export type Rail = typeof rail;
|
|
9
|
+
const status: readonly ["review", "created", "approved", "rejected", "processing", "finalized"];
|
|
10
|
+
export type Status = typeof status[number];
|
|
11
|
+
export const type: isly.Type<Indices>;
|
|
12
|
+
export const is: isly.Type.IsFunction<Indices>;
|
|
13
|
+
export const flaw: isly.Type.FlawFunction;
|
|
14
|
+
export function parse(value: string | undefined): Indices | undefined;
|
|
15
|
+
export {};
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var Indices;
|
|
4
|
+
(function (Indices) {
|
|
5
|
+
const direction = ["inbound", "outbound"];
|
|
6
|
+
const rail = "internal";
|
|
7
|
+
const status = ["review", "created", "approved", "rejected", "processing", "finalized"];
|
|
8
|
+
Indices.type = isly.union(isly.tuple(isly.string("currency"), isly.fromIs("isoly.Currency", isoly.Currency.is)), isly.tuple(isly.string("direction"), isly.string(direction)), isly.tuple(isly.string("rail"), isly.string(rail)), isly.tuple(isly.string("status"), isly.string(status)));
|
|
9
|
+
Indices.is = Indices.type.is;
|
|
10
|
+
Indices.flaw = Indices.type.flaw;
|
|
11
|
+
function parse(value) {
|
|
12
|
+
const indices = value?.split(",");
|
|
13
|
+
return Indices.is(indices) ? indices : undefined;
|
|
14
|
+
}
|
|
15
|
+
Indices.parse = parse;
|
|
16
|
+
})(Indices || (Indices = {}));
|
|
17
|
+
//# sourceMappingURL=Indices.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Indices.js","sourceRoot":"../","sources":["Client/Transactions/Indices.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,OAAO,CAmBvB;AAnBD,WAAiB,OAAO;IACvB,MAAM,SAAS,GAAG,CAAC,SAAS,EAAE,UAAU,CAAU,CAAA;IAElD,MAAM,IAAI,GAAG,UAAU,CAAA;IAEvB,MAAM,MAAM,GAAG,CAAC,QAAQ,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,WAAW,CAAU,CAAA;IAEnF,YAAI,GAAG,IAAI,CAAC,KAAK,CAC7B,IAAI,CAAC,KAAK,CAAU,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,EAC9F,IAAI,CAAC,KAAK,CAAU,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,EACrE,IAAI,CAAC,KAAK,CAAU,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,EAC3D,IAAI,CAAC,KAAK,CAAU,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAC/D,CAAA;IACY,UAAE,GAAG,QAAA,IAAI,CAAC,EAAE,CAAA;IACZ,YAAI,GAAG,QAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,KAAK,CAAC,KAAyB;QAC9C,MAAM,OAAO,GAAG,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAA;QACjC,OAAO,QAAA,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAA;IACzC,CAAC;IAHe,aAAK,QAGpB,CAAA;AACF,CAAC,EAnBgB,OAAO,KAAP,OAAO,QAmBvB"}
|
|
@@ -3,6 +3,7 @@ import { isoly } from "isoly";
|
|
|
3
3
|
import { http } from "cloudly-http";
|
|
4
4
|
import * as rest from "cloudly-rest";
|
|
5
5
|
import { Transaction } from "../../Transaction";
|
|
6
|
+
import { Indices as TransactionIndex } from "./Indices";
|
|
6
7
|
import { Notes } from "./Notes";
|
|
7
8
|
export declare class Transactions extends rest.Collection<gracely.Error> {
|
|
8
9
|
readonly Notes: Notes;
|
|
@@ -19,13 +20,6 @@ export declare class Transactions extends rest.Collection<gracely.Error> {
|
|
|
19
20
|
}) | gracely.Error>;
|
|
20
21
|
}
|
|
21
22
|
export declare namespace Transactions {
|
|
22
|
-
type Index =
|
|
23
|
-
|
|
24
|
-
} | {
|
|
25
|
-
currency: isoly.Currency;
|
|
26
|
-
} | {
|
|
27
|
-
direction: "inbound" | "outbound";
|
|
28
|
-
} | {
|
|
29
|
-
rail: "internal";
|
|
30
|
-
};
|
|
23
|
+
type Index = TransactionIndex;
|
|
24
|
+
const Index: typeof TransactionIndex;
|
|
31
25
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as rest from "cloudly-rest";
|
|
2
|
+
import { Indices as TransactionIndex } from "./Indices";
|
|
2
3
|
import { Notes } from "./Notes";
|
|
3
4
|
export class Transactions extends rest.Collection {
|
|
4
5
|
constructor(client) {
|
|
@@ -9,11 +10,17 @@ export class Transactions extends rest.Collection {
|
|
|
9
10
|
return this.client.post(`/account/${account}/transaction`, transaction);
|
|
10
11
|
}
|
|
11
12
|
async list(options) {
|
|
12
|
-
const query = Object.entries({
|
|
13
|
+
const query = Object.entries({
|
|
14
|
+
...(options?.index ? { index: options.index.join(",") } : {}),
|
|
15
|
+
...(options?.dateRange ?? {}),
|
|
16
|
+
})
|
|
13
17
|
.map(([k, v]) => `${k}=${v}`)
|
|
14
18
|
.join("&");
|
|
15
19
|
const path = options?.account ? `/account/${options.account}/transaction` : `/transaction`;
|
|
16
20
|
return this.client.get(path + (query && "?" + query), options?.limit ? { limit: options?.limit.toString() } : {});
|
|
17
21
|
}
|
|
18
22
|
}
|
|
23
|
+
(function (Transactions) {
|
|
24
|
+
Transactions.Index = TransactionIndex;
|
|
25
|
+
})(Transactions || (Transactions = {}));
|
|
19
26
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transactions/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,YAAa,SAAQ,IAAI,CAAC,UAAyB;IAE/D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;QAFL,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAGvC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAe,EAAE,WAAkC;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,YAAY,OAAO,cAAc,EAAE,WAAW,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAMV;QACA,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Transactions/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,WAAW,CAAA;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,YAAa,SAAQ,IAAI,CAAC,UAAyB;IAE/D,YAAY,MAAmB;QAC9B,KAAK,CAAC,MAAM,CAAC,CAAA;QAFL,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAGvC,CAAC;IACD,KAAK,CAAC,MAAM,CAAC,OAAe,EAAE,WAAkC;QAC/D,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAc,YAAY,OAAO,cAAc,EAAE,WAAW,CAAC,CAAA;IACrF,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAMV;QACA,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC;YAC5B,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;YAC7D,GAAG,CAAC,OAAO,EAAE,SAAS,IAAI,EAAE,CAAC;SAC7B,CAAC;aACA,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;aAC5B,IAAI,CAAC,GAAG,CAAC,CAAA;QACX,MAAM,IAAI,GAAG,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,YAAY,OAAO,CAAC,OAAO,cAAc,CAAC,CAAC,CAAC,cAAc,CAAA;QAC1F,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CACrB,IAAI,GAAG,CAAC,KAAK,IAAI,GAAG,GAAG,KAAK,CAAC,EAC7B,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAC1D,CAAA;IACF,CAAC;CACD;AAED,WAAiB,YAAY;IAEf,kBAAK,GAAG,gBAAgB,CAAA;AACtC,CAAC,EAHgB,YAAY,KAAZ,YAAY,QAG5B"}
|
package/dist/Client/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { Operations } from "./Operations";
|
|
|
9
9
|
import { Organizations } from "./Organizations";
|
|
10
10
|
import { Rules } from "./Rules";
|
|
11
11
|
import { Settlements } from "./Settlements";
|
|
12
|
-
import { Transactions } from "./Transactions";
|
|
12
|
+
import { Transactions as ClientTransactions } from "./Transactions";
|
|
13
13
|
import { Treasury } from "./Treasury";
|
|
14
14
|
import { Version } from "./Version";
|
|
15
15
|
export declare class Client extends rest.Client<gracely.Error> {
|
|
@@ -21,7 +21,7 @@ export declare class Client extends rest.Client<gracely.Error> {
|
|
|
21
21
|
readonly organizations: Organizations;
|
|
22
22
|
readonly rules: Rules;
|
|
23
23
|
readonly settlements: Settlements;
|
|
24
|
-
readonly transactions:
|
|
24
|
+
readonly transactions: ClientTransactions;
|
|
25
25
|
readonly treasury: Treasury;
|
|
26
26
|
readonly flags: Flags;
|
|
27
27
|
readonly userwidgets: userwidgets.ClientCollection;
|
|
@@ -29,5 +29,9 @@ export declare class Client extends rest.Client<gracely.Error> {
|
|
|
29
29
|
static create<T = Record<string, any>>(server: string, key: string, load?: (client: http.Client) => T): Client & T;
|
|
30
30
|
}
|
|
31
31
|
export declare namespace Client {
|
|
32
|
+
const Transactions: typeof ClientTransactions;
|
|
33
|
+
namespace Transactions {
|
|
34
|
+
type Index = ClientTransactions.Index;
|
|
35
|
+
}
|
|
32
36
|
type Unauthorized = (client: rest.Client<never>) => Promise<boolean>;
|
|
33
37
|
}
|
package/dist/Client/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { Operations } from "./Operations";
|
|
|
8
8
|
import { Organizations } from "./Organizations";
|
|
9
9
|
import { Rules } from "./Rules";
|
|
10
10
|
import { Settlements } from "./Settlements";
|
|
11
|
-
import { Transactions } from "./Transactions";
|
|
11
|
+
import { Transactions as ClientTransactions } from "./Transactions";
|
|
12
12
|
import { Treasury } from "./Treasury";
|
|
13
13
|
import { Version } from "./Version";
|
|
14
14
|
export class Client extends rest.Client {
|
|
@@ -20,7 +20,7 @@ export class Client extends rest.Client {
|
|
|
20
20
|
this.organizations = new Organizations(this.client);
|
|
21
21
|
this.rules = new Rules(this.client);
|
|
22
22
|
this.settlements = new Settlements(this.client);
|
|
23
|
-
this.transactions = new
|
|
23
|
+
this.transactions = new ClientTransactions(this.client);
|
|
24
24
|
this.treasury = new Treasury(this.client);
|
|
25
25
|
this.flags = new Flags(this.client);
|
|
26
26
|
this.userwidgets = new userwidgets.ClientCollection(this.client, { pathPrefix: "/widgets" });
|
|
@@ -36,4 +36,7 @@ export class Client extends rest.Client {
|
|
|
36
36
|
return result;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
+
(function (Client) {
|
|
40
|
+
Client.Transactions = ClientTransactions;
|
|
41
|
+
})(Client || (Client = {}));
|
|
39
42
|
//# sourceMappingURL=index.js.map
|
package/dist/Client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,YAAY,IAAI,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAEnC,MAAM,OAAO,MAAO,SAAQ,IAAI,CAAC,MAAqB;IAAtD;;QAGU,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9B,eAAU,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACxC,kBAAa,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9C,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9B,gBAAW,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC1C,iBAAY,GAAG,IAAI,kBAAkB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAClD,aAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QACpC,UAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAC9B,gBAAW,GAAG,IAAI,WAAW,CAAC,gBAAgB,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,CAAA;QACvF,YAAO,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAa5C,CAAC;IAXA,MAAM,CAAC,MAAM,CAA0B,MAAc,EAAE,GAAW,EAAE,IAAiC;QACpG,IAAI,UAAsC,CAAA;QAC1C,MAAM,MAAM,GAAW,IAAI,MAAM,CAChC,CAAC,UAAU,GAAG,IAAI,IAAI,CAAC,MAAM,CAAgB,MAAM,EAAE,GAAG,EAAE;YACzD,YAAY,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,MAAM,CAAC,YAAY,EAAE,CAAC;SACxG,CAAC,CAAC,CACH,CAAA;QACD,IAAI,IAAI;YACP,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC,CAAA;QACxC,OAAO,MAAoB,CAAA;IAC5B,CAAC;CACD;AACD,WAAiB,MAAM;IACT,mBAAY,GAAG,kBAAkB,CAAA;AAK/C,CAAC,EANgB,MAAM,KAAN,MAAM,QAMtB"}
|