ng-pli-commons 0.0.1821 → 0.0.1825
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/components/configuration-token/configuration-token.component.mjs +2 -3
- package/esm2020/lib/components/pdf-generator/pdf-generator.component.mjs +4 -4
- package/esm2020/lib/services/credit-study.service.mjs +1 -7
- package/esm2020/lib/services/gic-collection.service.mjs +1 -4
- package/esm2020/lib/services/master-category.service.mjs +66 -0
- package/esm2020/lib/services/master-program.service.mjs +78 -0
- package/esm2020/lib/services/master-university.service.mjs +68 -0
- package/esm2020/lib/services/pli-cnf-mail.service.mjs +1 -7
- package/esm2020/lib/services/tasa.cambio.service.mjs +2 -3
- package/esm2020/lib/services/token.service.mjs +3 -21
- package/esm2020/public-api.mjs +4 -2
- package/esm2020/version.mjs +8 -8
- package/fesm2015/ng-pli-commons.mjs +219 -74
- package/fesm2015/ng-pli-commons.mjs.map +1 -1
- package/fesm2020/ng-pli-commons.mjs +213 -72
- package/fesm2020/ng-pli-commons.mjs.map +1 -1
- package/lib/services/credit-study.service.d.ts +0 -1
- package/lib/services/gic-collection.service.d.ts +0 -1
- package/lib/services/master-category.service.d.ts +40 -0
- package/lib/services/master-program.service.d.ts +45 -0
- package/lib/services/master-university.service.d.ts +40 -0
- package/lib/services/pli-cnf-mail.service.d.ts +0 -1
- package/lib/services/token.service.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +3 -1
- package/esm2020/lib/services/plis-beneficiario.service.mjs +0 -29
- package/lib/services/plis-beneficiario.service.d.ts +0 -11
|
@@ -103,8 +103,7 @@ class TasaCambioService {
|
|
|
103
103
|
return this.httpClient.get(this.environment.host.backend.plis + 'tasacambio/getAllTasaCambioLightInDate', { params: new HttpParams().set('date', date) });
|
|
104
104
|
}
|
|
105
105
|
getAllTasaCambioLightInDateByMonOrigenDestino(date, monOrigen, monDestino) {
|
|
106
|
-
return this.httpClient.get(this.environment.host.backend.plis +
|
|
107
|
-
'tasacambio/getAllTasaCambioLightInDateByMonOrigenDestino', {
|
|
106
|
+
return this.httpClient.get(this.environment.host.backend.plis + 'tasacambio/getAllTasaCambioLightInDateByMonOrigenDestino', {
|
|
108
107
|
params: new HttpParams()
|
|
109
108
|
.set('date', date)
|
|
110
109
|
.set('monOrigen', monOrigen)
|
|
@@ -2678,24 +2677,6 @@ class TokenService {
|
|
|
2678
2677
|
.toLowerCase();
|
|
2679
2678
|
objectToken =
|
|
2680
2679
|
lObjectTokens[clearKey] !== undefined ? lObjectTokens[clearKey] : null;
|
|
2681
|
-
if (objectToken === null || objectToken === undefined) {
|
|
2682
|
-
const arrayKey = tokensArray[i].key
|
|
2683
|
-
.replace('{', '')
|
|
2684
|
-
.replace('}', '')
|
|
2685
|
-
.split('_')[1]
|
|
2686
|
-
.split('.');
|
|
2687
|
-
if (arrayKey.length > 0) {
|
|
2688
|
-
let value = lObjectTokens;
|
|
2689
|
-
for (let index = 0; index < arrayKey.length; index++) {
|
|
2690
|
-
let element = arrayKey[index];
|
|
2691
|
-
if (index == 0) {
|
|
2692
|
-
element = element.toLowerCase();
|
|
2693
|
-
}
|
|
2694
|
-
value = value[element];
|
|
2695
|
-
}
|
|
2696
|
-
objectToken = value;
|
|
2697
|
-
}
|
|
2698
|
-
}
|
|
2699
2680
|
}
|
|
2700
2681
|
}
|
|
2701
2682
|
if (objectToken == null) {
|
|
@@ -4566,9 +4547,8 @@ class ConfigurationTokenComponent extends CommonListsComponent {
|
|
|
4566
4547
|
camelize(str) {
|
|
4567
4548
|
return str
|
|
4568
4549
|
.trim()
|
|
4569
|
-
.split(
|
|
4550
|
+
.split(' ')
|
|
4570
4551
|
.map((a) => a.trim())
|
|
4571
|
-
.filter((a) => a.length > 0)
|
|
4572
4552
|
.map((a) => a[0].toUpperCase() + a.substring(1))
|
|
4573
4553
|
.join('');
|
|
4574
4554
|
}
|
|
@@ -5726,20 +5706,20 @@ class PdfGeneratorComponent {
|
|
|
5726
5706
|
.getByPromCodigo(this.promCode)
|
|
5727
5707
|
.toPromise();
|
|
5728
5708
|
const text = await this.tokenTransformationService
|
|
5729
|
-
.
|
|
5709
|
+
.transformByUsername(this.configuration.header, promCodigo, applicationData.username)
|
|
5730
5710
|
.toPromise();
|
|
5731
5711
|
this.headerHtml = text.txt;
|
|
5732
5712
|
}
|
|
5733
5713
|
//get footer
|
|
5734
5714
|
if (this.configuration.footer) {
|
|
5735
5715
|
const text = await this.tokenTransformationService
|
|
5736
|
-
.
|
|
5716
|
+
.transformByUsername(this.configuration.footer, promCodigo, applicationData.username)
|
|
5737
5717
|
.toPromise();
|
|
5738
5718
|
this.footerHtml = text.txt;
|
|
5739
5719
|
}
|
|
5740
5720
|
if (this.configuration.body) {
|
|
5741
5721
|
const text = await this.tokenTransformationService
|
|
5742
|
-
.
|
|
5722
|
+
.transformByUsername(this.configuration.body, promCodigo, applicationData.username)
|
|
5743
5723
|
.toPromise();
|
|
5744
5724
|
this.BodyHtml = text.txt;
|
|
5745
5725
|
}
|
|
@@ -11733,12 +11713,6 @@ class CreditStudyService {
|
|
|
11733
11713
|
headers: this.headerJson.headers
|
|
11734
11714
|
});
|
|
11735
11715
|
}
|
|
11736
|
-
updateCodebtorDateForm(applicationId, codebtor) {
|
|
11737
|
-
return this.httpClient.put(this.environment.host.backend.frontoffice + 'creditStudy/updateCodebtorDateForm', codebtor, {
|
|
11738
|
-
params: new HttpParams().set('applicationId', applicationId),
|
|
11739
|
-
headers: this.headerJson.headers
|
|
11740
|
-
});
|
|
11741
|
-
}
|
|
11742
11716
|
saveAllCodebtors(applicationId, lCodebtor) {
|
|
11743
11717
|
return this.httpClient.post(this.environment.host.backend.frontoffice + 'creditStudy/saveAllCodebtors', lCodebtor, {
|
|
11744
11718
|
params: new HttpParams().set('applicationId', applicationId),
|
|
@@ -14056,9 +14030,6 @@ class GicCollectionService {
|
|
|
14056
14030
|
return this.httpClient.post(this.environment.host.backend.gicBackoffice +
|
|
14057
14031
|
'gic-payment-application/sendToBankVision', listIds, this.headerJson);
|
|
14058
14032
|
}
|
|
14059
|
-
queueSendToBankVision(listIds) {
|
|
14060
|
-
return this.httpClient.post(this.environment.host.backend.gicQueuePublisher + 'collection/sendCollectionsToBv', listIds, this.headerJson);
|
|
14061
|
-
}
|
|
14062
14033
|
}
|
|
14063
14034
|
GicCollectionService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: GicCollectionService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
14064
14035
|
GicCollectionService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: GicCollectionService, providedIn: 'root' });
|
|
@@ -15554,31 +15525,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
|
15554
15525
|
args: ['environment']
|
|
15555
15526
|
}] }, { type: i1.HttpClient }, { type: AuthenticationService }]; } });
|
|
15556
15527
|
|
|
15557
|
-
class PlisBeneficiarioService {
|
|
15558
|
-
constructor(environment, httpClient) {
|
|
15559
|
-
this.environment = environment;
|
|
15560
|
-
this.httpClient = httpClient;
|
|
15561
|
-
}
|
|
15562
|
-
getByNumeroDocumentoAndPatCodigo(identification, patCodigo) {
|
|
15563
|
-
return this.httpClient.get(this.environment.host.backend.plis + 'beneficiario/getByNumeroDocumentoAndPatCodigo', {
|
|
15564
|
-
params: new HttpParams()
|
|
15565
|
-
.set('identification', identification)
|
|
15566
|
-
.set('patCodigo', patCodigo)
|
|
15567
|
-
});
|
|
15568
|
-
}
|
|
15569
|
-
}
|
|
15570
|
-
PlisBeneficiarioService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: PlisBeneficiarioService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15571
|
-
PlisBeneficiarioService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: PlisBeneficiarioService, providedIn: 'root' });
|
|
15572
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: PlisBeneficiarioService, decorators: [{
|
|
15573
|
-
type: Injectable,
|
|
15574
|
-
args: [{
|
|
15575
|
-
providedIn: 'root'
|
|
15576
|
-
}]
|
|
15577
|
-
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
15578
|
-
type: Inject,
|
|
15579
|
-
args: ['environment']
|
|
15580
|
-
}] }, { type: i1.HttpClient }]; } });
|
|
15581
|
-
|
|
15582
15528
|
class PromotionScoreService {
|
|
15583
15529
|
constructor(environment, httpClient) {
|
|
15584
15530
|
this.environment = environment;
|
|
@@ -16017,9 +15963,9 @@ class CustomValidator {
|
|
|
16017
15963
|
/* tslint:disable */
|
|
16018
15964
|
const VERSION = {
|
|
16019
15965
|
"dirty": true,
|
|
16020
|
-
"raw": "v0.0.18-
|
|
16021
|
-
"hash": "
|
|
16022
|
-
"distance":
|
|
15966
|
+
"raw": "v0.0.18-2338-gf342ba38-dirty",
|
|
15967
|
+
"hash": "gf342ba38",
|
|
15968
|
+
"distance": 2338,
|
|
16023
15969
|
"tag": "v0.0.18",
|
|
16024
15970
|
"semver": {
|
|
16025
15971
|
"options": {
|
|
@@ -16035,10 +15981,10 @@ const VERSION = {
|
|
|
16035
15981
|
"build": [],
|
|
16036
15982
|
"version": "0.0.18"
|
|
16037
15983
|
},
|
|
16038
|
-
"suffix": "
|
|
16039
|
-
"semverString": "0.0.18+
|
|
16040
|
-
"version": "0.0.
|
|
16041
|
-
"buildTimestamp": "2023-12-
|
|
15984
|
+
"suffix": "2338-gf342ba38-dirty",
|
|
15985
|
+
"semverString": "0.0.18+2338.gf342ba38",
|
|
15986
|
+
"version": "0.0.1825",
|
|
15987
|
+
"buildTimestamp": "2023-12-15T21:37:32.885Z"
|
|
16042
15988
|
};
|
|
16043
15989
|
/* tslint:enable */
|
|
16044
15990
|
|
|
@@ -16425,11 +16371,6 @@ class PliCnfMailService {
|
|
|
16425
16371
|
save(pliCnfMail) {
|
|
16426
16372
|
return this.httpClient.post(this.environment.host.backend.configuration + 'pliCnfMail/save', pliCnfMail);
|
|
16427
16373
|
}
|
|
16428
|
-
getByPromCodigo(promCodigo) {
|
|
16429
|
-
return this.httpClient.get(this.environment.host.backend.configuration + 'pliCnfMail/getByPromCodigo', {
|
|
16430
|
-
params: new HttpParams().set('promCodigo', promCodigo.toString())
|
|
16431
|
-
});
|
|
16432
|
-
}
|
|
16433
16374
|
}
|
|
16434
16375
|
PliCnfMailService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: PliCnfMailService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16435
16376
|
PliCnfMailService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: PliCnfMailService, providedIn: 'root' });
|
|
@@ -16443,6 +16384,206 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
|
16443
16384
|
args: ['environment']
|
|
16444
16385
|
}] }, { type: i1.HttpClient }]; } });
|
|
16445
16386
|
|
|
16387
|
+
class MasterUniversityService {
|
|
16388
|
+
constructor(environment, httpClient) {
|
|
16389
|
+
this.environment = environment;
|
|
16390
|
+
this.httpClient = httpClient;
|
|
16391
|
+
this.headerJson = { headers: new HttpHeaders({ 'Content-Type': 'application/json' }) };
|
|
16392
|
+
}
|
|
16393
|
+
/**
|
|
16394
|
+
* MasterUniversity[] returns a list of MasterUniversity
|
|
16395
|
+
* @returns MasterUniversity[]
|
|
16396
|
+
*/
|
|
16397
|
+
getAll() {
|
|
16398
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-university/getAll');
|
|
16399
|
+
}
|
|
16400
|
+
/**
|
|
16401
|
+
* MasterUniversityResponseApi returns a MasterUniversityResponseApi
|
|
16402
|
+
* @returns MasterUniversityResponseApi
|
|
16403
|
+
*/
|
|
16404
|
+
getAllResponseApi(page_size, page, name, english_name, country) {
|
|
16405
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-university/getAllResponseApi', {
|
|
16406
|
+
params: new HttpParams()
|
|
16407
|
+
.set('page_size', page_size)
|
|
16408
|
+
.set('page', page)
|
|
16409
|
+
.set('name', name)
|
|
16410
|
+
.set('english_name', english_name)
|
|
16411
|
+
.set('country', country)
|
|
16412
|
+
});
|
|
16413
|
+
}
|
|
16414
|
+
/**
|
|
16415
|
+
* Return university by id
|
|
16416
|
+
* @param id id university
|
|
16417
|
+
* @returns MasterUniversity university
|
|
16418
|
+
*/
|
|
16419
|
+
getById(id) {
|
|
16420
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-university/getById', { params: new HttpParams().set('id', id) });
|
|
16421
|
+
}
|
|
16422
|
+
/**
|
|
16423
|
+
* Create University
|
|
16424
|
+
* @param university
|
|
16425
|
+
* @returns MasterUniversity university create
|
|
16426
|
+
*/
|
|
16427
|
+
save(university) {
|
|
16428
|
+
return this.httpClient.post(this.environment.host.backend.configuration + 'master-university/save', university, this.headerJson);
|
|
16429
|
+
}
|
|
16430
|
+
/**
|
|
16431
|
+
* Delete university by id
|
|
16432
|
+
* @param id
|
|
16433
|
+
* @returns empty
|
|
16434
|
+
*/
|
|
16435
|
+
delete(id) {
|
|
16436
|
+
return this.httpClient.delete(this.environment.host.backend.configuration + 'master-university/' + id);
|
|
16437
|
+
}
|
|
16438
|
+
}
|
|
16439
|
+
MasterUniversityService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterUniversityService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16440
|
+
MasterUniversityService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterUniversityService, providedIn: 'root' });
|
|
16441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterUniversityService, decorators: [{
|
|
16442
|
+
type: Injectable,
|
|
16443
|
+
args: [{
|
|
16444
|
+
providedIn: 'root'
|
|
16445
|
+
}]
|
|
16446
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
16447
|
+
type: Inject,
|
|
16448
|
+
args: ['environment']
|
|
16449
|
+
}] }, { type: i1.HttpClient }]; } });
|
|
16450
|
+
|
|
16451
|
+
class MasterProgramService {
|
|
16452
|
+
constructor(environment, httpClient) {
|
|
16453
|
+
this.environment = environment;
|
|
16454
|
+
this.httpClient = httpClient;
|
|
16455
|
+
this.headerJson = { headers: new HttpHeaders({ 'Content-Type': 'application/json' }) };
|
|
16456
|
+
}
|
|
16457
|
+
/**
|
|
16458
|
+
* MasterProgram[] returns a list of MasterProgram
|
|
16459
|
+
* @returns MasterProgram[]
|
|
16460
|
+
*/
|
|
16461
|
+
getAll() {
|
|
16462
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-program/getAll');
|
|
16463
|
+
}
|
|
16464
|
+
/**
|
|
16465
|
+
* MasterProgramResponseApi returns a MasterProgramResponseApi
|
|
16466
|
+
* @returns MasterProgramResponseApi
|
|
16467
|
+
*/
|
|
16468
|
+
getAllResponseApi(page_size, page, name, english_name, type, study_area, faculty, university_name) {
|
|
16469
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-program/getAllResponseApi', {
|
|
16470
|
+
params: new HttpParams()
|
|
16471
|
+
.set('page_size', page_size)
|
|
16472
|
+
.set('page', page)
|
|
16473
|
+
.set('name', name)
|
|
16474
|
+
.set('english_name', english_name)
|
|
16475
|
+
.set('type', type)
|
|
16476
|
+
.set('study_area', study_area)
|
|
16477
|
+
.set('faculty', faculty)
|
|
16478
|
+
.set('university_name', university_name)
|
|
16479
|
+
});
|
|
16480
|
+
}
|
|
16481
|
+
/**
|
|
16482
|
+
* Return program by id
|
|
16483
|
+
* @param id id program
|
|
16484
|
+
* @returns MasterProgram program
|
|
16485
|
+
*/
|
|
16486
|
+
getById(id) {
|
|
16487
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-program/getById', { params: new HttpParams().set('id', id) });
|
|
16488
|
+
}
|
|
16489
|
+
/**
|
|
16490
|
+
* Create program
|
|
16491
|
+
* @param program
|
|
16492
|
+
* @returns MasterProgram program create
|
|
16493
|
+
*/
|
|
16494
|
+
save(program) {
|
|
16495
|
+
return this.httpClient.post(this.environment.host.backend.configuration + 'master-program/save', program, this.headerJson);
|
|
16496
|
+
}
|
|
16497
|
+
/**
|
|
16498
|
+
* Delete program by id
|
|
16499
|
+
* @param id
|
|
16500
|
+
* @returns empty
|
|
16501
|
+
*/
|
|
16502
|
+
delete(id) {
|
|
16503
|
+
return this.httpClient.delete(this.environment.host.backend.configuration + 'master-program/' + id);
|
|
16504
|
+
}
|
|
16505
|
+
/**
|
|
16506
|
+
* MasterProgramType[] returns a list of MasterProgramType
|
|
16507
|
+
* @returns MasterProgramType[]
|
|
16508
|
+
*/
|
|
16509
|
+
getAllProgramType() {
|
|
16510
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-program/getAllProgramType');
|
|
16511
|
+
}
|
|
16512
|
+
}
|
|
16513
|
+
MasterProgramService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterProgramService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16514
|
+
MasterProgramService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterProgramService, providedIn: 'root' });
|
|
16515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterProgramService, decorators: [{
|
|
16516
|
+
type: Injectable,
|
|
16517
|
+
args: [{
|
|
16518
|
+
providedIn: 'root'
|
|
16519
|
+
}]
|
|
16520
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
16521
|
+
type: Inject,
|
|
16522
|
+
args: ['environment']
|
|
16523
|
+
}] }, { type: i1.HttpClient }]; } });
|
|
16524
|
+
|
|
16525
|
+
class MasterCategoryService {
|
|
16526
|
+
constructor(environment, httpClient) {
|
|
16527
|
+
this.environment = environment;
|
|
16528
|
+
this.httpClient = httpClient;
|
|
16529
|
+
this.headerJson = { headers: new HttpHeaders({ 'Content-Type': 'application/json' }) };
|
|
16530
|
+
}
|
|
16531
|
+
/**
|
|
16532
|
+
* MasterCategory[] returns a list of MasterCategory
|
|
16533
|
+
* @returns MasterCategory[]
|
|
16534
|
+
*/
|
|
16535
|
+
getAll() {
|
|
16536
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-category/getAll');
|
|
16537
|
+
}
|
|
16538
|
+
/**
|
|
16539
|
+
* return MasterCategoryResponseApi with list MasterCategory
|
|
16540
|
+
* @returns MasterCategoryResponseApi
|
|
16541
|
+
*/
|
|
16542
|
+
getAllResponseApi(page_size, page, name) {
|
|
16543
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-category/getAllResponseApi', {
|
|
16544
|
+
params: new HttpParams()
|
|
16545
|
+
.set('page_size', page_size)
|
|
16546
|
+
.set('page', page)
|
|
16547
|
+
.set('name', name)
|
|
16548
|
+
});
|
|
16549
|
+
}
|
|
16550
|
+
/**
|
|
16551
|
+
* Return category by id
|
|
16552
|
+
* @param id id category
|
|
16553
|
+
* @returns MasterCategory category
|
|
16554
|
+
*/
|
|
16555
|
+
getById(id) {
|
|
16556
|
+
return this.httpClient.get(this.environment.host.backend.configuration + 'master-category/getById', { params: new HttpParams().set('id', id) });
|
|
16557
|
+
}
|
|
16558
|
+
/**
|
|
16559
|
+
* Create category
|
|
16560
|
+
* @param category
|
|
16561
|
+
* @returns MasterCategory category create
|
|
16562
|
+
*/
|
|
16563
|
+
save(category) {
|
|
16564
|
+
return this.httpClient.post(this.environment.host.backend.configuration + 'master-category/save', category, this.headerJson);
|
|
16565
|
+
}
|
|
16566
|
+
/**
|
|
16567
|
+
* Delete category by id
|
|
16568
|
+
* @param id
|
|
16569
|
+
* @returns empty
|
|
16570
|
+
*/
|
|
16571
|
+
delete(id) {
|
|
16572
|
+
return this.httpClient.delete(this.environment.host.backend.configuration + 'master-category/' + id);
|
|
16573
|
+
}
|
|
16574
|
+
}
|
|
16575
|
+
MasterCategoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterCategoryService, deps: [{ token: 'environment' }, { token: i1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16576
|
+
MasterCategoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterCategoryService, providedIn: 'root' });
|
|
16577
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImport: i0, type: MasterCategoryService, decorators: [{
|
|
16578
|
+
type: Injectable,
|
|
16579
|
+
args: [{
|
|
16580
|
+
providedIn: 'root'
|
|
16581
|
+
}]
|
|
16582
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
16583
|
+
type: Inject,
|
|
16584
|
+
args: ['environment']
|
|
16585
|
+
}] }, { type: i1.HttpClient }]; } });
|
|
16586
|
+
|
|
16446
16587
|
/*
|
|
16447
16588
|
* Public API Surface of ng-pli-commons
|
|
16448
16589
|
*/
|
|
@@ -16451,5 +16592,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.5", ngImpor
|
|
|
16451
16592
|
* Generated bundle index. Do not edit.
|
|
16452
16593
|
*/
|
|
16453
16594
|
|
|
16454
|
-
export { ApplicationFillPercentageService, ApplicationService, ApplicationTagService, AuthenticationService, BackofficeCommonsComponent, BudgetApplicationService, BudgetService, BudgetSimulationService, ClosureWalletService, CommitteMoneyServiceService, CommitteePdfService, CommitteeSnapshotService, CommonInfoService, CommonListsComponent, CommonService, ConfigurationCommonsComponent, ConfigurationDocumentService, ConfigurationMinisiteService, ConfigurationService, ConfigurationTokenComponent, ConfigurationTokenSubjectService, CreditScoreService, CreditStudyService, CubeService, CurrencyColfuturoFormatterDirective, CurrencyColfuturoPipe, CurrencyDecimalColfuturoFormatterDirective, CurrencyDecimalColfuturoPipe, CurrencyPrintColfuturoPipe, CustomValidator, DashboardCommonsComponent, DataFormHistoryService, DataFormService, DataLetterSegmentationService, DocumentAnalysisAutoService, DocumentHistoryService, DocumentManagementService, DocumentService, DocumentValidationAttemptService, DocumentaryTypeService, DynamicFilterComponent, EmailService, EvaluationService, ExcelToJsonComponent, ExportExcelService, FileService, FormService, FormUtil, FormioUtil, FrontofficeCommonsComponent, GicClientDisbursementMetadataService, GicClientService, GicCnfBankvisionTransactionService, GicCnfClosingDateService, GicCnfMaintenaceService, GicCollectionService, GicDisbursementService, GicExtractService, GicLogService, GicPaymentApplicationService, GicPaymentPlanService, GicTRMService, GlobalShowTaskService, GuaranteeDocumentService, GuaranteeEnrollmentService, GuaranteeService, GuaranteeTokenComponent, HashService, ImportDataService, ImportExcelGICService, InitialConfigurationGicParametersService, InitialRecordService, IntegrationADOService, InteractionApplicationUserService, InterestAdjustmentService, KeysAssignationService, LegalizationService, LetterCampaingService, LetterTaskMappingService, LogService, MaintenanceService, MigrationPlisService, MigrationSurveyQueueService, NgPliCommonsModule, NgPliCommonsService, PageService, PartnerService, PartnerSystemService, PdfAnalyzerComponent, PdfAnalyzerService, PdfConfigComponent, PdfGeneratorComponent, PdfMergeVisualizerComponent, PdfVisualizerComponent, PermissionService, PliCnfAcuityFieldsService, PliCnfAppCardFilterService, PliCnfAppointmentTypeService, PliCnfBudgetProgramTypeService, PliCnfBudgetService, PliCnfCloningService, PliCnfCommitteePdfConfigTableConfigService, PliCnfCommitteePdfGenStatusService, PliCnfCommitteeService, PliCnfCommitteeVisualizationModeService, PliCnfConfigMinisiteService, PliCnfConfigurationCreditStudyService, PliCnfDocumentManagementService, PliCnfDynamicKeysAssignService, PliCnfEvaluationTaskMailingService, PliCnfEvaluationTaskService, PliCnfEvaluationTemplateService, PliCnfFormEditService, PliCnfFormMultiaplicacionService, PliCnfGuaranteeDocumentsTemplateService, PliCnfGuaranteeTokenService, PliCnfHeaderService, PliCnfIndicatorService, PliCnfInformationSystemService, PliCnfInteractionService, PliCnfLetterTemplateService, PliCnfLetterTemplateTypeService, PliCnfLookAndFeelService, PliCnfMailService, PliCnfMenuFormService, PliCnfMigrationPlisFieldBudgetService, PliCnfMigrationPlisFieldService, PliCnfMigrationStatusPlisService, PliCnfPageSectionFormService, PliCnfPageSubProcessService, PliCnfPdfsService, PliCnfProfileFormService, PliCnfProfileUserService, PliCnfProjectSummaryService, PliCnfScenarioService, PliCnfSegmentationService, PliCnfSnapshotTokenServices, PliCnfStatusFlowInteractionService, PliCnfStatusFlowService, PliCnfSupportDocumentCategoryService, PliCnfSupportDocumentService, PliCnfSurveyDocumentService, PliCnfSurveyPdfService, PliCnfSurveyService, PliCnfTaskGroupService, PliCnfTextCategoryService, PliCnfTextOptionService, PliCnfTextService, PliCnfTypeTextService, PliCnfUniversityArticleService, PliCnfUserCalendarService, PliCnfUserWorkspaceService, PliCnfValproKeysService, PliCnfWorkspaceSegmentationService, PliMessageTypeService, PliMultipleValueFilterService, PliPromocionUsernameService, PliSegActionUserService, PliSegmentationService, PliTagAssignmentService, PliTagService, PliUserService,
|
|
16595
|
+
export { ApplicationFillPercentageService, ApplicationService, ApplicationTagService, AuthenticationService, BackofficeCommonsComponent, BudgetApplicationService, BudgetService, BudgetSimulationService, ClosureWalletService, CommitteMoneyServiceService, CommitteePdfService, CommitteeSnapshotService, CommonInfoService, CommonListsComponent, CommonService, ConfigurationCommonsComponent, ConfigurationDocumentService, ConfigurationMinisiteService, ConfigurationService, ConfigurationTokenComponent, ConfigurationTokenSubjectService, CreditScoreService, CreditStudyService, CubeService, CurrencyColfuturoFormatterDirective, CurrencyColfuturoPipe, CurrencyDecimalColfuturoFormatterDirective, CurrencyDecimalColfuturoPipe, CurrencyPrintColfuturoPipe, CustomValidator, DashboardCommonsComponent, DataFormHistoryService, DataFormService, DataLetterSegmentationService, DocumentAnalysisAutoService, DocumentHistoryService, DocumentManagementService, DocumentService, DocumentValidationAttemptService, DocumentaryTypeService, DynamicFilterComponent, EmailService, EvaluationService, ExcelToJsonComponent, ExportExcelService, FileService, FormService, FormUtil, FormioUtil, FrontofficeCommonsComponent, GicClientDisbursementMetadataService, GicClientService, GicCnfBankvisionTransactionService, GicCnfClosingDateService, GicCnfMaintenaceService, GicCollectionService, GicDisbursementService, GicExtractService, GicLogService, GicPaymentApplicationService, GicPaymentPlanService, GicTRMService, GlobalShowTaskService, GuaranteeDocumentService, GuaranteeEnrollmentService, GuaranteeService, GuaranteeTokenComponent, HashService, ImportDataService, ImportExcelGICService, InitialConfigurationGicParametersService, InitialRecordService, IntegrationADOService, InteractionApplicationUserService, InterestAdjustmentService, KeysAssignationService, LegalizationService, LetterCampaingService, LetterTaskMappingService, LogService, MaintenanceService, MasterCategoryService, MasterProgramService, MasterUniversityService, MigrationPlisService, MigrationSurveyQueueService, NgPliCommonsModule, NgPliCommonsService, PageService, PartnerService, PartnerSystemService, PdfAnalyzerComponent, PdfAnalyzerService, PdfConfigComponent, PdfGeneratorComponent, PdfMergeVisualizerComponent, PdfVisualizerComponent, PermissionService, PliCnfAcuityFieldsService, PliCnfAppCardFilterService, PliCnfAppointmentTypeService, PliCnfBudgetProgramTypeService, PliCnfBudgetService, PliCnfCloningService, PliCnfCommitteePdfConfigTableConfigService, PliCnfCommitteePdfGenStatusService, PliCnfCommitteeService, PliCnfCommitteeVisualizationModeService, PliCnfConfigMinisiteService, PliCnfConfigurationCreditStudyService, PliCnfDocumentManagementService, PliCnfDynamicKeysAssignService, PliCnfEvaluationTaskMailingService, PliCnfEvaluationTaskService, PliCnfEvaluationTemplateService, PliCnfFormEditService, PliCnfFormMultiaplicacionService, PliCnfGuaranteeDocumentsTemplateService, PliCnfGuaranteeTokenService, PliCnfHeaderService, PliCnfIndicatorService, PliCnfInformationSystemService, PliCnfInteractionService, PliCnfLetterTemplateService, PliCnfLetterTemplateTypeService, PliCnfLookAndFeelService, PliCnfMailService, PliCnfMenuFormService, PliCnfMigrationPlisFieldBudgetService, PliCnfMigrationPlisFieldService, PliCnfMigrationStatusPlisService, PliCnfPageSectionFormService, PliCnfPageSubProcessService, PliCnfPdfsService, PliCnfProfileFormService, PliCnfProfileUserService, PliCnfProjectSummaryService, PliCnfScenarioService, PliCnfSegmentationService, PliCnfSnapshotTokenServices, PliCnfStatusFlowInteractionService, PliCnfStatusFlowService, PliCnfSupportDocumentCategoryService, PliCnfSupportDocumentService, PliCnfSurveyDocumentService, PliCnfSurveyPdfService, PliCnfSurveyService, PliCnfTaskGroupService, PliCnfTextCategoryService, PliCnfTextOptionService, PliCnfTextService, PliCnfTypeTextService, PliCnfUniversityArticleService, PliCnfUserCalendarService, PliCnfUserWorkspaceService, PliCnfValproKeysService, PliCnfWorkspaceSegmentationService, PliMessageTypeService, PliMultipleValueFilterService, PliPromocionUsernameService, PliSegActionUserService, PliSegmentationService, PliTagAssignmentService, PliTagService, PliUserService, PlisEstatusChangeService, PppService, ProfileService, ProgressBarComponent, ProgressBarService, PromotionScoreService, RegistryIdentifierService, ReturnRefundService, SegmentationService, SegmentationTokensComponent, SegmentationTokensService, SegmentationUserService, SelectPppComponent, SendApplicationService, SesionFormService, SesionService, ShowHideColumnsTableComponent, SpinnerService, SponsorshipLetterService, StatusService, SummaryBudgetService, SurveyMetadataService, SurveyQueueService, SurveyService, TasaCambioService, ThousandsPipe, TokenComponent, TokenService, TokenTransformationService, TokensCalculatorComponent, UniversityService, UploadDocumentsService, UserService, VersionCommons, VisualizationCommitteeService };
|
|
16455
16596
|
//# sourceMappingURL=ng-pli-commons.mjs.map
|