Skip to content

Commit

Permalink
Merge pull request #149 from OneBusAway/release-please--branches--mai…
Browse files Browse the repository at this point in the history
…n--changes--next--components--onebusaway-sdk

release: 0.1.0-alpha.34
  • Loading branch information
Ahmedhossamdev authored Aug 1, 2024
2 parents 4132435 + 9c0d59d commit 030670b
Show file tree
Hide file tree
Showing 8 changed files with 257 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.33"
".": "0.1.0-alpha.34"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 17
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-b3ce4adf9802981762637faaf11e9f3a1805de9b86da2c1afaa464ff17899d16.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-e1da29690ebfb4c6c07ede3d292a4f6babcd2202d6f3bb38bfa287ae04dfeb50.yml
233 changes: 233 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

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": "0.1.0-alpha.33",
"version": "0.1.0-alpha.34",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <info@onebusaway.org>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 6 additions & 6 deletions src/resources/shared.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

export interface References {
agencies?: Array<References.Agency>;
agencies: Array<References.Agency>;

routes?: Array<References.Route>;
routes: Array<References.Route>;

situations?: Array<References.Situation>;
situations: Array<References.Situation>;

stops?: Array<References.Stop>;
stops: Array<References.Stop>;

stopTimes?: Array<References.StopTime>;
stopTimes: Array<References.StopTime>;

trips?: Array<References.Trip>;
trips: Array<References.Trip>;
}

export namespace References {
Expand Down
24 changes: 12 additions & 12 deletions src/resources/stops-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,34 +32,34 @@ export interface StopsForLocationRetrieveResponse extends Shared.ResponseWrapper

export namespace StopsForLocationRetrieveResponse {
export interface Data {
limitExceeded: boolean;

list: Array<Data.List>;

references: Shared.References;

limitExceeded?: boolean;
}

export namespace Data {
export interface List {
id?: string;
id: string;

code?: string;
lat: number;

direction?: string;
lon: number;

lat?: number;
name: string;

locationType?: number;
parent: string;

lon?: number;
routeIds: Array<string>;

name?: string;
staticRouteIds: Array<string>;

parent?: string;
code?: string;

routeIds?: Array<string>;
direction?: string;

staticRouteIds?: Array<string>;
locationType?: number;

wheelchairBoarding?: string;
}
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 = '0.1.0-alpha.33'; // x-release-please-version
export const VERSION = '0.1.0-alpha.34'; // x-release-please-version

0 comments on commit 030670b

Please sign in to comment.