Skip to content

Commit bec7959

Browse files
Merge pull request #340 from OneBusAway/release-please--branches--main--changes--next--components--onebusaway-sdk
release: 1.9.0
2 parents 0f2c939 + 7454c90 commit bec7959

12 files changed

+28
-20
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.8.5"
2+
".": "1.9.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 29
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-6f08502508c8ad25235971add3124a1cde4f1c3ec705d5df455d750e0adcb90b.yml
3-
openapi_spec_hash: 84d082f35446d29c7db3cfcd259e9859
4-
config_hash: c7e112ec9853ad18fe92551ae0d97656
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-4fcbe9547537b22a2d68329e1d94e0c1a6f81b5af734ca213f7b95eef5da7adb.yml
3+
openapi_spec_hash: 417ea17b08e186b15b2986372592185e
4+
config_hash: 49345353764ace98f2d9e0bf590fd47c

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.9.0 (2025-05-17)
4+
5+
Full Changelog: [v1.8.5...v1.9.0](https://github.com/OneBusAway/js-sdk/compare/v1.8.5...v1.9.0)
6+
7+
### Features
8+
9+
* **api:** api update ([4ef40c1](https://github.com/OneBusAway/js-sdk/commit/4ef40c139aee85497637a85b0a256c62ff3de48d))
10+
311
## 1.8.5 (2025-05-07)
412

513
Full Changelog: [v1.8.4...v1.8.5](https://github.com/OneBusAway/js-sdk/compare/v1.8.4...v1.8.5)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onebusaway-sdk",
3-
"version": "1.8.5",
3+
"version": "1.9.0",
44
"description": "The official TypeScript library for the Onebusaway SDK API",
55
"author": "Onebusaway SDK <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/schedule-for-route.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ export namespace ScheduleForRouteRetrieveResponse {
6363

6464
lat: number;
6565

66+
locationType: number;
67+
6668
lon: number;
6769

6870
name: string;
@@ -77,8 +79,6 @@ export namespace ScheduleForRouteRetrieveResponse {
7779

7880
direction?: string;
7981

80-
locationType?: number;
81-
8282
wheelchairBoarding?: string;
8383
}
8484

src/resources/search-for-stop.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ export namespace SearchForStopListResponse {
3737

3838
lat: number;
3939

40+
locationType: number;
41+
4042
lon: number;
4143

4244
name: string;
@@ -51,8 +53,6 @@ export namespace SearchForStopListResponse {
5153

5254
direction?: string;
5355

54-
locationType?: number;
55-
5656
wheelchairBoarding?: string;
5757
}
5858
}

src/resources/shared.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@ export namespace References {
240240

241241
lat: number;
242242

243+
locationType: number;
244+
243245
lon: number;
244246

245247
name: string;
@@ -254,8 +256,6 @@ export namespace References {
254256

255257
direction?: string;
256258

257-
locationType?: number;
258-
259259
wheelchairBoarding?: string;
260260
}
261261

src/resources/stop.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ export namespace StopRetrieveResponse {
3030

3131
lat: number;
3232

33+
locationType: number;
34+
3335
lon: number;
3436

3537
name: string;
@@ -44,8 +46,6 @@ export namespace StopRetrieveResponse {
4446

4547
direction?: string;
4648

47-
locationType?: number;
48-
4949
wheelchairBoarding?: string;
5050
}
5151
}

src/resources/stops-for-agency.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ export namespace StopsForAgencyListResponse {
2929

3030
lat: number;
3131

32+
locationType: number;
33+
3234
lon: number;
3335

3436
name: string;
@@ -43,8 +45,6 @@ export namespace StopsForAgencyListResponse {
4345

4446
direction?: string;
4547

46-
locationType?: number;
47-
4848
wheelchairBoarding?: string;
4949
}
5050
}

0 commit comments

Comments
 (0)