@stashfin/mysql2 1.4.641 → 1.4.643

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.
@@ -0,0 +1,21 @@
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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import { RowDataPacket } from 'mysql2';
2
+ export interface StCustomerDetailsTable {
3
+ id?: number;
4
+ first_name: string;
5
+ middle_name?: string | null;
6
+ last_name: string;
7
+ pan?: string | null;
8
+ dob?: string | null;
9
+ email?: string | null;
10
+ phone: string | null;
11
+ is_otp_done: boolean;
12
+ is_email_verify_done: boolean;
13
+ }
14
+ export interface StCustomerDetailsModel extends StCustomerDetailsTable, RowDataPacket {
15
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export declare enum StatusEnum {
3
+ Pending = "pending",
4
+ Success = "success"
5
+ }
6
+ export declare enum YesNoEnum {
7
+ Y = "Y",
8
+ N = "N"
9
+ }
10
+ export interface EqxUpiProfileTable {
11
+ id: number;
12
+ customer_id: number;
13
+ device_id: string;
14
+ sim_no?: string | null;
15
+ vpa?: string | null;
16
+ profile_id?: string | null;
17
+ sim_network?: string | null;
18
+ status: StatusEnum;
19
+ is_active: YesNoEnum;
20
+ created_at?: Date | null;
21
+ updated_at?: Date | null;
22
+ }
23
+ export interface EqxUpiProfileModel extends EqxUpiProfileTable, RowDataPacket {
24
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.YesNoEnum = exports.StatusEnum = void 0;
4
+ var StatusEnum;
5
+ (function (StatusEnum) {
6
+ StatusEnum["Pending"] = "pending";
7
+ StatusEnum["Success"] = "success";
8
+ })(StatusEnum || (exports.StatusEnum = StatusEnum = {}));
9
+ var YesNoEnum;
10
+ (function (YesNoEnum) {
11
+ YesNoEnum["Y"] = "Y";
12
+ YesNoEnum["N"] = "N";
13
+ })(YesNoEnum || (exports.YesNoEnum = YesNoEnum = {}));
@@ -0,0 +1,21 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export interface HypervergeCKYCValidationTable {
3
+ id?: number;
4
+ customer_id: number;
5
+ transaction_id?: string | null;
6
+ request?: any;
7
+ response?: any;
8
+ is_first_name_matched?: number;
9
+ is_middle_name_matched?: number;
10
+ is_last_name_matched?: number;
11
+ is_aadhaar_matched?: number;
12
+ is_aadhaar_face_matched?: number;
13
+ is_dob_matched?: number;
14
+ is_face_matched?: number;
15
+ retry_count?: number;
16
+ is_success?: number;
17
+ create_date?: Date | string;
18
+ update_date?: Date | string;
19
+ }
20
+ export interface HypervergeCKYCValidationModel extends HypervergeCKYCValidationTable, RowDataPacket {
21
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.641",
3
+ "version": "1.4.643",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",