Skip to content

Commit 00792da

Browse files
feat(api): api update
1 parent 9efeb7a commit 00792da

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-73c284d36c1ed2d9963fc733e421005fad76e559de8efe9baa6511a43dd72668.yml
3-
openapi_spec_hash: 1e58c4445919b71c77e5c7f16bd6fa7d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-d5e464682bd08cc19d0c41aa783238846cdc1162a8765083bd5c7e3ca78655d5.yml
3+
openapi_spec_hash: 40b39b0a6fcd33ce59c96bec3ebb5985
44
config_hash: 5146b12344dae76238940989dac1e8a0

src/finch/types/jobs/automated_async_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class AutomatedAsyncJob(BaseModel):
3838
"""The datetime a job is scheduled to be run.
3939
4040
For scheduled jobs, this datetime can be in the future if the job has not yet
41-
been enqueued. For ad-hoc jobs, this field will be null.
41+
been enqueued. For ad-hoc jobs, this field will be null.
4242
"""
4343

4444
started_at: Optional[datetime] = None

src/finch/types/jobs/manual_async_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
class ManualAsyncJob(BaseModel):
12-
body: Optional[List[object]] = None
12+
body: Optional[List[Optional[object]]] = None
1313
"""Specific information about the job, such as individual statuses for batch jobs."""
1414

1515
job_id: str

0 commit comments

Comments
 (0)