update brizzi

This commit is contained in:
fro1991
2025-04-22 02:53:33 +07:00
parent d8aa311a21
commit 7aee0cfa4a
15 changed files with 940 additions and 0 deletions

24
src/types/brizzi.ts Normal file
View File

@ -0,0 +1,24 @@
export enum BrizziBatchStatus {
"queue" = "queue",
"process" = "process",
"success" = "success",
"failed" = "failed",
};
export enum BrizziCardStatus {
"active" = "active",
"inactive" = "inactive",
"blocked" = "blocked",
};
export enum BrizziHistoryActvity {
"active" = "active",
"topup" = "topup",
"payment" = "payment",
"blocked" = "blocked"
}
export enum BrizziHistoryType {
"credit" = "credit",
"debit" = "debit",
}