Skip to content

Commit

Permalink
Merge branch 'release-please--branches--main--changes--next--componen…
Browse files Browse the repository at this point in the history
…ts--onebusaway-sdk' of https://github.com/OneBusAway/js-sdk into release-please--branches--main--changes--next--components--onebusaway-sdk
  • Loading branch information
Ahmedhossamdev committed Aug 1, 2024
2 parents 3bcca36 + 3ffdb55 commit 9c0d59d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
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-2f06829fbda889b14e1a2adc5f3bf80df5ca926d166ef9ff487a132080fc6437.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-e1da29690ebfb4c6c07ede3d292a4f6babcd2202d6f3bb38bfa287ae04dfeb50.yml
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/OneBusAwa
* **api:** OpenAPI spec update via Stainless API ([#144](https://github.com/OneBusAway/js-sdk/issues/144)) ([46eb625](https://github.com/OneBusAway/js-sdk/commit/46eb62592ee3929a570fc273f997eae762f1d147))
* **api:** OpenAPI spec update via Stainless API ([#146](https://github.com/OneBusAway/js-sdk/issues/146)) ([f9eece2](https://github.com/OneBusAway/js-sdk/commit/f9eece21d32b43a5066699b27ad54d341bbd2bc9))
* **api:** OpenAPI spec update via Stainless API ([#150](https://github.com/OneBusAway/js-sdk/issues/150)) ([e3b51ba](https://github.com/OneBusAway/js-sdk/commit/e3b51ba907e8576df7948a0168e4afd9a7660962))
* **api:** OpenAPI spec update via Stainless API ([#151](https://github.com/OneBusAway/js-sdk/issues/151)) ([f8458d0](https://github.com/OneBusAway/js-sdk/commit/f8458d08f483319150c9df6a64e180f3b1db11a7))
* **api:** OpenAPI spec update via Stainless API ([#96](https://github.com/OneBusAway/js-sdk/issues/96)) ([1c5c8ce](https://github.com/OneBusAway/js-sdk/commit/1c5c8ceb9efd2ca24e8ce3c21269040108a99973))
* **api:** OpenAPI spec update via Stainless API ([#98](https://github.com/OneBusAway/js-sdk/issues/98)) ([5f44a71](https://github.com/OneBusAway/js-sdk/commit/5f44a719500e10a8f194389eb77170dd40bb74aa))
* **api:** OpenAPI spec update via Stainless API ([#99](https://github.com/OneBusAway/js-sdk/issues/99)) ([f94af0b](https://github.com/OneBusAway/js-sdk/commit/f94af0b70cd273ed08bfd4adad78f064ff314f8f))
Expand Down Expand Up @@ -186,7 +187,6 @@ Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/OneBusAwa
* **internal:** version bump ([#9](https://github.com/OneBusAway/js-sdk/issues/9)) ([096a223](https://github.com/OneBusAway/js-sdk/commit/096a223271e587109d29ca60c41eca61b68b4c08))
* remove trailing whitespace in tsconfig.json ([a0d67e2](https://github.com/OneBusAway/js-sdk/commit/a0d67e24811f30697317eec45d93ba8180ea6d7b))
* **tests:** update prism version ([#118](https://github.com/OneBusAway/js-sdk/issues/118)) ([a108862](https://github.com/OneBusAway/js-sdk/commit/a1088622cebf6b1731425c554839c244b1ae92d6))
* Update API via SDK Studio ([8c89d98](https://github.com/OneBusAway/js-sdk/commit/8c89d981c2658f462a02ba18419fe221baab0109))
* Update package name in package-lock.json ([f79ba62](https://github.com/OneBusAway/js-sdk/commit/f79ba62e23ef14037cc877af7c45036bb81e8e07))
* Update package name in package-lock.json ([3f06253](https://github.com/OneBusAway/js-sdk/commit/3f062538f09a3accc07221f63bea44c8e4fec7bf))
* update SDK settings ([#1](https://github.com/OneBusAway/js-sdk/issues/1)) ([9662afd](https://github.com/OneBusAway/js-sdk/commit/9662afdeab1e51ccc6f1487febaa9998a7165a0b))
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

0 comments on commit 9c0d59d

Please sign in to comment.