@stashfin/mysql2 1.4.616 → 1.4.617
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/EQXCustomerModels.d.ts +24 -0
- package/models/StCustomerFlags.d.ts +70 -0
- package/models/StCustomerFlags.js +2 -0
- package/models/StCustomerLandingPage.d.ts +37 -0
- package/models/StCustomerLandingPage.js +2 -0
- package/package.json +1 -1
- package/models/StCkycCustomerDetails.d.ts +0 -29
- /package/models/{StCkycCustomerDetails.js → EQXCustomerModels.js} +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { RowDataPacket } from "mysql2";
|
|
2
|
+
interface EqxCustomersTable {
|
|
3
|
+
id: number;
|
|
4
|
+
mobile: string;
|
|
5
|
+
first_name?: string;
|
|
6
|
+
last_name?: string;
|
|
7
|
+
upi_number?: string;
|
|
8
|
+
upi_onboarding_status?: boolean;
|
|
9
|
+
device_id?: string;
|
|
10
|
+
push_id?: string;
|
|
11
|
+
login_ip?: string;
|
|
12
|
+
vpa?: string;
|
|
13
|
+
referral_code?: string;
|
|
14
|
+
token?: string;
|
|
15
|
+
email?: string;
|
|
16
|
+
biometric_enabled?: boolean;
|
|
17
|
+
status?: string;
|
|
18
|
+
is_deleted?: boolean;
|
|
19
|
+
created_at?: Date;
|
|
20
|
+
updated_at?: Date;
|
|
21
|
+
}
|
|
22
|
+
export interface EqxCustomerModel extends EqxCustomersTable, RowDataPacket {
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { RowDataPacket } from "mysql2";
|
|
2
|
+
export interface StCustomerFlagsTable {
|
|
3
|
+
id: number;
|
|
4
|
+
foreclose?: number | null;
|
|
5
|
+
foreclose_enable_date?: string | null;
|
|
6
|
+
doc_return?: number | null;
|
|
7
|
+
free_loc_eligible?: number | null;
|
|
8
|
+
free_loc_eligible_bank?: number | null;
|
|
9
|
+
interest_free_period: number;
|
|
10
|
+
lang?: string | null;
|
|
11
|
+
is_user_rating?: number | null;
|
|
12
|
+
is_qr_verify?: number | null;
|
|
13
|
+
customer_hash?: string | null;
|
|
14
|
+
whatsapp_apply?: number | null;
|
|
15
|
+
whatsapp_apply_date?: string | null;
|
|
16
|
+
snooze_my_emi?: number | null;
|
|
17
|
+
contactFound?: number | null;
|
|
18
|
+
firebase_reg_id?: string | null;
|
|
19
|
+
firebase_reg_id_date?: string | null;
|
|
20
|
+
colender_changed?: number | null;
|
|
21
|
+
referral_payout_status?: number | null;
|
|
22
|
+
refer_status?: number | null;
|
|
23
|
+
is_grad_eligible?: number | null;
|
|
24
|
+
grad_eligible_date?: string | null;
|
|
25
|
+
elev8_bankStatement?: string | null;
|
|
26
|
+
cashback_eligible?: number | null;
|
|
27
|
+
sup_status?: number | null;
|
|
28
|
+
imps_enable?: number | null;
|
|
29
|
+
ad_uid?: string | null;
|
|
30
|
+
cb_eligible?: number | null;
|
|
31
|
+
okyc_partner?: number | null;
|
|
32
|
+
cd_loan?: number | null;
|
|
33
|
+
free_credit_period?: number | null;
|
|
34
|
+
cashback_eligible_ext?: number | null;
|
|
35
|
+
free_loc_eligible_bank_flag?: number | null;
|
|
36
|
+
is_elev8_loc?: number | null;
|
|
37
|
+
ticket_priority?: number | null;
|
|
38
|
+
libr8_inactive?: number | null;
|
|
39
|
+
p2p_enable?: number | null;
|
|
40
|
+
click_to_call?: number | null;
|
|
41
|
+
ym_chat?: number | null;
|
|
42
|
+
ref_status?: number | null;
|
|
43
|
+
is_self_funding?: number | null;
|
|
44
|
+
free_loc_eligible_amazonpay?: number | null;
|
|
45
|
+
upi_mandate_eligible?: number | null;
|
|
46
|
+
amazon_loc_eligible?: number | null;
|
|
47
|
+
gift_card_loc_eligible?: number | null;
|
|
48
|
+
is_elev8?: number | null;
|
|
49
|
+
customer_id?: number | null;
|
|
50
|
+
manual_assign_elev8?: number | null;
|
|
51
|
+
cli_eligible?: number | null;
|
|
52
|
+
repeat_journey?: number | null;
|
|
53
|
+
cli_verify_otp_eligible?: number | null;
|
|
54
|
+
cli_verify_update_date?: string | null;
|
|
55
|
+
partner_score?: number | null;
|
|
56
|
+
email_update_count?: number | null;
|
|
57
|
+
email_update_time?: string | null;
|
|
58
|
+
cb_success?: number | null;
|
|
59
|
+
implicit_cli?: number | null;
|
|
60
|
+
dob_update?: number | null;
|
|
61
|
+
is_offer_discount_clicked?: number | null;
|
|
62
|
+
is_elev8_libr8?: number | null;
|
|
63
|
+
gold_eligible?: number | null;
|
|
64
|
+
gold_history_eligible?: number | null;
|
|
65
|
+
loc_disable: number;
|
|
66
|
+
delete_account: number;
|
|
67
|
+
unlock_disbursal?: number | null;
|
|
68
|
+
}
|
|
69
|
+
export interface StCustomerFlagsModel extends StCustomerFlagsTable, RowDataPacket {
|
|
70
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { RowDataPacket } from 'mysql2';
|
|
2
|
+
export interface StCustomerLandingPageTable {
|
|
3
|
+
id: number;
|
|
4
|
+
customer_id?: number | null;
|
|
5
|
+
last_page_id?: number | null;
|
|
6
|
+
next_page_id?: number | null;
|
|
7
|
+
create_date: string;
|
|
8
|
+
update_date: string;
|
|
9
|
+
approve_submitted?: number | null;
|
|
10
|
+
document_submitted?: number | null;
|
|
11
|
+
conf_basic_details_submitted?: number | null;
|
|
12
|
+
congratulation_submitted?: number | null;
|
|
13
|
+
profile_pic?: string | null;
|
|
14
|
+
notification_status?: number | null;
|
|
15
|
+
repeat_journey_date?: Date | null;
|
|
16
|
+
repeat_journey_flag?: number | null;
|
|
17
|
+
elev8_address?: number | null;
|
|
18
|
+
check_eligibility_date_time?: Date | null;
|
|
19
|
+
libr8_approve_submit?: number | null;
|
|
20
|
+
enhance_loc_approved?: number | null;
|
|
21
|
+
min_loc_request?: number | null;
|
|
22
|
+
address_doc_submit?: number | null;
|
|
23
|
+
application_status?: number | null;
|
|
24
|
+
credit_line_congratulation?: number | null;
|
|
25
|
+
grad_doc_submited?: number | null;
|
|
26
|
+
cb_intro?: number | null;
|
|
27
|
+
grad_approved_submit?: number | null;
|
|
28
|
+
cb_eligible_status?: number | null;
|
|
29
|
+
entered_name?: string | null;
|
|
30
|
+
grad_address_verify?: number | null;
|
|
31
|
+
landing_pages?: string | null;
|
|
32
|
+
product_selected?: number | null;
|
|
33
|
+
product_log?: Record<string, any> | null;
|
|
34
|
+
uuid?: string | null;
|
|
35
|
+
}
|
|
36
|
+
export interface StCustomerLandingPageModel extends StCustomerLandingPageTable, RowDataPacket {
|
|
37
|
+
}
|
package/package.json
CHANGED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { RowDataPacket } from 'mysql2';
|
|
2
|
-
export interface StCkycCustomerDetailsTable {
|
|
3
|
-
id: number;
|
|
4
|
-
customer_id: number;
|
|
5
|
-
loan_id?: number;
|
|
6
|
-
request_id?: string;
|
|
7
|
-
request_status?: string;
|
|
8
|
-
transaction_id?: string;
|
|
9
|
-
transaction_status?: string;
|
|
10
|
-
transaction_rejection_status?: string;
|
|
11
|
-
ckyc_available?: string;
|
|
12
|
-
ckyc_account_number?: string;
|
|
13
|
-
ckyc_id?: string;
|
|
14
|
-
e_ckyc_id?: string;
|
|
15
|
-
ckyc_age?: string;
|
|
16
|
-
ckyc_father_name?: string;
|
|
17
|
-
ckyc_gen_date?: Date;
|
|
18
|
-
ckyc_name?: string;
|
|
19
|
-
ckyc_request_date?: string;
|
|
20
|
-
ckyc_update_date?: string;
|
|
21
|
-
ckyc_availableid_type?: string;
|
|
22
|
-
ckyc_availableid_type_status?: string;
|
|
23
|
-
create_date?: Date;
|
|
24
|
-
update_date?: Date;
|
|
25
|
-
e_ckyc_id_s?: string;
|
|
26
|
-
ckyc_reference_id?: string;
|
|
27
|
-
}
|
|
28
|
-
export interface StCkycCustomerDetailsModel extends StCkycCustomerDetailsTable, RowDataPacket {
|
|
29
|
-
}
|
|
File without changes
|