26 lines
571 B
TypeScript
26 lines
571 B
TypeScript
export enum PaymentWebhookEvents {
|
|
WebhookReceived = "payment.webhook_received",
|
|
}
|
|
|
|
/**
|
|
* Normalized events from payment provider to internal payment module events.
|
|
*/
|
|
export enum PaymentActions {
|
|
/**
|
|
* Payment session has been authorized and there are available funds for capture.
|
|
*/
|
|
AUTHORIZED = "authorized",
|
|
/**
|
|
* Payment was successful and the mount is captured.
|
|
*/
|
|
SUCCESSFUL = "captured",
|
|
/**
|
|
* Payment failed.
|
|
*/
|
|
FAILED = "failed",
|
|
/**
|
|
* Received an event that is not processable.
|
|
*/
|
|
NOT_SUPPORTED = "not_supported",
|
|
}
|