@pax2pay/model-banking 0.1.107 → 0.1.109
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/Settlement/Entry.ts +4 -0
- package/Settlement/index.ts +21 -13
- package/dist/Settlement/Entry.d.ts +2 -0
- package/dist/Settlement/Entry.js +2 -0
- package/dist/Settlement/Entry.js.map +1 -1
- package/dist/Settlement/index.d.ts +9 -6
- package/dist/Settlement/index.js +5 -4
- package/dist/Settlement/index.js.map +1 -1
- package/package.json +1 -1
package/Settlement/Entry.ts
CHANGED
|
@@ -10,6 +10,7 @@ export interface Succeeded {
|
|
|
10
10
|
type: "capture" | "cancel" | "refund"
|
|
11
11
|
account: string
|
|
12
12
|
card: { id: string; token: string; iin: string; last4: string }
|
|
13
|
+
authorization: string
|
|
13
14
|
transaction: { id: string; posted: isoly.DateTime; description: string }
|
|
14
15
|
amount: [isoly.Currency, number]
|
|
15
16
|
fee: [isoly.Currency, number]
|
|
@@ -21,6 +22,7 @@ export interface Failed {
|
|
|
21
22
|
type?: "capture" | "cancel" | "refund"
|
|
22
23
|
account?: string
|
|
23
24
|
card?: { id: string; token: string; iin: string; last4: string }
|
|
25
|
+
authorization?: string
|
|
24
26
|
transaction?: { id: string; posted: isoly.DateTime; description: string }
|
|
25
27
|
amount?: [isoly.Currency, number]
|
|
26
28
|
fee?: [isoly.Currency, number]
|
|
@@ -39,6 +41,7 @@ export namespace Entry {
|
|
|
39
41
|
iin: isly.string(),
|
|
40
42
|
last4: isly.string(),
|
|
41
43
|
}),
|
|
44
|
+
authorization: isly.string(),
|
|
42
45
|
transaction: isly.object<{ id: string; posted: string; description: string }>({
|
|
43
46
|
id: isly.string(),
|
|
44
47
|
posted: isly.fromIs("transaction.posted", isoly.DateTime.is),
|
|
@@ -64,6 +67,7 @@ export namespace Entry {
|
|
|
64
67
|
last4: isly.string(),
|
|
65
68
|
})
|
|
66
69
|
.optional(),
|
|
70
|
+
authorization: isly.string().optional(),
|
|
67
71
|
transaction: isly
|
|
68
72
|
.object<{ id: string; posted: string; description: string }>({
|
|
69
73
|
id: isly.string(),
|
package/Settlement/index.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Entry as SettlementEntry } from "./Entry"
|
|
|
4
4
|
|
|
5
5
|
export type Settlement = Settlement.Succeeded | Settlement.Failed | Settlement.Ongoing
|
|
6
6
|
export namespace Settlement {
|
|
7
|
-
export type Summary = Omit<Settlement.Succeeded, "entries"> | Settlement.Failed | Settlement.Ongoing
|
|
7
|
+
export type Summary = Omit<Settlement.Succeeded, "entries"> | Settlement.Failed | Omit<Settlement.Ongoing, "entries">
|
|
8
8
|
export interface Base {
|
|
9
9
|
id: string
|
|
10
10
|
created: [string, isoly.DateTime]
|
|
@@ -13,11 +13,11 @@ export namespace Settlement {
|
|
|
13
13
|
status: string
|
|
14
14
|
}
|
|
15
15
|
export interface Succeeded extends Base {
|
|
16
|
-
|
|
16
|
+
status: "succeeded"
|
|
17
17
|
amount: Partial<Record<isoly.Currency, number>>
|
|
18
18
|
fee: Partial<Record<isoly.Currency, number>>
|
|
19
19
|
entries: SettlementEntry[]
|
|
20
|
-
|
|
20
|
+
settled: { user: string; created: isoly.DateTime; transactions: Record<string, [isoly.Currency, number]> }
|
|
21
21
|
}
|
|
22
22
|
export interface Failed extends Base {
|
|
23
23
|
status: "failed"
|
|
@@ -25,6 +25,9 @@ export namespace Settlement {
|
|
|
25
25
|
}
|
|
26
26
|
export interface Ongoing extends Base {
|
|
27
27
|
status: "ongoing"
|
|
28
|
+
amount: Partial<Record<isoly.Currency, number>>
|
|
29
|
+
fee: Partial<Record<isoly.Currency, number>>
|
|
30
|
+
entries: SettlementEntry[]
|
|
28
31
|
}
|
|
29
32
|
|
|
30
33
|
export namespace Succeeded {
|
|
@@ -33,16 +36,18 @@ export namespace Settlement {
|
|
|
33
36
|
created: isly.tuple(isly.string(), isly.fromIs("Settlement.created", isoly.DateTime.is)),
|
|
34
37
|
regarding: isly.fromIs("Settlement.regarding", isoly.Date.is),
|
|
35
38
|
configuration: isly.string(),
|
|
36
|
-
settled: isly
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
39
|
+
settled: isly.object<{
|
|
40
|
+
user: string
|
|
41
|
+
created: isoly.DateTime
|
|
42
|
+
transactions: Record<string, [isoly.Currency, number]>
|
|
43
|
+
}>({
|
|
44
|
+
user: isly.string(),
|
|
45
|
+
created: isly.fromIs("Settlement.settled.created", isoly.DateTime.is),
|
|
46
|
+
transactions: isly.record(
|
|
47
|
+
isly.string(),
|
|
48
|
+
isly.tuple(isly.fromIs("Settlement.settled.transactions.currency", isoly.Currency.is), isly.number())
|
|
49
|
+
),
|
|
50
|
+
}),
|
|
46
51
|
amount: isly.record(isly.fromIs("Settlement.entries.amount", isoly.Currency.is), isly.number()),
|
|
47
52
|
fee: isly.record(isly.fromIs("Settlement.entries.fee", isoly.Currency.is), isly.number()),
|
|
48
53
|
entries: SettlementEntry.type.array(),
|
|
@@ -67,6 +72,9 @@ export namespace Settlement {
|
|
|
67
72
|
created: isly.tuple(isly.string(), isly.fromIs("Settlement.created", isoly.DateTime.is)),
|
|
68
73
|
regarding: isly.fromIs("Settlement.regarding", isoly.Date.is),
|
|
69
74
|
configuration: isly.string(),
|
|
75
|
+
amount: isly.record(isly.fromIs("Settlement.entries.amount", isoly.Currency.is), isly.number()),
|
|
76
|
+
fee: isly.record(isly.fromIs("Settlement.entries.fee", isoly.Currency.is), isly.number()),
|
|
77
|
+
entries: SettlementEntry.type.array(),
|
|
70
78
|
status: isly.string("ongoing"),
|
|
71
79
|
})
|
|
72
80
|
export const is = type.is
|
|
@@ -13,6 +13,7 @@ export interface Succeeded {
|
|
|
13
13
|
iin: string;
|
|
14
14
|
last4: string;
|
|
15
15
|
};
|
|
16
|
+
authorization: string;
|
|
16
17
|
transaction: {
|
|
17
18
|
id: string;
|
|
18
19
|
posted: isoly.DateTime;
|
|
@@ -33,6 +34,7 @@ export interface Failed {
|
|
|
33
34
|
iin: string;
|
|
34
35
|
last4: string;
|
|
35
36
|
};
|
|
37
|
+
authorization?: string;
|
|
36
38
|
transaction?: {
|
|
37
39
|
id: string;
|
|
38
40
|
posted: isoly.DateTime;
|
package/dist/Settlement/Entry.js
CHANGED
|
@@ -16,6 +16,7 @@ export var Entry;
|
|
|
16
16
|
iin: isly.string(),
|
|
17
17
|
last4: isly.string(),
|
|
18
18
|
}),
|
|
19
|
+
authorization: isly.string(),
|
|
19
20
|
transaction: isly.object({
|
|
20
21
|
id: isly.string(),
|
|
21
22
|
posted: isly.fromIs("transaction.posted", isoly.DateTime.is),
|
|
@@ -42,6 +43,7 @@ export var Entry;
|
|
|
42
43
|
last4: isly.string(),
|
|
43
44
|
})
|
|
44
45
|
.optional(),
|
|
46
|
+
authorization: isly.string().optional(),
|
|
45
47
|
transaction: isly
|
|
46
48
|
.object({
|
|
47
49
|
id: isly.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Entry.js","sourceRoot":"../","sources":["Settlement/Entry.ts"],"names":[],"mappings":"AAAA,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,QAAQ,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"Entry.js","sourceRoot":"../","sources":["Settlement/Entry.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import { isly } from "isly";
|
|
|
3
3
|
import { Entry as SettlementEntry } from "./Entry";
|
|
4
4
|
export type Settlement = Settlement.Succeeded | Settlement.Failed | Settlement.Ongoing;
|
|
5
5
|
export declare namespace Settlement {
|
|
6
|
-
type Summary = Omit<Settlement.Succeeded, "entries"> | Settlement.Failed | Settlement.Ongoing
|
|
6
|
+
type Summary = Omit<Settlement.Succeeded, "entries"> | Settlement.Failed | Omit<Settlement.Ongoing, "entries">;
|
|
7
7
|
interface Base {
|
|
8
8
|
id: string;
|
|
9
9
|
created: [string, isoly.DateTime];
|
|
@@ -12,15 +12,15 @@ export declare namespace Settlement {
|
|
|
12
12
|
status: string;
|
|
13
13
|
}
|
|
14
14
|
interface Succeeded extends Base {
|
|
15
|
-
|
|
15
|
+
status: "succeeded";
|
|
16
|
+
amount: Partial<Record<isoly.Currency, number>>;
|
|
17
|
+
fee: Partial<Record<isoly.Currency, number>>;
|
|
18
|
+
entries: SettlementEntry[];
|
|
19
|
+
settled: {
|
|
16
20
|
user: string;
|
|
17
21
|
created: isoly.DateTime;
|
|
18
22
|
transactions: Record<string, [isoly.Currency, number]>;
|
|
19
23
|
};
|
|
20
|
-
amount: Partial<Record<isoly.Currency, number>>;
|
|
21
|
-
fee: Partial<Record<isoly.Currency, number>>;
|
|
22
|
-
entries: SettlementEntry[];
|
|
23
|
-
status: "succeeded";
|
|
24
24
|
}
|
|
25
25
|
interface Failed extends Base {
|
|
26
26
|
status: "failed";
|
|
@@ -28,6 +28,9 @@ export declare namespace Settlement {
|
|
|
28
28
|
}
|
|
29
29
|
interface Ongoing extends Base {
|
|
30
30
|
status: "ongoing";
|
|
31
|
+
amount: Partial<Record<isoly.Currency, number>>;
|
|
32
|
+
fee: Partial<Record<isoly.Currency, number>>;
|
|
33
|
+
entries: SettlementEntry[];
|
|
31
34
|
}
|
|
32
35
|
namespace Succeeded {
|
|
33
36
|
const type: isly.object.ExtendableType<Succeeded>;
|
package/dist/Settlement/index.js
CHANGED
|
@@ -10,13 +10,11 @@ export var Settlement;
|
|
|
10
10
|
created: isly.tuple(isly.string(), isly.fromIs("Settlement.created", isoly.DateTime.is)),
|
|
11
11
|
regarding: isly.fromIs("Settlement.regarding", isoly.Date.is),
|
|
12
12
|
configuration: isly.string(),
|
|
13
|
-
settled: isly
|
|
14
|
-
.object({
|
|
13
|
+
settled: isly.object({
|
|
15
14
|
user: isly.string(),
|
|
16
15
|
created: isly.fromIs("Settlement.settled.created", isoly.DateTime.is),
|
|
17
16
|
transactions: isly.record(isly.string(), isly.tuple(isly.fromIs("Settlement.settled.transactions.currency", isoly.Currency.is), isly.number())),
|
|
18
|
-
})
|
|
19
|
-
.optional(),
|
|
17
|
+
}),
|
|
20
18
|
amount: isly.record(isly.fromIs("Settlement.entries.amount", isoly.Currency.is), isly.number()),
|
|
21
19
|
fee: isly.record(isly.fromIs("Settlement.entries.fee", isoly.Currency.is), isly.number()),
|
|
22
20
|
entries: SettlementEntry.type.array(),
|
|
@@ -43,6 +41,9 @@ export var Settlement;
|
|
|
43
41
|
created: isly.tuple(isly.string(), isly.fromIs("Settlement.created", isoly.DateTime.is)),
|
|
44
42
|
regarding: isly.fromIs("Settlement.regarding", isoly.Date.is),
|
|
45
43
|
configuration: isly.string(),
|
|
44
|
+
amount: isly.record(isly.fromIs("Settlement.entries.amount", isoly.Currency.is), isly.number()),
|
|
45
|
+
fee: isly.record(isly.fromIs("Settlement.entries.fee", isoly.Currency.is), isly.number()),
|
|
46
|
+
entries: SettlementEntry.type.array(),
|
|
46
47
|
status: isly.string("ongoing"),
|
|
47
48
|
});
|
|
48
49
|
Ongoing.is = Ongoing.type.is;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,KAAK,IAAI,eAAe,EAAE,MAAM,SAAS,CAAA;AAGlD,MAAM,KAAW,UAAU,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Settlement/index.ts"],"names":[],"mappings":"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"}
|