creditu-common-library 1.2.0 → 1.2.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.
package/debt/services/index.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ import { IPCAService } from './ipca.service';
|
|
|
4
4
|
import { PaymentService } from './payment-service';
|
|
5
5
|
import { InterestService } from './interest.service';
|
|
6
6
|
import { InstallmentService } from './installment-service';
|
|
7
|
-
|
|
7
|
+
import { LateService } from './late.service';
|
|
8
|
+
export { AmortizationService, InsuranceService, IPCAService, PaymentService, InterestService, InstallmentService, LateService };
|
package/debt/services/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InstallmentService = exports.InterestService = exports.PaymentService = exports.IPCAService = exports.InsuranceService = exports.AmortizationService = void 0;
|
|
3
|
+
exports.LateService = exports.InstallmentService = exports.InterestService = exports.PaymentService = exports.IPCAService = exports.InsuranceService = exports.AmortizationService = void 0;
|
|
4
4
|
var amortization_service_1 = require("./amortization-service");
|
|
5
5
|
Object.defineProperty(exports, "AmortizationService", { enumerable: true, get: function () { return amortization_service_1.AmortizationService; } });
|
|
6
6
|
var insurance_service_1 = require("./insurance-service");
|
|
@@ -13,3 +13,5 @@ var interest_service_1 = require("./interest.service");
|
|
|
13
13
|
Object.defineProperty(exports, "InterestService", { enumerable: true, get: function () { return interest_service_1.InterestService; } });
|
|
14
14
|
var installment_service_1 = require("./installment-service");
|
|
15
15
|
Object.defineProperty(exports, "InstallmentService", { enumerable: true, get: function () { return installment_service_1.InstallmentService; } });
|
|
16
|
+
var late_service_1 = require("./late.service");
|
|
17
|
+
Object.defineProperty(exports, "LateService", { enumerable: true, get: function () { return late_service_1.LateService; } });
|