iptdevs-design-system 3.1.908 → 3.1.910
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 +2 -2
- package/lib/core/models/user/user-rq.model.d.ts +5 -0
- package/lib/core/services/user-service/user-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -433,8 +433,8 @@ export interface ITransferDeleteRq {
|
|
|
433
433
|
export interface ITransferGetAllRq {
|
|
434
434
|
token: string;
|
|
435
435
|
code_type_consult?: number;
|
|
436
|
-
start_date?: string;
|
|
437
|
-
finish_date?: string;
|
|
436
|
+
start_date?: string | null;
|
|
437
|
+
finish_date?: string | null;
|
|
438
438
|
}
|
|
439
439
|
export interface ITransfer {
|
|
440
440
|
code?: number;
|
|
@@ -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 } 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 } 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';
|
|
@@ -47,6 +47,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
47
47
|
UpdateTeacherDataByCode(params: IUpdateDataTeacherRq): Observable<any>;
|
|
48
48
|
getAllUsersCommisions(params: getStrategyByUserCommercialRq): Observable<any>;
|
|
49
49
|
obtainDataFromSuppliersStudent(params: IObtainDataFromSuppliersStudentRq): Observable<any>;
|
|
50
|
+
getUsersFromDepartments(params: IGeUsersFromDepartmentsRq): Observable<any>;
|
|
50
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
51
52
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
52
53
|
}
|