@pax2pay/model-banking 0.1.82 → 0.1.84
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/Account/Creatable.ts +5 -11
- package/Account/index.ts +14 -25
- package/Client/Accounts/index.ts +2 -2
- package/Organization/Changeable.ts +16 -0
- package/Organization/index.ts +3 -0
- package/dist/Account/Creatable.d.ts +4 -2
- package/dist/Account/Creatable.js +4 -11
- package/dist/Account/Creatable.js.map +1 -1
- package/dist/Account/index.d.ts +7 -10
- package/dist/Account/index.js +11 -24
- package/dist/Account/index.js.map +1 -1
- package/dist/Client/Accounts/index.d.ts +1 -1
- package/dist/Client/Accounts/index.js.map +1 -1
- package/dist/Organization/Changeable.d.ts +11 -0
- package/dist/Organization/Changeable.js +12 -0
- package/dist/Organization/Changeable.js.map +1 -0
- package/dist/Organization/index.d.ts +3 -0
- package/dist/Organization/index.js +2 -0
- package/dist/Organization/index.js.map +1 -1
- package/package.json +1 -1
package/Account/Creatable.ts
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
|
|
1
3
|
export interface Creatable {
|
|
2
4
|
name: string
|
|
3
5
|
}
|
|
4
6
|
|
|
5
7
|
export namespace Creatable {
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export function isPartial(value: Partial<Creatable> | any): value is Partial<Creatable> {
|
|
10
|
-
return (
|
|
11
|
-
value &&
|
|
12
|
-
typeof value == "object" &&
|
|
13
|
-
Object.entries(value).length > 0 &&
|
|
14
|
-
Object.entries(value).every(([k, v]) => k == "name" && typeof v == "string")
|
|
15
|
-
)
|
|
16
|
-
}
|
|
8
|
+
export const type = isly.object<Creatable>({ name: isly.string() })
|
|
9
|
+
export const is = type.is
|
|
10
|
+
export const flaw = type.flaw
|
|
17
11
|
}
|
package/Account/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { cryptly } from "cryptly"
|
|
2
2
|
import { isoly } from "isoly"
|
|
3
|
+
import { isly } from "isly"
|
|
3
4
|
import { Balances } from "../Balances"
|
|
4
5
|
import { Rail } from "../Rail"
|
|
5
6
|
import { Creatable as AccountCreatable } from "./Creatable"
|
|
@@ -7,37 +8,25 @@ import { Creatable as AccountCreatable } from "./Creatable"
|
|
|
7
8
|
export interface Account extends Account.Creatable {
|
|
8
9
|
readonly id: cryptly.Identifier
|
|
9
10
|
readonly created: isoly.DateTime
|
|
11
|
+
readonly balances: Balances
|
|
12
|
+
readonly rails: Rail[]
|
|
13
|
+
//readonly rules: Rule[]
|
|
10
14
|
}
|
|
11
15
|
|
|
12
16
|
export namespace Account {
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
Account.Creatable.is({ ...account }) && cryptly.Identifier.is(account.id, 8) && isoly.DateTime.is(account.created)
|
|
23
|
-
)
|
|
24
|
-
}
|
|
17
|
+
export const type = isly.object<Account>({
|
|
18
|
+
name: isly.string(),
|
|
19
|
+
id: isly.string(),
|
|
20
|
+
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
21
|
+
balances: isly.fromIs("Balances", Balances.is),
|
|
22
|
+
rails: isly.fromIs("Rail", Rail.is).array(),
|
|
23
|
+
})
|
|
24
|
+
export const is = type.is
|
|
25
|
+
export const flaw = type.flaw
|
|
25
26
|
export function isIdentifier(value: cryptly.Identifier | any): value is cryptly.Identifier {
|
|
26
27
|
return cryptly.Identifier.is(value, 8)
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
export type Creatable = AccountCreatable
|
|
30
31
|
export const Creatable = AccountCreatable
|
|
31
|
-
export type Info = Account & { rails: Rail[]; balances: Balances }
|
|
32
|
-
export namespace Info {
|
|
33
|
-
export function is(value: Info | any): value is Info {
|
|
34
|
-
return (
|
|
35
|
-
typeof value == "object" &&
|
|
36
|
-
Account.is({ ...value }) &&
|
|
37
|
-
Array.isArray(value.rails) &&
|
|
38
|
-
value.rails.every((r: any) => Rail.is(r)) &&
|
|
39
|
-
Balances.is(value.balances)
|
|
40
|
-
)
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
32
|
}
|
package/Client/Accounts/index.ts
CHANGED
|
@@ -15,7 +15,7 @@ export class Accounts extends rest.Collection<gracely.Error> {
|
|
|
15
15
|
async list(options?: {
|
|
16
16
|
limit?: string
|
|
17
17
|
cursor?: string
|
|
18
|
-
}): Promise<(Account
|
|
19
|
-
return this.client.get<Account
|
|
18
|
+
}): Promise<(Account[] & { cursor?: string | undefined }) | gracely.Error> {
|
|
19
|
+
return this.client.get<Account[] & { cursor?: string | undefined }>("/api/account", options)
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
2
|
+
import { Contact } from "./Contact"
|
|
3
|
+
|
|
4
|
+
export interface Changeable {
|
|
5
|
+
name?: string
|
|
6
|
+
contact?: Contact
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export namespace Changeable {
|
|
10
|
+
export const type = isly.object<Changeable>({
|
|
11
|
+
name: isly.string().optional(),
|
|
12
|
+
contact: Contact.type.optional(),
|
|
13
|
+
})
|
|
14
|
+
export const is = type.is
|
|
15
|
+
export const flaw = type.flaw
|
|
16
|
+
}
|
package/Organization/index.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as cryptly from "cryptly"
|
|
2
|
+
import { Changeable as OrganizationChangeable } from "./Changeable"
|
|
2
3
|
import { Creatable as OrganizationCreatable } from "./Creatable"
|
|
3
4
|
import { Rule as OrganizationRule } from "./Rule"
|
|
4
5
|
|
|
@@ -19,6 +20,8 @@ export namespace Organization {
|
|
|
19
20
|
|
|
20
21
|
export type Creatable = OrganizationCreatable
|
|
21
22
|
export const Creatable = OrganizationCreatable
|
|
23
|
+
export type Changeable = OrganizationChangeable
|
|
24
|
+
export const Changeable = OrganizationChangeable
|
|
22
25
|
export type Rule = OrganizationRule
|
|
23
26
|
export const Rule = OrganizationRule
|
|
24
27
|
export namespace Rule {
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
export interface Creatable {
|
|
2
3
|
name: string;
|
|
3
4
|
}
|
|
4
5
|
export declare namespace Creatable {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
const type: isly.object.ExtendableType<Creatable>;
|
|
7
|
+
const is: isly.Type.IsFunction<Creatable>;
|
|
8
|
+
const flaw: isly.Type.FlawFunction;
|
|
7
9
|
}
|
|
@@ -1,15 +1,8 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
export var Creatable;
|
|
2
3
|
(function (Creatable) {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Creatable.is = is;
|
|
7
|
-
function isPartial(value) {
|
|
8
|
-
return (value &&
|
|
9
|
-
typeof value == "object" &&
|
|
10
|
-
Object.entries(value).length > 0 &&
|
|
11
|
-
Object.entries(value).every(([k, v]) => k == "name" && typeof v == "string"));
|
|
12
|
-
}
|
|
13
|
-
Creatable.isPartial = isPartial;
|
|
4
|
+
Creatable.type = isly.object({ name: isly.string() });
|
|
5
|
+
Creatable.is = Creatable.type.is;
|
|
6
|
+
Creatable.flaw = Creatable.type.flaw;
|
|
14
7
|
})(Creatable || (Creatable = {}));
|
|
15
8
|
//# sourceMappingURL=Creatable.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Account/Creatable.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Account/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,SAAS,CAIzB;AAJD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;IACtD,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAJgB,SAAS,KAAT,SAAS,QAIzB"}
|
package/dist/Account/index.d.ts
CHANGED
|
@@ -1,23 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { cryptly } from "cryptly";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
|
+
import { isly } from "isly";
|
|
3
4
|
import { Balances } from "../Balances";
|
|
4
5
|
import { Rail } from "../Rail";
|
|
5
6
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
6
7
|
export interface Account extends Account.Creatable {
|
|
7
8
|
readonly id: cryptly.Identifier;
|
|
8
9
|
readonly created: isoly.DateTime;
|
|
10
|
+
readonly balances: Balances;
|
|
11
|
+
readonly rails: Rail[];
|
|
9
12
|
}
|
|
10
13
|
export declare namespace Account {
|
|
11
|
-
|
|
12
|
-
|
|
14
|
+
const type: isly.object.ExtendableType<Account>;
|
|
15
|
+
const is: isly.Type.IsFunction<Account>;
|
|
16
|
+
const flaw: isly.Type.FlawFunction;
|
|
13
17
|
function isIdentifier(value: cryptly.Identifier | any): value is cryptly.Identifier;
|
|
14
18
|
type Creatable = AccountCreatable;
|
|
15
19
|
const Creatable: typeof AccountCreatable;
|
|
16
|
-
type Info = Account & {
|
|
17
|
-
rails: Rail[];
|
|
18
|
-
balances: Balances;
|
|
19
|
-
};
|
|
20
|
-
namespace Info {
|
|
21
|
-
function is(value: Info | any): value is Info;
|
|
22
|
-
}
|
|
23
20
|
}
|
package/dist/Account/index.js
CHANGED
|
@@ -1,37 +1,24 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { cryptly } from "cryptly";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
|
+
import { isly } from "isly";
|
|
3
4
|
import { Balances } from "../Balances";
|
|
4
5
|
import { Rail } from "../Rail";
|
|
5
6
|
import { Creatable as AccountCreatable } from "./Creatable";
|
|
6
7
|
export var Account;
|
|
7
8
|
(function (Account) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
Account.
|
|
16
|
-
|
|
17
|
-
return (Account.Creatable.is({ ...account }) && cryptly.Identifier.is(account.id, 8) && isoly.DateTime.is(account.created));
|
|
18
|
-
}
|
|
19
|
-
Account.is = is;
|
|
9
|
+
Account.type = isly.object({
|
|
10
|
+
name: isly.string(),
|
|
11
|
+
id: isly.string(),
|
|
12
|
+
created: isly.fromIs("isoly.DateTime", isoly.DateTime.is),
|
|
13
|
+
balances: isly.fromIs("Balances", Balances.is),
|
|
14
|
+
rails: isly.fromIs("Rail", Rail.is).array(),
|
|
15
|
+
});
|
|
16
|
+
Account.is = Account.type.is;
|
|
17
|
+
Account.flaw = Account.type.flaw;
|
|
20
18
|
function isIdentifier(value) {
|
|
21
19
|
return cryptly.Identifier.is(value, 8);
|
|
22
20
|
}
|
|
23
21
|
Account.isIdentifier = isIdentifier;
|
|
24
22
|
Account.Creatable = AccountCreatable;
|
|
25
|
-
let Info;
|
|
26
|
-
(function (Info) {
|
|
27
|
-
function is(value) {
|
|
28
|
-
return (typeof value == "object" &&
|
|
29
|
-
Account.is({ ...value }) &&
|
|
30
|
-
Array.isArray(value.rails) &&
|
|
31
|
-
value.rails.every((r) => Rail.is(r)) &&
|
|
32
|
-
Balances.is(value.balances));
|
|
33
|
-
}
|
|
34
|
-
Info.is = is;
|
|
35
|
-
})(Info = Account.Info || (Account.Info = {}));
|
|
36
23
|
})(Account || (Account = {}));
|
|
37
24
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,SAAS,IAAI,gBAAgB,EAAE,MAAM,aAAa,CAAA;AAU3D,MAAM,KAAW,OAAO,CAgBvB;AAhBD,WAAiB,OAAO;IACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU;QACxC,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzD,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,UAAU,EAAE,QAAQ,CAAC,EAAE,CAAC;QAC9C,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;KAC3C,CAAC,CAAA;IACW,UAAE,GAAG,QAAA,IAAI,CAAC,EAAE,CAAA;IACZ,YAAI,GAAG,QAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,YAAY,CAAC,KAA+B;QAC3D,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACvC,CAAC;IAFe,oBAAY,eAE3B,CAAA;IAGY,iBAAS,GAAG,gBAAgB,CAAA;AAC1C,CAAC,EAhBgB,OAAO,KAAP,OAAO,QAgBvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Accounts/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,QAAS,SAAQ,IAAI,CAAC,UAAyB;IAE3D,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,OAA0B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAU,cAAc,EAAE,OAAO,CAAC,CAAA;IAC1D,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAGV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Client/Accounts/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,cAAc,CAAA;AAEpC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAE/B,MAAM,OAAO,QAAS,SAAQ,IAAI,CAAC,UAAyB;IAE3D,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,OAA0B;QACtC,OAAO,IAAI,CAAC,MAAM,CAAC,IAAI,CAAU,cAAc,EAAE,OAAO,CAAC,CAAA;IAC1D,CAAC;IACD,KAAK,CAAC,IAAI,CAAC,OAGV;QACA,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAA8C,cAAc,EAAE,OAAO,CAAC,CAAA;IAC7F,CAAC;CACD"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { Contact } from "./Contact";
|
|
3
|
+
export interface Changeable {
|
|
4
|
+
name?: string;
|
|
5
|
+
contact?: Contact;
|
|
6
|
+
}
|
|
7
|
+
export declare namespace Changeable {
|
|
8
|
+
const type: isly.object.ExtendableType<Changeable>;
|
|
9
|
+
const is: isly.Type.IsFunction<Changeable>;
|
|
10
|
+
const flaw: isly.Type.FlawFunction;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
2
|
+
import { Contact } from "./Contact";
|
|
3
|
+
export var Changeable;
|
|
4
|
+
(function (Changeable) {
|
|
5
|
+
Changeable.type = isly.object({
|
|
6
|
+
name: isly.string().optional(),
|
|
7
|
+
contact: Contact.type.optional(),
|
|
8
|
+
});
|
|
9
|
+
Changeable.is = Changeable.type.is;
|
|
10
|
+
Changeable.flaw = Changeable.type.flaw;
|
|
11
|
+
})(Changeable || (Changeable = {}));
|
|
12
|
+
//# sourceMappingURL=Changeable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Changeable.js","sourceRoot":"../","sources":["Organization/Changeable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AAOnC,MAAM,KAAW,UAAU,CAO1B;AAPD,WAAiB,UAAU;IACb,eAAI,GAAG,IAAI,CAAC,MAAM,CAAa;QAC3C,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC9B,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAE;KAChC,CAAC,CAAA;IACW,aAAE,GAAG,WAAA,IAAI,CAAC,EAAE,CAAA;IACZ,eAAI,GAAG,WAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAPgB,UAAU,KAAV,UAAU,QAO1B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as cryptly from "cryptly";
|
|
2
|
+
import { Changeable as OrganizationChangeable } from "./Changeable";
|
|
2
3
|
import { Creatable as OrganizationCreatable } from "./Creatable";
|
|
3
4
|
import { Rule as OrganizationRule } from "./Rule";
|
|
4
5
|
export interface Organization extends OrganizationCreatable {
|
|
@@ -10,6 +11,8 @@ export declare namespace Organization {
|
|
|
10
11
|
function isIdentifier(value: cryptly.Identifier | any): value is cryptly.Identifier;
|
|
11
12
|
type Creatable = OrganizationCreatable;
|
|
12
13
|
const Creatable: typeof OrganizationCreatable;
|
|
14
|
+
type Changeable = OrganizationChangeable;
|
|
15
|
+
const Changeable: typeof OrganizationChangeable;
|
|
13
16
|
type Rule = OrganizationRule;
|
|
14
17
|
const Rule: typeof OrganizationRule;
|
|
15
18
|
namespace Rule {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as cryptly from "cryptly";
|
|
2
|
+
import { Changeable as OrganizationChangeable } from "./Changeable";
|
|
2
3
|
import { Creatable as OrganizationCreatable } from "./Creatable";
|
|
3
4
|
import { Rule as OrganizationRule } from "./Rule";
|
|
4
5
|
export var Organization;
|
|
@@ -16,6 +17,7 @@ export var Organization;
|
|
|
16
17
|
}
|
|
17
18
|
Organization.isIdentifier = isIdentifier;
|
|
18
19
|
Organization.Creatable = OrganizationCreatable;
|
|
20
|
+
Organization.Changeable = OrganizationChangeable;
|
|
19
21
|
Organization.Rule = OrganizationRule;
|
|
20
22
|
})(Organization || (Organization = {}));
|
|
21
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Organization/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,SAAS,IAAI,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAChE,OAAO,EAAE,IAAI,IAAI,gBAAgB,EAAE,MAAM,QAAQ,CAAA;AAMjD,MAAM,KAAW,YAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Organization/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,UAAU,IAAI,sBAAsB,EAAE,MAAM,cAAc,CAAA;AACnE,OAAO,EAAE,SAAS,IAAI,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAChE,OAAO,EAAE,IAAI,IAAI,gBAAgB,EAAE,MAAM,QAAQ,CAAA;AAMjD,MAAM,KAAW,YAAY,CAoB5B;AApBD,WAAiB,YAAY;IAC5B,SAAgB,EAAE,CAAC,KAAyB;QAC3C,OAAO,KAAK,IAAI,qBAAqB,CAAC,EAAE,CAAC,EAAE,GAAG,KAAK,EAAE,CAAC,IAAI,OAAO,KAAK,CAAC,EAAE,IAAI,QAAQ,CAAA;IACtF,CAAC;IAFe,eAAE,KAEjB,CAAA;IACD,SAAgB,aAAa,CAAC,YAAuB;QACpD,OAAO,EAAE,GAAG,YAAY,EAAE,EAAE,EAAE,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAA;IAC/D,CAAC;IAFe,0BAAa,gBAE5B,CAAA;IACD,SAAgB,YAAY,CAAC,KAA+B;QAC3D,OAAO,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACvC,CAAC;IAFe,yBAAY,eAE3B,CAAA;IAGY,sBAAS,GAAG,qBAAqB,CAAA;IAEjC,uBAAU,GAAG,sBAAsB,CAAA;IAEnC,iBAAI,GAAG,gBAAgB,CAAA;AAIrC,CAAC,EApBgB,YAAY,KAAZ,YAAY,QAoB5B"}
|