@stashfin/mysql2 1.3.4 → 1.3.7
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/models/BBPSProviders.d.ts +23 -0
- package/models/BBPSProviders.js +2 -0
- package/models/BBPSTransactions.d.ts +26 -0
- package/models/BBPSTransactions.js +2 -0
- package/models/BBPSUtilities.d.ts +13 -0
- package/models/BBPSUtilities.js +2 -0
- package/models/BBPSVendor.d.ts +11 -0
- package/models/BBPSVendor.js +2 -0
- package/models/Customer.d.ts +6 -0
- package/models/Installments.d.ts +36 -0
- package/models/Installments.js +2 -0
- package/models/StashCash.d.ts +3 -2
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export type JSONPrimitive = string | number | boolean | null;
|
|
3
|
+
export type JSONValue = JSONObject | JSONArray;
|
|
4
|
+
export type JSONObject = {
|
|
5
|
+
[member: string]: JSONPrimitive;
|
|
6
|
+
};
|
|
7
|
+
export type JSONArray = Array<JSONValue>;
|
|
8
|
+
export interface BBPSProvidersTable {
|
|
9
|
+
id: number;
|
|
10
|
+
name: string;
|
|
11
|
+
logo: string;
|
|
12
|
+
state: string;
|
|
13
|
+
data: JSONValue;
|
|
14
|
+
utilityid: number;
|
|
15
|
+
vendorid: number;
|
|
16
|
+
billerid: string;
|
|
17
|
+
created_at: Date;
|
|
18
|
+
updated_at: Date;
|
|
19
|
+
is_active: number;
|
|
20
|
+
is_deleted: number;
|
|
21
|
+
}
|
|
22
|
+
export interface BBPSProvidersModel extends BBPSProvidersTable, RowDataPacket {
|
|
23
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface BBPSTransactionsTable {
|
|
3
|
+
id: number;
|
|
4
|
+
customerid: number;
|
|
5
|
+
utilityid: number;
|
|
6
|
+
providerid: number;
|
|
7
|
+
account: string;
|
|
8
|
+
billamount: number;
|
|
9
|
+
amount: number;
|
|
10
|
+
discount: number;
|
|
11
|
+
promo: string;
|
|
12
|
+
duedate: Date;
|
|
13
|
+
status: string;
|
|
14
|
+
mode: string;
|
|
15
|
+
paymentid: string;
|
|
16
|
+
txnid: string;
|
|
17
|
+
attempted_at: Date;
|
|
18
|
+
paid_at: Date;
|
|
19
|
+
processed_at: Date;
|
|
20
|
+
created_at: Date;
|
|
21
|
+
updated_at: Date;
|
|
22
|
+
is_active: number;
|
|
23
|
+
is_deleted: number;
|
|
24
|
+
}
|
|
25
|
+
export interface BBPSTransactionsModel extends BBPSTransactionsTable, RowDataPacket {
|
|
26
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface BBPSUtilitiesTable {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
logo: string;
|
|
6
|
+
vendorid: number;
|
|
7
|
+
created_at: Date;
|
|
8
|
+
updated_at: Date;
|
|
9
|
+
is_active: number;
|
|
10
|
+
is_deleted: number;
|
|
11
|
+
}
|
|
12
|
+
export interface BBPSUtilitiesModel extends BBPSUtilitiesTable, RowDataPacket {
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface BBPSVendorsTable {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
created_at: Date;
|
|
6
|
+
updated_at: Date;
|
|
7
|
+
is_active: number;
|
|
8
|
+
is_deleted: number;
|
|
9
|
+
}
|
|
10
|
+
export interface BBPSVendorsModel extends BBPSVendorsTable, RowDataPacket {
|
|
11
|
+
}
|
package/models/Customer.d.ts
CHANGED
|
@@ -41,6 +41,12 @@ export interface CustomerTable {
|
|
|
41
41
|
tnc_version?: string | null;
|
|
42
42
|
login_date?: Date | null;
|
|
43
43
|
agent_id?: number | null;
|
|
44
|
+
/** Defaults to: new */
|
|
45
|
+
application_type?: string | null;
|
|
46
|
+
/** Defaults to: incomplete */
|
|
47
|
+
application_status?: string | null;
|
|
48
|
+
/** Defaults to: organic */
|
|
49
|
+
customer_type?: string | null;
|
|
44
50
|
/** Defaults to: CURRENT_TIMESTAMP. */
|
|
45
51
|
created_at?: Date | null;
|
|
46
52
|
/** Defaults to: CURRENT_TIMESTAMP. */
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export type JSONPrimitive = string | number | boolean | null;
|
|
3
|
+
export type JSONValue = JSONObject | JSONArray;
|
|
4
|
+
export type JSONObject = {
|
|
5
|
+
[member: string]: JSONPrimitive;
|
|
6
|
+
};
|
|
7
|
+
export type JSONArray = Array<JSONValue>;
|
|
8
|
+
export interface InstallmentsTable {
|
|
9
|
+
id?: number | null;
|
|
10
|
+
customer_id: number | null;
|
|
11
|
+
loan_id?: number | null;
|
|
12
|
+
seq_no: number | null;
|
|
13
|
+
amount?: number | null;
|
|
14
|
+
principal?: number | null;
|
|
15
|
+
interest?: number | null;
|
|
16
|
+
penalty?: number | null;
|
|
17
|
+
r_principal?: number | null;
|
|
18
|
+
r_interest?: number | null;
|
|
19
|
+
r_penalty?: number | null;
|
|
20
|
+
r_pif_principal?: number | null;
|
|
21
|
+
r_pif_interest?: number | null;
|
|
22
|
+
r_pif_penalty?: number | null;
|
|
23
|
+
status?: 'active' | 'closed' | 'delayed' | 'paid' | 'future' | null;
|
|
24
|
+
dpd?: number | null;
|
|
25
|
+
due_date?: Date | null;
|
|
26
|
+
discount?: number | null;
|
|
27
|
+
starting_balance?: number | null;
|
|
28
|
+
ending_balance?: number | null;
|
|
29
|
+
closed_at?: Date | null;
|
|
30
|
+
created_at?: Date | null;
|
|
31
|
+
updated_at?: Date | null;
|
|
32
|
+
is_active?: number | null;
|
|
33
|
+
is_deleted?: number | null;
|
|
34
|
+
}
|
|
35
|
+
export interface InstallmentsModel extends InstallmentsTable, RowDataPacket {
|
|
36
|
+
}
|
package/models/StashCash.d.ts
CHANGED
|
@@ -23,8 +23,9 @@ export interface StashCashTrascationTable {
|
|
|
23
23
|
locked: number;
|
|
24
24
|
unlocked: number;
|
|
25
25
|
remaining: number;
|
|
26
|
-
txn_type: 'debit' | 'credit'
|
|
27
|
-
|
|
26
|
+
txn_type: 'debit' | 'credit';
|
|
27
|
+
sub_type: 'rewarded' | 'paid' | 'expired' | 'reversed' | 'transferred';
|
|
28
|
+
status?: 'pending' | 'success' | 'failure';
|
|
28
29
|
expiry?: Date | null;
|
|
29
30
|
is_expired: boolean;
|
|
30
31
|
/** Defaults to: CURRENT_TIMESTAMP. */
|