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

19 lines 575 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; } export interface TransactionCaptureResponse extends Response { CaptureId: string; Status: 'PENDING' | 'CAPTURED'; OrderId?: string; Date: string; Invoice?: any; } //# sourceMappingURL=TransactionCapture.d.ts.map