@fiado/type-kit 3.6.0 → 3.6.1

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.
@@ -2,6 +2,7 @@ export declare class BackofficeProfilesListItem {
2
2
  directory_id: string;
3
3
  partner_id: string;
4
4
  phone_number: string;
5
+ full_name: string;
5
6
  credit_level: string;
6
7
  score_total: number;
7
8
  is_eligible: string;
@@ -14,4 +15,10 @@ export declare class BackofficeProfilesListItem {
14
15
  days_since_last_deposit: number;
15
16
  calculation_date: string;
16
17
  banner_state: string;
18
+ /** Suma de amount_mxn de TODOS los Credits del cliente (histórico completo) */
19
+ total_disbursed_mxn: number;
20
+ /** Suma de (total_mxn - paid_amount_mxn) de cupones no PAID en créditos activos */
21
+ outstanding_balance_mxn: number;
22
+ /** Suma de (total_mxn - paid_amount_mxn) de cupones OVERDUE / OVERDUE_PARTIAL */
23
+ overdue_balance_mxn: number;
17
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -2,6 +2,7 @@ export class BackofficeProfilesListItem {
2
2
  directory_id!: string;
3
3
  partner_id!: string;
4
4
  phone_number!: string;
5
+ full_name!: string;
5
6
  credit_level!: string;
6
7
  score_total!: number;
7
8
  is_eligible!: string;
@@ -14,4 +15,10 @@ export class BackofficeProfilesListItem {
14
15
  days_since_last_deposit!: number;
15
16
  calculation_date!: string;
16
17
  banner_state!: string;
18
+ /** Suma de amount_mxn de TODOS los Credits del cliente (histórico completo) */
19
+ total_disbursed_mxn!: number;
20
+ /** Suma de (total_mxn - paid_amount_mxn) de cupones no PAID en créditos activos */
21
+ outstanding_balance_mxn!: number;
22
+ /** Suma de (total_mxn - paid_amount_mxn) de cupones OVERDUE / OVERDUE_PARTIAL */
23
+ overdue_balance_mxn!: number;
17
24
  }