Skip to content

Commit 1c0325c

Browse files
feat(api): api update (#630)
1 parent 42eb4a6 commit 1c0325c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.stats.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 41
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-63d6857158c2634529b468b53df0b9c02f42d6f9783399939a38986e3137a86f.yml
3-
openapi_spec_hash: 2c3aea6ae3e0a3dd7ac65c25b8fdc24d
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-3224f142ed1542ed2535c155e8eb23b7ea10470c12448d60c3ce584126073a93.yml
3+
openapi_spec_hash: 6c4b213ed5e4f7d1b369e04e4bfb5164
44
config_hash: 8303e755d3e16cf28542d5f0aec83851

src/finch/types/introspection.py

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

33
from typing import List, Optional
4+
from datetime import datetime
45
from typing_extensions import Literal
56

67
from .._models import BaseModel
@@ -26,6 +27,9 @@ class AuthenticationMethod(BaseModel):
2627

2728

2829
class ConnectionStatus(BaseModel):
30+
last_successful_sync: Optional[datetime] = None
31+
"""The datetime when the connection was last successfully synced."""
32+
2933
message: Optional[str] = None
3034

3135
status: Optional[ConnectionStatusType] = None

0 commit comments

Comments
 (0)