iptdevs-design-system 2.7.26 → 2.7.28

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 (134) hide show
  1. package/README.md +24 -24
  2. package/esm2020/iptdevs-design-system.mjs +4 -4
  3. package/esm2020/lib/components/atoms/aside-button/aside-button.component.mjs +50 -50
  4. package/esm2020/lib/components/atoms/button/button.component.mjs +64 -64
  5. package/esm2020/lib/components/atoms/checkbox/checkbox.component.mjs +47 -47
  6. package/esm2020/lib/components/atoms/datalist/datalist.component.mjs +94 -94
  7. package/esm2020/lib/components/atoms/input/input.component.mjs +145 -145
  8. package/esm2020/lib/components/atoms/level-button/level-button.component.mjs +64 -64
  9. package/esm2020/lib/components/atoms/level-text/level-text.component.mjs +19 -19
  10. package/esm2020/lib/components/atoms/loader/loader.component.mjs +48 -48
  11. package/esm2020/lib/components/atoms/radio/radio.component.mjs +47 -47
  12. package/esm2020/lib/components/atoms/select/select.component.mjs +102 -102
  13. package/esm2020/lib/components/atoms/text-link/text-link.component.mjs +39 -39
  14. package/esm2020/lib/components/components.module.mjs +118 -118
  15. package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +228 -228
  16. package/esm2020/lib/components/forms/login-form/login-form.component.mjs +93 -93
  17. package/esm2020/lib/components/material.module.mjs +19 -19
  18. package/esm2020/lib/components/molecules/sidenav/sidenav.component.mjs +150 -150
  19. package/esm2020/lib/core/core.module.mjs +70 -70
  20. package/esm2020/lib/core/models/academic/academic.component.mjs +2 -2
  21. package/esm2020/lib/core/models/activities/activities.interface.mjs +2 -2
  22. package/esm2020/lib/core/models/attendance/attendance.interface.mjs +2 -2
  23. package/esm2020/lib/core/models/budget/budget.model.mjs +2 -2
  24. package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +2 -2
  25. package/esm2020/lib/core/models/classroom/classroom-rq.model.mjs +2 -2
  26. package/esm2020/lib/core/models/cod/cod-rq.model.mjs +2 -2
  27. package/esm2020/lib/core/models/commercial/commercial.model.mjs +2 -2
  28. package/esm2020/lib/core/models/course/course-rq.model.mjs +2 -2
  29. package/esm2020/lib/core/models/course/courses.model.mjs +2 -2
  30. package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +2 -2
  31. package/esm2020/lib/core/models/marketing/marketing.model.mjs +2 -2
  32. package/esm2020/lib/core/models/notes/notes.interface.mjs +2 -2
  33. package/esm2020/lib/core/models/payment/payment-rq.model.mjs +2 -2
  34. package/esm2020/lib/core/models/response/response.interface.mjs +2 -2
  35. package/esm2020/lib/core/models/session/session.model.mjs +3 -3
  36. package/esm2020/lib/core/models/student/student.interface.mjs +2 -2
  37. package/esm2020/lib/core/models/table/table-rs.model.mjs +2 -2
  38. package/esm2020/lib/core/models/test/test.model.mjs +2 -2
  39. package/esm2020/lib/core/models/url/url.model.mjs +2 -2
  40. package/esm2020/lib/core/models/user/user-rq.model.mjs +2 -2
  41. package/esm2020/lib/core/models/user/user-rs.model.mjs +5 -5
  42. package/esm2020/lib/core/services/academic-service/academic.service.mjs +40 -35
  43. package/esm2020/lib/core/services/activity-service/activity.service.mjs +87 -87
  44. package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +64 -64
  45. package/esm2020/lib/core/services/budget-service/budget-service.mjs +66 -66
  46. package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +60 -60
  47. package/esm2020/lib/core/services/certificate-service/certificate.service.mjs +26 -26
  48. package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +31 -31
  49. package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +49 -44
  50. package/esm2020/lib/core/services/commercial-service/validators.mjs +4 -4
  51. package/esm2020/lib/core/services/course-service/course-service.model.mjs +70 -70
  52. package/esm2020/lib/core/services/ekt-service/userekt.service.mjs +29 -29
  53. package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +52 -52
  54. package/esm2020/lib/core/services/notes-service/notes.service.mjs +46 -46
  55. package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +173 -173
  56. package/esm2020/lib/core/services/service-enviroments.mjs +26 -26
  57. package/esm2020/lib/core/services/storage-service/storage-service.mjs +50 -50
  58. package/esm2020/lib/core/services/student-service/student.service.mjs +26 -26
  59. package/esm2020/lib/core/services/switch-service/switch.service.mjs +16 -16
  60. package/esm2020/lib/core/services/test-service/test.service.mjs +131 -131
  61. package/esm2020/lib/core/services/user-service/user-service.mjs +95 -95
  62. package/esm2020/lib/core/utils/base-service/base.service.mjs +186 -186
  63. package/esm2020/lib/core/utils/route-service/route.service.mjs +18 -18
  64. package/esm2020/lib/design-system.module.mjs +36 -36
  65. package/esm2020/public-api.mjs +70 -70
  66. package/fesm2015/iptdevs-design-system.mjs +2516 -2506
  67. package/fesm2015/iptdevs-design-system.mjs.map +1 -1
  68. package/fesm2020/iptdevs-design-system.mjs +2513 -2503
  69. package/fesm2020/iptdevs-design-system.mjs.map +1 -1
  70. package/iptdevs-design-system.d.ts +5 -5
  71. package/lib/components/atoms/aside-button/aside-button.component.d.ts +11 -11
  72. package/lib/components/atoms/button/button.component.d.ts +13 -13
  73. package/lib/components/atoms/checkbox/checkbox.component.d.ts +11 -11
  74. package/lib/components/atoms/datalist/datalist.component.d.ts +20 -20
  75. package/lib/components/atoms/input/input.component.d.ts +26 -26
  76. package/lib/components/atoms/level-button/level-button.component.d.ts +11 -11
  77. package/lib/components/atoms/level-text/level-text.component.d.ts +7 -7
  78. package/lib/components/atoms/loader/loader.component.d.ts +7 -7
  79. package/lib/components/atoms/radio/radio.component.d.ts +11 -11
  80. package/lib/components/atoms/select/select.component.d.ts +26 -26
  81. package/lib/components/atoms/text-link/text-link.component.d.ts +12 -12
  82. package/lib/components/components.module.d.ts +24 -24
  83. package/lib/components/forms/create-user-form/create-user-form.component.d.ts +36 -36
  84. package/lib/components/forms/login-form/login-form.component.d.ts +13 -13
  85. package/lib/components/material.module.d.ts +11 -11
  86. package/lib/components/molecules/sidenav/sidenav.component.d.ts +25 -25
  87. package/lib/core/core.module.d.ts +6 -6
  88. package/lib/core/models/academic/academic.component.d.ts +17 -13
  89. package/lib/core/models/activities/activities.interface.d.ts +12 -12
  90. package/lib/core/models/attendance/attendance.interface.d.ts +62 -62
  91. package/lib/core/models/budget/budget.model.d.ts +69 -69
  92. package/lib/core/models/calendar/calendar-rq.models.d.ts +27 -27
  93. package/lib/core/models/classroom/classroom-rq.model.d.ts +18 -18
  94. package/lib/core/models/cod/cod-rq.model.d.ts +106 -51
  95. package/lib/core/models/commercial/commercial.model.d.ts +10 -10
  96. package/lib/core/models/course/course-rq.model.d.ts +86 -86
  97. package/lib/core/models/course/courses.model.d.ts +18 -18
  98. package/lib/core/models/cronogram/cronogram.models.d.ts +183 -183
  99. package/lib/core/models/marketing/marketing.model.d.ts +104 -104
  100. package/lib/core/models/notes/notes.interface.d.ts +89 -89
  101. package/lib/core/models/payment/payment-rq.model.d.ts +212 -212
  102. package/lib/core/models/response/response.interface.d.ts +10 -10
  103. package/lib/core/models/session/session.model.d.ts +5 -5
  104. package/lib/core/models/student/student.interface.d.ts +4 -4
  105. package/lib/core/models/table/table-rs.model.d.ts +7 -7
  106. package/lib/core/models/test/test.model.d.ts +219 -219
  107. package/lib/core/models/url/url.model.d.ts +8 -8
  108. package/lib/core/models/user/user-rq.model.d.ts +86 -86
  109. package/lib/core/models/user/user-rs.model.d.ts +35 -35
  110. package/lib/core/services/academic-service/academic.service.d.ts +16 -15
  111. package/lib/core/services/activity-service/activity.service.d.ts +25 -25
  112. package/lib/core/services/attendance-service/attendance.service.d.ts +22 -22
  113. package/lib/core/services/budget-service/budget-service.d.ts +23 -23
  114. package/lib/core/services/calendar-service/calendar.service.d.ts +22 -22
  115. package/lib/core/services/certificate-service/certificate.service.d.ts +13 -13
  116. package/lib/core/services/classroom-service/classroom-service.service.d.ts +14 -14
  117. package/lib/core/services/commercial-service/comercial.service.d.ts +19 -17
  118. package/lib/core/services/commercial-service/validators.d.ts +2 -2
  119. package/lib/core/services/course-service/course-service.model.d.ts +23 -23
  120. package/lib/core/services/ekt-service/userekt.service.d.ts +13 -13
  121. package/lib/core/services/marketing-service/marketing-service.d.ts +19 -19
  122. package/lib/core/services/notes-service/notes.service.d.ts +18 -18
  123. package/lib/core/services/parameters-service/parameters.service.d.ts +49 -49
  124. package/lib/core/services/service-enviroments.d.ts +5 -5
  125. package/lib/core/services/storage-service/storage-service.d.ts +18 -18
  126. package/lib/core/services/student-service/student.service.d.ts +13 -13
  127. package/lib/core/services/switch-service/switch.service.d.ts +8 -8
  128. package/lib/core/services/test-service/test.service.d.ts +34 -34
  129. package/lib/core/services/user-service/user-service.d.ts +29 -29
  130. package/lib/core/utils/base-service/base.service.d.ts +22 -22
  131. package/lib/core/utils/route-service/route.service.d.ts +9 -9
  132. package/lib/design-system.module.d.ts +9 -9
  133. package/package.json +1 -1
  134. package/public-api.d.ts +61 -61
