iptdevs-design-system 2.7.16 → 2.7.17

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.
@@ -0,0 +1,18 @@
1
+ export interface Courses {
2
+ code: string;
3
+ teacher: number;
4
+ course_type: TypeCourse;
5
+ english_level: number;
6
+ agreement: string;
7
+ start_date: Date;
8
+ finish_date: Date;
9
+ }
10
+ export interface TypeCourse {
11
+ code: number;
12
+ name: string;
13
+ academic_plan: string;
14
+ }
15
+ export interface English_Levels {
16
+ code: number;
17
+ name: string;
18
+ }
@@ -28,10 +28,10 @@ export interface PaymenWalletRq {
28
28
  export interface CodDataGeneralStudentRq {
29
29
  code: number;
30
30
  course: Course;
31
- course_type: CourseType;
31
+ course_type: CourseTypeRq;
32
32
  agreement: Agreement;
33
33
  english_level: EnglishLevel;
34
- student: Student;
34
+ student: StudentRq;
35
35
  parent: number;
36
36
  aditional_information: number;
37
37
  adviser: string;
@@ -56,7 +56,7 @@ export interface Course {
56
56
  english_level: number;
57
57
  agreement: number;
58
58
  }
59
- export interface CourseType {
59
+ export interface CourseTypeRq {
60
60
  code: number;
61
61
  name: string;
62
62
  academic_plan: EnglishLevel;
@@ -65,7 +65,7 @@ export interface EnglishLevel {
65
65
  code: number;
66
66
  name: string;
67
67
  }
68
- export interface Student {
68
+ export interface StudentRq {
69
69
  code: number;
70
70
  name: string;
71
71
  last_name: string;
@@ -117,7 +117,7 @@ export interface PaymentBillAllRq {
117
117
  payer_document: string;
118
118
  created_at: Date;
119
119
  }
120
- export interface UserRq {
120
+ export interface UserRq2 {
121
121
  code: number;
122
122
  id_card: string;
123
123
  id_card_type: string;
@@ -157,9 +157,9 @@ export interface SearchDiscountCouponsRq {
157
157
  description: string;
158
158
  discount: null;
159
159
  academicPlan: null;
160
- discountAcademicPlan: DiscountAcademicPlan[];
160
+ discountAcademicPlan: DiscountAcademicPlan2[];
161
161
  }
162
- export interface DiscountAcademicPlan {
162
+ export interface DiscountAcademicPlan2 {
163
163
  code: number;
164
164
  name: string;
165
165
  pivot: Pivot;
@@ -0,0 +1,2 @@
1
+ import { FormControl } from '@angular/forms';
2
+ export declare const validateCoupunts: (control: FormControl) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "2.7.16",
3
+ "version": "2.7.17",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",
package/public-api.d.ts CHANGED
@@ -32,6 +32,10 @@ export * from "./lib/core/utils/route-service/route.service";
32
32
  export * from "./lib/core/services/classroom-service/classroom-service.service";
33
33
  export * from "./lib/core/services/activity-service/activity.service";
34
34
  export * from "./lib/core/services/commercial-service/comercial.service";
35
+ export * from "./lib/core/services/commercial-service/validators";
36
+ export * from "./lib/core/services/academic-service/academic.service";
37
+ export * from "./lib/core/services/certificate-service/certificate.service";
38
+ export * from "./lib/core/services/ekt-service/userekt.service";
35
39
  export * from "./lib/core/models/activities/activities.interface";
36
40
  export * from "./lib/core/models/attendance/attendance.interface";
37
41
  export * from "./lib/core/models/budget/budget.model";
@@ -50,4 +54,7 @@ export * from "./lib/core/models/url/url.model";
50
54
  export * from "./lib/core/models/user/user-rq.model";
51
55
  export * from "./lib/core/models/user/user-rs.model";
52
56
  export * from "./lib/core/models/classroom/classroom-rq.model";
57
+ export * from "./lib/core/models/academic/academic.component";
58
+ export * from "./lib/core/models/course/courses.model";
59
+ export * from "./lib/core/models/payment/payment-rq.model";
53
60
  export * from "./lib/components/components.module";