12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
export enum LoggerAction {
|
|
AdjustAllowance = "adjust_allowance",
|
|
|
|
// Stripe Webhook
|
|
StripeWebhook = "stripe_webhook",
|
|
StripeWebhookInvoiceCreated = "stripe_webhook_invoice_created",
|
|
|
|
// Invoice
|
|
InsertStripeInvoice = "insert_stripe_invoice",
|
|
CreateFullCusProduct = "create_full_cus_product",
|
|
}
|