Skip to content

Commit

Permalink
feat(api): api update (#706)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Dec 13, 2024
1 parent 6979780 commit 721ca3c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 69
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/structify%2Fstructify-a671c20108a4aaebd22f105a7184bd9083b0cd8ba076f64a88c22498113be4af.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/structify%2Fstructify-7a4719ea1b0b0e031b16d315cd89ee4975303e2f314d6613ee5b7f12ecb5b5d8.yml
2 changes: 2 additions & 0 deletions src/structify/types/admin/human_llm_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class Job(BaseModel):

message: Optional[str] = None

reason: Optional[str] = None

report_on_complete: Optional[bool] = None

run_started_time: Optional[datetime] = None
Expand Down
2 changes: 2 additions & 0 deletions src/structify/types/entity_list_jobs_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class EntityListJobsResponseItem(BaseModel):

message: Optional[str] = None

reason: Optional[str] = None

report_on_complete: Optional[bool] = None

run_started_time: Optional[datetime] = None
Expand Down
2 changes: 2 additions & 0 deletions src/structify/types/job_cancel_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class JobCancelResponse(BaseModel):

message: Optional[str] = None

reason: Optional[str] = None

report_on_complete: Optional[bool] = None

run_started_time: Optional[datetime] = None
Expand Down
2 changes: 2 additions & 0 deletions src/structify/types/job_get_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class Job(BaseModel):

message: Optional[str] = None

reason: Optional[str] = None

report_on_complete: Optional[bool] = None

run_started_time: Optional[datetime] = None
Expand Down
2 changes: 2 additions & 0 deletions src/structify/types/job_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class JobListResponse(BaseModel):

message: Optional[str] = None

reason: Optional[str] = None

report_on_complete: Optional[bool] = None

run_started_time: Optional[datetime] = None
Expand Down

0 comments on commit 721ca3c

Please sign in to comment.