iptdevs-design-system 3.1.28 → 3.1.29

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: ICityRq;
10
+ acronym: string;
11
+ id_card: string;
12
+ created_at: string;
13
+ updated_at: string;
14
+ }
15
+ export interface ICityRq {
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,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.29",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",
package/public-api.d.ts CHANGED
@@ -62,6 +62,8 @@ 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";
65
67
  export * from "./lib/components/components.module";
66
68
  export * from "./lib/cod/cod.module";
67
69
  export * from "./lib/cod/cod-form/cod-form.component";