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.16.0"
".": "1.17.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-4a35fd1e705bc2b75f44e2fd82144b95eeb56f329e4e05bbede7e6bc8adc479e.yml
openapi_spec_hash: bc73be5518578c9ad8e878b82c540691
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-5f69b2b288261c7adfd9acb065dce897caf8782aff1687efe38ba52541ef7b96.yml
openapi_spec_hash: b03acca245aef78353d3b7a6a4a62eb2
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.17.0 (2026-06-01)

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

### Features

* **api:** api update ([2577add](https://github.com/OneBusAway/js-sdk/commit/2577adda20708d0b9d167f0011a43bb48fb8e5ef))

## 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)
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.16.0",
"version": "1.17.0",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <info@onebusaway.org>",
"types": "dist/index.d.ts",
Expand Down
24 changes: 12 additions & 12 deletions src/resources/arrival-and-departure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export namespace ArrivalAndDepartureRetrieveResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Historical occupancy information of the transit vehicle.
Expand All @@ -196,12 +196,12 @@ export namespace ArrivalAndDepartureRetrieveResponse {
/**
* Interval for predicted arrival time, if available.
*/
predictedArrivalInterval?: string;
predictedArrivalInterval?: string | null;

/**
* Interval for predicted departure time, if available.
*/
predictedDepartureInterval?: string;
predictedDepartureInterval?: string | null;

/**
* Predicted occupancy status of the transit vehicle.
Expand All @@ -223,12 +223,12 @@ export namespace ArrivalAndDepartureRetrieveResponse {
/**
* Interval for scheduled arrival time.
*/
scheduledArrivalInterval?: string;
scheduledArrivalInterval?: string | null;

/**
* Interval for scheduled departure time.
*/
scheduledDepartureInterval?: string;
scheduledDepartureInterval?: string | null;

/**
* Scheduled track information of the arriving transit vehicle.
Expand Down Expand Up @@ -347,7 +347,7 @@ export namespace ArrivalAndDepartureRetrieveResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down Expand Up @@ -549,7 +549,7 @@ export namespace ArrivalAndDepartureListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Historical occupancy information of the transit vehicle.
Expand All @@ -574,12 +574,12 @@ export namespace ArrivalAndDepartureListResponse {
/**
* Interval for predicted arrival time, if available.
*/
predictedArrivalInterval?: string;
predictedArrivalInterval?: string | null;

/**
* Interval for predicted departure time, if available.
*/
predictedDepartureInterval?: string;
predictedDepartureInterval?: string | null;

/**
* Predicted occupancy status of the transit vehicle.
Expand All @@ -601,12 +601,12 @@ export namespace ArrivalAndDepartureListResponse {
/**
* Interval for scheduled arrival time.
*/
scheduledArrivalInterval?: string;
scheduledArrivalInterval?: string | null;

/**
* Interval for scheduled departure time.
*/
scheduledDepartureInterval?: string;
scheduledDepartureInterval?: string | null;

/**
* Scheduled track information of the arriving transit vehicle.
Expand Down Expand Up @@ -725,7 +725,7 @@ export namespace ArrivalAndDepartureListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
12 changes: 6 additions & 6 deletions src/resources/arrivals-and-departures-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export namespace ArrivalsAndDeparturesForLocationListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Historical occupancy information of the transit vehicle.
Expand All @@ -167,12 +167,12 @@ export namespace ArrivalsAndDeparturesForLocationListResponse {
/**
* Interval for predicted arrival time, if available.
*/
predictedArrivalInterval?: string;
predictedArrivalInterval?: string | null;

/**
* Interval for predicted departure time, if available.
*/
predictedDepartureInterval?: string;
predictedDepartureInterval?: string | null;

/**
* Predicted occupancy status of the transit vehicle.
Expand All @@ -194,12 +194,12 @@ export namespace ArrivalsAndDeparturesForLocationListResponse {
/**
* Interval for scheduled arrival time.
*/
scheduledArrivalInterval?: string;
scheduledArrivalInterval?: string | null;

/**
* Interval for scheduled departure time.
*/
scheduledDepartureInterval?: string;
scheduledDepartureInterval?: string | null;

/**
* Scheduled track information of the arriving transit vehicle.
Expand Down Expand Up @@ -318,7 +318,7 @@ export namespace ArrivalsAndDeparturesForLocationListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
4 changes: 2 additions & 2 deletions src/resources/trip-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export namespace TripDetailRetrieveResponse {

frequency?: string | null;

schedule?: Entry.Schedule;
schedule?: Entry.Schedule | null;

serviceDate?: number;

Expand Down Expand Up @@ -180,7 +180,7 @@ export namespace TripDetailRetrieveResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
4 changes: 2 additions & 2 deletions src/resources/trip-for-vehicle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export namespace TripForVehicleRetrieveResponse {

frequency?: string | null;

schedule?: Entry.Schedule;
schedule?: Entry.Schedule | null;

serviceDate?: number;

Expand Down Expand Up @@ -180,7 +180,7 @@ export namespace TripForVehicleRetrieveResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
4 changes: 2 additions & 2 deletions src/resources/trips-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export namespace TripsForLocationListResponse {

export namespace Data {
export interface List {
schedule: List.Schedule;
schedule: List.Schedule | null;

/**
* Trip-specific status for the arriving transit vehicle.
Expand Down Expand Up @@ -179,7 +179,7 @@ export namespace TripsForLocationListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
4 changes: 2 additions & 2 deletions src/resources/trips-for-route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export namespace TripsForRouteListResponse {

export namespace Data {
export interface List {
schedule: List.Schedule;
schedule: List.Schedule | null;

/**
* Trip-specific status for the arriving transit vehicle.
Expand Down Expand Up @@ -182,7 +182,7 @@ export namespace TripsForRouteListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
Expand Down
2 changes: 1 addition & 1 deletion src/resources/vehicles-for-agency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export namespace VehiclesForAgencyListResponse {
/**
* Information about frequency-based scheduling, if applicable to the trip.
*/
frequency?: string;
frequency?: string | null;

/**
* Last known location of the transit vehicle (optional).
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.16.0'; // x-release-please-version
export const VERSION = '1.17.0'; // x-release-please-version
Loading