Update api spec (#386)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2025-02-28 12:51:05 -08:00
committed by GitHub
parent 64c6b5a1c0
commit 720ad41506
3 changed files with 700 additions and 692 deletions

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,8 @@ from ..models.uuid import Uuid
class AsyncApiCall(BaseModel):
"""An async API call."""
attempts: int = 0
completed_at: Optional[datetime.datetime] = None
created_at: datetime.datetime

View File

@ -15589,6 +15589,12 @@
"description": "An async API call.",
"type": "object",
"properties": {
"attempts": {
"description": "The number of times we've attempted to process this job.",
"default": 0,
"type": "integer",
"format": "int16"
},
"completed_at": {
"nullable": true,
"title": "DateTime",