@stashfin/mysql2 1.4.610 → 1.4.612

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,18 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export interface AMLDetailsTable {
3
+ id: number;
4
+ customer_id: number;
5
+ hit_count?: number;
6
+ confirmed_hits?: string;
7
+ doc_file?: string;
8
+ response_data?: string;
9
+ overall_status?: string;
10
+ validation_outcome?: string;
11
+ hits_Detected?: string;
12
+ status?: number;
13
+ create_date?: Date;
14
+ request_id?: string;
15
+ msg?: string;
16
+ }
17
+ export interface AMLDetailsModel extends AMLDetailsTable, RowDataPacket {
18
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -14,6 +14,7 @@ export interface MetaData {
14
14
  eligibility: string[];
15
15
  tnc: string[];
16
16
  minimun_investment: string;
17
+ process: string[];
17
18
  }
18
19
  export interface Stat {
19
20
  count: number;
package/models/Offer.d.ts CHANGED
@@ -30,6 +30,7 @@ export interface OfferTable {
30
30
  created_at: Date | string;
31
31
  updated_at: Date | string;
32
32
  created_by: string | Date;
33
+ offer_code?: string;
33
34
  }
34
35
  export interface OfferModel extends OfferTable, RowDataPacket {
35
36
  }
@@ -83,6 +83,7 @@ export interface StCustomerDetailTable {
83
83
  e_pan_number_s?: Buffer | null;
84
84
  e_aadhar_number_s?: Buffer | null;
85
85
  e_ovd_number_s?: Buffer | null;
86
+ is_pan_rejected?: boolean | null;
86
87
  }
87
88
  export interface StCustomerDetailModel extends StCustomerDetailTable, RowDataPacket {
88
89
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.610",
3
+ "version": "1.4.612",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",