@pax2pay/model-banking 0.1.78 → 0.1.80
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/Card/index.ts +12 -2
- package/Organization/Contact.ts +36 -0
- package/Organization/Creatable.ts +9 -1
- package/dist/Card/index.d.ts +3 -1
- package/dist/Card/index.js +5 -2
- package/dist/Card/index.js.map +1 -1
- package/dist/Organization/Contact.d.ts +20 -0
- package/dist/Organization/Contact.js +21 -0
- package/dist/Organization/Contact.js.map +1 -0
- package/dist/Organization/Creatable.d.ts +4 -1
- package/dist/Organization/Creatable.js +8 -0
- package/dist/Organization/Creatable.js.map +1 -1
- package/package.json +1 -1
package/Card/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { cryptly } from "cryptly"
|
|
2
2
|
import { isoly } from "isoly"
|
|
3
3
|
import { isly } from "isly"
|
|
4
|
+
import { Realm } from "../Realm"
|
|
4
5
|
import { Changeable as CardChangeable } from "./Changeable"
|
|
5
6
|
import { Creatable as CardCreatable } from "./Creatable"
|
|
6
7
|
import { Expiry as CardExpiry } from "./Expiry"
|
|
@@ -13,6 +14,7 @@ export interface Card {
|
|
|
13
14
|
number?: string
|
|
14
15
|
created: isoly.DateTime
|
|
15
16
|
organization: string
|
|
17
|
+
realm: Realm
|
|
16
18
|
account: string
|
|
17
19
|
preset: CardPreset
|
|
18
20
|
reference?: string
|
|
@@ -32,13 +34,20 @@ export interface Card {
|
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
export namespace Card {
|
|
35
|
-
export function fromCreatable(
|
|
37
|
+
export function fromCreatable(
|
|
38
|
+
card: Creatable,
|
|
39
|
+
organization: string,
|
|
40
|
+
realm: Realm,
|
|
41
|
+
last4: string,
|
|
42
|
+
token: string
|
|
43
|
+
): Card {
|
|
36
44
|
const created = isoly.DateTime.now()
|
|
37
45
|
return {
|
|
38
46
|
id: cryptly.Identifier.generate(8),
|
|
39
47
|
number: card.number,
|
|
40
48
|
created: created,
|
|
41
|
-
organization
|
|
49
|
+
organization,
|
|
50
|
+
realm,
|
|
42
51
|
account: card.account,
|
|
43
52
|
preset: card.preset,
|
|
44
53
|
details: {
|
|
@@ -61,6 +70,7 @@ export namespace Card {
|
|
|
61
70
|
number: isly.string().optional(),
|
|
62
71
|
created: isly.string(),
|
|
63
72
|
organization: isly.string(),
|
|
73
|
+
realm: Realm.type,
|
|
64
74
|
account: isly.string(),
|
|
65
75
|
preset: CardPreset.type,
|
|
66
76
|
reference: isly.string().optional(),
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { isoly } from "isoly"
|
|
2
|
+
import { isly } from "isly"
|
|
3
|
+
|
|
4
|
+
export interface Contact {
|
|
5
|
+
address: string
|
|
6
|
+
city: string
|
|
7
|
+
zip: string
|
|
8
|
+
country: isoly.CountryCode.Alpha2
|
|
9
|
+
email: `${string}@${string}.${string}`
|
|
10
|
+
name: {
|
|
11
|
+
first: string
|
|
12
|
+
last: string
|
|
13
|
+
}
|
|
14
|
+
phone: {
|
|
15
|
+
number: `${number}`
|
|
16
|
+
code: isoly.CallingCode
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export namespace Contact {
|
|
21
|
+
export const type = isly.object<Contact>({
|
|
22
|
+
address: isly.string(),
|
|
23
|
+
city: isly.string(),
|
|
24
|
+
zip: isly.string(),
|
|
25
|
+
country: isly.fromIs("CountryCode.Alpha2", isoly.CountryCode.Alpha2.is),
|
|
26
|
+
email: isly.string(),
|
|
27
|
+
name: isly.object<Contact["name"]>({
|
|
28
|
+
first: isly.string(),
|
|
29
|
+
last: isly.string(),
|
|
30
|
+
}),
|
|
31
|
+
phone: isly.object<Contact["phone"]>({
|
|
32
|
+
number: isly.string(),
|
|
33
|
+
code: isly.fromIs("CallingCode", isoly.CallingCode.is),
|
|
34
|
+
}),
|
|
35
|
+
})
|
|
36
|
+
}
|
|
@@ -1,14 +1,22 @@
|
|
|
1
|
+
import { isly } from "isly"
|
|
1
2
|
import { Realm } from "../Realm"
|
|
3
|
+
import { Contact } from "./Contact"
|
|
2
4
|
import { Rule } from "./Rule"
|
|
3
5
|
|
|
4
6
|
export interface Creatable {
|
|
5
7
|
name: string
|
|
6
|
-
address: string
|
|
7
8
|
realm: Realm
|
|
8
9
|
rules: Rule[]
|
|
10
|
+
contact?: Contact
|
|
9
11
|
}
|
|
10
12
|
|
|
11
13
|
export namespace Creatable {
|
|
14
|
+
export const type = isly.object<Creatable>({
|
|
15
|
+
name: isly.string(),
|
|
16
|
+
realm: Realm.type,
|
|
17
|
+
rules: isly.fromIs<Rule>("Rule", Rule.is).array(),
|
|
18
|
+
contact: Contact.type.optional(),
|
|
19
|
+
})
|
|
12
20
|
export function is(value: any | Creatable): value is Creatable {
|
|
13
21
|
return (
|
|
14
22
|
value &&
|
package/dist/Card/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
2
|
import { isly } from "isly";
|
|
3
|
+
import { Realm } from "../Realm";
|
|
3
4
|
import { Changeable as CardChangeable } from "./Changeable";
|
|
4
5
|
import { Creatable as CardCreatable } from "./Creatable";
|
|
5
6
|
import { Expiry as CardExpiry } from "./Expiry";
|
|
@@ -11,6 +12,7 @@ export interface Card {
|
|
|
11
12
|
number?: string;
|
|
12
13
|
created: isoly.DateTime;
|
|
13
14
|
organization: string;
|
|
15
|
+
realm: Realm;
|
|
14
16
|
account: string;
|
|
15
17
|
preset: CardPreset;
|
|
16
18
|
reference?: string;
|
|
@@ -29,7 +31,7 @@ export interface Card {
|
|
|
29
31
|
meta?: CardMeta;
|
|
30
32
|
}
|
|
31
33
|
export declare namespace Card {
|
|
32
|
-
function fromCreatable(card: Creatable, organization: string, last4: string, token: string): Card;
|
|
34
|
+
function fromCreatable(card: Creatable, organization: string, realm: Realm, last4: string, token: string): Card;
|
|
33
35
|
const type: isly.object.ExtendableType<Card>;
|
|
34
36
|
const is: isly.Type.IsFunction<Card>;
|
|
35
37
|
type Creatable = CardCreatable;
|
package/dist/Card/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { cryptly } from "cryptly";
|
|
2
2
|
import { isoly } from "isoly";
|
|
3
3
|
import { isly } from "isly";
|
|
4
|
+
import { Realm } from "../Realm";
|
|
4
5
|
import { Changeable as CardChangeable } from "./Changeable";
|
|
5
6
|
import { Creatable as CardCreatable } from "./Creatable";
|
|
6
7
|
import { Expiry as CardExpiry } from "./Expiry";
|
|
@@ -9,13 +10,14 @@ import { Operation as CardOperation } from "./Operation";
|
|
|
9
10
|
import { Preset as CardPreset } from "./Preset";
|
|
10
11
|
export var Card;
|
|
11
12
|
(function (Card) {
|
|
12
|
-
function fromCreatable(card, organization, last4, token) {
|
|
13
|
+
function fromCreatable(card, organization, realm, last4, token) {
|
|
13
14
|
const created = isoly.DateTime.now();
|
|
14
15
|
return {
|
|
15
16
|
id: cryptly.Identifier.generate(8),
|
|
16
17
|
number: card.number,
|
|
17
18
|
created: created,
|
|
18
|
-
organization
|
|
19
|
+
organization,
|
|
20
|
+
realm,
|
|
19
21
|
account: card.account,
|
|
20
22
|
preset: card.preset,
|
|
21
23
|
details: {
|
|
@@ -39,6 +41,7 @@ export var Card;
|
|
|
39
41
|
number: isly.string().optional(),
|
|
40
42
|
created: isly.string(),
|
|
41
43
|
organization: isly.string(),
|
|
44
|
+
realm: Realm.type,
|
|
42
45
|
account: isly.string(),
|
|
43
46
|
preset: CardPreset.type,
|
|
44
47
|
reference: isly.string().optional(),
|
package/dist/Card/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Card/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,UAAU,IAAI,cAAc,EAAE,MAAM,cAAc,CAAA;AAC3D,OAAO,EAAE,SAAS,IAAI,aAAa,EAAE,MAAM,aAAa,CAAA;AACxD,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,UAAU,CAAA;AAC/C,OAAO,EAAE,IAAI,IAAI,QAAQ,EAAE,MAAM,QAAQ,CAAA;AACzC,OAAO,EAAE,SAAS,IAAI,aAAa,EAAE,MAAM,aAAa,CAAA;AACxD,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Card/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export interface Contact {
|
|
4
|
+
address: string;
|
|
5
|
+
city: string;
|
|
6
|
+
zip: string;
|
|
7
|
+
country: isoly.CountryCode.Alpha2;
|
|
8
|
+
email: `${string}@${string}.${string}`;
|
|
9
|
+
name: {
|
|
10
|
+
first: string;
|
|
11
|
+
last: string;
|
|
12
|
+
};
|
|
13
|
+
phone: {
|
|
14
|
+
number: `${number}`;
|
|
15
|
+
code: isoly.CallingCode;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export declare namespace Contact {
|
|
19
|
+
const type: isly.object.ExtendableType<Contact>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { isly } from "isly";
|
|
3
|
+
export var Contact;
|
|
4
|
+
(function (Contact) {
|
|
5
|
+
Contact.type = isly.object({
|
|
6
|
+
address: isly.string(),
|
|
7
|
+
city: isly.string(),
|
|
8
|
+
zip: isly.string(),
|
|
9
|
+
country: isly.fromIs("CountryCode.Alpha2", isoly.CountryCode.Alpha2.is),
|
|
10
|
+
email: isly.string(),
|
|
11
|
+
name: isly.object({
|
|
12
|
+
first: isly.string(),
|
|
13
|
+
last: isly.string(),
|
|
14
|
+
}),
|
|
15
|
+
phone: isly.object({
|
|
16
|
+
number: isly.string(),
|
|
17
|
+
code: isly.fromIs("CallingCode", isoly.CallingCode.is),
|
|
18
|
+
}),
|
|
19
|
+
});
|
|
20
|
+
})(Contact || (Contact = {}));
|
|
21
|
+
//# sourceMappingURL=Contact.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Contact.js","sourceRoot":"../","sources":["Organization/Contact.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAkB3B,MAAM,KAAW,OAAO,CAgBvB;AAhBD,WAAiB,OAAO;IACV,YAAI,GAAG,IAAI,CAAC,MAAM,CAAU;QACxC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE;QAClB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,EAAE,CAAC;QACvE,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;QACpB,IAAI,EAAE,IAAI,CAAC,MAAM,CAAkB;YAClC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;YACpB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;SACnB,CAAC;QACF,KAAK,EAAE,IAAI,CAAC,MAAM,CAAmB;YACpC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;YACrB,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,KAAK,CAAC,WAAW,CAAC,EAAE,CAAC;SACtD,CAAC;KACF,CAAC,CAAA;AACH,CAAC,EAhBgB,OAAO,KAAP,OAAO,QAgBvB"}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
import { Realm } from "../Realm";
|
|
3
|
+
import { Contact } from "./Contact";
|
|
2
4
|
import { Rule } from "./Rule";
|
|
3
5
|
export interface Creatable {
|
|
4
6
|
name: string;
|
|
5
|
-
address: string;
|
|
6
7
|
realm: Realm;
|
|
7
8
|
rules: Rule[];
|
|
9
|
+
contact?: Contact;
|
|
8
10
|
}
|
|
9
11
|
export declare namespace Creatable {
|
|
12
|
+
const type: isly.object.ExtendableType<Creatable>;
|
|
10
13
|
function is(value: any | Creatable): value is Creatable;
|
|
11
14
|
}
|
|
@@ -1,7 +1,15 @@
|
|
|
1
|
+
import { isly } from "isly";
|
|
1
2
|
import { Realm } from "../Realm";
|
|
3
|
+
import { Contact } from "./Contact";
|
|
2
4
|
import { Rule } from "./Rule";
|
|
3
5
|
export var Creatable;
|
|
4
6
|
(function (Creatable) {
|
|
7
|
+
Creatable.type = isly.object({
|
|
8
|
+
name: isly.string(),
|
|
9
|
+
realm: Realm.type,
|
|
10
|
+
rules: isly.fromIs("Rule", Rule.is).array(),
|
|
11
|
+
contact: Contact.type.optional(),
|
|
12
|
+
});
|
|
5
13
|
function is(value) {
|
|
6
14
|
return (value &&
|
|
7
15
|
typeof value == "object" &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Organization/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAS7B,MAAM,KAAW,SAAS,
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Organization/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAS7B,MAAM,KAAW,SAAS,CAoBzB;AApBD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,KAAK,EAAE,KAAK,CAAC,IAAI;QACjB,KAAK,EAAE,IAAI,CAAC,MAAM,CAAO,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE;QACjD,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,EAAE;KAChC,CAAC,CAAA;IACF,SAAgB,EAAE,CAAC,KAAsB;QACxC,OAAO,CACN,KAAK;YACL,OAAO,KAAK,IAAI,QAAQ;YACxB,OAAO,KAAK,CAAC,IAAI,IAAI,QAAQ;YAC7B,OAAO,KAAK,CAAC,OAAO,IAAI,QAAQ;YAChC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;YACrB,KAAK,CAAC,KAAK;YACX,OAAO,KAAK,CAAC,KAAK,IAAI,QAAQ;YAC9B,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;YAC1B,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAC1B,CAAA;IACF,CAAC;IAZe,YAAE,KAYjB,CAAA;AACF,CAAC,EApBgB,SAAS,KAAT,SAAS,QAoBzB"}
|