Skip to content

Commit a62c00a

Browse files
feat(api): api update
1 parent 94adaea commit a62c00a

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
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: 107
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-40acbccadc351baeb931b6a1e9bba91dfa83052282f6235bdf7ef3ced6f44952.yml
3-
openapi_spec_hash: 59e26f5aa5ba8d36dc3c03f86cf0bc11
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-c58a5c220451e713b6321cea20fe7c4427ecf6cc556163c6dbce317b82c5c11d.yml
3+
openapi_spec_hash: 6f6bca0735555e3f6a951fbfd4a3e4d9
44
config_hash: acdf4142177ed1932c2d82372693f811

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Operating System :: OS Independent",
2829
"Operating System :: POSIX",
2930
"Operating System :: MacOS",

src/asktable/types/ats/task_list_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22-
report: str
23-
2422
sql: str
2523

24+
report: Optional[str] = None
25+
2626

2727
class TaskListResponse(BaseModel):
2828
id: str

src/asktable/types/ats/task_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22-
report: str
23-
2422
sql: str
2523

24+
report: Optional[str] = None
25+
2626

2727
class TaskRetrieveResponse(BaseModel):
2828
id: str

src/asktable/types/ats/task_run_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ class ModelGroup(BaseModel):
1919

2020
omni: str
2121

22-
report: str
23-
2422
sql: str
2523

24+
report: Optional[str] = None
25+
2626

2727
class TaskRunResponse(BaseModel):
2828
id: str

0 commit comments

Comments
 (0)