UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API

35 lines (34 loc) 1.5 kB
import { HostedcheckoutsClient } from "./hostedcheckouts"; import { HostedmandatemanagementsClient } from "./hostedmandatemanagements"; import { PaymentsClient } from "./payments"; import { CapturesClient } from "./captures"; import { RefundsClient } from "./refunds"; import { DisputesClient } from "./disputes"; import { PayoutsClient } from "./payouts"; import { ProductgroupsClient } from "./productgroups"; import { ProductsClient } from "./products"; import { RiskassessmentsClient } from "./riskassessments"; import { ServicesClient } from "./services"; import { TokensClient } from "./tokens"; import { MandatesClient } from "./mandates"; import { SessionsClient } from "./sessions"; import { InstallmentsClient } from "./installments"; import { FilesClient } from "./files"; export interface V1Client { readonly hostedcheckouts: HostedcheckoutsClient; readonly hostedmandatemanagements: HostedmandatemanagementsClient; readonly payments: PaymentsClient; readonly captures: CapturesClient; readonly refunds: RefundsClient; readonly disputes: DisputesClient; readonly payouts: PayoutsClient; readonly productgroups: ProductgroupsClient; readonly products: ProductsClient; readonly riskassessments: RiskassessmentsClient; readonly services: ServicesClient; readonly tokens: TokensClient; readonly mandates: MandatesClient; readonly sessions: SessionsClient; readonly installments: InstallmentsClient; readonly files: FilesClient; }