@stashfin/mysql2 1.4.151 → 1.4.152

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.
@@ -14,6 +14,8 @@ export interface BBPSProvidersTable {
14
14
  utilityid: number;
15
15
  vendorid: number;
16
16
  billerid: string;
17
+ online_validation: string;
18
+ paymentamount_validation: string;
17
19
  created_at: Date;
18
20
  updated_at: Date;
19
21
  is_active: number;
@@ -0,0 +1,19 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export interface PenaltiesModel {
3
+ id: number | null;
4
+ customer_id?: number | null;
5
+ loan_id?: number | null;
6
+ installment_id?: number | null;
7
+ type_id?: number | null;
8
+ amount?: number | null;
9
+ pif_amount?: number | null;
10
+ r_amount?: number | null;
11
+ r_pif_amount?: number | null;
12
+ status?: "paid" | "unpaid" | "refunded" | null;
13
+ created_at?: Date | null;
14
+ updated_at?: Date | null;
15
+ is_active?: number | null;
16
+ is_deleted?: number | null;
17
+ }
18
+ export interface PenaltiesTable extends PenaltiesModel, RowDataPacket {
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import { RowDataPacket } from "mysql2";
2
+ export interface PenaltyAllocationsModel {
3
+ id: number | null;
4
+ penalty_id?: number | null;
5
+ amount?: number | null;
6
+ pif_amount?: number | null;
7
+ payment_id?: number | null;
8
+ status?: "paid" | "unpaid" | "refunded" | null | null;
9
+ created_at?: Date | null;
10
+ updated_at?: Date | null;
11
+ is_active?: number | null;
12
+ is_deleted?: number | null;
13
+ }
14
+ export interface PenaltyAllocationsTable extends PenaltyAllocationsModel, RowDataPacket {
15
+ }
@@ -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.151",
3
+ "version": "1.4.152",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",