@stashfin/mysql2 1.4.225 → 1.4.227

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.
@@ -4,6 +4,11 @@ export interface CustomerParams {
4
4
  value: string;
5
5
  }
6
6
  export type CustomerParamsArray = CustomerParams[];
7
+ export interface AdditionalValidationDetails {
8
+ parameter_name: string;
9
+ value: string;
10
+ }
11
+ export type AdditionalValidationDetailsArray = AdditionalValidationDetails[];
7
12
  export interface BBPSCustomerBillProviderTable {
8
13
  id: number;
9
14
  customer_id: number;
@@ -19,6 +24,7 @@ export interface BBPSCustomerBillProviderTable {
19
24
  bill_amount: number;
20
25
  bill_number: string;
21
26
  customer_params: CustomerParamsArray;
27
+ additional_validation_details: AdditionalValidationDetailsArray;
22
28
  bill_date: Date;
23
29
  bill_duedate: Date;
24
30
  created_at: Date;
@@ -11,6 +11,7 @@ export interface BBPSProvidersTable {
11
11
  logo: string;
12
12
  coverage: string;
13
13
  customer_params: JSONValue;
14
+ additional_validation_details: JSONValue;
14
15
  utilityid: number;
15
16
  vendorid: number;
16
17
  billerid: string;
@@ -26,6 +26,7 @@ export interface StateCaptureTable {
26
26
  application_type: string | null;
27
27
  reason_code: string | null;
28
28
  remarks: string | null;
29
+ approval_done: number;
29
30
  }
30
31
  export interface StateCaptureModel extends StateCaptureTable, RowDataPacket {
31
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/mysql2",
3
- "version": "1.4.225",
3
+ "version": "1.4.227",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",