@konplit-services/common 1.0.130 → 1.0.132
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.
|
@@ -3,12 +3,11 @@ export declare enum SettlementActions {
|
|
|
3
3
|
SUBSTRACT = "SUBSTRACT"
|
|
4
4
|
}
|
|
5
5
|
export declare enum Settlement_TYPES {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
DELETED = "DELETED"
|
|
6
|
+
Split = "Split",
|
|
7
|
+
Main = "Main"
|
|
9
8
|
}
|
|
10
9
|
export declare enum Settlement_Status {
|
|
11
10
|
PENDING = "PENDING",
|
|
12
11
|
FAILED = "FAILED",
|
|
13
|
-
|
|
12
|
+
SETTLED = "SETTLED"
|
|
14
13
|
}
|
|
@@ -6,15 +6,15 @@ var SettlementActions;
|
|
|
6
6
|
SettlementActions["ADD"] = "ADD";
|
|
7
7
|
SettlementActions["SUBSTRACT"] = "SUBSTRACT";
|
|
8
8
|
})(SettlementActions = exports.SettlementActions || (exports.SettlementActions = {}));
|
|
9
|
+
//This status indicates if the payment is split between two or more account numbers
|
|
9
10
|
var Settlement_TYPES;
|
|
10
11
|
(function (Settlement_TYPES) {
|
|
11
|
-
Settlement_TYPES["
|
|
12
|
-
Settlement_TYPES["
|
|
13
|
-
Settlement_TYPES["DELETED"] = "DELETED";
|
|
12
|
+
Settlement_TYPES["Split"] = "Split";
|
|
13
|
+
Settlement_TYPES["Main"] = "Main";
|
|
14
14
|
})(Settlement_TYPES = exports.Settlement_TYPES || (exports.Settlement_TYPES = {}));
|
|
15
15
|
var Settlement_Status;
|
|
16
16
|
(function (Settlement_Status) {
|
|
17
17
|
Settlement_Status["PENDING"] = "PENDING";
|
|
18
18
|
Settlement_Status["FAILED"] = "FAILED";
|
|
19
|
-
Settlement_Status["
|
|
19
|
+
Settlement_Status["SETTLED"] = "SETTLED";
|
|
20
20
|
})(Settlement_Status = exports.Settlement_Status || (exports.Settlement_Status = {}));
|