Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.18.0"
".": "1.19.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 41
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-63d6857158c2634529b468b53df0b9c02f42d6f9783399939a38986e3137a86f.yml
openapi_spec_hash: 2c3aea6ae3e0a3dd7ac65c25b8fdc24d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-3224f142ed1542ed2535c155e8eb23b7ea10470c12448d60c3ce584126073a93.yml
openapi_spec_hash: 6c4b213ed5e4f7d1b369e04e4bfb5164
config_hash: 8303e755d3e16cf28542d5f0aec83851
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.19.0 (2025-03-31)

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

### Features

* **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))

## 1.18.0 (2025-03-27)

Full Changelog: [v1.17.0...v1.18.0](https://github.com/Finch-API/finch-api-python/compare/v1.17.0...v1.18.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "finch-api"
version = "1.18.0"
version = "1.19.0"
description = "The official Python library for the Finch API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/finch/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "finch"
__version__ = "1.18.0" # x-release-please-version
__version__ = "1.19.0" # x-release-please-version
4 changes: 4 additions & 0 deletions src/finch/types/introspection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import List, Optional
from datetime import datetime
from typing_extensions import Literal

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


class ConnectionStatus(BaseModel):
last_successful_sync: Optional[datetime] = None
"""The datetime when the connection was last successfully synced."""

message: Optional[str] = None

status: Optional[ConnectionStatusType] = None
Expand Down