iptdevs-design-system 3.1.5 → 3.1.6
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/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rs.model.mjs +3 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +13 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +13 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/user/user-rq.model.d.ts +34 -0
- package/lib/core/models/user/user-rs.model.d.ts +20 -0
- package/lib/core/services/user-service/user-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -852,6 +852,16 @@ class UserService extends IPTGeneralService {
|
|
|
852
852
|
this.generateRequestParams(token);
|
|
853
853
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
854
854
|
}
|
|
855
|
+
updateUserValidated(params) {
|
|
856
|
+
let serviceUrl = this.SERVICE_URL + 'post/update/user/validated';
|
|
857
|
+
this.generateRequestParams(params);
|
|
858
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
859
|
+
}
|
|
860
|
+
deletedUserValidated(params) {
|
|
861
|
+
let serviceUrl = this.SERVICE_URL + 'post/deleted/user/validated';
|
|
862
|
+
this.generateRequestParams(params);
|
|
863
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
864
|
+
}
|
|
855
865
|
}
|
|
856
866
|
UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
857
867
|
UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
|
|
@@ -5102,6 +5112,8 @@ class UserRs {
|
|
|
5102
5112
|
}
|
|
5103
5113
|
class UserLoginRs {
|
|
5104
5114
|
}
|
|
5115
|
+
class IUserFullDataRs {
|
|
5116
|
+
}
|
|
5105
5117
|
|
|
5106
5118
|
/*
|
|
5107
5119
|
* Public API Surface of design-system dockerizada
|
|
@@ -5111,5 +5123,5 @@ class UserLoginRs {
|
|
|
5111
5123
|
* Generated bundle index. Do not edit.
|
|
5112
5124
|
*/
|
|
5113
5125
|
|
|
5114
|
-
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, 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 };
|
|
5126
|
+
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 };
|
|
5115
5127
|
//# sourceMappingURL=iptdevs-design-system.mjs.map
|