iptdevs-design-system 3.1.77 → 3.1.79
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/payment/payment-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rs.model.mjs +1 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/payment/payment-rq.model.d.ts +19 -0
- package/lib/core/models/user/user-rq.model.d.ts +4 -0
- package/lib/core/models/user/user-rs.model.d.ts +29 -0
- package/lib/core/services/user-service/user-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -259,6 +259,25 @@ export interface PaymentBillRq {
|
|
|
259
259
|
cod_payment: number;
|
|
260
260
|
code?: number;
|
|
261
261
|
}
|
|
262
|
+
export interface PaymentBillRq2 {
|
|
263
|
+
payment_method: number;
|
|
264
|
+
payment_services: number;
|
|
265
|
+
payment_wallet: number;
|
|
266
|
+
bank: number;
|
|
267
|
+
generated_for: number;
|
|
268
|
+
generated_by: string;
|
|
269
|
+
total_amount: number;
|
|
270
|
+
payment_amount: number;
|
|
271
|
+
outstanding_amount: number;
|
|
272
|
+
positive_amount: number;
|
|
273
|
+
discount: number;
|
|
274
|
+
codeDiscount: number;
|
|
275
|
+
payer_name: string;
|
|
276
|
+
payer_document: string;
|
|
277
|
+
observation: string;
|
|
278
|
+
cod_payment: number;
|
|
279
|
+
code?: number;
|
|
280
|
+
}
|
|
262
281
|
export interface PaymentStudentRq {
|
|
263
282
|
code: number;
|
|
264
283
|
cod: number;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MessageRq } from "../attendance/attendance.interface";
|
|
1
2
|
export declare class UserRs {
|
|
2
3
|
code: number;
|
|
3
4
|
name: string;
|
|
@@ -53,3 +54,31 @@ export declare class IUserFullDataRs {
|
|
|
53
54
|
token: string;
|
|
54
55
|
user_status: number;
|
|
55
56
|
}
|
|
57
|
+
export interface IUserResetPasswordRs {
|
|
58
|
+
ip_applicant: string;
|
|
59
|
+
status: number;
|
|
60
|
+
message: MessageRq;
|
|
61
|
+
data: IDataUserResetPasswordRs[];
|
|
62
|
+
}
|
|
63
|
+
export interface IDataUserResetPasswordRs {
|
|
64
|
+
code: number;
|
|
65
|
+
name: string;
|
|
66
|
+
last_name: string;
|
|
67
|
+
nick_name: string;
|
|
68
|
+
email: string;
|
|
69
|
+
email_ipt: string;
|
|
70
|
+
role: number;
|
|
71
|
+
service_hour: number;
|
|
72
|
+
phone_indicative: number;
|
|
73
|
+
phone_number: string;
|
|
74
|
+
gender: number;
|
|
75
|
+
birthdate: null;
|
|
76
|
+
city: number;
|
|
77
|
+
id_card_type: number;
|
|
78
|
+
id_card: string;
|
|
79
|
+
token: string;
|
|
80
|
+
user_status: number;
|
|
81
|
+
password_change: number;
|
|
82
|
+
updated_at: Date;
|
|
83
|
+
newPassword: string;
|
|
84
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq, userTokenRq, IUpdtaeUserValidatedRq } from '../../models/user/user-rq.model';
|
|
3
|
+
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq, userTokenRq, IUpdtaeUserValidatedRq, IObtainUserByEmailDocRq } from '../../models/user/user-rq.model';
|
|
4
4
|
import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.model';
|
|
5
5
|
import { IPTGeneralService } from '../service-enviroments';
|
|
6
6
|
import { GetStudentByCodeRq, tokenAdministrativeRq } from '../../models/payment/payment-rq.model';
|
|
@@ -32,6 +32,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
32
32
|
getAllUserByRoleValidate(token: string): Observable<any>;
|
|
33
33
|
updateUserValidated(params: string): Observable<any>;
|
|
34
34
|
deletedUserValidated(params: IUpdtaeUserValidatedRq): Observable<any>;
|
|
35
|
+
obtainStudentByDocumentEmail(params: IObtainUserByEmailDocRq): Observable<any>;
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
36
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
37
38
|
}
|