Skip to content

Commit bf7e2d0

Browse files
feat(api): api update (#542)
1 parent 35049ae commit bf7e2d0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 39
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-134e5b4a91099c403b3937d93a32369acc1858c784f4f5842d63d6c426b33642.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-8782658ecd57622a964238df7b5dd997ac63789f8220852660ecf32fa115296b.yml

src/finch/types/create_access_token_response.py

+3
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@ class CreateAccessTokenResponse(BaseModel):
4848
The ID of your customer you provided to Finch when a connect session was created
4949
for this connection.
5050
"""
51+
52+
token_type: Optional[str] = None
53+
"""The RFC 8693 token type (Finch uses `bearer` tokens)"""

src/finch/types/sandbox/connection_create_response.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List
3+
from typing import List, Optional
44
from typing_extensions import Literal
55

66
from ..._models import BaseModel
@@ -26,3 +26,5 @@ class ConnectionCreateResponse(BaseModel):
2626

2727
provider_id: str
2828
"""The ID of the provider associated with the `access_token`."""
29+
30+
token_type: Optional[str] = None

0 commit comments

Comments
 (0)