@stashfin/mysql2 1.4.234 → 1.4.236

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.
@@ -63,8 +63,8 @@ export interface CustomerTable {
63
63
  txn_rate?: number | null;
64
64
  agent_id?: number | null;
65
65
  banner_code?: string | null;
66
- banner_sequence?: JSONValue | string | null;
67
- banner_status?: JSONValue | string | null;
66
+ banner_sequence?: JSONValue | null;
67
+ banner_status?: JSONValue | null;
68
68
  /** Defaults to: new */
69
69
  application_type?: string | null;
70
70
  /** Defaults to: incomplete */
@@ -0,0 +1,10 @@
1
+ import { RowDataPacket } from 'mysql2';
2
+ export interface NewLocTable {
3
+ id: number;
4
+ customer_id?: number | null;
5
+ mobile?: string | null;
6
+ new_limit?: number | null;
7
+ status?: string | null;
8
+ }
9
+ export interface NewLocModel extends NewLocTable, RowDataPacket {
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -26,7 +26,8 @@ export interface StateCaptureTable {
26
26
  application_type: string | null;
27
27
  reason_code: string | null;
28
28
  remarks: string | null;
29
- customer_flags: JSONValue;
29
+ customer_flags: JSONValue | null;
30
+ approved_by: string | null;
30
31
  }
31
32
  export interface StateCaptureModel extends StateCaptureTable, RowDataPacket {
32
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.234",
3
+ "version": "1.4.236",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",