@@ -1,15 +1,16 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { IPTGeneralService } from '../service-enviroments';
4
- import { GetCourseByTypeRq, GetStudentByCourse } from '../../models/academic/academic.component';
5
- import * as i0 from "@angular/core";
6
- export declare class AcademicService extends IPTGeneralService {
7
- private http;
8
- private SERVICE_URL;
9
- constructor(http: HttpClient);
10
- getCourseByType(params: GetCourseByTypeRq): Observable<any>;
11
- getStudentByCourse(params: GetStudentByCourse): Observable<any>;
12
- getCodGenDataStudent(codeStudent: number): Observable<any>;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
15
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { IPTGeneralService } from '../service-enviroments';
4
+ import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq } from '../../models/academic/academic.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AcademicService extends IPTGeneralService {
7
+ private http;
8
+ private SERVICE_URL;
9
+ constructor(http: HttpClient);
10
+ getCourseByType(params: GetCourseByTypeRq): Observable<any>;
11
+ getStudentByCourse(params: GetStudentByCourse): Observable<any>;
12
+ obtainLastStudentCod(params: GetLastStudentCodRq): Observable<any>;
13
+ getCodGenDataStudent(codeStudent: number): Observable<any>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
16
+ }
@@ -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,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
- 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
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
22
+ }
@@ -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,14 +1,14 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Observable } from 'rxjs';
3
- import { ClassroomByIdCalendarRq, 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
- static ɵfac: i0.ɵɵFactoryDeclaration<ClassroomService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<ClassroomService>;
14
- }
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { ClassroomByIdCalendarRq, 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
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClassroomService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ClassroomService>;
14
+ }
@@ -1,17 +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 { IPTGeneralService } from '../service-enviroments';
5
- import * as i0 from "@angular/core";
6
- export declare class CommercialService extends IPTGeneralService {
7
- private http;
8
- private SERVICE_URL;
9
- constructor(http: HttpClient);
10
- getStudentCodHistory(token: string, student_id_card: number): Observable<any>;
11
- getCodHistoryAll(userToken: any): Observable<any>;
12
- getCodHistoryByCourse(request: any): Observable<any>;
13
- getDiscountCoupons(params: GetDiscountCouponsRq): Observable<any>;
14
- getCodPricesByAgreement(code: number): Observable<any>;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
16
- static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
17
- }
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,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
+ }
@@ -1,49 +1,49 @@
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 ParameterService extends IPTGeneralService {
6
- private http;
7
- private SERVICE_URL;
8
- constructor(http: HttpClient);
9
- getIndicatives(): Observable<any>;
10
- getCardTypes(country: string): Observable<any>;
11
- getCountries(): Observable<any>;
12
- getStatesByCountry(country: string): Observable<any>;
13
- getCitiesByState(state: number): Observable<any>;
14
- getAllPlans(): Observable<any>;
15
- getLevels(): Observable<any>;
16
- getAgreements(): Observable<any>;
17
- getAgreementByCategory(typeCategory: any): Observable<any>;
18
- getAllClassrooms(): Observable<any>;
19
- getCoursesTypes(): Observable<any>;
20
- getCoursesTypesByPlan(typePlan: any): Observable<any>;
21
- getDegrees(): Observable<any>;
22
- getProgramsByDegree(typeDegree: any): Observable<any>;
23
- getMarketingReasons(): Observable<any>;
24
- getStudyReasons(): Observable<any>;
25
- getAcademicUnits(): Observable<any>;
26
- getStatusContact(): Observable<any>;
27
- getTypePlan(): Observable<any>;
28
- getTypePlanDiscount(): Observable<any>;
29
- getContactedType(): Observable<any>;
30
- getStatusByCode(codeStatus: number): Observable<any>;
31
- getAllTypeDiscount(): Observable<any>;
32
- getAllCourseModality(): Observable<any>;
33
- getAllPaymentMethod(): Observable<any>;
34
- getAllPaymentService(): Observable<any>;
35
- getAllBanks(): Observable<any>;
36
- getAllCampus(): Observable<any>;
37
- getCampusByCode(codeCampu: number): Observable<any>;
38
- getGenders(): Observable<any>;
39
- getGenderByCode(code: number): Observable<any>;
40
- getStratums(): Observable<any>;
41
- getStratumByCode(code: number): Observable<any>;
42
- getCivilStatus(): Observable<any>;
43
- getCivilStatusByCode(code: number): Observable<any>;
44
- getMulticulturalisms(): Observable<any>;
45
- getMulticulturalismByCode(code: number): Observable<any>;
46
- getClassRoomByMod(codeModality: number): Observable<any>;
47
- static ɵfac: i0.ɵɵFactoryDeclaration<ParameterService, never>;
48
- static ɵprov: i0.ɵɵInjectableDeclaration<ParameterService>;
49
- }
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 ParameterService extends IPTGeneralService {
6
+ private http;
7
+ private SERVICE_URL;
8
+ constructor(http: HttpClient);
9
+ getIndicatives(): Observable<any>;
10
+ getCardTypes(country: string): Observable<any>;
11
+ getCountries(): Observable<any>;
12
+ getStatesByCountry(country: string): Observable<any>;
13
+ getCitiesByState(state: number): Observable<any>;
14
+ getAllPlans(): Observable<any>;
15
+ getLevels(): Observable<any>;
16
+ getAgreements(): Observable<any>;
17
+ getAgreementByCategory(typeCategory: any): Observable<any>;
18
+ getAllClassrooms(): Observable<any>;
19
+ getCoursesTypes(): Observable<any>;
20
+ getCoursesTypesByPlan(typePlan: any): Observable<any>;
21
+ getDegrees(): Observable<any>;
22
+ getProgramsByDegree(typeDegree: any): Observable<any>;
23
+ getMarketingReasons(): Observable<any>;
24
+ getStudyReasons(): Observable<any>;
25
+ getAcademicUnits(): Observable<any>;
26
+ getStatusContact(): Observable<any>;
27
+ getTypePlan(): Observable<any>;
28
+ getTypePlanDiscount(): Observable<any>;
29
+ getContactedType(): Observable<any>;
30
+ getStatusByCode(codeStatus: number): Observable<any>;
31
+ getAllTypeDiscount(): Observable<any>;
32
+ getAllCourseModality(): Observable<any>;
33
+ getAllPaymentMethod(): Observable<any>;
34
+ getAllPaymentService(): Observable<any>;
35
+ getAllBanks(): Observable<any>;
36
+ getAllCampus(): Observable<any>;
37
+ getCampusByCode(codeCampu: number): Observable<any>;
38
+ getGenders(): Observable<any>;
39
+ getGenderByCode(code: number): Observable<any>;
40
+ getStratums(): Observable<any>;
41
+ getStratumByCode(code: number): Observable<any>;
42
+ getCivilStatus(): Observable<any>;
43
+ getCivilStatusByCode(code: number): Observable<any>;
44
+ getMulticulturalisms(): Observable<any>;
45
+ getMulticulturalismByCode(code: number): Observable<any>;
46
+ getClassRoomByMod(codeModality: number): Observable<any>;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<ParameterService, never>;
48
+ static ɵprov: i0.ɵɵInjectableDeclaration<ParameterService>;
49
+ }
@@ -1,5 +1,5 @@
1
- export declare class IPTGeneralService {
2
- httpOptions: any;
3
- baseUrl(): string;
4
- generateRequestParams(param: any): void;
5
- }
1
+ export declare class IPTGeneralService {
2
+ httpOptions: any;
3
+ baseUrl(): string;
4
+ generateRequestParams(param: any): void;
5
+ }