@@ -633,6 +633,8 @@ export interface OrderReferences {
633633 invoiceData ?: OrderInvoiceData | null ;
634634 merchantOrderId ?: number | null ;
635635 merchantReference ?: string | null ;
636+ providerId ?: string | null ;
637+ providerMerchantId ?: string | null ;
636638}
637639
638640export interface OrderReferencesApprovePayment {
@@ -745,8 +747,6 @@ export interface PaymentReferences {
745747export interface PaymentStatusOutput extends OrderStatusOutput {
746748 isAuthorized ?: boolean | null ;
747749 isRefundable ?: boolean | null ;
748- isRetriable ?: boolean | null ;
749- providerRawOutput ?: KeyValuePair [ ] | null ;
750750 threeDSecureStatus ?: string | null ;
751751}
752752
@@ -862,8 +862,9 @@ export interface RedirectionData {
862862// eslint-disable-next-line @typescript-eslint/no-empty-interface
863863export interface RefundBankMethodSpecificOutput extends RefundMethodSpecificOutput { }
864864
865- // eslint-disable-next-line @typescript-eslint/no-empty-interface
866- export interface RefundCardMethodSpecificOutput extends RefundMethodSpecificOutput { }
865+ export interface RefundCardMethodSpecificOutput extends RefundMethodSpecificOutput {
866+ authorisationCode ?: string | null ;
867+ }
867868
868869// eslint-disable-next-line @typescript-eslint/no-empty-interface
869870export interface RefundCashMethodSpecificOutput extends RefundMethodSpecificOutput { }
0 commit comments