Skip to content

Commit 166ee93

Browse files
authored
Adding gateway_id to support eps on wallet pay (#32)
1 parent 26df5bd commit 166ee93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/types/apiInterfaces.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,16 +828,19 @@ export interface IWalletPayOnApprovePaypalPayload {
828828

829829
export interface IWalletPayCreateOrderRequest{
830830
gateway_type: string;
831+
gateway_id?: number;
831832
payment_data: IWalletPayCreateOrderPaypalPayload | Record<string, unknown>
832833
}
833834

834835
export interface IWalletPayOnShippingRequest{
835836
gateway_type: string;
837+
gateway_id?: number;
836838
payment_data: IWalletPayOnShippingPaypalPayload | Record<string, unknown>
837839
}
838840

839841
export interface IWalletPayOnApproveRequest{
840842
gateway_type: string;
843+
gateway_id?: number;
841844
payment_data: IWalletPayOnApprovePaypalPayload | Record<string, unknown>
842845
}
843846

0 commit comments

Comments
 (0)