iptdevs-design-system 3.2.119 → 3.2.122
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/PaymentGateway/PaymentGateway.models.mjs +1 -1
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/PaymentGateway/PaymentGateway.models.d.ts +17 -0
- package/lib/core/models/budget/budget.model.d.ts +1 -1
- package/lib/core/services/budget-service/budget-service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -36,6 +36,8 @@ export interface IWompiPaymentRq {
|
|
|
36
36
|
token: string;
|
|
37
37
|
fee_codes: number[];
|
|
38
38
|
amount_in_cents: number;
|
|
39
|
+
amount_discount?: number;
|
|
40
|
+
code_discount?: number;
|
|
39
41
|
customer_type_id_card: number;
|
|
40
42
|
customer_id_card: string;
|
|
41
43
|
customer_full_name: string;
|
|
@@ -88,3 +90,18 @@ export interface IWpPaymentBillRs {
|
|
|
88
90
|
payment_method: string;
|
|
89
91
|
payment_date: string;
|
|
90
92
|
}
|
|
93
|
+
export interface IUpdateTransactionStatusRq {
|
|
94
|
+
token?: string;
|
|
95
|
+
reference_ipt?: string;
|
|
96
|
+
new_status?: string;
|
|
97
|
+
new_wp_transaction_code?: string;
|
|
98
|
+
new_wp_payment_method?: string;
|
|
99
|
+
status_message_resp?: string;
|
|
100
|
+
wp_trans_started_at?: Date;
|
|
101
|
+
wp_trans_finished_at?: Date;
|
|
102
|
+
}
|
|
103
|
+
export interface IWompiTransactionPayloadRq {
|
|
104
|
+
token: string;
|
|
105
|
+
wompi_transaction_id: number;
|
|
106
|
+
type_environment: string;
|
|
107
|
+
}
|
|
@@ -1098,7 +1098,7 @@ export interface IPreviewModifyPaymentPlanRs {
|
|
|
1098
1098
|
enrrollmet_value: number;
|
|
1099
1099
|
fee_value: number;
|
|
1100
1100
|
amount_fees_generate: number;
|
|
1101
|
-
fees_attended:
|
|
1101
|
+
fees_attended: number;
|
|
1102
1102
|
old_corse: number;
|
|
1103
1103
|
new_corse: number;
|
|
1104
1104
|
datapay: IPreviewNewPaymentPlanRs[];
|
|
@@ -6,7 +6,7 @@ import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.m
|
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
7
7
|
import { ICodPaymentRq } from '../../models/cod/cod-rq.model';
|
|
8
8
|
import { ICreateTransferRq, ISearchTransferRq, IUpdateTransferRq } from '../../models/transfer/transfer.model';
|
|
9
|
-
import { IGetTransactionsByUserCodeRq, IWompiPaymentRq } from '../../models/PaymentGateway/PaymentGateway.models';
|
|
9
|
+
import { IGetTransactionsByUserCodeRq, IUpdateTransactionStatusRq, IWompiPaymentRq, IWompiTransactionPayloadRq } from '../../models/PaymentGateway/PaymentGateway.models';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class BudgetService extends IPTGeneralService {
|
|
12
12
|
private http;
|
|
@@ -128,6 +128,8 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
128
128
|
handle(param: any): Observable<any>;
|
|
129
129
|
getTransactionsByUserCode(param: IGetTransactionsByUserCodeRq): Observable<any>;
|
|
130
130
|
revertPendingPaymentsByUserCode(param: IGetTransactionsByUserCodeRq): Observable<any>;
|
|
131
|
+
updateTransactionStatus(param: IUpdateTransactionStatusRq): Observable<any>;
|
|
132
|
+
getWompiTransactionById(param: IWompiTransactionPayloadRq): Observable<any>;
|
|
131
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
132
134
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
133
135
|
}
|