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 @@
{
".": "9.2.0"
".": "9.3.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: 48
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-a6b05e51c46366a54466c2009f5fdde74e0fa40bbcc6568601a4e3342dd16937.yml
openapi_spec_hash: 084797c220144df17d98eb984dd4cba2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-166cc05754d8591beda094f4ee6f438f55d5f65d490ab364ea130c5100134375.yml
openapi_spec_hash: 4582a35bbe9fb5404d1e4f804c877fa8
config_hash: 9ae56f40cec7304896138bfad5caf748
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 9.3.0 (2026-07-15)

Full Changelog: [v9.2.0...v9.3.0](https://github.com/Finch-API/finch-api-kotlin/compare/v9.2.0...v9.3.0)

### Features

* **api:** api update ([82b2d12](https://github.com/Finch-API/finch-api-kotlin/commit/82b2d123fdcd57e043a67d9309e5de7ba20dc352))

## 9.2.0 (2026-07-13)

Full Changelog: [v9.1.0...v9.2.0](https://github.com/Finch-API/finch-api-kotlin/compare/v9.1.0...v9.2.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/9.2.0)
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/9.2.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.2.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-kotlin)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-kotlin/9.3.0)
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-kotlin/9.3.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.3.0)

<!-- x-release-please-end -->

Expand All @@ -24,7 +24,7 @@ Use the Finch MCP Server to enable AI assistants to interact with this API, allo

<!-- x-release-please-start-version -->

The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.2.0).
The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). KDocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-kotlin/9.3.0).

<!-- x-release-please-end -->

Expand All @@ -35,7 +35,7 @@ The REST API documentation can be found on [developer.tryfinch.com](https://deve
### Gradle

```kotlin
implementation("com.tryfinch.api:finch-kotlin:9.2.0")
implementation("com.tryfinch.api:finch-kotlin:9.3.0")
```

### Maven
Expand All @@ -44,7 +44,7 @@ implementation("com.tryfinch.api:finch-kotlin:9.2.0")
<dependency>
<groupId>com.tryfinch.api</groupId>
<artifactId>finch-kotlin</artifactId>
<version>9.2.0</version>
<version>9.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.tryfinch.api"
version = "9.2.0" // x-release-please-version
version = "9.3.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ private constructor(
authenticationType.getRequired("authentication_type")

/**
* [DEPRECATED] Use `connection_id` to associate a connection with an access token
* The Finch UUID of the company associated with the `access_token`.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* The ID of the new connection
Expand Down Expand Up @@ -157,10 +157,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -288,8 +285,7 @@ private constructor(
this.authenticationType = authenticationType
}

/** [DEPRECATED] Use `connection_id` to associate a connection with an access token */
@Deprecated("deprecated")
/** The Finch UUID of the company associated with the `access_token`. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -299,7 +295,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** The ID of the new connection */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,12 @@ private constructor(
@Deprecated("deprecated") fun accountId(): String = accountId.getRequired("account_id")

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
* Unique Finch ID of the company for which data has been updated.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* Unique Finch ID of the connection associated with the webhook event.
Expand Down Expand Up @@ -111,10 +110,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -210,11 +206,7 @@ private constructor(
@Deprecated("deprecated")
fun accountId(accountId: JsonField<String>) = apply { this.accountId = accountId }

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
*/
@Deprecated("deprecated")
/** Unique Finch ID of the company for which data has been updated. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -224,7 +216,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** Unique Finch ID of the connection associated with the webhook event. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ private constructor(
authenticationType.getRequired("authentication_type")

/**
* [DEPRECATED] Use `connection_id` to associate a connection with an access token
* The Finch UUID of the company associated with the `access_token`.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* The ID of the new connection
Expand Down Expand Up @@ -137,10 +137,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -254,8 +251,7 @@ private constructor(
this.authenticationType = authenticationType
}

/** [DEPRECATED] Use `connection_id` to associate a connection with an access token */
@Deprecated("deprecated")
/** The Finch UUID of the company associated with the `access_token`. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -265,7 +261,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** The ID of the new connection */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,12 @@ private constructor(
@Deprecated("deprecated") fun accountId(): String = accountId.getRequired("account_id")

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
* Unique Finch ID of the company for which data has been updated.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* Unique Finch ID of the connection associated with the webhook event.
Expand Down Expand Up @@ -84,10 +83,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -165,11 +161,7 @@ private constructor(
@Deprecated("deprecated")
fun accountId(accountId: JsonField<String>) = apply { this.accountId = accountId }

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
*/
@Deprecated("deprecated")
/** Unique Finch ID of the company for which data has been updated. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -179,7 +171,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** Unique Finch ID of the connection associated with the webhook event. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,12 @@ private constructor(
@Deprecated("deprecated") fun accountId(): String = accountId.getRequired("account_id")

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
* Unique Finch ID of the company for which data has been updated.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* Unique Finch ID of the connection associated with the webhook event.
Expand Down Expand Up @@ -112,10 +111,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -211,11 +207,7 @@ private constructor(
@Deprecated("deprecated")
fun accountId(accountId: JsonField<String>) = apply { this.accountId = accountId }

/**
* [DEPRECATED] Unique Finch ID of the company for which data has been updated. Use
* `connection_id` instead to identify the connection associated with this event.
*/
@Deprecated("deprecated")
/** Unique Finch ID of the company for which data has been updated. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -225,7 +217,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** Unique Finch ID of the connection associated with the webhook event. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ private constructor(
authenticationType.getRequired("authentication_type")

/**
* [DEPRECATED] Use `connection_id` to associate a connection with an access token
* The Finch UUID of the company associated with the `access_token`.
*
* @throws FinchInvalidDataException if the JSON field has an unexpected type or is unexpectedly
* missing or null (e.g. if the server responded with an unexpected value).
*/
@Deprecated("deprecated") fun companyId(): String = companyId.getRequired("company_id")
fun companyId(): String = companyId.getRequired("company_id")

/**
* The ID of the new connection
Expand Down Expand Up @@ -166,10 +166,7 @@ private constructor(
*
* Unlike [companyId], this method doesn't throw if the JSON field has an unexpected type.
*/
@Deprecated("deprecated")
@JsonProperty("company_id")
@ExcludeMissing
fun _companyId(): JsonField<String> = companyId
@JsonProperty("company_id") @ExcludeMissing fun _companyId(): JsonField<String> = companyId

/**
* Returns the raw JSON value of [connectionId].
Expand Down Expand Up @@ -306,8 +303,7 @@ private constructor(
this.authenticationType = authenticationType
}

/** [DEPRECATED] Use `connection_id` to associate a connection with an access token */
@Deprecated("deprecated")
/** The Finch UUID of the company associated with the `access_token`. */
fun companyId(companyId: String) = companyId(JsonField.of(companyId))

/**
Expand All @@ -317,7 +313,6 @@ private constructor(
* This method is primarily for setting the field to an undocumented or not yet supported
* value.
*/
@Deprecated("deprecated")
fun companyId(companyId: JsonField<String>) = apply { this.companyId = companyId }

/** The ID of the new connection */
Expand Down
Loading
Loading