iptdevs-design-system 3.1.611 → 3.1.613
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/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/user/user-rq.model.d.ts +20 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -164,3 +164,23 @@ export interface ParamsUser {
|
|
|
164
164
|
token: string;
|
|
165
165
|
param: string;
|
|
166
166
|
}
|
|
167
|
+
export interface IusersRq {
|
|
168
|
+
name: string;
|
|
169
|
+
last_name: string;
|
|
170
|
+
email: string;
|
|
171
|
+
phone_indicative: number;
|
|
172
|
+
phone_number: number;
|
|
173
|
+
id_card_type: number;
|
|
174
|
+
id_card: number;
|
|
175
|
+
city: number;
|
|
176
|
+
password: string;
|
|
177
|
+
role: number;
|
|
178
|
+
gender: number;
|
|
179
|
+
token: string;
|
|
180
|
+
is_company: number;
|
|
181
|
+
name_company?: string;
|
|
182
|
+
category?: number;
|
|
183
|
+
address_company?: string;
|
|
184
|
+
phone_company?: number;
|
|
185
|
+
nit?: number;
|
|
186
|
+
}
|
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
|
+
import { IusersRq } from '../../models/user/user-rq.model';
|
|
6
7
|
import { IPTGeneralService } from '../service-enviroments';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class BudgetService extends IPTGeneralService {
|
|
@@ -66,6 +67,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
66
67
|
getCashClosingYear(code: number): Observable<any>;
|
|
67
68
|
getInfoCashClosingByCode(param: InfoCashClosingRq): Observable<any>;
|
|
68
69
|
getCashClosingDate(param: IcashClosingDateRq): Observable<any>;
|
|
70
|
+
createProveedor(param: IusersRq): Observable<any>;
|
|
69
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
70
72
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
71
73
|
}
|