diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index f406ff1..5589e3a 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.1.0-alpha.57"
+ ".": "0.1.0-alpha.58"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index a3a2c77..5a00449 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1,4 +1,4 @@
configured_endpoints: 30
-openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-49611a380a238e29ad714c2f6d66a35ada42e3931d2aad2839afd1f13b585de1.yml
-openapi_spec_hash: b03acca245aef78353d3b7a6a4a62eb2
-config_hash: ff7ff57d4c7f9c3f7a4f9bae39aa00e3
+openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-e8511c379642404d73fd2ff068f81d845054108160ccd58343021bbd0b444a37.yml
+openapi_spec_hash: b8824d511c16ed314dc7cee996f4fd97
+config_hash: c28ddf5b7754155603d9fd1c5fcaeeff
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bf52abd..5f5d5de 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 0.1.0-alpha.58 (2026-07-09)
+
+Full Changelog: [v0.1.0-alpha.57...v0.1.0-alpha.58](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.57...v0.1.0-alpha.58)
+
+### Features
+
+* **api:** api update ([59381cc](https://github.com/OneBusAway/java-sdk/commit/59381ccbe54b6046cc2bc362cef6be0ec99abb99))
+
## 0.1.0-alpha.57 (2026-06-08)
Full Changelog: [v0.1.0-alpha.56...v0.1.0-alpha.57](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.56...v0.1.0-alpha.57)
diff --git a/README.md b/README.md
index 64f61c6..b1bad67 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-[](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.57)
-[](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.57)
+[](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.58)
+[](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.58)
@@ -15,7 +15,7 @@ It is generated with [Stainless](https://www.stainless.com/).
-The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.57).
+The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.58).
@@ -26,7 +26,7 @@ The REST API documentation can be found on [developer.onebusaway.org](https://de
### Gradle
```kotlin
-implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.57")
+implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.58")
```
### Maven
@@ -35,7 +35,7 @@ implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.57")
org.onebusaway
onebusaway-sdk-java
- 0.1.0-alpha.57
+ 0.1.0-alpha.58
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 53cee8d..5843b5d 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ repositories {
allprojects {
group = "org.onebusaway"
- version = "0.1.0-alpha.57" // x-release-please-version
+ version = "0.1.0-alpha.58" // x-release-please-version
}
subprojects {
diff --git a/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/tripsforlocation/TripsForLocationListParams.kt b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/tripsforlocation/TripsForLocationListParams.kt
index 0b4a6fd..e0f9613 100644
--- a/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/tripsforlocation/TripsForLocationListParams.kt
+++ b/onebusaway-sdk-java-core/src/main/kotlin/org/onebusaway/models/tripsforlocation/TripsForLocationListParams.kt
@@ -39,7 +39,7 @@ private constructor(
/** Whether to include full schedule elements in the tripDetails section. Defaults to false. */
fun includeSchedule(): Optional = Optional.ofNullable(includeSchedule)
- /** Whether to include full trip elements in the references section. Defaults to false. */
+ /** Whether to include full trip elements in the references section. Defaults to true. */
fun includeTrip(): Optional = Optional.ofNullable(includeTrip)
/** Specific time for the query. Defaults to the current time. */
@@ -125,7 +125,7 @@ private constructor(
fun includeSchedule(includeSchedule: Optional) =
includeSchedule(includeSchedule.getOrNull())
- /** Whether to include full trip elements in the references section. Defaults to false. */
+ /** Whether to include full trip elements in the references section. Defaults to true. */
fun includeTrip(includeTrip: Boolean?) = apply { this.includeTrip = includeTrip }
/**