iptdevs-design-system 3.1.68 → 3.1.69

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,69 @@
1
+ import { IMessageServiceRs } from "../activities/activities.interface";
2
+ import { IDataCourseRq, NoteValue, StudentUser } from "./notes.interface";
3
+ export interface IServiceCalculateFinalNoteRs {
4
+ ip_applicant: string;
5
+ status: number;
6
+ message: IMessageServiceRs;
7
+ data: ICalculateFinalNoteRs;
8
+ }
9
+ export interface ICalculateFinalNoteRs {
10
+ averages: IAveragesRq;
11
+ final_note: number;
12
+ }
13
+ export interface IAveragesRq {
14
+ writing_reading: number;
15
+ speaking_listening: number;
16
+ actitude_participation: number;
17
+ final_test_oral: number;
18
+ final_test_written: null;
19
+ habilitation: null;
20
+ }
21
+ export interface IFinalStudentNoteRq {
22
+ name: string;
23
+ notes: ICalculateFinalNoteRs;
24
+ }
25
+ export interface INoteTypesOptionsRq {
26
+ code: number;
27
+ note_name: string;
28
+ inactive?: boolean;
29
+ percent?: number;
30
+ }
31
+ export interface IUpdateStudentNoteRq {
32
+ token?: string;
33
+ note_code: number;
34
+ note_value: number;
35
+ observation?: string;
36
+ }
37
+ export interface IDataStudenShortRq {
38
+ code: number;
39
+ name: string;
40
+ }
41
+ export interface IServiceObtainNoteByStudentRs {
42
+ ip_applicant: string;
43
+ status: number;
44
+ message: IMessageServiceRs;
45
+ data: IObtainNoteByStudentRs[];
46
+ }
47
+ export interface IObtainNoteByStudentRs {
48
+ user_course: IUserCourseRs;
49
+ }
50
+ export interface IUserCourseRs {
51
+ code: number;
52
+ note_code: number;
53
+ student: StudentUser;
54
+ course: IDataCourseRq;
55
+ notes: INotesScoreStudentRq;
56
+ }
57
+ export interface INotesScoreStudentRq {
58
+ writing_reading: NoteValue[];
59
+ speaking_listening: NoteValue[];
60
+ actitude_participation: NoteValue[];
61
+ final_test_oral: NoteValue[];
62
+ final_test_written: null | NoteValue[];
63
+ hab: null;
64
+ final_note: null;
65
+ }
66
+ export interface IGetLastStudentCodRq {
67
+ token: string;
68
+ code: number;
69
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.68",
3
+ "version": "3.1.69",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",
package/public-api.d.ts CHANGED
@@ -49,6 +49,7 @@ export * from "./lib/core/models/cronogram/cronogram.models";
49
49
  export * from "./lib/core/models/course/course-rq.model";
50
50
  export * from "./lib/core/models/marketing/marketing.model";
51
51
  export * from "./lib/core/models/notes/notes.interface";
52
+ export * from "./lib/core/models/notes/INotesTemplate";
52
53
  export * from "./lib/core/models/response/response.interface";
53
54
  export * from "./lib/core/models/session/session.model";
54
55
  export * from "./lib/core/models/student/student.interface";