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: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
lint:
timeout-minutes: 10
name: lint
runs-on: ubuntu-latest
steps:
Expand All @@ -30,6 +31,7 @@ jobs:
- name: Run lints
run: ./scripts/lint
test:
timeout-minutes: 10
name: test
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "5.3.0"
".": "5.4.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: 45
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-46640c1b468813b828be61b1af5cb5450f9555c4c757c5a740189906a8d56672.yml
openapi_spec_hash: 1d5845ae61d2c0a143db43d579b048c5
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-a9dc15ba77c4c6e40c8f2429b1d614e7fe6888910579b54002fb90d418682d09.yml
openapi_spec_hash: be98b11d320aa0a1f3443650ce1b5b90
config_hash: 53778a0b839c4f6ad34fbba051f5e8a6
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 5.4.0 (2025-04-22)

Full Changelog: [v5.3.0...v5.4.0](https://github.com/Finch-API/finch-api-java/compare/v5.3.0...v5.4.0)

### Features

* **api:** api update ([b8eba3e](https://github.com/Finch-API/finch-api-java/commit/b8eba3e183936982616060b0a73178e18e6db94a))


### Chores

* **ci:** add timeout thresholds for CI jobs ([6504b18](https://github.com/Finch-API/finch-api-java/commit/6504b185e8e4f58384f6eab74da25b6697e66d8d))

## 5.3.0 (2025-04-18)

Full Changelog: [v5.2.0...v5.3.0](https://github.com/Finch-API/finch-api-java/compare/v5.2.0...v5.3.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-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/5.3.0)
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-java/5.3.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-java/5.3.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.tryfinch.api/finch-java)](https://central.sonatype.com/artifact/com.tryfinch.api/finch-java/5.4.0)
[![javadoc](https://javadoc.io/badge2/com.tryfinch.api/finch-java/5.4.0/javadoc.svg)](https://javadoc.io/doc/com.tryfinch.api/finch-java/5.4.0)

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

Expand All @@ -15,7 +15,7 @@ It is generated with [Stainless](https://www.stainless.com/).

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

The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-java/5.3.0).
The REST API documentation can be found on [developer.tryfinch.com](https://developer.tryfinch.com/). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.tryfinch.api/finch-java/5.4.0).

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

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

```kotlin
implementation("com.tryfinch.api:finch-java:5.3.0")
implementation("com.tryfinch.api:finch-java:5.4.0")
```

### Maven
Expand All @@ -35,7 +35,7 @@ implementation("com.tryfinch.api:finch-java:5.3.0")
<dependency>
<groupId>com.tryfinch.api</groupId>
<artifactId>finch-java</artifactId>
<version>5.3.0</version>
<version>5.4.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 = "5.3.0" // x-release-please-version
version = "5.4.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,10 @@ private constructor(

@JvmField val SSN = of("ssn")

@JvmField val DEDUCTION = of("deduction")

@JvmField val DOCUMENTS = of("documents")

@JvmStatic fun of(value: String) = ConnectProducts(JsonField.of(value))
}

Expand All @@ -1062,6 +1066,8 @@ private constructor(
PAY_STATEMENT,
BENEFITS,
SSN,
DEDUCTION,
DOCUMENTS,
}

/**
Expand All @@ -1082,6 +1088,8 @@ private constructor(
PAY_STATEMENT,
BENEFITS,
SSN,
DEDUCTION,
DOCUMENTS,
/**
* An enum member indicating that [ConnectProducts] was instantiated with an unknown
* value.
Expand All @@ -1106,6 +1114,8 @@ private constructor(
PAY_STATEMENT -> Value.PAY_STATEMENT
BENEFITS -> Value.BENEFITS
SSN -> Value.SSN
DEDUCTION -> Value.DEDUCTION
DOCUMENTS -> Value.DOCUMENTS
else -> Value._UNKNOWN
}

Expand All @@ -1127,6 +1137,8 @@ private constructor(
PAY_STATEMENT -> Known.PAY_STATEMENT
BENEFITS -> Known.BENEFITS
SSN -> Known.SSN
DEDUCTION -> Known.DEDUCTION
DOCUMENTS -> Known.DOCUMENTS
else -> throw FinchInvalidDataException("Unknown ConnectProducts: $value")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,10 @@ private constructor(

@JvmField val SSN = of("ssn")

@JvmField val DEDUCTION = of("deduction")

@JvmField val DOCUMENTS = of("documents")

@JvmStatic fun of(value: String) = ConnectProducts(JsonField.of(value))
}

Expand All @@ -731,6 +735,8 @@ private constructor(
PAY_STATEMENT,
BENEFITS,
SSN,
DEDUCTION,
DOCUMENTS,
}

/**
Expand All @@ -751,6 +757,8 @@ private constructor(
PAY_STATEMENT,
BENEFITS,
SSN,
DEDUCTION,
DOCUMENTS,
/**
* An enum member indicating that [ConnectProducts] was instantiated with an unknown
* value.
Expand All @@ -775,6 +783,8 @@ private constructor(
PAY_STATEMENT -> Value.PAY_STATEMENT
BENEFITS -> Value.BENEFITS
SSN -> Value.SSN
DEDUCTION -> Value.DEDUCTION
DOCUMENTS -> Value.DOCUMENTS
else -> Value._UNKNOWN
}

Expand All @@ -796,6 +806,8 @@ private constructor(
PAY_STATEMENT -> Known.PAY_STATEMENT
BENEFITS -> Known.BENEFITS
SSN -> Known.SSN
DEDUCTION -> Known.DEDUCTION
DOCUMENTS -> Known.DOCUMENTS
else -> throw FinchInvalidDataException("Unknown ConnectProducts: $value")
}

Expand Down
Loading