feat: finish create and inquire application api and handle response and errors

This commit is contained in:
Abdalhamid Alhamad
2025-06-03 14:51:36 +03:00
parent d4fe3b3fc3
commit 1ea1f42169
23 changed files with 1698 additions and 124 deletions

View File

@ -0,0 +1,6 @@
export enum CardStatus {
ACTIVE = 'ACTIVE',
CANCELED = 'CANCELED',
BLOCKED = 'BLOCKED',
PENDING = 'PENDING',
}