@stashfin/mysql2 1.4.106 → 1.4.111
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/Customer.d.ts +4 -0
- package/models/Payments.d.ts +1 -2
- package/models/PaymentsAddOns.d.ts +1 -2
- package/models/PaymentsNach.d.ts +2 -0
- package/package.json +1 -1
- package/models/Banners.d.ts +0 -21
- package/models/Banners.js +0 -2
package/models/Customer.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export interface CustomerTable {
|
|
|
39
39
|
app_version?: string | null;
|
|
40
40
|
biometric_enabled?: number | null;
|
|
41
41
|
journey_sequence?: number | null;
|
|
42
|
+
journey_status?: string | null;
|
|
42
43
|
category?: Category | null;
|
|
43
44
|
loc_limit?: number | null;
|
|
44
45
|
/** Defaults to: active. */
|
|
@@ -111,6 +112,7 @@ export interface DemographicsTable {
|
|
|
111
112
|
suspended_apps?: number | null;
|
|
112
113
|
selfie_match?: number | null;
|
|
113
114
|
selfie_match_score?: number | null;
|
|
115
|
+
limit_option?: string | null;
|
|
114
116
|
}
|
|
115
117
|
export interface CustomerBanksTable {
|
|
116
118
|
id?: number;
|
|
@@ -226,6 +228,8 @@ export interface AaDetailsTable {
|
|
|
226
228
|
account?: JSONValue | null;
|
|
227
229
|
analytics?: JSONValue | null;
|
|
228
230
|
customer_id?: number | null;
|
|
231
|
+
provider?: string | null;
|
|
232
|
+
perfios_data?: JSONValue | string;
|
|
229
233
|
reference_id?: string | null;
|
|
230
234
|
sub_status?: string | null;
|
|
231
235
|
template?: string | null;
|
package/models/Payments.d.ts
CHANGED
package/models/PaymentsNach.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export interface NachRegistrationTable {
|
|
|
16
16
|
gateway_error_code?: string;
|
|
17
17
|
gateway_error_msg?: string;
|
|
18
18
|
customer_info?: JSON;
|
|
19
|
+
external_order_id: string;
|
|
19
20
|
}
|
|
20
21
|
export interface NachPresentationTable {
|
|
21
22
|
id: bigint;
|
|
@@ -33,6 +34,7 @@ export interface NachPresentationTable {
|
|
|
33
34
|
gateway_error_code?: string;
|
|
34
35
|
gateway_error_msg?: string;
|
|
35
36
|
is_presented_to_gateway?: boolean;
|
|
37
|
+
external_order_id: string;
|
|
36
38
|
}
|
|
37
39
|
export interface NachPresentationModel extends NachPresentationTable, RowDataPacket {
|
|
38
40
|
}
|
package/package.json
CHANGED
package/models/Banners.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
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 BannerTable {
|
|
9
|
-
id: number;
|
|
10
|
-
name: string;
|
|
11
|
-
image_url: string;
|
|
12
|
-
web_url?: string | null;
|
|
13
|
-
landing_page?: string | null;
|
|
14
|
-
api_mode?: string | null;
|
|
15
|
-
app_version: number;
|
|
16
|
-
status: string;
|
|
17
|
-
created_at: Date;
|
|
18
|
-
updated_at: Date;
|
|
19
|
-
}
|
|
20
|
-
export interface BannerModel extends BannerTable, RowDataPacket {
|
|
21
|
-
}
|
package/models/Banners.js
DELETED