@stashfin/mysql2 1.4.625 → 1.4.627

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.
@@ -33,6 +33,7 @@ export interface StashCashTrascationTable {
33
33
  updated_at?: Date | null;
34
34
  is_active?: boolean;
35
35
  is_deleted?: boolean;
36
+ product: string;
36
37
  }
37
38
  export interface StashCashModel extends StashCashTable, RowDataPacket {
38
39
  }
@@ -0,0 +1,14 @@
1
+ import { RowDataPacket } from 'mysql2';
2
+ export interface WealthWebhookTable {
3
+ id?: number;
4
+ customer_id?: number;
5
+ gateway_id?: string;
6
+ event_type?: string;
7
+ event_property?: string;
8
+ event_status?: string;
9
+ webhook_data?: string;
10
+ created_at?: Date;
11
+ updated_at?: Date;
12
+ }
13
+ export interface WealthWebhookModel extends WealthWebhookTable, RowDataPacket {
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.625",
3
+ "version": "1.4.627",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",