iptdevs-design-system 3.2.23 → 3.2.25
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/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +10 -1
- package/fesm2015/iptdevs-design-system.mjs +14 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +14 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/user/user-rq.model.d.ts +42 -0
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/lib/core/services/user-service/user-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IDataParentInfRs } from "../cod/cod-rq.model";
|
|
1
2
|
export interface UserRq {
|
|
2
3
|
name: string;
|
|
3
4
|
last_name: string;
|
|
@@ -242,3 +243,44 @@ export interface IFormDataRq {
|
|
|
242
243
|
parent_office_adrress?: string;
|
|
243
244
|
parent_email?: string;
|
|
244
245
|
}
|
|
246
|
+
export interface ISearchForStudentToEditRq {
|
|
247
|
+
token: string;
|
|
248
|
+
inputSearch: string;
|
|
249
|
+
per_page: number;
|
|
250
|
+
page: number;
|
|
251
|
+
}
|
|
252
|
+
export interface ISearchForStudentToEditRs {
|
|
253
|
+
code: number;
|
|
254
|
+
name: string;
|
|
255
|
+
last_name: string;
|
|
256
|
+
nick_name: string;
|
|
257
|
+
email: string;
|
|
258
|
+
email_ipt: string;
|
|
259
|
+
role: number;
|
|
260
|
+
service_hour: number;
|
|
261
|
+
phone_indicative: number;
|
|
262
|
+
phone_number: string;
|
|
263
|
+
gender: number;
|
|
264
|
+
birthdate: Date;
|
|
265
|
+
city: ICityCountryStateRs;
|
|
266
|
+
id_card_type: number;
|
|
267
|
+
id_card: string;
|
|
268
|
+
user_status: number;
|
|
269
|
+
password_change: number;
|
|
270
|
+
status_asing: number;
|
|
271
|
+
updated_at: Date;
|
|
272
|
+
cods: ICodRs;
|
|
273
|
+
}
|
|
274
|
+
export interface ICityCountryStateRs {
|
|
275
|
+
code: number;
|
|
276
|
+
capital: number;
|
|
277
|
+
state: number;
|
|
278
|
+
country: number;
|
|
279
|
+
}
|
|
280
|
+
export interface ICodRs {
|
|
281
|
+
code: number;
|
|
282
|
+
student: number;
|
|
283
|
+
parent: IDataParentInfRs;
|
|
284
|
+
cod_status: number;
|
|
285
|
+
created_at: Date;
|
|
286
|
+
}
|
|
@@ -111,6 +111,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
111
111
|
exportListStudentPaymentStatus(params: IObtainCourseByCoodDiffParamRq): Observable<any>;
|
|
112
112
|
obtainPaymentPlanByCodeCod(codeCod: number): Observable<any>;
|
|
113
113
|
receivePaymentsMadeToCod(codeCod: number): Observable<any>;
|
|
114
|
+
newRegistePaymentBillPreassignedCod(params: PaymentBillRq2): Observable<any>;
|
|
114
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
115
116
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
116
117
|
}
|
|
@@ -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, IUpdateDataTeacherRq, IObtainDataFromSuppliersStudentRq, IGeUsersFromDepartmentsRq } 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, IObtainDataFromSuppliersStudentRq, IGeUsersFromDepartmentsRq, ISearchForStudentToEditRq } 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';
|
|
@@ -52,6 +52,8 @@ export declare class UserService extends IPTGeneralService {
|
|
|
52
52
|
updateUserAndParentByCode(params: any): Observable<any>;
|
|
53
53
|
updateUserByCode(params: any): Observable<any>;
|
|
54
54
|
searchForUserByCode(codeUser: number): Observable<any>;
|
|
55
|
+
searchForStudentToEdit(params: ISearchForStudentToEditRq): Observable<any>;
|
|
56
|
+
searchStudentByCode(codeUser: number): Observable<any>;
|
|
55
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
56
58
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
57
59
|
}
|