Skip to content

Commit 07eecd5

Browse files
feat(api): api update
1 parent c99789c commit 07eecd5

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/benchify%2Fbenchify-f81621c46e22734ae2de4138ba988523003ca0f29928700d17cee332c19109be.yml
3-
openapi_spec_hash: 11b218c022e1e212b857d7323c99e0f8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/benchify%2Fbenchify-ab558f95704950c728ee836f3478686714fc4656096d3c3c33ffcedcd5df531f.yml
3+
openapi_spec_hash: 5b3cfc31b1cf87e0ca4ddc57a5a97e3d
44
config_hash: 935baad1727a1116efdc14e9ce6e4405

src/benchify/resources/fixer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def run(
4949
*,
5050
files: Iterable[fixer_run_params.File],
5151
bundle: bool | NotGiven = NOT_GIVEN,
52-
fix_types: List[Literal["import_export", "string_literals", "css", "tailwind", "ai_fallback", "types", "sql"]]
52+
fix_types: List[Literal["import_export", "string_literals", "css", "ai_fallback", "types", "sql"]]
5353
| NotGiven = NOT_GIVEN,
5454
fixes: Optional[fixer_run_params.Fixes] | NotGiven = NOT_GIVEN,
5555
meta: Optional[fixer_run_params.Meta] | NotGiven = NOT_GIVEN,
@@ -134,7 +134,7 @@ async def run(
134134
*,
135135
files: Iterable[fixer_run_params.File],
136136
bundle: bool | NotGiven = NOT_GIVEN,
137-
fix_types: List[Literal["import_export", "string_literals", "css", "tailwind", "ai_fallback", "types", "sql"]]
137+
fix_types: List[Literal["import_export", "string_literals", "css", "ai_fallback", "types", "sql"]]
138138
| NotGiven = NOT_GIVEN,
139139
fixes: Optional[fixer_run_params.Fixes] | NotGiven = NOT_GIVEN,
140140
meta: Optional[fixer_run_params.Meta] | NotGiven = NOT_GIVEN,

src/benchify/types/fixer_run_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class FixerRunParams(TypedDict, total=False):
1717
bundle: bool
1818
"""Whether to bundle the project (experimental)"""
1919

20-
fix_types: List[Literal["import_export", "string_literals", "css", "tailwind", "ai_fallback", "types", "sql"]]
20+
fix_types: List[Literal["import_export", "string_literals", "css", "ai_fallback", "types", "sql"]]
2121
"""Configuration for which fix types to apply"""
2222

2323
fixes: Optional[Fixes]

src/benchify/types/fixer_run_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Data(BaseModel):
6666
"""Bundled files"""
6767

6868
fix_types_used: Optional[
69-
List[Literal["import_export", "string_literals", "css", "tailwind", "ai_fallback", "types", "sql"]]
69+
List[Literal["import_export", "string_literals", "css", "ai_fallback", "types", "sql"]]
7070
] = None
7171
"""List of fix types that were actually applied during the fixer run"""
7272

0 commit comments

Comments
 (0)