ng-pli-commons 1.0.62-dev.0 → 1.0.63-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.
- package/fesm2022/ng-pli-commons.mjs +706 -696
- package/fesm2022/ng-pli-commons.mjs.map +1 -1
- package/lib/services/pli-cnf-interest-rate-master.service.d.ts +17 -0
- package/lib/services/variable-interest-rate.service.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/lib/services/pli-cnf-anual-interest-rate.service.d.ts +0 -24
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { PliCnfInterestRateMaster } from 'ng-pli-util';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PliCnfInterestRateMasterService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
9
|
+
getByPromCodigo(promCodigo: number): Observable<any>;
|
|
10
|
+
/**
|
|
11
|
+
* Save the PliCnfInterestRateMaster
|
|
12
|
+
* @param pliCnfAnnualInterestRate
|
|
13
|
+
*/
|
|
14
|
+
save(pliCnfInterestRateMaster: PliCnfInterestRateMaster): Observable<any>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PliCnfInterestRateMasterService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PliCnfInterestRateMasterService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { VariableInterestRate } from 'ng-pli-util';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class VariableInterestRateService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
9
|
+
getAll(): Observable<any>;
|
|
10
|
+
/**
|
|
11
|
+
* Save the PliCnfInterestRateMaster
|
|
12
|
+
* @param pliCnfAnnualInterestRate
|
|
13
|
+
*/
|
|
14
|
+
save(variableInterestRate: VariableInterestRate): Observable<any>;
|
|
15
|
+
getById(id: number): Observable<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VariableInterestRateService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<VariableInterestRateService>;
|
|
18
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -220,5 +220,6 @@ 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-
|
|
223
|
+
export * from './lib/services/pli-cnf-interest-rate-master.service';
|
|
224
224
|
export * from './lib/services/pli-cnf-use-anual-interest-rate.service';
|
|
225
|
+
export * from './lib/services/variable-interest-rate.service';
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { PliCnfAnnualInterestRate } 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 PliCnfAnnualInterestRate
|
|
12
|
-
* @param pliCnfAnnualInterestRate
|
|
13
|
-
*/
|
|
14
|
-
save(pliCnfAnnualInterestRate: PliCnfAnnualInterestRate): Observable<any>;
|
|
15
|
-
/**
|
|
16
|
-
* Create all records for the year
|
|
17
|
-
* @param promCodigo
|
|
18
|
-
*/
|
|
19
|
-
createAllMonths(promCodigo: number): Observable<any>;
|
|
20
|
-
getInterestRateHistorial(promCodigo: number, numberMonth: number): Observable<any>;
|
|
21
|
-
getAllByPromCodigoAndCurrentYear(promCodigo: number): Observable<any>;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PliCnfAnnualInterestRateService, never>;
|
|
23
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PliCnfAnnualInterestRateService>;
|
|
24
|
-
}
|