@pax2pay/model-banking 0.1.296 → 0.1.298
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/Treasury.ts +5 -6
- package/Rail/Address/Route.ts +21 -0
- package/Rail/Address/index.ts +2 -0
- package/dist/Client/Treasury.d.ts +3 -2
- package/dist/Client/Treasury.js +5 -3
- package/dist/Client/Treasury.js.map +1 -1
- package/dist/Rail/Address/Route.d.ts +21 -0
- package/dist/Rail/Address/Route.js +22 -0
- package/dist/Rail/Address/Route.js.map +1 -0
- package/dist/Rail/Address/index.d.ts +2 -0
- package/dist/Rail/Address/index.js +2 -0
- package/dist/Rail/Address/index.js.map +1 -1
- package/package.json +1 -1
package/Client/Treasury.ts
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { gracely } from "gracely"
|
|
2
2
|
import { isoly } from "isoly"
|
|
3
3
|
import { http } from "cloudly-http"
|
|
4
|
-
import * as rest from "cloudly-rest"
|
|
5
4
|
import { Treasury as TreasuryModel } from "../Treasury"
|
|
6
5
|
import { Result } from "../Treasury/Balance"
|
|
7
6
|
|
|
8
|
-
export class Treasury
|
|
9
|
-
constructor(client: http.Client) {
|
|
10
|
-
super(client)
|
|
11
|
-
}
|
|
12
|
-
|
|
7
|
+
export class Treasury {
|
|
8
|
+
constructor(private readonly client: http.Client) {}
|
|
13
9
|
async change(currency: isoly.Currency, changes: Result[]): Promise<gracely.Result> {
|
|
14
10
|
return this.client.patch(`/treasury/${currency}`, changes)
|
|
15
11
|
}
|
|
@@ -20,4 +16,7 @@ export class Treasury extends rest.Collection<gracely.Error> {
|
|
|
20
16
|
async listTransactions(accountId: string): Promise<TreasuryModel.Transaction[] | gracely.Error> {
|
|
21
17
|
return this.client.get<TreasuryModel.Transaction[]>(`/treasury/account/${accountId}/transaction`)
|
|
22
18
|
}
|
|
19
|
+
async listAccounts(): Promise<TreasuryModel.Account[] | gracely.Error> {
|
|
20
|
+
return this.client.get<TreasuryModel.Account[]>(`/treasury/account`)
|
|
21
|
+
}
|
|
23
22
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
|
|
3
|
+
export type Route = Route.Account | Route.Service
|
|
4
|
+
export namespace Route {
|
|
5
|
+
export type Account = { type: "account"; id: string }
|
|
6
|
+
export namespace Account {
|
|
7
|
+
export const type = isly.object<Account>({ type: isly.string("account"), id: isly.string() })
|
|
8
|
+
}
|
|
9
|
+
export type Service = { type: "service"; service: "paxgiroCredit"; configuration: string }
|
|
10
|
+
export namespace Service {
|
|
11
|
+
export const type = isly.object<Service>({
|
|
12
|
+
type: isly.string("service"),
|
|
13
|
+
service: isly.string("paxgiroCredit"),
|
|
14
|
+
configuration: isly.string(),
|
|
15
|
+
})
|
|
16
|
+
}
|
|
17
|
+
export const type = isly.union<Route, Account, Service>(Account.type, Service.type)
|
|
18
|
+
export function fromLegacy(route: string | Route): Route {
|
|
19
|
+
return typeof route == "string" ? { type: "account", id: route } : route
|
|
20
|
+
}
|
|
21
|
+
}
|
package/Rail/Address/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { Iban as AddressIban } from "./Iban"
|
|
|
5
5
|
import { Internal as AddressInternal } from "./internal"
|
|
6
6
|
import { PaxGiro as AddressPaxGiro } from "./PaxGiro"
|
|
7
7
|
import { PaxgiroCredit as AddressPaxgiroCredit } from "./PaxgiroCredit"
|
|
8
|
+
import { Route as AddressRoute } from "./Route"
|
|
8
9
|
import { Scan as AddressScan } from "./Scan"
|
|
9
10
|
|
|
10
11
|
export type Address =
|
|
@@ -104,4 +105,5 @@ export namespace Address {
|
|
|
104
105
|
export import Internal = AddressInternal
|
|
105
106
|
export import Card = AddressCard
|
|
106
107
|
export import PaxgiroFunding = AddressPaxgiroCredit
|
|
108
|
+
export import Route = AddressRoute
|
|
107
109
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { gracely } from "gracely";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
3
|
import { http } from "cloudly-http";
|
|
4
|
-
import * as rest from "cloudly-rest";
|
|
5
4
|
import { Treasury as TreasuryModel } from "../Treasury";
|
|
6
5
|
import { Result } from "../Treasury/Balance";
|
|
7
|
-
export declare class Treasury
|
|
6
|
+
export declare class Treasury {
|
|
7
|
+
private readonly client;
|
|
8
8
|
constructor(client: http.Client);
|
|
9
9
|
change(currency: isoly.Currency, changes: Result[]): Promise<gracely.Result>;
|
|
10
10
|
fetch(hour?: isoly.DateTime): Promise<TreasuryModel.Snapshot | gracely.Error>;
|
|
11
11
|
listTransactions(accountId: string): Promise<TreasuryModel.Transaction[] | gracely.Error>;
|
|
12
|
+
listAccounts(): Promise<TreasuryModel.Account[] | gracely.Error>;
|
|
12
13
|
}
|
package/dist/Client/Treasury.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
|
-
|
|
3
|
-
export class Treasury extends rest.Collection {
|
|
2
|
+
export class Treasury {
|
|
4
3
|
constructor(client) {
|
|
5
|
-
|
|
4
|
+
this.client = client;
|
|
6
5
|
}
|
|
7
6
|
async change(currency, changes) {
|
|
8
7
|
return this.client.patch(`/treasury/${currency}`, changes);
|
|
@@ -14,5 +13,8 @@ export class Treasury extends rest.Collection {
|
|
|
14
13
|
async listTransactions(accountId) {
|
|
15
14
|
return this.client.get(`/treasury/account/${accountId}/transaction`);
|
|
16
15
|
}
|
|
16
|
+
async listAccounts() {
|
|
17
|
+
return this.client.get(`/treasury/account`);
|
|
18
|
+
}
|
|
17
19
|
}
|
|
18
20
|
//# sourceMappingURL=Treasury.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Treasury.js","sourceRoot":"../","sources":["Client/Treasury.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"Treasury.js","sourceRoot":"../","sources":["Client/Treasury.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAK7B,MAAM,OAAO,QAAQ;IACpB,YAA6B,MAAmB;QAAnB,WAAM,GAAN,MAAM,CAAa;IAAG,CAAC;IACpD,KAAK,CAAC,MAAM,CAAC,QAAwB,EAAE,OAAiB;QACvD,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,QAAQ,EAAE,EAAE,OAAO,CAAC,CAAA;IAC3D,CAAC;IACD,KAAK,CAAC,KAAK,CAAC,IAAqB;QAChC,MAAM,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAA;QACrE,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAyB,qBAAqB,IAAI,EAAE,CAAC,CAAA;IAC5E,CAAC;IACD,KAAK,CAAC,gBAAgB,CAAC,SAAiB;QACvC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA8B,qBAAqB,SAAS,cAAc,CAAC,CAAA;IAClG,CAAC;IACD,KAAK,CAAC,YAAY;QACjB,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA0B,mBAAmB,CAAC,CAAA;IACrE,CAAC;CACD"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export type Route = Route.Account | Route.Service;
|
|
3
|
+
export declare namespace Route {
|
|
4
|
+
type Account = {
|
|
5
|
+
type: "account";
|
|
6
|
+
id: string;
|
|
7
|
+
};
|
|
8
|
+
namespace Account {
|
|
9
|
+
const type: isly.object.ExtendableType<Account>;
|
|
10
|
+
}
|
|
11
|
+
type Service = {
|
|
12
|
+
type: "service";
|
|
13
|
+
service: "paxgiroCredit";
|
|
14
|
+
configuration: string;
|
|
15
|
+
};
|
|
16
|
+
namespace Service {
|
|
17
|
+
const type: isly.object.ExtendableType<Service>;
|
|
18
|
+
}
|
|
19
|
+
const type: isly.Type<Route>;
|
|
20
|
+
function fromLegacy(route: string | Route): Route;
|
|
21
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
export var Route;
|
|
3
|
+
(function (Route) {
|
|
4
|
+
let Account;
|
|
5
|
+
(function (Account) {
|
|
6
|
+
Account.type = isly.object({ type: isly.string("account"), id: isly.string() });
|
|
7
|
+
})(Account = Route.Account || (Route.Account = {}));
|
|
8
|
+
let Service;
|
|
9
|
+
(function (Service) {
|
|
10
|
+
Service.type = isly.object({
|
|
11
|
+
type: isly.string("service"),
|
|
12
|
+
service: isly.string("paxgiroCredit"),
|
|
13
|
+
configuration: isly.string(),
|
|
14
|
+
});
|
|
15
|
+
})(Service = Route.Service || (Route.Service = {}));
|
|
16
|
+
Route.type = isly.union(Account.type, Service.type);
|
|
17
|
+
function fromLegacy(route) {
|
|
18
|
+
return typeof route == "string" ? { type: "account", id: route } : route;
|
|
19
|
+
}
|
|
20
|
+
Route.fromLegacy = fromLegacy;
|
|
21
|
+
})(Route || (Route = {}));
|
|
22
|
+
//# sourceMappingURL=Route.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Route.js","sourceRoot":"../","sources":["Rail/Address/Route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAG3B,MAAM,KAAW,KAAK,CAiBrB;AAjBD,WAAiB,KAAK;IAErB,IAAiB,OAAO,CAEvB;IAFD,WAAiB,OAAO;QACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;IAC9F,CAAC,EAFgB,OAAO,GAAP,aAAO,KAAP,aAAO,QAEvB;IAED,IAAiB,OAAO,CAMvB;IAND,WAAiB,OAAO;QACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU;YACxC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC;YAC5B,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,eAAe,CAAC;YACrC,aAAa,EAAE,IAAI,CAAC,MAAM,EAAE;SAC5B,CAAC,CAAA;IACH,CAAC,EANgB,OAAO,GAAP,aAAO,KAAP,aAAO,QAMvB;IACY,UAAI,GAAG,IAAI,CAAC,KAAK,CAA0B,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,CAAA;IACnF,SAAgB,UAAU,CAAC,KAAqB;QAC/C,OAAO,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,KAAK,CAAA;IACzE,CAAC;IAFe,gBAAU,aAEzB,CAAA;AACF,CAAC,EAjBgB,KAAK,KAAL,KAAK,QAiBrB"}
|
|
@@ -5,6 +5,7 @@ import { Iban as AddressIban } from "./Iban";
|
|
|
5
5
|
import { Internal as AddressInternal } from "./internal";
|
|
6
6
|
import { PaxGiro as AddressPaxGiro } from "./PaxGiro";
|
|
7
7
|
import { PaxgiroCredit as AddressPaxgiroCredit } from "./PaxgiroCredit";
|
|
8
|
+
import { Route as AddressRoute } from "./Route";
|
|
8
9
|
import { Scan as AddressScan } from "./Scan";
|
|
9
10
|
export type Address = AddressCard | AddressCard.Counterpart | AddressPaxgiroCredit | AddressIban | AddressInternal | AddressPaxGiro | AddressScan;
|
|
10
11
|
export declare namespace Address {
|
|
@@ -23,4 +24,5 @@ export declare namespace Address {
|
|
|
23
24
|
export import Internal = AddressInternal;
|
|
24
25
|
export import Card = AddressCard;
|
|
25
26
|
export import PaxgiroFunding = AddressPaxgiroCredit;
|
|
27
|
+
export import Route = AddressRoute;
|
|
26
28
|
}
|
|
@@ -4,6 +4,7 @@ import { Iban as AddressIban } from "./Iban";
|
|
|
4
4
|
import { Internal as AddressInternal } from "./internal";
|
|
5
5
|
import { PaxGiro as AddressPaxGiro } from "./PaxGiro";
|
|
6
6
|
import { PaxgiroCredit as AddressPaxgiroCredit } from "./PaxgiroCredit";
|
|
7
|
+
import { Route as AddressRoute } from "./Route";
|
|
7
8
|
import { Scan as AddressScan } from "./Scan";
|
|
8
9
|
export var Address;
|
|
9
10
|
(function (Address_1) {
|
|
@@ -88,5 +89,6 @@ export var Address;
|
|
|
88
89
|
Address_1.Internal = AddressInternal;
|
|
89
90
|
Address_1.Card = AddressCard;
|
|
90
91
|
Address_1.PaxgiroFunding = AddressPaxgiroCredit;
|
|
92
|
+
Address_1.Route = AddressRoute;
|
|
91
93
|
})(Address || (Address = {}));
|
|
92
94
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Rail/Address/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAE3B,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,YAAY,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,aAAa,IAAI,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AACvE,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAU5C,MAAM,KAAW,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Rail/Address/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAE3B,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAC5C,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,MAAM,YAAY,CAAA;AACxD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,WAAW,CAAA;AACrD,OAAO,EAAE,aAAa,IAAI,oBAAoB,EAAE,MAAM,iBAAiB,CAAA;AACvE,OAAO,EAAE,KAAK,IAAI,YAAY,EAAE,MAAM,SAAS,CAAA;AAC/C,OAAO,EAAE,IAAI,IAAI,WAAW,EAAE,MAAM,QAAQ,CAAA;AAU5C,MAAM,KAAW,OAAO,CA0FvB;AA1FD,WAAiB,SAAO;IACV,eAAK,GAA4B;QAC7C,IAAI,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,gBAAgB,CAAC;QACvE,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;QAC5C,EAAE,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;QACxC,EAAE,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;QACxC,OAAO,EAAE,CAAC,SAAS,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,gBAAgB,CAAC;KAC1E,CAAA;IACY,gBAAM,GAAG,CAAC,SAAS,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,gBAAgB,CAAU,CAAA;IAEhG,SAAgB,OAAO,CAAC,SAA6B;QACpD,OAAO,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CACxC,CAAC,CAAC,GAAG,EAAE,KAAK,CAA0C,EAAE,EAAE,CAAC,KAAK,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CACrF,CAAA;IACF,CAAC;IAJe,iBAAO,UAItB,CAAA;IACD,SAAgB,KAAK,CAAC,KAAa;QAClC,IAAI,MAA2B,CAAA;QAC/B,MAAM,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;QACjC,QAAQ,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;YACrB,KAAK,KAAK;gBACT,MAAM,GAAG,QAAQ,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;gBACxF,MAAK;QACP,CAAC;QACD,OAAO,MAAM,CAAA;IACd,CAAC;IATe,eAAK,QASpB,CAAA;IACD,SAAgB,SAAS,CAAC,OAAgB;QACzC,IAAI,MAAc,CAAA;QAClB,QAAQ,OAAO,CAAC,IAAI,EAAE,CAAC;YACtB,KAAK,MAAM;gBACV,MAAM,GAAG,QAAQ,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC/B,MAAK;YACN,KAAK,SAAS;gBACb,MAAM,GAAG,OAAO,OAAO,CAAC,UAAU,EAAE,CAAA;gBACpC,MAAK;YACN,KAAK,UAAU;gBACd,MAAM,GAAG,YAAY,OAAO,CAAC,UAAU,EAAE,CAAA;gBACzC,MAAK;YACN,KAAK,MAAM;gBACV,MAAM,GAAG,QAAQ,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,OAAO,EAAE,CAAA;gBAClD,MAAK;YACN,KAAK,MAAM;gBACV,MAAM,GAAG,IAAI,IAAI,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,IAAI,aAAa,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAA;gBAC9G,MAAK;YACN,KAAK,gBAAgB;gBACpB,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE,CAAA;gBAC/C,MAAK;QACP,CAAC;QACD,OAAO,MAAM,CAAA;IACd,CAAC;IAvBe,mBAAS,YAuBxB,CAAA;IACD,SAAgB,QAAQ,CAAC,OAAgB;QACxC,IAAI,MAAc,CAAA;QAClB,QAAQ,OAAO,CAAC,IAAI,EAAE,CAAC;YACtB,KAAK,MAAM;gBACV,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,EAAE,CAAA;gBAC1B,MAAK;YACN,KAAK,SAAS;gBACb,MAAM,GAAG,GAAG,OAAO,CAAC,UAAU,EAAE,CAAA;gBAChC,MAAK;YACN,KAAK,UAAU;gBACd,MAAM,GAAG,GAAG,OAAO,CAAC,UAAU,EAAE,CAAA;gBAChC,MAAK;YACN,KAAK,MAAM;gBACV,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,OAAO,EAAE,CAAA;gBAC7C,MAAK;YACN,KAAK,MAAM;gBACV,MAAM,GAAG,IAAI,IAAI,OAAO,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,IAAI,aAAa,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAA;gBAC9G,MAAK;YACN,KAAK,gBAAgB;gBACpB,MAAM,GAAG,GAAG,OAAO,CAAC,IAAI,IAAI,OAAO,CAAC,SAAS,EAAE,CAAA;gBAC/C,MAAK;QACP,CAAC;QACD,OAAO,MAAM,CAAA;IACd,CAAC;IAvBe,kBAAQ,WAuBvB,CAAA;IACY,cAAI,GAAG,IAAI,CAAC,KAAK,CAC7B,WAAW,CAAC,IAAI,EAChB,WAAW,CAAC,WAAW,CAAC,IAAI,EAC5B,oBAAoB,CAAC,IAAI,EACzB,WAAW,CAAC,IAAI,EAChB,eAAe,CAAC,IAAI,EACpB,cAAc,CAAC,IAAI,EACnB,WAAW,CAAC,IAAI,CAChB,CAAA;IACY,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACX,iBAAO,GAAG,cAAc,CAAA;IACxB,cAAI,GAAG,WAAW,CAAA;IAClB,cAAI,GAAG,WAAW,CAAA;IAClB,kBAAQ,GAAG,eAAe,CAAA;IAC1B,cAAI,GAAG,WAAW,CAAA;IAClB,wBAAc,GAAG,oBAAoB,CAAA;IACrC,eAAK,GAAG,YAAY,CAAA;AACnC,CAAC,EA1FgB,OAAO,KAAP,OAAO,QA0FvB"}
|