27 lines
827 B
JavaScript
27 lines
827 B
JavaScript
/** @typedef {'order:created' | 'order:statusChanged' | 'orderMessage:sent' | 'orderMessage:adminReply' | 'payment:statusChanged' | 'auth:codeRequested'} NotificationEventType */
|
|
|
|
export const NOTIFICATION_EVENTS = {
|
|
ORDER_CREATED: 'order:created',
|
|
ORDER_STATUS_CHANGED: 'order:statusChanged',
|
|
ORDER_MESSAGE_SENT: 'orderMessage:sent',
|
|
ORDER_MESSAGE_ADMIN_REPLY: 'orderMessage:adminReply',
|
|
PAYMENT_STATUS_CHANGED: 'payment:statusChanged',
|
|
AUTH_CODE_REQUESTED: 'auth:codeRequested',
|
|
DELIVERY_FEE_ADJUSTED: 'order:deliveryFeeAdjusted',
|
|
}
|
|
|
|
export const NOTIFICATION_CHANNELS = {
|
|
EMAIL: 'email',
|
|
TELEGRAM: 'telegram',
|
|
}
|
|
|
|
export const NOTIFICATION_STATUSES = {
|
|
PENDING: 'pending',
|
|
SENT: 'sent',
|
|
FAILED: 'failed',
|
|
}
|
|
|
|
export const MAX_RETRY_ATTEMPTS = 3
|
|
|
|
export const RETRY_DELAYS_MS = [5_000, 30_000, 120_000]
|