@fiado/type-kit 3.6.1 → 3.6.3

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,7 @@ export interface CreatePaymentMadeRequest {
4
4
  currency: string;
5
5
  method: PaymentMethodEnum;
6
6
  referencePaid?: string;
7
+ reference?: string;
7
8
  dateReceivedPay?: string;
8
9
  txNumber?: string;
9
10
  beneficiaryDirectoryId?: string;
@@ -4,6 +4,7 @@ export interface UpdatePaymentMadeRequest {
4
4
  currency?: string;
5
5
  method?: PaymentMethodEnum;
6
6
  referencePaid?: string;
7
+ reference?: string;
7
8
  dateReceivedPay?: string;
8
9
  txNumber?: string;
9
10
  beneficiaryDirectoryId?: string;
@@ -32,5 +32,6 @@ export declare class BackofficeApplicationDetail {
32
32
  directory_id: string;
33
33
  phone_number: string;
34
34
  people_id: string;
35
+ full_name: string;
35
36
  };
36
37
  }
@@ -3,6 +3,7 @@ export declare class BackofficeApplicationsListItem {
3
3
  directory_id: string;
4
4
  partner_id: string;
5
5
  phone_number: string;
6
+ full_name: string;
6
7
  amount_mxn: number;
7
8
  term_weeks: number;
8
9
  status: string;
@@ -31,5 +31,6 @@ export declare class BackofficeOfferDetail {
31
31
  directory_id: string;
32
32
  phone_number: string;
33
33
  people_id: string;
34
+ full_name: string;
34
35
  };
35
36
  }
@@ -3,6 +3,7 @@ export declare class BackofficeOffersListItem {
3
3
  directory_id: string;
4
4
  partner_id: string;
5
5
  phone_number: string;
6
+ full_name: string;
6
7
  credit_level: string;
7
8
  max_amount_mxn: number;
8
9
  min_amount_mxn: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.6.1",
3
+ "version": "3.6.3",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -5,6 +5,7 @@ export interface CreatePaymentMadeRequest {
5
5
  currency: string;
6
6
  method: PaymentMethodEnum;
7
7
  referencePaid?: string;
8
+ reference?: string;
8
9
  dateReceivedPay?: string;
9
10
  txNumber?: string;
10
11
  beneficiaryDirectoryId?: string;
@@ -5,6 +5,7 @@ export interface UpdatePaymentMadeRequest {
5
5
  currency?: string;
6
6
  method?: PaymentMethodEnum;
7
7
  referencePaid?: string;
8
+ reference?: string;
8
9
  dateReceivedPay?: string;
9
10
  txNumber?: string;
10
11
  beneficiaryDirectoryId?: string;
@@ -29,5 +29,5 @@ export class BackofficeCreditApplicationRow {
29
29
 
30
30
  export class BackofficeApplicationDetail {
31
31
  application!: BackofficeCreditApplicationRow;
32
- user!: { directory_id: string; phone_number: string; people_id: string };
32
+ user!: { directory_id: string; phone_number: string; people_id: string; full_name: string };
33
33
  }
@@ -3,6 +3,7 @@ export class BackofficeApplicationsListItem {
3
3
  directory_id!: string;
4
4
  partner_id!: string;
5
5
  phone_number!: string;
6
+ full_name!: string;
6
7
  amount_mxn!: number;
7
8
  term_weeks!: number;
8
9
  status!: string;
@@ -25,5 +25,5 @@ export class BackofficeCreditOfferRow {
25
25
 
26
26
  export class BackofficeOfferDetail {
27
27
  offer!: BackofficeCreditOfferRow;
28
- user!: { directory_id: string; phone_number: string; people_id: string };
28
+ user!: { directory_id: string; phone_number: string; people_id: string; full_name: string };
29
29
  }
@@ -3,6 +3,7 @@ export class BackofficeOffersListItem {
3
3
  directory_id!: string;
4
4
  partner_id!: string;
5
5
  phone_number!: string;
6
+ full_name!: string;
6
7
  credit_level!: string;
7
8
  max_amount_mxn!: number;
8
9
  min_amount_mxn!: number;