iptdevs-design-system 2.7.36 → 2.7.38

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.
Files changed (164) hide show
  1. package/README.md +24 -24
  2. package/esm2020/iptdevs-design-system.mjs +4 -4
  3. package/esm2020/lib/cod/cod-documents-section/cod-documents-section.component.mjs +16 -16
  4. package/esm2020/lib/cod/cod-form/cod-form.component.mjs +227 -227
  5. package/esm2020/lib/cod/cod.module.mjs +90 -90
  6. package/esm2020/lib/cod/logic/calculate-quotes.service.mjs +72 -72
  7. package/esm2020/lib/cod/logic/cod-form-controls.mjs +91 -91
  8. package/esm2020/lib/cod/logic/cod-form-steps.mjs +29 -29
  9. package/esm2020/lib/cod/logic/communicator.service.mjs +28 -28
  10. package/esm2020/lib/cod/logic/local-storage-cod.service.mjs +39 -39
  11. package/esm2020/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.mjs +146 -146
  12. package/esm2020/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.mjs +251 -251
  13. package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +200 -200
  14. package/esm2020/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.mjs +175 -175
  15. package/esm2020/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.mjs +255 -255
  16. package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
  17. package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
  18. package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
  19. package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
  20. package/esm2020/lib/components/atoms/input/input.component.mjs +145 -145
  21. package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
  22. package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
  23. package/esm2020/lib/components/atoms/loader/loader.component.mjs +48 -48
  24. package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
  25. package/esm2020/lib/components/atoms/select/select.component.mjs +102 -102
  26. package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
  27. package/esm2020/lib/components/components.module.mjs +118 -118
  28. package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +228 -228
  29. package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
  30. package/esm2020/lib/components/material.module.mjs +19 -19
  31. package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +150 -150
  32. package/esm2020/lib/core/core.module.mjs +73 -73
  33. package/esm2020/lib/core/models/academic/academic.component.mjs +2 -2
  34. package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -2
  35. package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -2
  36. package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
  37. package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -2
  38. package/esm2020/lib/core/models/classroom/classroom-rq.model.mjs +2 -2
  39. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  40. package/esm2020/lib/core/models/commercial/commercial.model.mjs +2 -2
  41. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  42. package/esm2020/lib/core/models/course/courses.model.mjs +2 -2
  43. package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -2
  44. package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
  45. package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -2
  46. package/esm2020/lib/core/models/payment/payment-rq.model.mjs +2 -2
  47. package/esm2020/lib/core/models/response/response.interface.mjs +2 -2
  48. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  49. package/esm2020/lib/core/models/student/student.interface.mjs +2 -2
  50. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  51. package/esm2020/lib/core/models/test/test.model.mjs +2 -2
  52. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  53. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  54. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  55. package/esm2020/lib/core/services/academic-service/academic.service.mjs +55 -55
  56. package/esm2020/lib/core/services/activity-service/activity.service.mjs +87 -87
  57. package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +64 -64
  58. package/esm2020/lib/core/services/budget-service/budget-service.mjs +66 -66
  59. package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +65 -60
  60. package/esm2020/lib/core/services/certificate-service/certificate.service.mjs +26 -26
  61. package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +36 -36
  62. package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +49 -49
  63. package/esm2020/lib/core/services/commercial-service/validators.mjs +4 -4
  64. package/esm2020/lib/core/services/copies.service.mjs +17 -17
  65. package/esm2020/lib/core/services/course-service/course-service.model.mjs +70 -70
  66. package/esm2020/lib/core/services/ekt-service/userekt.service.mjs +29 -29
  67. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +52 -52
  68. package/esm2020/lib/core/services/notes-service/notes.service.mjs +46 -46
  69. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +173 -173
  70. package/esm2020/lib/core/services/service-enviroments.mjs +26 -26
  71. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  72. package/esm2020/lib/core/services/student-service/student.service.mjs +26 -26
  73. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  74. package/esm2020/lib/core/services/test-service/test.service.mjs +128 -131
  75. package/esm2020/lib/core/services/user-service/user-service.mjs +100 -100
  76. package/esm2020/lib/core/utils/base-service/base.service.mjs +191 -186
  77. package/esm2020/lib/core/utils/copies.mjs +214 -214
  78. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  79. package/esm2020/lib/design-system.module.mjs +40 -40
  80. package/esm2020/public-api.mjs +88 -88
  81. package/fesm2015/iptdevs-design-system.mjs +4248 -4241
  82. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  83. package/fesm2020/iptdevs-design-system.mjs +4245 -4238
  84. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  85. package/iptdevs-design-system.d.ts +5 -5
  86. package/lib/cod/cod-documents-section/cod-documents-section.component.d.ts +8 -8
  87. package/lib/cod/cod-form/cod-form.component.d.ts +37 -37
  88. package/lib/cod/cod.module.d.ts +21 -21
  89. package/lib/cod/logic/calculate-quotes.service.d.ts +14 -14
  90. package/lib/cod/logic/cod-form-controls.d.ts +16 -16
  91. package/lib/cod/logic/cod-form-steps.d.ts +15 -15
  92. package/lib/cod/logic/communicator.service.d.ts +13 -13
  93. package/lib/cod/logic/local-storage-cod.service.d.ts +8 -8
  94. package/lib/cod/steps/cod-form-step-five/cod-form-step-five.component.d.ts +31 -31
  95. package/lib/cod/steps/cod-form-step-four/cod-form-step-four.component.d.ts +47 -47
  96. package/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.d.ts +46 -46
  97. package/lib/cod/steps/cod-form-step-three/cod-form-step-three.component.d.ts +35 -35
  98. package/lib/cod/steps/cod-form-step-two/cod-form-step-two.component.d.ts +44 -44
  99. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  100. package/lib/components/atoms/button/button.component.d.ts +13 -13
  101. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  102. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  103. package/lib/components/atoms/input/input.component.d.ts +26 -26
  104. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  105. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  106. package/lib/components/atoms/loader/loader.component.d.ts +7 -7
  107. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  108. package/lib/components/atoms/select/select.component.d.ts +26 -26
  109. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  110. package/lib/components/components.module.d.ts +24 -24
  111. package/lib/components/forms/create-user-form/create-user-form.component.d.ts +36 -36
  112. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  113. package/lib/components/material.module.d.ts +11 -11
  114. package/lib/components/molecules/sidenav/sidenav.component.d.ts +25 -25
  115. package/lib/core/core.module.d.ts +6 -6
  116. package/lib/core/models/academic/academic.component.d.ts +26 -26
  117. package/lib/core/models/activities/activities.interface.d.ts +12 -12
  118. package/lib/core/models/attendance/attendance.interface.d.ts +62 -62
  119. package/lib/core/models/budget/budget.model.d.ts +69 -69
  120. package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -27
  121. package/lib/core/models/classroom/classroom-rq.model.d.ts +23 -23
  122. package/lib/core/models/cod/cod-rq.model.d.ts +168 -168
  123. package/lib/core/models/commercial/commercial.model.d.ts +10 -10
  124. package/lib/core/models/course/course-rq.model.d.ts +86 -86
  125. package/lib/core/models/course/courses.model.d.ts +18 -18
  126. package/lib/core/models/cronogram/cronogram.models.d.ts +183 -183
  127. package/lib/core/models/marketing/marketing.model.d.ts +104 -104
  128. package/lib/core/models/notes/notes.interface.d.ts +89 -89
  129. package/lib/core/models/payment/payment-rq.model.d.ts +212 -212
  130. package/lib/core/models/response/response.interface.d.ts +10 -10
  131. package/lib/core/models/session/session.model.d.ts +5 -5
  132. package/lib/core/models/student/student.interface.d.ts +4 -4
  133. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  134. package/lib/core/models/test/test.model.d.ts +219 -219
  135. package/lib/core/models/url/url.model.d.ts +8 -8
  136. package/lib/core/models/user/user-rq.model.d.ts +90 -90
  137. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  138. package/lib/core/services/academic-service/academic.service.d.ts +20 -20
  139. package/lib/core/services/activity-service/activity.service.d.ts +25 -25
  140. package/lib/core/services/attendance-service/attendance.service.d.ts +22 -22
  141. package/lib/core/services/budget-service/budget-service.d.ts +23 -23
  142. package/lib/core/services/calendar-service/calendar.service.d.ts +23 -22
  143. package/lib/core/services/certificate-service/certificate.service.d.ts +13 -13
  144. package/lib/core/services/classroom-service/classroom-service.service.d.ts +15 -15
  145. package/lib/core/services/commercial-service/comercial.service.d.ts +19 -19
  146. package/lib/core/services/commercial-service/validators.d.ts +2 -2
  147. package/lib/core/services/copies.service.d.ts +7 -7
  148. package/lib/core/services/course-service/course-service.model.d.ts +23 -23
  149. package/lib/core/services/ekt-service/userekt.service.d.ts +13 -13
  150. package/lib/core/services/marketing-service/marketing-service.d.ts +19 -19
  151. package/lib/core/services/notes-service/notes.service.d.ts +18 -18
  152. package/lib/core/services/parameters-service/parameters.service.d.ts +49 -49
  153. package/lib/core/services/service-enviroments.d.ts +5 -5
  154. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  155. package/lib/core/services/student-service/student.service.d.ts +13 -13
  156. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  157. package/lib/core/services/test-service/test.service.d.ts +33 -34
  158. package/lib/core/services/user-service/user-service.d.ts +30 -30
  159. package/lib/core/utils/base-service/base.service.d.ts +23 -22
  160. package/lib/core/utils/copies.d.ts +1 -1
  161. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  162. package/lib/design-system.module.d.ts +10 -10
  163. package/package.json +1 -1
  164. package/public-api.d.ts +75 -75
