@pax2pay/model-banking 0.1.147 → 0.1.148
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/Transaction/Creatable.ts +0 -4
- package/Transaction/Incoming.ts +9 -19
- package/Transaction/index.ts +9 -8
- package/dist/Transaction/Creatable.d.ts +0 -2
- package/dist/Transaction/Creatable.js +0 -2
- package/dist/Transaction/Creatable.js.map +1 -1
- package/dist/Transaction/Incoming.d.ts +5 -7
- package/dist/Transaction/Incoming.js +10 -12
- package/dist/Transaction/Incoming.js.map +1 -1
- package/dist/Transaction/index.d.ts +2 -6
- package/dist/Transaction/index.js +7 -7
- package/dist/Transaction/index.js.map +1 -1
- package/package.json +1 -1
package/Transaction/Creatable.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { isoly } from "isoly"
|
|
2
2
|
import { isly } from "isly"
|
|
3
|
-
import { Operation } from "../Operation"
|
|
4
3
|
import { Rail } from "../Rail"
|
|
5
4
|
|
|
6
5
|
export interface Creatable {
|
|
@@ -8,16 +7,13 @@ export interface Creatable {
|
|
|
8
7
|
currency: isoly.Currency
|
|
9
8
|
amount: number
|
|
10
9
|
description: string
|
|
11
|
-
operations?: Operation.Creatable[]
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export namespace Creatable {
|
|
15
12
|
export const type = isly.object<Creatable>({
|
|
16
13
|
counterpart: isly.fromIs("Rail", Rail.is),
|
|
17
14
|
currency: isly.fromIs("isoly.Currency", isoly.Currency.is),
|
|
18
15
|
amount: isly.number(),
|
|
19
16
|
description: isly.string(),
|
|
20
|
-
operations: isly.array(isly.fromIs("Operation.Creatable", Operation.Creatable.is)).optional(),
|
|
21
17
|
})
|
|
22
18
|
export const is = type.is
|
|
23
19
|
export const flaw = type.flaw
|
package/Transaction/Incoming.ts
CHANGED
|
@@ -1,29 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isly } from "isly"
|
|
2
2
|
import { Rail } from "../Rail"
|
|
3
3
|
import { Creatable as TransactionCreatable } from "./Creatable"
|
|
4
4
|
import { Reference as TransactionReference } from "./Reference"
|
|
5
5
|
|
|
6
6
|
export interface Incoming extends TransactionCreatable {
|
|
7
7
|
account: Rail
|
|
8
|
-
counterpart: Rail
|
|
9
|
-
currency: isoly.Currency
|
|
10
|
-
amount: number
|
|
11
|
-
reference?: TransactionReference
|
|
12
8
|
posted: string
|
|
13
|
-
|
|
9
|
+
reference?: TransactionReference
|
|
14
10
|
}
|
|
15
|
-
|
|
16
11
|
export namespace Incoming {
|
|
17
|
-
export
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
typeof value.amount == "number" &&
|
|
25
|
-
typeof value.posted == "string" &&
|
|
26
|
-
typeof value.description == "string"
|
|
27
|
-
)
|
|
28
|
-
}
|
|
12
|
+
export const type = TransactionCreatable.type.extend<Incoming>({
|
|
13
|
+
account: isly.fromIs("Rail", Rail.is),
|
|
14
|
+
posted: isly.string(),
|
|
15
|
+
reference: TransactionReference.type.optional(),
|
|
16
|
+
})
|
|
17
|
+
export const is = type.is
|
|
18
|
+
export const flaw = type.flaw
|
|
29
19
|
}
|
package/Transaction/index.ts
CHANGED
|
@@ -24,7 +24,6 @@ export interface Transaction extends Transaction.Creatable {
|
|
|
24
24
|
oldFlags: string[]
|
|
25
25
|
notes: Transaction.Note[]
|
|
26
26
|
}
|
|
27
|
-
|
|
28
27
|
export namespace Transaction {
|
|
29
28
|
export type Creatable = TransactionCreatable
|
|
30
29
|
export const Creatable = TransactionCreatable
|
|
@@ -44,15 +43,15 @@ export namespace Transaction {
|
|
|
44
43
|
accountId: isly.string(),
|
|
45
44
|
account: isly.fromIs("Rail", Rail.is),
|
|
46
45
|
id: isly.fromIs("cryptly.Identifier", cryptly.Identifier.is).readonly(),
|
|
47
|
-
reference:
|
|
46
|
+
reference: Reference.type.readonly().optional(),
|
|
48
47
|
posted: isly.string(),
|
|
49
48
|
transacted: isly.string().optional(),
|
|
50
49
|
balance: isly.number(),
|
|
51
|
-
operations:
|
|
50
|
+
operations: Operation.type.array(),
|
|
52
51
|
status: Status.type,
|
|
53
52
|
flags: isly.array(isly.string() || "review"),
|
|
54
53
|
oldFlags: isly.string().array(),
|
|
55
|
-
notes:
|
|
54
|
+
notes: Note.type.array(),
|
|
56
55
|
})
|
|
57
56
|
export const is = type.is
|
|
58
57
|
export const flaw = type.flaw
|
|
@@ -61,7 +60,8 @@ export namespace Transaction {
|
|
|
61
60
|
organization: string,
|
|
62
61
|
accountId: string,
|
|
63
62
|
account: Rail,
|
|
64
|
-
transaction: Creatable
|
|
63
|
+
transaction: Creatable,
|
|
64
|
+
operations: Operation.Creatable[],
|
|
65
65
|
result: number
|
|
66
66
|
): Transaction {
|
|
67
67
|
const id = cryptly.Identifier.generate(8)
|
|
@@ -78,7 +78,7 @@ export namespace Transaction {
|
|
|
78
78
|
posted: timestamp,
|
|
79
79
|
balance: result,
|
|
80
80
|
...transaction,
|
|
81
|
-
operations:
|
|
81
|
+
operations: operations.map(o => Operation.fromCreatable(id, o)),
|
|
82
82
|
status: "created",
|
|
83
83
|
flags: [],
|
|
84
84
|
oldFlags: [],
|
|
@@ -88,7 +88,8 @@ export namespace Transaction {
|
|
|
88
88
|
export function fromIncoming(
|
|
89
89
|
organization: string,
|
|
90
90
|
accountId: string,
|
|
91
|
-
transaction: Incoming
|
|
91
|
+
transaction: Incoming,
|
|
92
|
+
operations: Operation.Creatable[],
|
|
92
93
|
result: number
|
|
93
94
|
): Transaction {
|
|
94
95
|
const id = cryptly.Identifier.generate(8)
|
|
@@ -102,7 +103,7 @@ export namespace Transaction {
|
|
|
102
103
|
id: id,
|
|
103
104
|
balance: result,
|
|
104
105
|
...transaction,
|
|
105
|
-
operations:
|
|
106
|
+
operations: operations.map(o => Operation.fromCreatable(id, o)),
|
|
106
107
|
status: "created",
|
|
107
108
|
flags: [],
|
|
108
109
|
oldFlags: [],
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
2
|
import { isly } from "isly";
|
|
3
|
-
import { Operation } from "../Operation";
|
|
4
3
|
import { Rail } from "../Rail";
|
|
5
4
|
export interface Creatable {
|
|
6
5
|
counterpart: Rail;
|
|
7
6
|
currency: isoly.Currency;
|
|
8
7
|
amount: number;
|
|
9
8
|
description: string;
|
|
10
|
-
operations?: Operation.Creatable[];
|
|
11
9
|
}
|
|
12
10
|
export declare namespace Creatable {
|
|
13
11
|
const type: isly.object.ExtendableType<Creatable>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { isoly } from "isoly";
|
|
2
2
|
import { isly } from "isly";
|
|
3
|
-
import { Operation } from "../Operation";
|
|
4
3
|
import { Rail } from "../Rail";
|
|
5
4
|
export var Creatable;
|
|
6
5
|
(function (Creatable) {
|
|
@@ -9,7 +8,6 @@ export var Creatable;
|
|
|
9
8
|
currency: isly.fromIs("isoly.Currency", isoly.Currency.is),
|
|
10
9
|
amount: isly.number(),
|
|
11
10
|
description: isly.string(),
|
|
12
|
-
operations: isly.array(isly.fromIs("Operation.Creatable", Operation.Creatable.is)).optional(),
|
|
13
11
|
});
|
|
14
12
|
Creatable.is = Creatable.type.is;
|
|
15
13
|
Creatable.flaw = Creatable.type.flaw;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Transaction/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Transaction/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAQ9B,MAAM,KAAW,SAAS,CAUzB;AAVD,WAAiB,SAAS;IACZ,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1D,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;KAC1B,CAAC,CAAA;IACW,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;IAChB,aAAG,GAAG,UAAA,IAAI,CAAC,GAAG,CAAA;AAC5B,CAAC,EAVgB,SAAS,KAAT,SAAS,QAUzB"}
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isly } from "isly";
|
|
2
2
|
import { Rail } from "../Rail";
|
|
3
3
|
import { Creatable as TransactionCreatable } from "./Creatable";
|
|
4
4
|
import { Reference as TransactionReference } from "./Reference";
|
|
5
5
|
export interface Incoming extends TransactionCreatable {
|
|
6
6
|
account: Rail;
|
|
7
|
-
counterpart: Rail;
|
|
8
|
-
currency: isoly.Currency;
|
|
9
|
-
amount: number;
|
|
10
|
-
reference?: TransactionReference;
|
|
11
7
|
posted: string;
|
|
12
|
-
|
|
8
|
+
reference?: TransactionReference;
|
|
13
9
|
}
|
|
14
10
|
export declare namespace Incoming {
|
|
15
|
-
|
|
11
|
+
const type: isly.object.ExtendableType<Incoming>;
|
|
12
|
+
const is: isly.Type.IsFunction<Incoming>;
|
|
13
|
+
const flaw: isly.Type.FlawFunction;
|
|
16
14
|
}
|
|
@@ -1,17 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isly } from "isly";
|
|
2
2
|
import { Rail } from "../Rail";
|
|
3
|
+
import { Creatable as TransactionCreatable } from "./Creatable";
|
|
4
|
+
import { Reference as TransactionReference } from "./Reference";
|
|
3
5
|
export var Incoming;
|
|
4
6
|
(function (Incoming) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
typeof value.posted == "string" &&
|
|
13
|
-
typeof value.description == "string");
|
|
14
|
-
}
|
|
15
|
-
Incoming.is = is;
|
|
7
|
+
Incoming.type = TransactionCreatable.type.extend({
|
|
8
|
+
account: isly.fromIs("Rail", Rail.is),
|
|
9
|
+
posted: isly.string(),
|
|
10
|
+
reference: TransactionReference.type.optional(),
|
|
11
|
+
});
|
|
12
|
+
Incoming.is = Incoming.type.is;
|
|
13
|
+
Incoming.flaw = Incoming.type.flaw;
|
|
16
14
|
})(Incoming || (Incoming = {}));
|
|
17
15
|
//# sourceMappingURL=Incoming.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAO/D,MAAM,KAAW,QAAQ,CAQxB;AARD,WAAiB,QAAQ;IACX,aAAI,GAAG,oBAAoB,CAAC,IAAI,CAAC,MAAM,CAAW;QAC9D,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;QACrC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,oBAAoB,CAAC,IAAI,CAAC,QAAQ,EAAE;KAC/C,CAAC,CAAA;IACW,WAAE,GAAG,SAAA,IAAI,CAAC,EAAE,CAAA;IACZ,aAAI,GAAG,SAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EARgB,QAAQ,KAAR,QAAQ,QAQxB"}
|
|
@@ -41,12 +41,8 @@ export declare namespace Transaction {
|
|
|
41
41
|
const is: isly.Type.IsFunction<Transaction>;
|
|
42
42
|
const flaw: isly.Type.FlawFunction;
|
|
43
43
|
const get: isly.Type.GetFunction<Transaction>;
|
|
44
|
-
function fromCreatable(organization: string, accountId: string, account: Rail, transaction: Creatable
|
|
45
|
-
|
|
46
|
-
}, result: number): Transaction;
|
|
47
|
-
function fromIncoming(organization: string, accountId: string, transaction: Incoming & {
|
|
48
|
-
operations: Operation.Creatable[];
|
|
49
|
-
}, result: number): Transaction;
|
|
44
|
+
function fromCreatable(organization: string, accountId: string, account: Rail, transaction: Creatable, operations: Operation.Creatable[], result: number): Transaction;
|
|
45
|
+
function fromIncoming(organization: string, accountId: string, transaction: Incoming, operations: Operation.Creatable[], result: number): Transaction;
|
|
50
46
|
function isIdentifier(value: cryptly.Identifier | any): value is cryptly.Identifier;
|
|
51
47
|
function flag(transaction: Transaction, note: Note): void;
|
|
52
48
|
}
|
|
@@ -20,20 +20,20 @@ export var Transaction;
|
|
|
20
20
|
accountId: isly.string(),
|
|
21
21
|
account: isly.fromIs("Rail", Rail.is),
|
|
22
22
|
id: isly.fromIs("cryptly.Identifier", cryptly.Identifier.is).readonly(),
|
|
23
|
-
reference:
|
|
23
|
+
reference: Transaction.Reference.type.readonly().optional(),
|
|
24
24
|
posted: isly.string(),
|
|
25
25
|
transacted: isly.string().optional(),
|
|
26
26
|
balance: isly.number(),
|
|
27
|
-
operations:
|
|
27
|
+
operations: Operation.type.array(),
|
|
28
28
|
status: Transaction.Status.type,
|
|
29
29
|
flags: isly.array(isly.string() || "review"),
|
|
30
30
|
oldFlags: isly.string().array(),
|
|
31
|
-
notes:
|
|
31
|
+
notes: Transaction.Note.type.array(),
|
|
32
32
|
});
|
|
33
33
|
Transaction.is = Transaction.type.is;
|
|
34
34
|
Transaction.flaw = Transaction.type.flaw;
|
|
35
35
|
Transaction.get = Transaction.type.get;
|
|
36
|
-
function fromCreatable(organization, accountId, account, transaction, result) {
|
|
36
|
+
function fromCreatable(organization, accountId, account, transaction, operations, result) {
|
|
37
37
|
const id = cryptly.Identifier.generate(8);
|
|
38
38
|
const timestamp = isoly.DateTime.now();
|
|
39
39
|
if ("id" in transaction)
|
|
@@ -48,7 +48,7 @@ export var Transaction;
|
|
|
48
48
|
posted: timestamp,
|
|
49
49
|
balance: result,
|
|
50
50
|
...transaction,
|
|
51
|
-
operations:
|
|
51
|
+
operations: operations.map(o => Operation.fromCreatable(id, o)),
|
|
52
52
|
status: "created",
|
|
53
53
|
flags: [],
|
|
54
54
|
oldFlags: [],
|
|
@@ -56,7 +56,7 @@ export var Transaction;
|
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
58
|
Transaction.fromCreatable = fromCreatable;
|
|
59
|
-
function fromIncoming(organization, accountId, transaction, result) {
|
|
59
|
+
function fromIncoming(organization, accountId, transaction, operations, result) {
|
|
60
60
|
const id = cryptly.Identifier.generate(8);
|
|
61
61
|
if ("id" in transaction)
|
|
62
62
|
delete transaction.id;
|
|
@@ -68,7 +68,7 @@ export var Transaction;
|
|
|
68
68
|
id: id,
|
|
69
69
|
balance: result,
|
|
70
70
|
...transaction,
|
|
71
|
-
operations:
|
|
71
|
+
operations: operations.map(o => Operation.fromCreatable(id, o)),
|
|
72
72
|
status: "created",
|
|
73
73
|
flags: [],
|
|
74
74
|
oldFlags: [],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Transaction/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAC9B,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,QAAQ,IAAI,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAC5D,OAAO,EAAE,IAAI,IAAI,eAAe,EAAE,MAAM,QAAQ,CAAA;AAChD,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,MAAM,IAAI,iBAAiB,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"../","sources":["Transaction/index.ts"],"names":[],"mappings":"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"}
|