File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,12 +64,15 @@ class ErrorCode(str, Enum):
6464 FORBIDDEN = "FORBIDDEN"
6565 NOT_FOUND = "NOT_FOUND"
6666 BUDGET_EXCEEDED = "BUDGET_EXCEEDED"
67+ BUDGET_FROZEN = "BUDGET_FROZEN"
68+ BUDGET_CLOSED = "BUDGET_CLOSED"
6769 RESERVATION_EXPIRED = "RESERVATION_EXPIRED"
6870 RESERVATION_FINALIZED = "RESERVATION_FINALIZED"
6971 IDEMPOTENCY_MISMATCH = "IDEMPOTENCY_MISMATCH"
7072 UNIT_MISMATCH = "UNIT_MISMATCH"
7173 OVERDRAFT_LIMIT_EXCEEDED = "OVERDRAFT_LIMIT_EXCEEDED"
7274 DEBT_OUTSTANDING = "DEBT_OUTSTANDING"
75+ MAX_EXTENSIONS_EXCEEDED = "MAX_EXTENSIONS_EXCEEDED"
7376 INTERNAL_ERROR = "INTERNAL_ERROR"
7477 UNKNOWN = "UNKNOWN"
7578
@@ -318,6 +321,7 @@ class EventCreateResponse(BaseModel):
318321
319322 status : EventStatus
320323 event_id : str
324+ charged : Amount | None = None
321325 balances : list [Balance ] | None = None
322326
323327
You can’t perform that action at this time.
0 commit comments