@@ -1,35 +1,35 @@
1
- export declare class UserRs {
2
- code: number;
3
- name: string;
4
- last_name: string;
5
- nick_name: string;
6
- email: string;
7
- email_ipt: string;
8
- role: number;
9
- service_hour: number;
10
- phone_indicative: number;
11
- phone_number: number;
12
- gender: string;
13
- birthdate: string;
14
- city: number;
15
- id_card_type: number;
16
- id_card: number;
17
- comment?: string;
18
- password: string;
19
- token: string;
20
- }
21
- export declare class UserLoginRs {
22
- code: number;
23
- name: string;
24
- last_name: string;
25
- email: string;
26
- id_card: string;
27
- id_card_type: number;
28
- phone_indicative: number;
29
- phone: string;
30
- gender: number;
31
- city: number;
32
- role: number;
33
- birthdate: string;
34
- token: string;
35
- }
1
+ export declare class UserRs {
2
+ code: number;
3
+ name: string;
4
+ last_name: string;
5
+ nick_name: string;
6
+ email: string;
7
+ email_ipt: string;
8
+ role: number;
9
+ service_hour: number;
10
+ phone_indicative: number;
11
+ phone_number: number;
12
+ gender: string;
13
+ birthdate: string;
14
+ city: number;
15
+ id_card_type: number;
16
+ id_card: number;
17
+ comment?: string;
18
+ password: string;
19
+ token: string;
20
+ }
21
+ export declare class UserLoginRs {
22
+ code: number;
23
+ name: string;
24
+ last_name: string;
25
+ email: string;
26
+ id_card: string;
27
+ id_card_type: number;
28
+ phone_indicative: number;
29
+ phone: string;
30
+ gender: number;
31
+ city: number;
32
+ role: number;
33
+ birthdate: string;
34
+ token: string;
35
+ }
@@ -1,20 +1,20 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq } from '../../models/academic/academic.component';
5
- import { UserTokenRq } from '../../models/user/user-rq.model';
6
- import * as i0 from "@angular/core";
7
- export declare class AcademicService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- getCourseByType(params: GetCourseByTypeRq): Observable<any>;
12
- getStudentByCourse(params: GetStudentByCourse): Observable<any>;
13
- obtainLastStudentCod(params: GetLastStudentCodRq): Observable<any>;
14
- getCodGenDataStudent(codeStudent: number): Observable<any>;
15
- getAllCoursesInitialized(params: UserTokenRq): Observable<any>;
16
- getStudentByTeacher(params: GetStudentByTeacherRq): Observable<any>;
17
- getAllStudentByTeacher(params: GetAllStudentByTeacherRq): Observable<any>;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
19
- static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
20
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq } from '../../models/academic/academic.component';
5
+ import { UserTokenRq } from '../../models/user/user-rq.model';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AcademicService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ getCourseByType(params: GetCourseByTypeRq): Observable<any>;
12
+ getStudentByCourse(params: GetStudentByCourse): Observable<any>;
13
+ obtainLastStudentCod(params: GetLastStudentCodRq): Observable<any>;
14
+ getCodGenDataStudent(codeStudent: number): Observable<any>;
15
+ getAllCoursesInitialized(params: UserTokenRq): Observable<any>;
16
+ getStudentByTeacher(params: GetStudentByTeacherRq): Observable<any>;
17
+ getAllStudentByTeacher(params: GetAllStudentByTeacherRq): Observable<any>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
20
+ }
@@ -1,25 +1,25 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import * as i0 from "@angular/core";
5
- export declare class ActivityService extends IPTGeneralService {
6
- private http;
7
- private SERVICE_URL;
8
- constructor(http: HttpClient);
9
- getActivityByCourse(params: any): Observable<any>;
10
- getNoticesByCourse(codeCourse: number): Observable<any>;
11
- getUnitsByActivity(params: any): Observable<any>;
12
- getElementsByUnit(params: any): Observable<any>;
13
- getCourseTeacherByToken(params: any): Observable<any>;
14
- getAllTypeResource(): Observable<any>;
15
- getAllTypeElement(): Observable<any>;
16
- getElementsByUnitNew(params: any): Observable<any>;
17
- updateCourseByCronogram(params: any): Observable<any>;
18
- getTemplateCourseByCourse(codeCourse: number): Observable<any>;
19
- saveMagnageActivity(params: any): Observable<any>;
20
- postNotesActivityH5P(params: any): Observable<any>;
21
- getMagnageActivity(params: any): Observable<any>;
22
- getNoteActivityH5P(params: any): Observable<any>;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<ActivityService, never>;
24
- static ɵprov: i0.ɵɵInjectableDeclaration<ActivityService>;
25
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ActivityService extends IPTGeneralService {
6
+ private http;
7
+ private SERVICE_URL;
8
+ constructor(http: HttpClient);
9
+ getActivityByCourse(params: any): Observable<any>;
10
+ getNoticesByCourse(codeCourse: number): Observable<any>;
11
+ getUnitsByActivity(params: any): Observable<any>;
12
+ getElementsByUnit(params: any): Observable<any>;
13
+ getCourseTeacherByToken(params: any): Observable<any>;
14
+ getAllTypeResource(): Observable<any>;
15
+ getAllTypeElement(): Observable<any>;
16
+ getElementsByUnitNew(params: any): Observable<any>;
17
+ updateCourseByCronogram(params: any): Observable<any>;
18
+ getTemplateCourseByCourse(codeCourse: number): Observable<any>;
19
+ saveMagnageActivity(params: any): Observable<any>;
20
+ postNotesActivityH5P(params: any): Observable<any>;
21
+ getMagnageActivity(params: any): Observable<any>;
22
+ getNoteActivityH5P(params: any): Observable<any>;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActivityService, never>;
24
+ static ɵprov: i0.ɵɵInjectableDeclaration<ActivityService>;
25
+ }
@@ -1,22 +1,22 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Response } from '../../models/response/response.interface';
3
- import { Observable } from 'rxjs';
4
- import { AddEventByCourseRq, CourseAttendance, GetEventByCodeRq, GetEventsByCourseCodeRq, GetNotAttendancesByCodRq, RegisterNewAttendanceByEventRq } from '../../models/attendance/attendance.interface';
5
- import { IPTGeneralService } from '../service-enviroments';
6
- import * as i0 from "@angular/core";
7
- export declare class AttendanceService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- addEventByCourseRq(params: AddEventByCourseRq): Observable<Response>;
12
- getEventsByCourseCode(params: GetEventsByCourseCodeRq): Observable<Response>;
13
- getEventByCode(params: GetEventByCodeRq): Observable<Response>;
14
- registerNewAttendanceByEvent(params: RegisterNewAttendanceByEventRq): Observable<Response>;
15
- getAttendaceByCourse(courseCode: number): Observable<CourseAttendance>;
16
- getCODCodeByStudentCode(studentCode: number): Observable<any>;
17
- getAttendanceHistoryByStudent(token: string, cod_code: number): Observable<Response>;
18
- getAllNotAttendancesByCod(params: GetNotAttendancesByCodRq): Observable<Response>;
19
- getNotAttendancesOfLastWeekByCod(params: GetNotAttendancesByCodRq): Observable<Response>;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<AttendanceService, never>;
21
- static ɵprov: i0.ɵɵInjectableDeclaration<AttendanceService>;
22
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Response } from '../../models/response/response.interface';
3
+ import { Observable } from 'rxjs';
4
+ import { AddEventByCourseRq, CourseAttendance, GetEventByCodeRq, GetEventsByCourseCodeRq, GetNotAttendancesByCodRq, RegisterNewAttendanceByEventRq } from '../../models/attendance/attendance.interface';
5
+ import { IPTGeneralService } from '../service-enviroments';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AttendanceService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ addEventByCourseRq(params: AddEventByCourseRq): Observable<Response>;
12
+ getEventsByCourseCode(params: GetEventsByCourseCodeRq): Observable<Response>;
13
+ getEventByCode(params: GetEventByCodeRq): Observable<Response>;
14
+ registerNewAttendanceByEvent(params: RegisterNewAttendanceByEventRq): Observable<Response>;
15
+ getAttendaceByCourse(courseCode: number): Observable<CourseAttendance>;
16
+ getCODCodeByStudentCode(studentCode: number): Observable<any>;
17
+ getAttendanceHistoryByStudent(token: string, cod_code: number): Observable<Response>;
18
+ getAllNotAttendancesByCod(params: GetNotAttendancesByCodRq): Observable<Response>;
19
+ getNotAttendancesOfLastWeekByCod(params: GetNotAttendancesByCodRq): Observable<Response>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<AttendanceService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<AttendanceService>;
22
+ }
@@ -1,23 +1,23 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { getdiscountAllRq, DiscountRq, DiscountUpdateRq } from '../../models/budget/budget.model';
4
- import { PaymentBillRq } from '../../models/payment/payment-rq.model';
5
- import { IPTGeneralService } from '../service-enviroments';
6
- import * as i0 from "@angular/core";
7
- export declare class BudgetService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- getAllDiscount(user: getdiscountAllRq): Observable<any>;
12
- createDiscount(params: DiscountRq): Observable<any>;
13
- updateDiscount(params: DiscountUpdateRq): Observable<any>;
14
- getPaymentStudentsByCode(codeStudent: number): Observable<any>;
15
- getPaymentWalletByCampus(codeCampus: number): Observable<any>;
16
- paymentBillDues(params: PaymentBillRq): Observable<any>;
17
- paymentBillServices(params: PaymentBillRq): Observable<any>;
18
- getPaymentBillAll(): Observable<any>;
19
- getPaymentBillByCode(codePayment: number): Observable<any>;
20
- getPaymentBillByStudent(codeStudent: number): Observable<any>;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
23
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { getdiscountAllRq, DiscountRq, DiscountUpdateRq } from '../../models/budget/budget.model';
4
+ import { PaymentBillRq } from '../../models/payment/payment-rq.model';
5
+ import { IPTGeneralService } from '../service-enviroments';
6
+ import * as i0 from "@angular/core";
7
+ export declare class BudgetService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ getAllDiscount(user: getdiscountAllRq): Observable<any>;
12
+ createDiscount(params: DiscountRq): Observable<any>;
13
+ updateDiscount(params: DiscountUpdateRq): Observable<any>;
14
+ getPaymentStudentsByCode(codeStudent: number): Observable<any>;
15
+ getPaymentWalletByCampus(codeCampus: number): Observable<any>;
16
+ paymentBillDues(params: PaymentBillRq): Observable<any>;
17
+ paymentBillServices(params: PaymentBillRq): Observable<any>;
18
+ getPaymentBillAll(): Observable<any>;
19
+ getPaymentBillByCode(codePayment: number): Observable<any>;
20
+ getPaymentBillByStudent(codeStudent: number): Observable<any>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
23
+ }
@@ -1,22 +1,23 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { eventqueryRq } from '../../models/calendar/calendar-rq.models';
4
- import { AddNewEventRq, AvailabilityQueryRq, AvailabilityQueryRqs, GetEventByDateTimeRq, GetEventsByCourseRq } from '../../models/cronogram/cronogram.models';
5
- import { Response } from '../../models/response/response.interface';
6
- import { IPTGeneralService } from '../service-enviroments';
7
- import * as i0 from "@angular/core";
8
- export declare class CalendarService extends IPTGeneralService {
9
- private http;
10
- private SERVICE_URL;
11
- constructor(http: HttpClient);
12
- postCreateQueryEvent(params: AvailabilityQueryRq): Observable<Response>;
13
- getEventByIdCalendar(idCalendar: string): Observable<any>;
14
- postEventByDayTime(params: eventqueryRq): Observable<any>;
15
- getEventsByCourse(params: GetEventsByCourseRq): Observable<any>;
16
- getEventByDateTime(params: GetEventByDateTimeRq): Observable<any>;
17
- getAvailability(params: AvailabilityQueryRqs): Observable<any>;
18
- addNewEvent(params: AddNewEventRq): Observable<any>;
19
- ObtainUnitsNameCourseType(params: any): Observable<any>;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, never>;
21
- static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
22
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { eventqueryRq } from '../../models/calendar/calendar-rq.models';
4
+ import { AddNewEventRq, AvailabilityQueryRq, AvailabilityQueryRqs, GetEventByDateTimeRq, GetEventsByCourseRq } from '../../models/cronogram/cronogram.models';
5
+ import { Response } from '../../models/response/response.interface';
6
+ import { IPTGeneralService } from '../service-enviroments';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CalendarService extends IPTGeneralService {
9
+ private http;
10
+ private SERVICE_URL;
11
+ constructor(http: HttpClient);
12
+ postCreateQueryEvent(params: AvailabilityQueryRq): Observable<Response>;
13
+ getEventByIdCalendar(idCalendar: string): Observable<any>;
14
+ postEventByDayTime(params: eventqueryRq): Observable<any>;
15
+ getEventsByCourse(params: GetEventsByCourseRq): Observable<any>;
16
+ getEventByDateTime(params: GetEventByDateTimeRq): Observable<any>;
17
+ getAvailability(params: AvailabilityQueryRqs): Observable<any>;
18
+ addNewEvent(params: AddNewEventRq): Observable<any>;
19
+ ObtainUnitsNameCourseType(params: any): Observable<any>;
20
+ getAllEventByCourse(params: GetEventsByCourseRq): Observable<any>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
23
+ }
@@ -1,13 +1,13 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import { GetCertificate } from '../../models/academic/academic.component';
5
- import * as i0 from "@angular/core";
6
- export declare class CertificateService extends IPTGeneralService {
7
- private http;
8
- private SERVICE_URL;
9
- constructor(http: HttpClient);
10
- getCertificate(params: GetCertificate): Observable<any>;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<CertificateService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<CertificateService>;
13
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import { GetCertificate } from '../../models/academic/academic.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CertificateService extends IPTGeneralService {
7
+ private http;
8
+ private SERVICE_URL;
9
+ constructor(http: HttpClient);
10
+ getCertificate(params: GetCertificate): Observable<any>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CertificateService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<CertificateService>;
13
+ }
@@ -1,15 +1,15 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { ClassroomByIdCalendarRq, ClassroomByTypeUserRq, ClassroomModalityRq } from '../../models/classroom/classroom-rq.model';
4
- import { IPTGeneralService } from '../service-enviroments';
5
- import * as i0 from "@angular/core";
6
- export declare class ClassroomService extends IPTGeneralService {
7
- private http;
8
- private SERVICE_URL;
9
- constructor(http: HttpClient);
10
- getClassroomsByModality(params: ClassroomModalityRq): Observable<Response>;
11
- getClassroomByIdCalendar(params: ClassroomByIdCalendarRq): Observable<Response>;
12
- getAllClassroomByTypeUser(params: ClassroomByTypeUserRq): Observable<Response>;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<ClassroomService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<ClassroomService>;
15
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { ClassroomByIdCalendarRq, ClassroomByTypeUserRq, ClassroomModalityRq } from '../../models/classroom/classroom-rq.model';
4
+ import { IPTGeneralService } from '../service-enviroments';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ClassroomService extends IPTGeneralService {
7
+ private http;
8
+ private SERVICE_URL;
9
+ constructor(http: HttpClient);
10
+ getClassroomsByModality(params: ClassroomModalityRq): Observable<Response>;
11
+ getClassroomByIdCalendar(params: ClassroomByIdCalendarRq): Observable<Response>;
12
+ getAllClassroomByTypeUser(params: ClassroomByTypeUserRq): Observable<Response>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClassroomService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<ClassroomService>;
15
+ }
@@ -1,19 +1,19 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { GetDiscountCouponsRq } from '../../models/payment/payment-rq.model';
4
- import { CreateCODRq } from '../../models/cod/cod-rq.model';
5
- import { IPTGeneralService } from '../service-enviroments';
6
- import * as i0 from "@angular/core";
7
- export declare class CommercialService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- createCOD(request: CreateCODRq): Observable<any>;
12
- getStudentCodHistory(token: string, student_id_card: number): Observable<any>;
13
- getCodHistoryAll(userToken: any): Observable<any>;
14
- getCodHistoryByCourse(request: any): Observable<any>;
15
- getDiscountCoupons(params: GetDiscountCouponsRq): Observable<any>;
16
- getCodPricesByAgreement(code: number): Observable<any>;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
19
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { GetDiscountCouponsRq } from '../../models/payment/payment-rq.model';
4
+ import { CreateCODRq } from '../../models/cod/cod-rq.model';
5
+ import { IPTGeneralService } from '../service-enviroments';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CommercialService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ createCOD(request: CreateCODRq): Observable<any>;
12
+ getStudentCodHistory(token: string, student_id_card: number): Observable<any>;
13
+ getCodHistoryAll(userToken: any): Observable<any>;
14
+ getCodHistoryByCourse(request: any): Observable<any>;
15
+ getDiscountCoupons(params: GetDiscountCouponsRq): Observable<any>;
16
+ getCodPricesByAgreement(code: number): Observable<any>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
19
+ }
@@ -1,2 +1,2 @@
1
- import { FormControl } from '@angular/forms';
2
- export declare const validateCoupunts: (control: FormControl) => void;
1
+ import { FormControl } from '@angular/forms';
2
+ export declare const validateCoupunts: (control: FormControl) => void;
@@ -1,7 +1,7 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CopiesService {
3
- constructor();
4
- copies: any;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<CopiesService, never>;
6
- static ɵprov: i0.ɵɵInjectableDeclaration<CopiesService>;
7
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class CopiesService {
3
+ constructor();
4
+ copies: any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CopiesService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<CopiesService>;
7
+ }
@@ -1,23 +1,23 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq } from '../../models/course/course-rq.model';
5
- import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
6
- import * as i0 from "@angular/core";
7
- export declare class CourseService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- createCourse(course: CreateCourseRq): Observable<any>;
12
- editCourse(course: EditCourseRq): Observable<any>;
13
- getAllCourses(params: GetCoursesRq): Observable<any>;
14
- getCoursesByLevel(params: GetCoursesRq): Observable<any>;
15
- getAvailibleCourses(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
16
- getCourseByCode(params: GetCourseByCodeRq): Observable<any>;
17
- getCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
18
- getFilteredCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
19
- getCoursesByStartDate(params: CourseStartDateRq): Observable<any>;
20
- numberClassByCode(idCode: number): Observable<any>;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
23
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq } from '../../models/course/course-rq.model';
5
+ import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CourseService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ createCourse(course: CreateCourseRq): Observable<any>;
12
+ editCourse(course: EditCourseRq): Observable<any>;
13
+ getAllCourses(params: GetCoursesRq): Observable<any>;
14
+ getCoursesByLevel(params: GetCoursesRq): Observable<any>;
15
+ getAvailibleCourses(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
16
+ getCourseByCode(params: GetCourseByCodeRq): Observable<any>;
17
+ getCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
18
+ getFilteredCoursesByTeacher(params: GetCoursesByTeacherRq): Observable<any>;
19
+ getCoursesByStartDate(params: CourseStartDateRq): Observable<any>;
20
+ numberClassByCode(idCode: number): Observable<any>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
23
+ }
@@ -1,13 +1,13 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import * as i0 from "@angular/core";
5
- export declare class UserEktService extends IPTGeneralService {
6
- private http;
7
- private SERVICE_URL;
8
- constructor(http: HttpClient);
9
- getAllUserEkt(): Observable<any>;
10
- getAllAnnouncementByUser(codeUser: number): Observable<any>;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<UserEktService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<UserEktService>;
13
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UserEktService extends IPTGeneralService {
6
+ private http;
7
+ private SERVICE_URL;
8
+ constructor(http: HttpClient);
9
+ getAllUserEkt(): Observable<any>;
10
+ getAllAnnouncementByUser(codeUser: number): Observable<any>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserEktService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<UserEktService>;
13
+ }
@@ -1,19 +1,19 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { getStrategyByUserCommercialRq, CreateObservationsRq } from '../../models/marketing/marketing.model';
4
- import { IPTGeneralService } from '../service-enviroments';
5
- import * as i0 from "@angular/core";
6
- export declare class MarketingService extends IPTGeneralService {
7
- private http;
8
- private SERVICE_URL;
9
- constructor(http: HttpClient);
10
- getStrategyByUserCommercial(user: getStrategyByUserCommercialRq): Observable<any>;
11
- getObservationsContact(codeContact: number): Observable<any>;
12
- createObservations(params: CreateObservationsRq): Observable<any>;
13
- getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
14
- getTopAdviser(): Observable<any>;
15
- getMovementStatus(): Observable<any>;
16
- getgroupSignupStatus(): Observable<any>;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<MarketingService, never>;
18
- static ɵprov: i0.ɵɵInjectableDeclaration<MarketingService>;
19
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { getStrategyByUserCommercialRq, CreateObservationsRq } from '../../models/marketing/marketing.model';
4
+ import { IPTGeneralService } from '../service-enviroments';
5
+ import * as i0 from "@angular/core";
6
+ export declare class MarketingService extends IPTGeneralService {
7
+ private http;
8
+ private SERVICE_URL;
9
+ constructor(http: HttpClient);
10
+ getStrategyByUserCommercial(user: getStrategyByUserCommercialRq): Observable<any>;
11
+ getObservationsContact(codeContact: number): Observable<any>;
12
+ createObservations(params: CreateObservationsRq): Observable<any>;
13
+ getUserStatistics(userToken: getStrategyByUserCommercialRq): Observable<any>;
14
+ getTopAdviser(): Observable<any>;
15
+ getMovementStatus(): Observable<any>;
16
+ getgroupSignupStatus(): Observable<any>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarketingService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<MarketingService>;
19
+ }
@@ -1,18 +1,18 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { CreateNewNoteRq, GetNotesByGroupRq, GetNotesByStudentRq, UpdateStudentNoteRq, calculateFinalNoteRq } from '../../models/notes/notes.interface';
3
- import { Observable } from 'rxjs';
4
- import { Response } from '../../models/response/response.interface';
5
- import { IPTGeneralService } from '../service-enviroments';
6
- import * as i0 from "@angular/core";
7
- export declare class NotesService extends IPTGeneralService {
8
- private http;
9
- private SERVICE_URL;
10
- constructor(http: HttpClient);
11
- getNotesByGroup(params: GetNotesByGroupRq): Observable<Response>;
12
- getNotesByStudent(params: GetNotesByStudentRq): Observable<Response>;
13
- createNewNote(params: CreateNewNoteRq): Observable<Response>;
14
- updateStudentNote(params: UpdateStudentNoteRq): Observable<Response>;
15
- calculateFinalNote(params: calculateFinalNoteRq): Observable<Response>;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, never>;
17
- static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
18
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { CreateNewNoteRq, GetNotesByGroupRq, GetNotesByStudentRq, UpdateStudentNoteRq, calculateFinalNoteRq } from '../../models/notes/notes.interface';
3
+ import { Observable } from 'rxjs';
4
+ import { Response } from '../../models/response/response.interface';
5
+ import { IPTGeneralService } from '../service-enviroments';
6
+ import * as i0 from "@angular/core";
7
+ export declare class NotesService extends IPTGeneralService {
8
+ private http;
9
+ private SERVICE_URL;
10
+ constructor(http: HttpClient);
11
+ getNotesByGroup(params: GetNotesByGroupRq): Observable<Response>;
12
+ getNotesByStudent(params: GetNotesByStudentRq): Observable<Response>;
13
+ createNewNote(params: CreateNewNoteRq): Observable<Response>;
14
+ updateStudentNote(params: UpdateStudentNoteRq): Observable<Response>;
15
+ calculateFinalNote(params: calculateFinalNoteRq): Observable<Response>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
18
+ }