@stashfin/mysql2 1.4.599 → 1.4.601

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.
@@ -0,0 +1,15 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export interface LocLanderMixTable {
3
+ id?: number;
4
+ customer_id?: number | null;
5
+ loc_id?: number | null;
6
+ lander_id?: number | null;
7
+ rate_of_interest?: number | null;
8
+ percentage_contribution?: number | null;
9
+ status?: number | null;
10
+ admin_id?: number | null;
11
+ create_date?: string | null;
12
+ update_date?: string | null;
13
+ }
14
+ export interface LocLanderMixModel extends LocLanderMixTable, RowDataPacket {
15
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { RowDataPacket } from 'mysql2';
2
+ export interface PartnersJourneyTable {
3
+ id: number;
4
+ name?: string;
5
+ checksum_key: string;
6
+ jwt_key: string;
7
+ webhook_url?: string;
8
+ active: number;
9
+ create_date: string;
10
+ update_date: string;
11
+ source: string;
12
+ secret?: string;
13
+ otp_verification: number;
14
+ code?: string;
15
+ layout?: Record<string, any>;
16
+ }
17
+ export interface PartnersJourneyModel extends PartnersJourneyTable, RowDataPacket {
18
+ }
@@ -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.599",
3
+ "version": "1.4.601",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",