15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
export enum AuthType {
|
|
SecretKey = "secret_key",
|
|
PublicKey = "public_key",
|
|
Dashboard = "dashboard",
|
|
Stripe = "stripe",
|
|
Unknown = "unknown",
|
|
Worker = "worker",
|
|
}
|
|
|
|
export enum ActionType {
|
|
CustomerCreated = "customer.created",
|
|
CustomerProductsUpdated = "customer.products.updated",
|
|
CustomerFeaturesUpdated = "customer.features.updated",
|
|
}
|