Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds new event types #55

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions adapter/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,13 @@ const (
WebhookEventType_API_VERIFY_AND_AUTH WebhookEventType = "API_VERIFY_AND_AUTH"
WebhookEventType_CHECKOUTFORM_AUTH WebhookEventType = "CHECKOUTFORM_AUTH"
WebhookEventType_THREEDS_VERIFY WebhookEventType = "THREEDS_VERIFY"
WebhookEventType_REFUND WebhookEventType = "REFUND"
WebhookEventType_REFUND_TX WebhookEventType = "REFUND_TX"
WebhookEventType_PAYOUT_COMPLETED WebhookEventType = "PAYOUT_COMPLETED"
WebhookEventType_AUTOPILOT WebhookEventType = "AUTOPILOT"
WebhookEventType_WALLET_CREATED WebhookEventType = "WALLET_CREATED"
WebhookEventType_WALLET_TX_CREATED WebhookEventType = "WALLET_TX_CREATED"
WebhookEventType_BNPL_NOTIFICATION WebhookEventType = "BNPL_NOTIFICATION"
)

const (
Expand Down
Loading