@stashfin/mysql2 1.4.15 → 1.4.16

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.
@@ -101,9 +101,24 @@ export interface CustomerBanksTable {
101
101
  created_at?: Date | null;
102
102
  updated_at?: Date | null;
103
103
  }
104
+ export interface CustomerReferenceTable {
105
+ id: number;
106
+ customer_id: number;
107
+ reference_name: string;
108
+ relationship: 'Family' | 'Friend' | 'Colleague' | 'Other';
109
+ mobile_number: string;
110
+ email?: string;
111
+ address: string;
112
+ state_id: number;
113
+ city_id: number;
114
+ pincode: string;
115
+ created_at?: Date | null;
116
+ }
104
117
  export interface CustomerModel extends CustomerTable, RowDataPacket {
105
118
  }
106
119
  export interface CustomerBanksModel extends CustomerBanksTable, RowDataPacket {
107
120
  }
108
121
  export interface DemographicsModel extends DemographicsTable, RowDataPacket {
109
122
  }
123
+ export interface CustomerReferenceModel extends CustomerReferenceTable, RowDataPacket {
124
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.15",
3
+ "version": "1.4.16",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",