@stashfin/mysql2 1.4.160 → 1.4.162

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.
@@ -15,6 +15,7 @@ export declare enum Category {
15
15
  export interface CustomerTable {
16
16
  id: number;
17
17
  mobile: string;
18
+ referral_code?: string;
18
19
  email?: string | null;
19
20
  first_name?: string | null;
20
21
  middle_name?: string | null;
@@ -13,17 +13,20 @@ export interface PincodesTable {
13
13
  }
14
14
  export interface CityTable {
15
15
  id: number;
16
- city: string;
16
+ name: string;
17
17
  state_id?: number;
18
18
  state_name?: string;
19
19
  is_blocked?: boolean;
20
+ is_lib_blocked?: boolean;
20
21
  is_elv_blocked: boolean;
21
22
  is_frdm_blocked?: boolean;
22
23
  }
23
24
  export interface StateTable {
24
25
  id: number;
25
- state: string;
26
+ name: string;
27
+ code: string;
26
28
  is_blocked?: boolean;
29
+ is_lib_blocked?: boolean;
27
30
  is_elv_blocked: boolean;
28
31
  is_frdm_blocked?: boolean;
29
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.160",
3
+ "version": "1.4.162",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,9 +0,0 @@
1
- import { RowDataPacket } from 'mysql2';
2
- export interface BankIfscTable {
3
- id?: number | null;
4
- bank?: string | null;
5
- ifsc?: string | null;
6
- micr?: string | null;
7
- }
8
- export interface BankIfscModel extends BankIfscTable, RowDataPacket {
9
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });