ng-pli-commons 0.0.1821 → 0.0.1826
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/esm2020/lib/services/blocked-beneficiary.service.mjs +31 -0
- package/esm2020/lib/services/plis-beneficiario.service.mjs +1 -1
- package/esm2020/public-api.mjs +2 -1
- package/esm2020/version.mjs +8 -8
- package/fesm2015/ng-pli-commons.mjs +37 -8
- package/fesm2015/ng-pli-commons.mjs.map +1 -1
- package/fesm2020/ng-pli-commons.mjs +35 -8
- package/fesm2020/ng-pli-commons.mjs.map +1 -1
- package/lib/services/blocked-beneficiary.service.d.ts +15 -0
- package/lib/services/plis-beneficiario.service.d.ts +1 -2
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BlockedBeneficiary, DataTableParameters } from 'ng-pli-util';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BlockedBeneficiaryService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
private headerJson;
|
|
9
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
10
|
+
getByDataTablesParameters(dataTableParameters: DataTableParameters): Observable<Object>;
|
|
11
|
+
/** It saves a BlockedBeneficiary */
|
|
12
|
+
save(blockedBeneficiary: BlockedBeneficiary): Observable<any>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BlockedBeneficiaryService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BlockedBeneficiaryService>;
|
|
15
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class PlisBeneficiarioService {
|
|
5
4
|
private environment;
|
|
6
5
|
private httpClient;
|
|
7
6
|
constructor(environment: any, httpClient: HttpClient);
|
|
8
|
-
getByNumeroDocumentoAndPatCodigo(identification: string, patCodigo: number): Observable<Object>;
|
|
7
|
+
getByNumeroDocumentoAndPatCodigo(identification: string, patCodigo: number): import("rxjs").Observable<Object>;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlisBeneficiarioService, never>;
|
|
10
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<PlisBeneficiarioService>;
|
|
11
10
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export * from './lib/services/application.service';
|
|
|
31
31
|
export * from './lib/services/application-fill-percentage.service';
|
|
32
32
|
export * from './lib/services/application-tag.service';
|
|
33
33
|
export * from './lib/services/authentication.service';
|
|
34
|
+
export * from './lib/services/blocked-beneficiary.service';
|
|
34
35
|
export * from './lib/services/budget-application.service';
|
|
35
36
|
export * from './lib/services/budget-simulation.service';
|
|
36
37
|
export * from './lib/services/budget.service';
|