iptdevs-design-system 3.1.28 → 3.1.30

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,30 @@
1
+ export interface getPlacementStudents {
2
+ placement_code: number;
3
+ score: number;
4
+ warning: number;
5
+ name: string;
6
+ email: string;
7
+ phone_indicative: string;
8
+ phone: string;
9
+ city: IFullDataCityRq;
10
+ acronym: string;
11
+ id_card: string;
12
+ created_at: string;
13
+ updated_at: string;
14
+ }
15
+ export interface IFullDataCityRq {
16
+ code: number;
17
+ name: string;
18
+ state: IStateRq;
19
+ capital: boolean;
20
+ }
21
+ export interface IStateRq {
22
+ code: number;
23
+ name: String;
24
+ country: ICountryRq;
25
+ }
26
+ export interface ICountryRq {
27
+ code: number;
28
+ name: string;
29
+ iso: string;
30
+ }
@@ -0,0 +1,27 @@
1
+ export interface IPossibleStudentRq {
2
+ code: number;
3
+ user?: number;
4
+ pqr_type?: number;
5
+ comment?: string;
6
+ updated_at: string;
7
+ created_at: string;
8
+ name: string;
9
+ email: string;
10
+ phone_number: string;
11
+ city: ICityRq;
12
+ }
13
+ export interface IDemasStudentRq {
14
+ code: number;
15
+ name: string;
16
+ email: string;
17
+ phone_number: string;
18
+ city: ICityRq;
19
+ updated_at: string;
20
+ created_at: string;
21
+ }
22
+ export interface ICityRq {
23
+ code: number;
24
+ name: string;
25
+ state: number;
26
+ capital: number;
27
+ }
@@ -0,0 +1,9 @@
1
+ export interface IResponsiveOptionsRq {
2
+ breakpoint: string;
3
+ numVisible: number;
4
+ numScroll: number;
5
+ }
6
+ export interface IHomeEventsRq {
7
+ name: string;
8
+ description: string;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.28",
3
+ "version": "3.1.30",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",
package/public-api.d.ts CHANGED
@@ -62,6 +62,9 @@ export * from "./lib/core/models/course/courses.model";
62
62
  export * from "./lib/core/models/payment/payment-rq.model";
63
63
  export * from "./lib/core/models/commercial/commercial.model";
64
64
  export * from "./lib/core/models/reports/reports.model";
65
+ export * from "./lib/core/models/homeTemplate/homeTemplate.models";
66
+ export * from "./lib/core/models/PlacementTest/PlacementTest.models";
67
+ export * from "./lib/core/models/PossibleStudent/PossibleStudent.models";
65
68
  export * from "./lib/components/components.module";
66
69
  export * from "./lib/cod/cod.module";
67
70
  export * from "./lib/cod/cod-form/cod-form.component";