Skip to content

Commit

Permalink
Merge pull request #147 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.33
  • Loading branch information
Ahmedhossamdev authored Aug 1, 2024
2 parents e4e9157 + d3542ab commit 4132435
Show file tree
Hide file tree
Showing 21 changed files with 30 additions and 22 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.32"
".": "0.1.0-alpha.33"
}
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-261df351536029839245955df4df7341de315fe2b1d1d6aeb063eaef62bcddc9.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-b3ce4adf9802981762637faaf11e9f3a1805de9b86da2c1afaa464ff17899d16.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.33 (2024-08-01)

Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/OneBusAway/js-sdk/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)

### Features

* **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))

## 0.1.0-alpha.32 (2024-07-31)

Full Changelog: [v0.1.0-alpha.31...v0.1.0-alpha.32](https://github.com/OneBusAway/js-sdk/compare/v0.1.0-alpha.31...v0.1.0-alpha.32)
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": "0.1.0-alpha.32",
"version": "0.1.0-alpha.33",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <info@onebusaway.org>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/resources/agencies-with-coverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class AgenciesWithCoverage extends APIResource {
}

export interface AgenciesWithCoverageRetrieveResponse extends Shared.ResponseWrapper {
data?: AgenciesWithCoverageRetrieveResponse.Data;
data: AgenciesWithCoverageRetrieveResponse.Data;
}

export namespace AgenciesWithCoverageRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/agency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Agency extends APIResource {
}

export interface AgencyRetrieveResponse extends Shared.ResponseWrapper {
data?: AgencyRetrieveResponse.Data;
data: AgencyRetrieveResponse.Data;
}

export namespace AgencyRetrieveResponse {
Expand Down
4 changes: 2 additions & 2 deletions src/resources/arrival-and-departure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class ArrivalAndDeparture extends APIResource {
}

export interface ArrivalAndDepartureRetrieveResponse extends Shared.ResponseWrapper {
data?: ArrivalAndDepartureRetrieveResponse.Data;
data: ArrivalAndDepartureRetrieveResponse.Data;
}

export namespace ArrivalAndDepartureRetrieveResponse {
Expand Down Expand Up @@ -419,7 +419,7 @@ export namespace ArrivalAndDepartureRetrieveResponse {
}

export interface ArrivalAndDepartureListResponse extends Shared.ResponseWrapper {
data?: ArrivalAndDepartureListResponse.Data;
data: ArrivalAndDepartureListResponse.Data;
}

export namespace ArrivalAndDepartureListResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Config extends APIResource {
}

export interface ConfigRetrieveResponse extends Shared.ResponseWrapper {
data?: ConfigRetrieveResponse.Data;
data: ConfigRetrieveResponse.Data;
}

export namespace ConfigRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/current-time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class CurrentTime extends APIResource {
}

export interface CurrentTimeRetrieveResponse extends Shared.ResponseWrapper {
data?: CurrentTimeRetrieveResponse.Data;
data: CurrentTimeRetrieveResponse.Data;
}

export namespace CurrentTimeRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Route extends APIResource {
}

export interface RouteRetrieveResponse extends Shared.ResponseWrapper {
data?: RouteRetrieveResponse.Data;
data: RouteRetrieveResponse.Data;
}

export namespace RouteRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/schedule-for-stop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class ScheduleForStop extends APIResource {
}

export interface ScheduleForStopRetrieveResponse extends Shared.ResponseWrapper {
data?: ScheduleForStopRetrieveResponse.Data;
data: ScheduleForStopRetrieveResponse.Data;
}

export namespace ScheduleForStopRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/stop-ids-for-agency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class StopIDsForAgency extends APIResource {
}

export interface StopIDsForAgencyListResponse extends Shared.ResponseWrapper {
data?: StopIDsForAgencyListResponse.Data;
data: StopIDsForAgencyListResponse.Data;
}

export namespace StopIDsForAgencyListResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/stop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Stop extends APIResource {
}

export interface StopRetrieveResponse extends Shared.ResponseWrapper {
data?: StopRetrieveResponse.Data;
data: StopRetrieveResponse.Data;
}

export namespace StopRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/stops-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class StopsForLocation extends APIResource {
}

export interface StopsForLocationRetrieveResponse extends Shared.ResponseWrapper {
data?: StopsForLocationRetrieveResponse.Data;
data: StopsForLocationRetrieveResponse.Data;
}

export namespace StopsForLocationRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/trip-details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class TripDetails extends APIResource {
}

export interface TripDetailRetrieveResponse extends Shared.ResponseWrapper {
data?: TripDetailRetrieveResponse.Data;
data: TripDetailRetrieveResponse.Data;
}

export namespace TripDetailRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/trip-for-vehicle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class TripForVehicle extends APIResource {
}

export interface TripForVehicleRetrieveResponse extends Shared.ResponseWrapper {
data?: TripForVehicleRetrieveResponse.Data;
data: TripForVehicleRetrieveResponse.Data;
}

export namespace TripForVehicleRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/trip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class Trip extends APIResource {
}

export interface TripRetrieveResponse extends Shared.ResponseWrapper {
data?: TripRetrieveResponse.Data;
data: TripRetrieveResponse.Data;
}

export namespace TripRetrieveResponse {
Expand Down
2 changes: 1 addition & 1 deletion src/resources/trips-for-location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class TripsForLocation extends APIResource {
}

export interface TripsForLocationRetrieveResponse extends Shared.ResponseWrapper {
data?: TripsForLocationRetrieveResponse.Data;
data: TripsForLocationRetrieveResponse.Data;
}

export namespace TripsForLocationRetrieveResponse {
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 @@ -29,7 +29,7 @@ export class VehiclesForAgency extends APIResource {
}

export interface VehiclesForAgencyListResponse extends Shared.ResponseWrapper {
data?: VehiclesForAgencyListResponse.Data;
data: VehiclesForAgencyListResponse.Data;
}

export namespace VehiclesForAgencyListResponse {
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.32'; // x-release-please-version
export const VERSION = '0.1.0-alpha.33'; // x-release-please-version

0 comments on commit 4132435

Please sign in to comment.