@pax2pay/model-banking 0.1.617 → 0.1.618
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.
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { isoly } from "isoly"
|
|
2
|
+
import { Emoney } from "../Emoney"
|
|
1
3
|
import { Base as ResultBase } from "./Base"
|
|
2
4
|
|
|
3
5
|
export interface InternalReconciliation extends ResultBase {
|
|
@@ -5,5 +7,11 @@ export interface InternalReconciliation extends ResultBase {
|
|
|
5
7
|
counterbalance: number
|
|
6
8
|
emoney: number
|
|
7
9
|
discrepancy: number
|
|
10
|
+
accounts: InternalReconciliation.Account[]
|
|
11
|
+
}
|
|
12
|
+
export namespace InternalReconciliation {
|
|
13
|
+
export interface Account extends Omit<Emoney, "balances"> {
|
|
14
|
+
balance: number
|
|
15
|
+
currency: isoly.Currency
|
|
16
|
+
}
|
|
8
17
|
}
|
|
9
|
-
export namespace InternalReconciliation {}
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { Emoney } from "../Emoney";
|
|
1
3
|
import { Base as ResultBase } from "./Base";
|
|
2
4
|
export interface InternalReconciliation extends ResultBase {
|
|
3
5
|
check: "internal reconciliation";
|
|
4
6
|
counterbalance: number;
|
|
5
7
|
emoney: number;
|
|
6
8
|
discrepancy: number;
|
|
9
|
+
accounts: InternalReconciliation.Account[];
|
|
10
|
+
}
|
|
11
|
+
export declare namespace InternalReconciliation {
|
|
12
|
+
interface Account extends Omit<Emoney, "balances"> {
|
|
13
|
+
balance: number;
|
|
14
|
+
currency: isoly.Currency;
|
|
15
|
+
}
|
|
7
16
|
}
|
|
8
|
-
export declare namespace InternalReconciliation { }
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
import { isoly } from "isoly";
|
|
2
|
+
import { Emoney } from "../Emoney";
|
|
1
3
|
import { Base as ResultBase } from "./Base";
|
|
2
4
|
export interface InternalReconciliation extends ResultBase {
|
|
3
5
|
check: "internal reconciliation";
|
|
4
6
|
counterbalance: number;
|
|
5
7
|
emoney: number;
|
|
6
8
|
discrepancy: number;
|
|
9
|
+
accounts: InternalReconciliation.Account[];
|
|
10
|
+
}
|
|
11
|
+
export declare namespace InternalReconciliation {
|
|
12
|
+
interface Account extends Omit<Emoney, "balances"> {
|
|
13
|
+
balance: number;
|
|
14
|
+
currency: isoly.Currency;
|
|
15
|
+
}
|
|
7
16
|
}
|
|
8
|
-
export declare namespace InternalReconciliation { }
|