iptdevs-design-system 3.1.27 → 3.1.28
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/reports/reports.model.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/reports/reports.model.d.ts +69 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export interface IUserBudgetRs {
|
|
2
|
+
ip_applicant: string;
|
|
3
|
+
status: number;
|
|
4
|
+
message: IMessageRs;
|
|
5
|
+
data: IDataUserBudgetRq[];
|
|
6
|
+
}
|
|
7
|
+
export interface IDataUserBudgetRq {
|
|
8
|
+
code: number;
|
|
9
|
+
id_card: string;
|
|
10
|
+
name: string;
|
|
11
|
+
last_name: string;
|
|
12
|
+
nick_name: null | string;
|
|
13
|
+
email: string;
|
|
14
|
+
phone_number: string;
|
|
15
|
+
gender: number;
|
|
16
|
+
city: string;
|
|
17
|
+
birthdate: null;
|
|
18
|
+
role: string;
|
|
19
|
+
service_hour: number;
|
|
20
|
+
email_ipt: string;
|
|
21
|
+
updated_at: Date;
|
|
22
|
+
id_card_type: string;
|
|
23
|
+
}
|
|
24
|
+
export interface IMessageRs {
|
|
25
|
+
code: number;
|
|
26
|
+
message: string;
|
|
27
|
+
}
|
|
28
|
+
export interface IWalletsAsossiedRq {
|
|
29
|
+
code: number;
|
|
30
|
+
code_user: number;
|
|
31
|
+
code_wallet: CodeWallet;
|
|
32
|
+
updated_at: Date;
|
|
33
|
+
created_at: Date;
|
|
34
|
+
}
|
|
35
|
+
export interface CodeWallet {
|
|
36
|
+
code: number;
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
campus: string;
|
|
40
|
+
}
|
|
41
|
+
export interface IGetMovementsAllRs {
|
|
42
|
+
ip_applicant: string;
|
|
43
|
+
status: number;
|
|
44
|
+
message: IMessageRs;
|
|
45
|
+
data: IGetMovementsAllRq[];
|
|
46
|
+
}
|
|
47
|
+
export interface IGetMovementsAllRq {
|
|
48
|
+
code: number;
|
|
49
|
+
payment_method: string;
|
|
50
|
+
payment_services: string;
|
|
51
|
+
payment_wallet: string;
|
|
52
|
+
bank: string;
|
|
53
|
+
generated_for: string;
|
|
54
|
+
generated_by: string;
|
|
55
|
+
type_movements: TypeMovements;
|
|
56
|
+
total_amount: number;
|
|
57
|
+
payment_amount: number;
|
|
58
|
+
outstanding_amount: number;
|
|
59
|
+
positive_amount: number;
|
|
60
|
+
discount: number;
|
|
61
|
+
payer_name: string;
|
|
62
|
+
payer_document: string;
|
|
63
|
+
academic_plan: string;
|
|
64
|
+
created_at: Date;
|
|
65
|
+
}
|
|
66
|
+
export interface TypeMovements {
|
|
67
|
+
code: number;
|
|
68
|
+
name: string;
|
|
69
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ export * from "./lib/core/models/academic/academic.component";
|
|
|
61
61
|
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
|
+
export * from "./lib/core/models/reports/reports.model";
|
|
64
65
|
export * from "./lib/components/components.module";
|
|
65
66
|
export * from "./lib/cod/cod.module";
|
|
66
67
|
export * from "./lib/cod/cod-form/cod-form.component";
|