iptdevs-design-system 3.1.31 → 3.1.33
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 +33 -0
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs +45 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +45 -1
- 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 +28 -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 +15 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -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' });
|
|
@@ -5171,6 +5186,35 @@ const validateCoupunts = (control) => {
|
|
|
5171
5186
|
const value = control.value.trim();
|
|
5172
5187
|
};
|
|
5173
5188
|
|
|
5189
|
+
class PlacementService extends IPTGeneralService {
|
|
5190
|
+
constructor(http) {
|
|
5191
|
+
super();
|
|
5192
|
+
this.http = http;
|
|
5193
|
+
this.SERVICE_URL = 'placement/api/';
|
|
5194
|
+
this.SERVICE_URL = this.baseUrl() + this.SERVICE_URL;
|
|
5195
|
+
}
|
|
5196
|
+
getAllPlacementTestUsers() {
|
|
5197
|
+
let serviceUrl = this.SERVICE_URL + 'get/possible/students';
|
|
5198
|
+
return this.http.get(serviceUrl);
|
|
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
|
+
}
|
|
5210
|
+
}
|
|
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 });
|
|
5212
|
+
PlacementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, providedIn: 'root' });
|
|
5213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: PlacementService, decorators: [{
|
|
5214
|
+
type: Injectable,
|
|
5215
|
+
args: [{ providedIn: 'root' }]
|
|
5216
|
+
}], ctorParameters: function () { return [{ type: i1$2.HttpClient }]; } });
|
|
5217
|
+
|
|
5174
5218
|
class Session {
|
|
5175
5219
|
}
|
|
5176
5220
|
|
|
@@ -5189,5 +5233,5 @@ class IUserFullDataRs {
|
|
|
5189
5233
|
* Generated bundle index. Do not edit.
|
|
5190
5234
|
*/
|
|
5191
5235
|
|
|
5192
|
-
export { AcademicService, ActivityService, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LoginFormComponent, MarketingService, NotesService, ParameterService, QuestionTypeComponent, RadioComponent, RedirectGuard, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, UserEktService, UserLoginRs, UserRs, UserService, validateCoupunts };
|
|
5236
|
+
export { AcademicService, ActivityService, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LoginFormComponent, MarketingService, NotesService, ParameterService, PlacementService, QuestionTypeComponent, RadioComponent, RedirectGuard, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, UserEktService, UserLoginRs, UserRs, UserService, validateCoupunts };
|
|
5193
5237
|
//# sourceMappingURL=iptdevs-design-system.mjs.map
|