ng-pli-commons 1.0.15-dev.0 → 1.0.16-dev.0
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.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { PliCnfAnualInterestRate } from "ng-pli-util";
|
|
3
|
+
import { Observable } from "rxjs";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PliCnfAnnualInterestRateService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
9
|
+
getAllByPromCodigo(promCodigo: number): Observable<any>;
|
|
10
|
+
/**
|
|
11
|
+
* Save the PliCnfAnualInterestRate
|
|
12
|
+
* @param pliCnfAnualInterestRate
|
|
13
|
+
*/
|
|
14
|
+
save(pliCnfAnualInterestRate: PliCnfAnualInterestRate): Observable<any>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PliCnfAnnualInterestRateService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PliCnfAnnualInterestRateService>;
|
|
17
|
+
}
|
|
@@ -8,8 +8,8 @@ export declare class PliCnfInstallmentSimulatorConfigService {
|
|
|
8
8
|
constructor(environment: any, httpClient: HttpClient);
|
|
9
9
|
getByPromCodigo(promCodigo: number): Observable<any>;
|
|
10
10
|
/**
|
|
11
|
-
* Save the
|
|
12
|
-
* @param
|
|
11
|
+
* Save the PliCnfInstallmentSimulatorConfig
|
|
12
|
+
* @param pliCnfInstallmentSimulatorConfig
|
|
13
13
|
*/
|
|
14
14
|
save(pliCnfInstallmentSimulatorConfig: PliCnfInstallmentSimulatorConfig): Observable<any>;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<PliCnfInstallmentSimulatorConfigService, never>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -220,3 +220,4 @@ export * from './lib/services/cnf-correspondence-document-manager.service';
|
|
|
220
220
|
export * from './lib/services/post-selection.service';
|
|
221
221
|
export * from './lib/services/guarantees-summary-service';
|
|
222
222
|
export * from './lib/services/pli-cnf-installment-simulator-config.service';
|
|
223
|
+
export * from './lib/services/pli-cnf-anual-interest-rate.service';
|