UNPKG

@unchainedshop/plugins

Version:

Because of a Typescript issue with upstream "postfinancecheckout", the Postfinance plugin has been disabled from transpilation, import the source ts files from src and enable node_module tsc or copy over the src/payment/postfinance-checkout to your projec

21 lines (18 loc) 539 B
import { Response } from './Response.js'; import { Request } from './Request.js'; import { TransactionAmount } from './Transaction.js'; export interface TransactionCaptureInput extends Request { TransactionReference: { TransactionId: string; OrderId?: string; }; Amount?: TransactionAmount; Marketplace?: any; // TODO: Implement Marketplace type } export interface TransactionCaptureResponse extends Response { CaptureId: string; Status: 'PENDING' | 'CAPTURED'; OrderId?: string; Date: string; Invoice?: any; }