Skip to content

Commit

Permalink
adds new event types
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterSlave committed Nov 21, 2023
1 parent 9374503 commit 60228ff
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/model/WebhookEventType.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
enum WebhookEventType {
ApiAuth = 'API_AUTH',
ApiVerifyAndAuth = 'API_VERIFY_AND_AUTH',
CheckoutFormAuth = 'CHECKOUTFORM_AUTH',
ThreeDSVerify = 'THREEDS_VERIFY'
ApiAuth = 'API_AUTH',
ApiVerifyAndAuth = 'API_VERIFY_AND_AUTH',
CheckoutFormAuth = 'CHECKOUTFORM_AUTH',
ThreeDSVerify = 'THREEDS_VERIFY',
Refund = 'REFUND',
RefundTx = 'REFUND_TX',
PayoutCompleted = 'PAYOUT_COMPLETED',
Autopilot = 'AUTOPILOT',
WalletCreated = 'WALLET_CREATED',
WalletTxCreated = 'WALLET_TX_CREATED',
BnplNotification = 'BNPL_NOTIFICATION'
}

export default WebhookEventType;

0 comments on commit 60228ff

Please sign in to comment.