@stashfin/mysql2 1.4.106 → 1.4.110

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.
@@ -39,6 +39,7 @@ export interface CustomerTable {
39
39
  app_version?: string | null;
40
40
  biometric_enabled?: number | null;
41
41
  journey_sequence?: number | null;
42
+ journey_status?: string | null;
42
43
  category?: Category | null;
43
44
  loc_limit?: number | null;
44
45
  /** Defaults to: active. */
@@ -111,6 +112,7 @@ export interface DemographicsTable {
111
112
  suspended_apps?: number | null;
112
113
  selfie_match?: number | null;
113
114
  selfie_match_score?: number | null;
115
+ limit_option?: string | null;
114
116
  }
115
117
  export interface CustomerBanksTable {
116
118
  id?: number;
@@ -226,6 +228,8 @@ export interface AaDetailsTable {
226
228
  account?: JSONValue | null;
227
229
  analytics?: JSONValue | null;
228
230
  customer_id?: number | null;
231
+ provider?: string | null;
232
+ perfios_data?: JSONValue | string;
229
233
  reference_id?: string | null;
230
234
  sub_status?: string | null;
231
235
  template?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.106",
3
+ "version": "1.4.110",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,21 +0,0 @@
1
- import { RowDataPacket } from 'mysql2';
2
- export type JSONPrimitive = string | number | boolean | null;
3
- export type JSONValue = JSONObject | JSONArray;
4
- export type JSONObject = {
5
- [member: string]: JSONPrimitive;
6
- };
7
- export type JSONArray = Array<JSONValue>;
8
- export interface BannerTable {
9
- id: number;
10
- name: string;
11
- image_url: string;
12
- web_url?: string | null;
13
- landing_page?: string | null;
14
- api_mode?: string | null;
15
- app_version: number;
16
- status: string;
17
- created_at: Date;
18
- updated_at: Date;
19
- }
20
- export interface BannerModel extends BannerTable, RowDataPacket {
21
- }
package/models/Banners.js DELETED
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });