@stashfin/mysql2 1.4.48 → 1.4.49
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.
- package/models/Customer.d.ts +1 -2
- package/package.json +1 -1
package/models/Customer.d.ts
CHANGED
|
@@ -174,7 +174,7 @@ export interface CustomerContactsTable {
|
|
|
174
174
|
customer_id: number;
|
|
175
175
|
mobile: string;
|
|
176
176
|
}
|
|
177
|
-
interface CustomerRCProfile {
|
|
177
|
+
export interface CustomerRCProfile {
|
|
178
178
|
id?: number;
|
|
179
179
|
customerId: number;
|
|
180
180
|
requestId: string;
|
|
@@ -208,4 +208,3 @@ export interface CustomerContactsModel extends CustomerContactsTable, RowDataPac
|
|
|
208
208
|
}
|
|
209
209
|
export interface CustomerRCProfileModel extends CustomerRCProfile, RowDataPacket {
|
|
210
210
|
}
|
|
211
|
-
export {};
|