iptdevs-design-system 3.1.785 → 3.1.788

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.
@@ -683,4 +683,73 @@ export interface IPaymentCorrelativeRq {
683
683
  export interface IObtainGatewayPaymentRecordRq {
684
684
  cod: number;
685
685
  }
686
+ export interface IUpdateEpaycoPaymentRq {
687
+ ref_validation: string;
688
+ payment_ref: string;
689
+ x_ref_payco: number;
690
+ transaction_id: string;
691
+ status_code: number;
692
+ status_name: string;
693
+ amount: number;
694
+ type_payment: string;
695
+ bank_name: string;
696
+ epayco_pin: string;
697
+ currency_code: string;
698
+ }
699
+ export interface IEpaycoPaymentUpdateRs {
700
+ gatePayment: IGatePaymentRs;
701
+ selfManag: ISelfManagRs;
702
+ epaBilll: IEpaBilllRs;
703
+ updUser: IUpdUserRs | null;
704
+ }
705
+ export interface IEpaBilllRs {
706
+ code: number;
707
+ payment_ref: string;
708
+ amount: number;
709
+ epayco_bank: string;
710
+ epayco_payment_type: string;
711
+ epayco_pin: string;
712
+ epayco_status: string;
713
+ epayco_ref: string;
714
+ }
715
+ export interface IGatePaymentRs {
716
+ code: number;
717
+ payment_service: number;
718
+ cod: number;
719
+ payment_amount: number;
720
+ payment_ref: string;
721
+ epayco_ref: string;
722
+ epayco_status: number;
723
+ }
724
+ export interface ISelfManagRs {
725
+ code: number;
726
+ cod: number;
727
+ course: number;
728
+ payment_selection: number;
729
+ payment_ref: string;
730
+ epayco_ref: string;
731
+ need_pay: number;
732
+ is_pay: number;
733
+ }
734
+ export interface IUpdUserRs {
735
+ code: number;
736
+ name: string;
737
+ last_name: string;
738
+ nick_name: null;
739
+ email: string;
740
+ email_ipt: null;
741
+ role: number;
742
+ phone_indicative: number;
743
+ phone_number: string;
744
+ gender: number;
745
+ birthdate: Date;
746
+ city: number;
747
+ id_card_type: number;
748
+ id_card: string;
749
+ token: string;
750
+ user_status: number;
751
+ password_change: number;
752
+ status_asing: number;
753
+ footprint: null;
754
+ }
686
755
  export {};
@@ -423,6 +423,9 @@ export interface ITransferDeleteRq {
423
423
  }
424
424
  export interface ITransferGetAllRq {
425
425
  token: string;
426
+ code_type_consult?: number;
427
+ start_date?: string;
428
+ finish_date?: string;
426
429
  }
427
430
  export interface ITransfer {
428
431
  code?: number;
@@ -1,6 +1,6 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq, IObatinDetailedIncomeByUserAndDateRq, IObatinBalacesByCoodinatorRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq } from '../../models/budget/budget.model';
3
+ import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs, IGetCodByPaymentPlanRq, IUpdateAmountCodPaymentsRq, IParamsUpdateDateCodPaymentsRq, ICancelStudentReceiptRq, ICancelledReceiptByDateRq, IPaymentsReceivedByUserRq, IObtainCourseByCoodDiffParamRq, NameCommonExpenses, IObtainPaymentTranHistoryRq, IObtainStudentPaymentByDiffParamRq, InfoCashClosingRq, IcashClosingDateRq, IcashClosingRq, IpaymentBillEgressRq, IncomesAndEgressRq, IObatinDetailedIncomeByUserAndDateRq, IObatinBalacesByCoodinatorRq, SendEmailPayment, SendEmailPaymentCancellationRS, IPaymentCorrelativeRq, IObtainGatewayPaymentRecordRq, IUpdateEpaycoPaymentRq } from '../../models/budget/budget.model';
4
4
  import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, IPaymentReferenceRq, ITransferCreateRq, ITransferDeleteRq, ITransferGetAllRq, ITransferGetRq, ITransferSearchRq, ITransferStatusUpdateRq, ITransferUpdateRq, PaymentBillRq2, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
5
5
  import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
6
6
  import { IPTGeneralService } from '../service-enviroments';
@@ -89,6 +89,7 @@ export declare class BudgetService extends IPTGeneralService {
89
89
  exportPaymentCorrelativeeHistoryData(param: IPaymentCorrelativeRq): Observable<any>;
90
90
  obtainPaymentsMadeByFilter(param: IPaymentCorrelativeRq): Observable<any>;
91
91
  obtainGatewayPaymentRecord(param: IObtainGatewayPaymentRecordRq): Observable<any>;
92
+ epaycoPaymentUpdate(param: IUpdateEpaycoPaymentRq): Observable<any>;
92
93
  static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
93
94
  static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
94
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iptdevs-design-system",
3
- "version": "3.1.785",
3
+ "version": "3.1.788",
4
4
  "description": "Library common elements into IPT Plattform.",
5
5
  "keywords": [
6
6
  "IPT",