Skip to content

Commit 100a133

Browse files
Merge pull request #369 from OneBusAway/release-please--branches--main--changes--next--components--onebusaway-sdk
release: 1.13.0
2 parents b04d159 + 5ddb136 commit 100a133

12 files changed

Lines changed: 36 additions & 28 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.12.0"
2+
".": "1.13.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 29
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-0c305d11543f8fc11bd55586c4dc4a724b10de1898cab0fe11364b4db6455752.yml
3-
openapi_spec_hash: 6d10c2ac411cd65f30d200f298577b32
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-30baad9d29b0909d180aae300750a0cd8425b52d7a60ba365b6aa4e5f8da6fab.yml
3+
openapi_spec_hash: 218466af34966d9b08728f107cb3b3b0
44
config_hash: 3871f5d21bb38ddd334ec04721dea64d

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.13.0 (2026-03-14)
4+
5+
Full Changelog: [v1.12.0...v1.13.0](https://github.com/OneBusAway/js-sdk/compare/v1.12.0...v1.13.0)
6+
7+
### Features
8+
9+
* **api:** api update ([1502163](https://github.com/OneBusAway/js-sdk/commit/1502163424fd92ff1317bfb4268ed2e766767fe7))
10+
311
## 1.12.0 (2026-03-10)
412

513
Full Changelog: [v1.11.0...v1.12.0](https://github.com/OneBusAway/js-sdk/compare/v1.11.0...v1.12.0)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onebusaway-sdk",
3-
"version": "1.12.0",
3+
"version": "1.13.0",
44
"description": "The official TypeScript library for the Onebusaway SDK API",
55
"author": "Onebusaway SDK <info@onebusaway.org>",
66
"types": "dist/index.d.ts",

src/resources/arrival-and-departure.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,9 @@ export namespace ArrivalAndDepartureRetrieveResponse {
350350
frequency?: string;
351351

352352
/**
353-
* Last known location of the transit vehicle.
353+
* Last known location of the transit vehicle (optional).
354354
*/
355-
lastKnownLocation?: TripStatus.LastKnownLocation;
355+
lastKnownLocation?: TripStatus.LastKnownLocation | null;
356356

357357
/**
358358
* Last known orientation value received in real-time from the transit vehicle.
@@ -399,7 +399,7 @@ export namespace ArrivalAndDepartureRetrieveResponse {
399399

400400
export namespace TripStatus {
401401
/**
402-
* Last known location of the transit vehicle.
402+
* Last known location of the transit vehicle (optional).
403403
*/
404404
export interface LastKnownLocation {
405405
/**
@@ -728,9 +728,9 @@ export namespace ArrivalAndDepartureListResponse {
728728
frequency?: string;
729729

730730
/**
731-
* Last known location of the transit vehicle.
731+
* Last known location of the transit vehicle (optional).
732732
*/
733-
lastKnownLocation?: TripStatus.LastKnownLocation;
733+
lastKnownLocation?: TripStatus.LastKnownLocation | null;
734734

735735
/**
736736
* Last known orientation value received in real-time from the transit vehicle.
@@ -777,7 +777,7 @@ export namespace ArrivalAndDepartureListResponse {
777777

778778
export namespace TripStatus {
779779
/**
780-
* Last known location of the transit vehicle.
780+
* Last known location of the transit vehicle (optional).
781781
*/
782782
export interface LastKnownLocation {
783783
/**

src/resources/trip-details.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ export namespace TripDetailRetrieveResponse {
177177
frequency?: string;
178178

179179
/**
180-
* Last known location of the transit vehicle.
180+
* Last known location of the transit vehicle (optional).
181181
*/
182-
lastKnownLocation?: Status.LastKnownLocation;
182+
lastKnownLocation?: Status.LastKnownLocation | null;
183183

184184
/**
185185
* Last known orientation value received in real-time from the transit vehicle.
@@ -226,7 +226,7 @@ export namespace TripDetailRetrieveResponse {
226226

227227
export namespace Status {
228228
/**
229-
* Last known location of the transit vehicle.
229+
* Last known location of the transit vehicle (optional).
230230
*/
231231
export interface LastKnownLocation {
232232
/**

src/resources/trip-for-vehicle.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ export namespace TripForVehicleRetrieveResponse {
177177
frequency?: string;
178178

179179
/**
180-
* Last known location of the transit vehicle.
180+
* Last known location of the transit vehicle (optional).
181181
*/
182-
lastKnownLocation?: Status.LastKnownLocation;
182+
lastKnownLocation?: Status.LastKnownLocation | null;
183183

184184
/**
185185
* Last known orientation value received in real-time from the transit vehicle.
@@ -226,7 +226,7 @@ export namespace TripForVehicleRetrieveResponse {
226226

227227
export namespace Status {
228228
/**
229-
* Last known location of the transit vehicle.
229+
* Last known location of the transit vehicle (optional).
230230
*/
231231
export interface LastKnownLocation {
232232
/**

src/resources/trips-for-location.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ export namespace TripsForLocationListResponse {
176176
frequency?: string;
177177

178178
/**
179-
* Last known location of the transit vehicle.
179+
* Last known location of the transit vehicle (optional).
180180
*/
181-
lastKnownLocation?: Status.LastKnownLocation;
181+
lastKnownLocation?: Status.LastKnownLocation | null;
182182

183183
/**
184184
* Last known orientation value received in real-time from the transit vehicle.
@@ -225,7 +225,7 @@ export namespace TripsForLocationListResponse {
225225

226226
export namespace Status {
227227
/**
228-
* Last known location of the transit vehicle.
228+
* Last known location of the transit vehicle (optional).
229229
*/
230230
export interface LastKnownLocation {
231231
/**

src/resources/trips-for-route.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ export namespace TripsForRouteListResponse {
179179
frequency?: string;
180180

181181
/**
182-
* Last known location of the transit vehicle.
182+
* Last known location of the transit vehicle (optional).
183183
*/
184-
lastKnownLocation?: Status.LastKnownLocation;
184+
lastKnownLocation?: Status.LastKnownLocation | null;
185185

186186
/**
187187
* Last known orientation value received in real-time from the transit vehicle.
@@ -228,7 +228,7 @@ export namespace TripsForRouteListResponse {
228228

229229
export namespace Status {
230230
/**
231-
* Last known location of the transit vehicle.
231+
* Last known location of the transit vehicle (optional).
232232
*/
233233
export interface LastKnownLocation {
234234
/**

0 commit comments

Comments
 (0)