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.15.2"
".": "1.16.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: 30
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-b625345de7b9c51744ddc6c75b8c37a159a536204481404cca91d7d6a859149d.yml
openapi_spec_hash: 9bf1e5bf00ef9936a9181ebd0956d5b8
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-4a35fd1e705bc2b75f44e2fd82144b95eeb56f329e4e05bbede7e6bc8adc479e.yml
openapi_spec_hash: bc73be5518578c9ad8e878b82c540691
config_hash: c28ddf5b7754155603d9fd1c5fcaeeff
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.16.0 (2026-05-20)

Full Changelog: [v1.15.2...v1.16.0](https://github.com/OneBusAway/js-sdk/compare/v1.15.2...v1.16.0)

### Features

* **api:** api update ([90e98f7](https://github.com/OneBusAway/js-sdk/commit/90e98f7b19af1bec29d67c3545d9d84ebb1e8558))

## 1.15.2 (2026-05-13)

Full Changelog: [v1.15.1...v1.15.2](https://github.com/OneBusAway/js-sdk/compare/v1.15.1...v1.15.2)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onebusaway-sdk",
"version": "1.15.2",
"version": "1.16.0",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <info@onebusaway.org>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions src/resources/trip-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ export namespace TripDetailRetrieveResponse {

situationIds?: Array<string>;

/**
* Trip-specific status for the arriving transit vehicle.
*/
status?: Entry.Status;
}

Expand Down Expand Up @@ -82,6 +85,9 @@ export namespace TripDetailRetrieveResponse {
}
}

/**
* Trip-specific status for the arriving transit vehicle.
*/
export interface Status {
/**
* Trip ID of the trip the vehicle is actively serving.
Expand Down
6 changes: 6 additions & 0 deletions src/resources/trip-for-vehicle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ export namespace TripForVehicleRetrieveResponse {

situationIds?: Array<string>;

/**
* Trip-specific status for the arriving transit vehicle.
*/
status?: Entry.Status;
}

Expand Down Expand Up @@ -82,6 +85,9 @@ export namespace TripForVehicleRetrieveResponse {
}
}

/**
* Trip-specific status for the arriving transit vehicle.
*/
export interface Status {
/**
* Trip ID of the trip the vehicle is actively serving.
Expand Down
6 changes: 6 additions & 0 deletions src/resources/trips-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export namespace TripsForLocationListResponse {
export interface List {
schedule: List.Schedule;

/**
* Trip-specific status for the arriving transit vehicle.
*/
status: List.Status;

tripId: string;
Expand Down Expand Up @@ -81,6 +84,9 @@ export namespace TripsForLocationListResponse {
}
}

/**
* Trip-specific status for the arriving transit vehicle.
*/
export interface Status {
/**
* Trip ID of the trip the vehicle is actively serving.
Expand Down
6 changes: 6 additions & 0 deletions src/resources/trips-for-route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export namespace TripsForRouteListResponse {
export interface List {
schedule: List.Schedule;

/**
* Trip-specific status for the arriving transit vehicle.
*/
status: List.Status;

tripId: string;
Expand Down Expand Up @@ -84,6 +87,9 @@ export namespace TripsForRouteListResponse {
}
}

/**
* Trip-specific status for the arriving transit vehicle.
*/
export interface Status {
/**
* Trip ID of the trip the vehicle is actively serving.
Expand Down
6 changes: 6 additions & 0 deletions src/resources/vehicles-for-agency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ export namespace VehiclesForAgencyListResponse {

tripId?: string;

/**
* Trip-specific status for the arriving transit vehicle.
*/
tripStatus?: List.TripStatus;
}

Expand All @@ -72,6 +75,9 @@ export namespace VehiclesForAgencyListResponse {
lon?: number;
}

/**
* Trip-specific status for the arriving transit vehicle.
*/
export interface TripStatus {
/**
* Trip ID of the trip the vehicle is actively serving.
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.15.2'; // x-release-please-version
export const VERSION = '1.16.0'; // x-release-please-version
Loading