@fiado/type-kit 3.13.2 → 3.13.4
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.
- package/bin/creditEngine/dtos/EarlyPaymentResult.d.ts +2 -0
- package/bin/creditEngine/dtos/SettlementQuote.d.ts +5 -3
- package/bin/creditEngine/dtos/SettlementQuote.js +5 -1
- package/package.json +1 -1
- package/src/creditEngine/dtos/EarlyPaymentResult.ts +2 -0
- package/src/creditEngine/dtos/SettlementQuote.ts +5 -3
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Cotizacion para liquidacion anticipada de un credito.
|
|
3
|
+
*
|
|
4
|
+
* Solo trae la matematica del credito. La wallet (saldo disponible y si
|
|
5
|
+
* alcanza para liquidar) la consulta el frontend por su lado — el credit
|
|
6
|
+
* module no es dueño de la wallet del usuario.
|
|
3
7
|
*/
|
|
4
8
|
export declare class SettlementQuote {
|
|
5
9
|
credit_id: string;
|
|
@@ -8,7 +12,5 @@ export declare class SettlementQuote {
|
|
|
8
12
|
accrued_iva_mxn: number;
|
|
9
13
|
total_settlement_mxn: number;
|
|
10
14
|
interest_saved_mxn: number;
|
|
11
|
-
available_balance_mxn: number;
|
|
12
|
-
has_sufficient_funds: boolean;
|
|
13
15
|
quote_date: string;
|
|
14
16
|
}
|
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SettlementQuote = void 0;
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Cotizacion para liquidacion anticipada de un credito.
|
|
6
|
+
*
|
|
7
|
+
* Solo trae la matematica del credito. La wallet (saldo disponible y si
|
|
8
|
+
* alcanza para liquidar) la consulta el frontend por su lado — el credit
|
|
9
|
+
* module no es dueño de la wallet del usuario.
|
|
6
10
|
*/
|
|
7
11
|
class SettlementQuote {
|
|
8
12
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Cotizacion para liquidacion anticipada de un credito.
|
|
3
|
+
*
|
|
4
|
+
* Solo trae la matematica del credito. La wallet (saldo disponible y si
|
|
5
|
+
* alcanza para liquidar) la consulta el frontend por su lado — el credit
|
|
6
|
+
* module no es dueño de la wallet del usuario.
|
|
3
7
|
*/
|
|
4
8
|
export class SettlementQuote {
|
|
5
9
|
credit_id!: string;
|
|
@@ -8,7 +12,5 @@ export class SettlementQuote {
|
|
|
8
12
|
accrued_iva_mxn!: number;
|
|
9
13
|
total_settlement_mxn!: number;
|
|
10
14
|
interest_saved_mxn!: number;
|
|
11
|
-
available_balance_mxn!: number;
|
|
12
|
-
has_sufficient_funds!: boolean;
|
|
13
15
|
quote_date!: string;
|
|
14
16
|
}
|