Skip to content

Commit 77d6be1

Browse files
Release 2.14.1
1 parent 22a3f1f commit 77d6be1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

pyproject.toml

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

44
[tool.poetry]
55
name = "klavis"
6-
version = "2.14.0"
6+
version = "2.14.1"
77
description = ""
88
readme = "README.md"
99
authors = []

src/klavis/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": "klavis/2.14.0",
25+
"User-Agent": "klavis/2.14.1",
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "klavis",
28-
"X-Fern-SDK-Version": "2.14.0",
28+
"X-Fern-SDK-Version": "2.14.1",
2929
**(self.get_custom_headers() or {}),
3030
}
3131
api_key = self._get_api_key()

src/klavis/types/o_auth_server_name.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class OAuthServerName(str, enum.Enum):
4646
QUICK_BOOKS = "QuickBooks"
4747
SALESFORCE = "Salesforce"
4848
SLACK = "Slack"
49+
SNOWFLAKE = "Snowflake"
4950
STRIPE = "Stripe"
5051
SUPABASE = "Supabase"
5152
VERCEL = "Vercel"
@@ -94,6 +95,7 @@ def visit(
9495
quick_books: typing.Callable[[], T_Result],
9596
salesforce: typing.Callable[[], T_Result],
9697
slack: typing.Callable[[], T_Result],
98+
snowflake: typing.Callable[[], T_Result],
9799
stripe: typing.Callable[[], T_Result],
98100
supabase: typing.Callable[[], T_Result],
99101
vercel: typing.Callable[[], T_Result],
@@ -179,6 +181,8 @@ def visit(
179181
return salesforce()
180182
if self is OAuthServerName.SLACK:
181183
return slack()
184+
if self is OAuthServerName.SNOWFLAKE:
185+
return snowflake()
182186
if self is OAuthServerName.STRIPE:
183187
return stripe()
184188
if self is OAuthServerName.SUPABASE:

0 commit comments

Comments
 (0)