Skip to content

Commit

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

release: 1.2.7
  • Loading branch information
Ahmedhossamdev authored Nov 12, 2024
2 parents ad5ef47 + f2b2229 commit 1822f28
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 25 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 @@
{
".": "1.2.6"
".": "1.2.7"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.2.7 (2024-11-12)

Full Changelog: [v1.2.6...v1.2.7](https://github.com/OneBusAway/js-sdk/compare/v1.2.6...v1.2.7)

### Chores

* rebuild project due to codegen change ([#249](https://github.com/OneBusAway/js-sdk/issues/249)) ([cc70406](https://github.com/OneBusAway/js-sdk/commit/cc70406137fff49430960d6b8ecaf64f7c003eb9))

## 1.2.6 (2024-11-01)

Full Changelog: [v1.2.5...v1.2.6](https://github.com/OneBusAway/js-sdk/compare/v1.2.5...v1.2.6)
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": "1.2.6",
"version": "1.2.7",
"description": "The official TypeScript library for the Onebusaway SDK API",
"author": "Onebusaway SDK <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
37 changes: 17 additions & 20 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,25 +269,6 @@ export class OnebusawaySDK extends Core.APIClient {
static fileFromPath = Uploads.fileFromPath;
}

export {
OnebusawaySDKError,
APIError,
APIConnectionError,
APIConnectionTimeoutError,
APIUserAbortError,
NotFoundError,
ConflictError,
RateLimitError,
BadRequestError,
AuthenticationError,
InternalServerError,
PermissionDeniedError,
UnprocessableEntityError,
} from './error';

export import toFile = Uploads.toFile;
export import fileFromPath = Uploads.fileFromPath;

OnebusawaySDK.AgenciesWithCoverage = AgenciesWithCoverage;
OnebusawaySDK.Agency = Agency;
OnebusawaySDK.VehiclesForAgency = VehiclesForAgency;
Expand Down Expand Up @@ -315,7 +296,6 @@ OnebusawaySDK.SearchForStop = SearchForStop;
OnebusawaySDK.SearchForRoute = SearchForRoute;
OnebusawaySDK.Block = Block;
OnebusawaySDK.Shape = Shape;

export declare namespace OnebusawaySDK {
export type RequestOptions = Core.RequestOptions;

Expand Down Expand Up @@ -449,4 +429,21 @@ export declare namespace OnebusawaySDK {
export type ResponseWrapper = API.ResponseWrapper;
}

export { toFile, fileFromPath } from 'onebusaway-sdk/uploads';
export {
OnebusawaySDKError,
APIError,
APIConnectionError,
APIConnectionTimeoutError,
APIUserAbortError,
NotFoundError,
ConflictError,
RateLimitError,
BadRequestError,
AuthenticationError,
InternalServerError,
PermissionDeniedError,
UnprocessableEntityError,
} from 'onebusaway-sdk/error';

export default OnebusawaySDK;
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.2.6'; // x-release-please-version
export const VERSION = '1.2.7'; // x-release-please-version

0 comments on commit 1822f28

Please sign in to comment.