import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of event that occurred. */ export declare const WebhookEventType: { readonly Wildcard: "*"; readonly AccountCreated: "account.created"; readonly AccountUpdated: "account.updated"; readonly AccountDisconnected: "account.disconnected"; readonly BalanceUpdated: "balance.updated"; readonly BankAccountCreated: "bankAccount.created"; readonly BankAccountUpdated: "bankAccount.updated"; readonly BankAccountDeleted: "bankAccount.deleted"; readonly CancellationCreated: "cancellation.created"; readonly CancellationUpdated: "cancellation.updated"; readonly CardAutoUpdated: "card.autoUpdated"; readonly CapabilityRequested: "capability.requested"; readonly CapabilityUpdated: "capability.updated"; readonly DisputeCreated: "dispute.created"; readonly DisputeUpdated: "dispute.updated"; readonly InvoiceCreated: "invoice.created"; readonly InvoiceUpdated: "invoice.updated"; readonly NetworkIDUpdated: "networkID.updated"; readonly PaymentMethodEnabled: "paymentMethod.enabled"; readonly PaymentMethodDisabled: "paymentMethod.disabled"; readonly RefundCreated: "refund.created"; readonly RefundUpdated: "refund.updated"; readonly RepresentativeCreated: "representative.created"; readonly RepresentativeUpdated: "representative.updated"; readonly RepresentativeDeleted: "representative.deleted"; readonly SweepCreated: "sweep.created"; readonly SweepUpdated: "sweep.updated"; readonly TerminalApplicationCreated: "terminalApplication.created"; readonly TerminalApplicationUpdated: "terminalApplication.updated"; readonly TicketCreated: "ticket.created"; readonly TicketUpdated: "ticket.updated"; readonly TicketMessageAdded: "ticket.messageAdded"; readonly TransferCreated: "transfer.created"; readonly TransferUpdated: "transfer.updated"; readonly WalletCreated: "wallet.created"; readonly WalletUpdated: "wallet.updated"; readonly WalletTransactionUpdated: "walletTransaction.updated"; readonly BillingStatementCreated: "billingStatement.created"; }; /** * The type of event that occurred. */ export type WebhookEventType = ClosedEnum; /** @internal */ export declare const WebhookEventType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const WebhookEventType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=webhookeventtype.d.ts.map