@stashfin/mysql2 1.4.249 → 1.4.251
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.
|
@@ -5,7 +5,10 @@ declare enum TransactionType {
|
|
|
5
5
|
GLOBAL = "global",
|
|
6
6
|
SELF = "self",
|
|
7
7
|
M2P = "m2p",
|
|
8
|
-
COLLECT = "collect"
|
|
8
|
+
COLLECT = "collect",
|
|
9
|
+
LITE_PAY = "lite-pay",
|
|
10
|
+
LITE_LOAD = "lite-load",
|
|
11
|
+
LITE_TOP_UP = "lite-top-up"
|
|
9
12
|
}
|
|
10
13
|
declare enum TransactionStatus {
|
|
11
14
|
SUCCESS = "success",
|
|
@@ -21,12 +24,17 @@ export interface UPITransactionTable {
|
|
|
21
24
|
note?: string;
|
|
22
25
|
txn_type: TransactionType;
|
|
23
26
|
txn_status: TransactionStatus;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
payee_id?: number;
|
|
27
|
+
utr?: string;
|
|
28
|
+
lite_lrn?: string;
|
|
27
29
|
payee_vpa?: string;
|
|
28
30
|
payer_id?: number;
|
|
29
31
|
payer_vpa?: string;
|
|
32
|
+
payee_name?: string;
|
|
33
|
+
payee_acc_number?: string;
|
|
34
|
+
payee_acc_provider?: string;
|
|
35
|
+
payee_acc_type?: string;
|
|
36
|
+
payee_ifsc?: string;
|
|
37
|
+
payee_code?: string;
|
|
30
38
|
response_code?: string;
|
|
31
39
|
response_message?: string;
|
|
32
40
|
paid_at?: Date;
|
|
@@ -8,6 +8,9 @@ var TransactionType;
|
|
|
8
8
|
TransactionType["SELF"] = "self";
|
|
9
9
|
TransactionType["M2P"] = "m2p";
|
|
10
10
|
TransactionType["COLLECT"] = "collect";
|
|
11
|
+
TransactionType["LITE_PAY"] = "lite-pay";
|
|
12
|
+
TransactionType["LITE_LOAD"] = "lite-load";
|
|
13
|
+
TransactionType["LITE_TOP_UP"] = "lite-top-up";
|
|
11
14
|
})(TransactionType || (TransactionType = {}));
|
|
12
15
|
var TransactionStatus;
|
|
13
16
|
(function (TransactionStatus) {
|