iptdevs-design-system 3.1.29 → 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.
- package/esm2020/lib/core/models/PlacementTest/PlacementTest.models.mjs +1 -1
- package/esm2020/lib/core/models/PossibleStudent/PossibleStudent.models.mjs +2 -0
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/PlacementTest/PlacementTest.models.d.ts +2 -2
- package/lib/core/models/PossibleStudent/PossibleStudent.models.d.ts +27 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -6,13 +6,13 @@ export interface getPlacementStudents {
|
|
|
6
6
|
email: string;
|
|
7
7
|
phone_indicative: string;
|
|
8
8
|
phone: string;
|
|
9
|
-
city:
|
|
9
|
+
city: IFullDataCityRq;
|
|
10
10
|
acronym: string;
|
|
11
11
|
id_card: string;
|
|
12
12
|
created_at: string;
|
|
13
13
|
updated_at: string;
|
|
14
14
|
}
|
|
15
|
-
export interface
|
|
15
|
+
export interface IFullDataCityRq {
|
|
16
16
|
code: number;
|
|
17
17
|
name: string;
|
|
18
18
|
state: IStateRq;
|
|
@@ -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
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ export * from "./lib/core/models/commercial/commercial.model";
|
|
|
64
64
|
export * from "./lib/core/models/reports/reports.model";
|
|
65
65
|
export * from "./lib/core/models/homeTemplate/homeTemplate.models";
|
|
66
66
|
export * from "./lib/core/models/PlacementTest/PlacementTest.models";
|
|
67
|
+
export * from "./lib/core/models/PossibleStudent/PossibleStudent.models";
|
|
67
68
|
export * from "./lib/components/components.module";
|
|
68
69
|
export * from "./lib/cod/cod.module";
|
|
69
70
|
export * from "./lib/cod/cod-form/cod-form.component";
|