diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5121eff..5677a32 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.15.2" + ".": "1.16.0" } diff --git a/.stats.yml b/.stats.yml index 6608e4d..62a092e 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-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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8241349..3699875 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 77f4f42..3519225 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "onebusaway-sdk", - "version": "1.15.2", + "version": "1.16.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "onebusaway-sdk", - "version": "1.15.2", + "version": "1.16.0", "license": "Apache-2.0", "dependencies": { "@types/node": "^18.11.18", diff --git a/package.json b/package.json index e64504b..8fc5c46 100644 --- a/package.json +++ b/package.json @@ -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 ", "types": "dist/index.d.ts", diff --git a/src/resources/trip-details.ts b/src/resources/trip-details.ts index 97eee84..52d247f 100644 --- a/src/resources/trip-details.ts +++ b/src/resources/trip-details.ts @@ -50,6 +50,9 @@ export namespace TripDetailRetrieveResponse { situationIds?: Array; + /** + * Trip-specific status for the arriving transit vehicle. + */ status?: Entry.Status; } @@ -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. diff --git a/src/resources/trip-for-vehicle.ts b/src/resources/trip-for-vehicle.ts index 2f943eb..903cb17 100644 --- a/src/resources/trip-for-vehicle.ts +++ b/src/resources/trip-for-vehicle.ts @@ -50,6 +50,9 @@ export namespace TripForVehicleRetrieveResponse { situationIds?: Array; + /** + * Trip-specific status for the arriving transit vehicle. + */ status?: Entry.Status; } @@ -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. diff --git a/src/resources/trips-for-location.ts b/src/resources/trips-for-location.ts index 2e3952d..b74e844 100644 --- a/src/resources/trips-for-location.ts +++ b/src/resources/trips-for-location.ts @@ -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; @@ -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. diff --git a/src/resources/trips-for-route.ts b/src/resources/trips-for-route.ts index 3ef92cc..09c3c7c 100644 --- a/src/resources/trips-for-route.ts +++ b/src/resources/trips-for-route.ts @@ -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; @@ -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. diff --git a/src/resources/vehicles-for-agency.ts b/src/resources/vehicles-for-agency.ts index 7f7a505..21e52a5 100644 --- a/src/resources/vehicles-for-agency.ts +++ b/src/resources/vehicles-for-agency.ts @@ -62,6 +62,9 @@ export namespace VehiclesForAgencyListResponse { tripId?: string; + /** + * Trip-specific status for the arriving transit vehicle. + */ tripStatus?: List.TripStatus; } @@ -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. diff --git a/src/version.ts b/src/version.ts index 0c4277c..b94d5b1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.15.2'; // x-release-please-version +export const VERSION = '1.16.0'; // x-release-please-version