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:
committed by
GitHub
parent
64c6b5a1c0
commit
720ad41506
File diff suppressed because it is too large
Load Diff
@ -11,6 +11,8 @@ from ..models.uuid import Uuid
|
|||||||
class AsyncApiCall(BaseModel):
|
class AsyncApiCall(BaseModel):
|
||||||
"""An async API call."""
|
"""An async API call."""
|
||||||
|
|
||||||
|
attempts: int = 0
|
||||||
|
|
||||||
completed_at: Optional[datetime.datetime] = None
|
completed_at: Optional[datetime.datetime] = None
|
||||||
|
|
||||||
created_at: datetime.datetime
|
created_at: datetime.datetime
|
||||||
|
@ -15589,6 +15589,12 @@
|
|||||||
"description": "An async API call.",
|
"description": "An async API call.",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"attempts": {
|
||||||
|
"description": "The number of times we've attempted to process this job.",
|
||||||
|
"default": 0,
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int16"
|
||||||
|
},
|
||||||
"completed_at": {
|
"completed_at": {
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"title": "DateTime",
|
"title": "DateTime",
|
||||||
|
Reference in New Issue
Block a user