Skip to content

Commit 1ad3f9a

Browse files
release: 1.19.0 (#631)
* feat(api): api update (#630) * release: 1.19.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 42eb4a6 commit 1ad3f9a

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.18.0"
2+
".": "1.19.0"
33
}

.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

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.19.0 (2025-03-31)
4+
5+
Full Changelog: [v1.18.0...v1.19.0](https://github.com/Finch-API/finch-api-python/compare/v1.18.0...v1.19.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#630](https://github.com/Finch-API/finch-api-python/issues/630)) ([1c0325c](https://github.com/Finch-API/finch-api-python/commit/1c0325c26c2217de075465aa1dfdc80ae2237019))
10+
311
## 1.18.0 (2025-03-27)
412

513
Full Changelog: [v1.17.0...v1.18.0](https://github.com/Finch-API/finch-api-python/compare/v1.17.0...v1.18.0)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "finch-api"
3-
version = "1.18.0"
3+
version = "1.19.0"
44
description = "The official Python library for the Finch API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/finch/_version.py

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

33
__title__ = "finch"
4-
__version__ = "1.18.0" # x-release-please-version
4+
__version__ = "1.19.0" # x-release-please-version

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)