Skip to content

Commit

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

release: 0.1.0-alpha.17
  • Loading branch information
Ahmedhossamdev authored Jun 29, 2024
2 parents 62f8d9d + f7bee5b commit f1ae4c6
Show file tree
Hide file tree
Showing 14 changed files with 638 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.16"
".": "0.1.0-alpha.17"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-078a3ae0f749c5f370d657032346c607e199d3f87f16c33e7b6b7555995663de.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-0e07cc2f627e7da0fe68db9c5c0a83df63b867f0e9d2351d9b50734fe28f9207.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.17 (2024-06-29)

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

### Features

* **api:** update via SDK Studio ([#72](https://github.com/OneBusAway/js-sdk/issues/72)) ([574345f](https://github.com/OneBusAway/js-sdk/commit/574345f9194b29920a4a7893db0a06ea16292b53))

## 0.1.0-alpha.16 (2024-06-29)

Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/OneBusAway/js-sdk/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
Expand Down
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Types:

Methods:

- <code title="get /api/where/agency/{agencyID}.json">client.agency.<a href="./src/resources/agency.ts">retrieve</a>(agencyId, { ...params }) -> AgencyRetrieveResponse</code>
- <code title="get /api/where/agency/{agencyID}.json">client.agency.<a href="./src/resources/agency.ts">retrieve</a>(agencyId) -> AgencyRetrieveResponse</code>

# Config

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.16",
"version": "0.1.0-alpha.17",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <info@onebusaway.org>",
"types": "dist/index.d.ts",
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ export namespace OnebusawaySDK {

export import Agency = API.Agency;
export import AgencyRetrieveResponse = API.AgencyRetrieveResponse;
export import AgencyRetrieveParams = API.AgencyRetrieveParams;

export import Config = API.Config;
export import ConfigRetrieveResponse = API.ConfigRetrieveResponse;
Expand Down
10 changes: 2 additions & 8 deletions src/resources/agency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export namespace AgencyRetrieveResponse {
entry?: Data.Entry;

limitExceeded?: boolean;

references?: Shared.References;
}

export namespace Data {
Expand Down Expand Up @@ -54,14 +56,6 @@ export namespace AgencyRetrieveResponse {
}
}

export interface AgencyRetrieveParams {
/**
* API key for authentication.
*/
key: string;
}

export namespace Agency {
export import AgencyRetrieveResponse = AgencyAPI.AgencyRetrieveResponse;
export import AgencyRetrieveParams = AgencyAPI.AgencyRetrieveParams;
}
Loading

0 comments on commit f1ae4c6

Please sign in to comment.