iptdevs-design-system 3.1.731 → 3.1.733
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/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 +5 -5
- package/lib/core/models/user/user-rq.model.d.ts +11 -0
- package/lib/core/services/user-service/user-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -368,10 +368,10 @@ export interface IPaymentCodRs {
|
|
|
368
368
|
status: number;
|
|
369
369
|
timely_date: Date;
|
|
370
370
|
total_payment_amount: number;
|
|
371
|
-
|
|
371
|
+
fertilizer: IFertilizerRs[];
|
|
372
372
|
}
|
|
373
|
-
export interface
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
373
|
+
export interface IFertilizerRs {
|
|
374
|
+
fertilizer: number;
|
|
375
|
+
date: Date;
|
|
376
|
+
receipt_number: number;
|
|
377
377
|
}
|
|
@@ -188,3 +188,14 @@ export interface IDeleteTeacherRq {
|
|
|
188
188
|
token: string;
|
|
189
189
|
teacher_code: number;
|
|
190
190
|
}
|
|
191
|
+
export interface IUpdateDataTeacherRq {
|
|
192
|
+
token: string;
|
|
193
|
+
teacher_code: number;
|
|
194
|
+
name: string;
|
|
195
|
+
last_name: string;
|
|
196
|
+
email: string;
|
|
197
|
+
phone_number: string;
|
|
198
|
+
city: number;
|
|
199
|
+
id_card_type: string;
|
|
200
|
+
password: string;
|
|
201
|
+
}
|
|
@@ -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, IObtainUserByEmailDocRq, IStudentOrUserEktByConceptRq, UserTokenRq2, ParamsUser, IusersRq, IDeleteTeacherRq } from '../../models/user/user-rq.model';
|
|
3
|
+
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq, userTokenRq, IUpdtaeUserValidatedRq, IObtainUserByEmailDocRq, IStudentOrUserEktByConceptRq, UserTokenRq2, ParamsUser, IusersRq, IDeleteTeacherRq, IUpdateDataTeacherRq } 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';
|
|
@@ -44,6 +44,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
44
44
|
createProveedor(param: IusersRq): Observable<any>;
|
|
45
45
|
updateUser(param: any): Observable<any>;
|
|
46
46
|
DeleteTeacherByCode(params: IDeleteTeacherRq): Observable<any>;
|
|
47
|
+
UpdateTeacherDataByCode(params: IUpdateDataTeacherRq): Observable<any>;
|
|
47
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
48
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
49
50
|
}
|