ng-pli-commons 1.0.88 → 1.0.89
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/esm2022/lib/services/budget-setup.service.mjs +26 -0
- package/esm2022/lib/services/codebtors.service.mjs +28 -0
- package/esm2022/lib/services/document.service.mjs +7 -1
- package/esm2022/lib/services/guarantees-summary-service.mjs +26 -0
- package/esm2022/public-api.mjs +4 -1
- package/esm2022/version.mjs +8 -8
- package/fesm2022/ng-pli-commons.mjs +84 -9
- package/fesm2022/ng-pli-commons.mjs.map +1 -1
- package/lib/services/budget-setup.service.d.ts +12 -0
- package/lib/services/codebtors.service.d.ts +14 -0
- package/lib/services/document.service.d.ts +2 -1
- package/lib/services/guarantees-summary-service.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BudgetSetup, PliCnfPresupuestoGlobal } from 'ng-pli-util';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BudgetSetupService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
9
|
+
BudgetSetup(presupuestoList: PliCnfPresupuestoGlobal[], cpreCodigo: number): Observable<BudgetSetup>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetSetupService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetSetupService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ApplicationCodebtorTO, DataTableParameters } from 'ng-pli-util';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CodebtorService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
9
|
+
/** It returns the list of application by dataTableParameters */
|
|
10
|
+
getApplicationsByDataTableParameters(dataTableParameters: DataTableParameters): Observable<any>;
|
|
11
|
+
updateEmailAndPhoneCodebtor(applicationCodebtorTO: ApplicationCodebtorTO): Observable<any>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CodebtorService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CodebtorService>;
|
|
14
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { Document, DataTableParameters, CheckProgramQualification, UpdateSelectionInformation } from 'ng-pli-util';
|
|
3
|
+
import { Document, DataTableParameters, CheckProgramQualification, UpdateSelectionInformation, DocumentAnalysisIAStResponse } from 'ng-pli-util';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DocumentService {
|
|
6
6
|
private environment;
|
|
@@ -45,6 +45,7 @@ export declare class DocumentService {
|
|
|
45
45
|
/** It checks an admission letter document */
|
|
46
46
|
checkProgramQualification(checkProgramQualification: CheckProgramQualification): Observable<any>;
|
|
47
47
|
documentAnalysisWithIA(file: File, prompt: string): Observable<Boolean>;
|
|
48
|
+
documentAnalysisWithIASt(file: File, prompt: string): Observable<DocumentAnalysisIAStResponse>;
|
|
48
49
|
updateSelectionInformation(updateSelectionInformation: UpdateSelectionInformation): Observable<Object>;
|
|
49
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentService, never>;
|
|
50
51
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentService>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { GuaranteesSummaryTO } from 'ng-pli-util';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GuaranteesSummaryService {
|
|
6
|
+
private environment;
|
|
7
|
+
private httpClient;
|
|
8
|
+
private headerJson;
|
|
9
|
+
constructor(environment: any, httpClient: HttpClient);
|
|
10
|
+
updateGuaranteeFlags(guaranteesSummaryTO: GuaranteesSummaryTO): Observable<any>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GuaranteesSummaryService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GuaranteesSummaryService>;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export * from './lib/services/blocked-beneficiary.service';
|
|
|
38
38
|
export * from './lib/services/budget-application.service';
|
|
39
39
|
export * from './lib/services/budget-simulation.service';
|
|
40
40
|
export * from './lib/services/budget.service';
|
|
41
|
+
export * from './lib/services/budget-setup.service';
|
|
42
|
+
export * from './lib/services/codebtors.service';
|
|
41
43
|
export * from './lib/services/closure-wallet.service';
|
|
42
44
|
export * from './lib/services/committee-assistant.service';
|
|
43
45
|
export * from './lib/services/common.service';
|
|
@@ -216,3 +218,4 @@ export * from './lib/services/correspondence-manager.service';
|
|
|
216
218
|
export * from './lib/services/correspondence-document-category.service';
|
|
217
219
|
export * from './lib/services/cnf-correspondence-document-manager.service';
|
|
218
220
|
export * from './lib/services/post-selection.service';
|
|
221
|
+
export * from './lib/services/guarantees-summary-service';
|