Skip to content

Commit 73f9586

Browse files
SDK regeneration
1 parent 1e6e7e0 commit 73f9586

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.fern/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"use_str_enums": false
1010
}
1111
},
12-
"originGitCommit": "3ad89f5558f1774e8535f034a87bfe8c2fdfcd50",
13-
"sdkVersion": "2.0.0"
12+
"originGitCommit": "f0174d404a2635415e858ef151cf9202df3e3d02",
13+
"sdkVersion": "2.0.1"
1414
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "webflow"
7-
version = "2.0.0"
7+
version = "2.0.1"
88
description = ""
99
readme = "README.md"
1010
authors = []

src/webflow/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ def get_headers(self) -> typing.Dict[str, str]:
2828
import platform
2929

3030
headers: typing.Dict[str, str] = {
31-
"User-Agent": "webflow/2.0.0",
31+
"User-Agent": "webflow/2.0.1",
3232
"X-Fern-Language": "Python",
3333
"X-Fern-Runtime": f"python/{platform.python_version()}",
3434
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
3535
"X-Fern-SDK-Name": "webflow",
36-
"X-Fern-SDK-Version": "2.0.0",
36+
"X-Fern-SDK-Version": "2.0.1",
3737
**(self.get_custom_headers() or {}),
3838
}
3939
headers["Authorization"] = f"Bearer {self._get_access_token()}"

0 commit comments

Comments
 (0)