Skip to content

Commit a972f3b

Browse files
SDK regeneration
1 parent 911d734 commit a972f3b

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
name: ci
22
on: [push]
33
jobs:
4-
compile:
54
runs-on: ubuntu-latest
65
steps:
76
- name: Checkout repo
87
uses: actions/checkout@v4
98
- name: Set up python
109
uses: actions/setup-python@v4
1110
with:
12-
python-version: 3.8
13-
- name: Bootstrap poetry
1411
run: |
1512
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
1613
- name: Install dependencies

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "credal"
33

44
[tool.poetry]
55
name = "credal"
6-
version = "0.1.11"
6+
version = "0.1.12"
77
description = ""
88
readme = "README.md"
99
authors = []

src/credal/copilots/types/filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ class Config:
7878

7979
Filter = typing_extensions.Annotated[
8080
typing.Union[Filter_String, Filter_Number, Filter_Boolean, Filter_Datetime],
81-
pydantic.Field(discriminator="field_type"),
81+
pydantic.Field(discriminator="fieldType"),
8282
]

src/credal/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(
2222

2323
def get_headers(self) -> typing.Dict[str, str]:
2424
headers: typing.Dict[str, str] = {
25-
"User-Agent": "credal/0.1.11",
25+
"User-Agent": "credal/0.1.12",
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "credal",
28-
"X-Fern-SDK-Version": "0.1.11",
28+
"X-Fern-SDK-Version": "0.1.12",
2929
**(self.get_custom_headers() or {}),
3030
}
3131
headers["Authorization"] = f"Bearer {self._get_api_key()}"

0 commit comments

Comments
 (0)