iptdevs-design-system 3.1.32 → 3.1.34
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/core/models/PlacementTest/PlacementTest.models.mjs +1 -1
- package/esm2020/lib/core/models/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +11 -1
- package/esm2020/lib/core/services/placement-service/placement.service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +25 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +25 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/PlacementTest/PlacementTest.models.d.ts +6 -0
- package/lib/core/models/academic/academic.component.d.ts +32 -0
- package/lib/core/models/commercial/commercial.model.d.ts +25 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -1
- package/lib/core/services/commercial-service/comercial.service.d.ts +3 -1
- package/lib/core/services/placement-service/placement.service.d.ts +3 -0
- package/package.json +1 -1
|
@@ -2606,6 +2606,16 @@ class CommercialService extends IPTGeneralService {
|
|
|
2606
2606
|
this.generateRequestParams(params);
|
|
2607
2607
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
2608
2608
|
}
|
|
2609
|
+
createGoal(params) {
|
|
2610
|
+
let serviceUrl = this.SERVICE_URL + 'post/contact/strategy/create/goal';
|
|
2611
|
+
this.generateRequestParams(params);
|
|
2612
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
2613
|
+
}
|
|
2614
|
+
getAllGoals(token) {
|
|
2615
|
+
let serviceUrl = this.SERVICE_URL + 'post/contact/strategy/view/goals';
|
|
2616
|
+
this.generateRequestParams(token);
|
|
2617
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
2618
|
+
}
|
|
2609
2619
|
}
|
|
2610
2620
|
CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2611
2621
|
CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
|
|
@@ -4880,6 +4890,11 @@ class AcademicService extends IPTGeneralService {
|
|
|
4880
4890
|
this.generateRequestParams(params);
|
|
4881
4891
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4882
4892
|
}
|
|
4893
|
+
createClassroom(params) {
|
|
4894
|
+
const serviceUrl = this.SERVICE_URL + 'post/create/classroom';
|
|
4895
|
+
this.generateRequestParams(params);
|
|
4896
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4897
|
+
}
|
|
4883
4898
|
}
|
|
4884
4899
|
AcademicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4885
4900
|
AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });
|
|
@@ -5182,6 +5197,16 @@ class PlacementService extends IPTGeneralService {
|
|
|
5182
5197
|
let serviceUrl = this.SERVICE_URL + 'get/possible/students';
|
|
5183
5198
|
return this.http.get(serviceUrl);
|
|
5184
5199
|
}
|
|
5200
|
+
getNotePlacementTestByDate(params) {
|
|
5201
|
+
let serviceUrl = this.SERVICE_URL + 'post/note/placement/test/by/date';
|
|
5202
|
+
this.generateRequestParams(params);
|
|
5203
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5204
|
+
}
|
|
5205
|
+
getNotePlacementTestByName(params) {
|
|
5206
|
+
let serviceUrl = this.SERVICE_URL + 'post/note/placement/test/by/name/student';
|
|
5207
|
+
this.generateRequestParams(params);
|
|
5208
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5209
|
+
}
|
|
5185
5210
|
}
|
|
5186
5211
|
PlacementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5187
5212
|
PlacementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, providedIn: 'root' });
|