Skip to content

Commit

Permalink
chore(release): set package.json to 0.0.1-alpha.7 [skip ci]
Browse files Browse the repository at this point in the history
## [0.0.1-alpha.7](v0.0.1-alpha.6...v0.0.1-alpha.7) (2021-12-08)

### Bug Fixes

* **schema:** update types of configuration and metadata to object from array ([67600be](67600be))
  • Loading branch information
semantic-release-bot committed Dec 8, 2021
1 parent 67600be commit 266629c
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.0.1-alpha.7](https://github.com/apimatic/apimatic-sdk-for-js/compare/v0.0.1-alpha.6...v0.0.1-alpha.7) (2021-12-08)


### Bug Fixes

* **schema:** update types of configuration and metadata to object from array ([67600be](https://github.com/apimatic/apimatic-sdk-for-js/commit/67600be2ae2a1b22ec4aa8d0530c8478a30b019a))

## [0.0.1-alpha.6](https://github.com/apimatic/apimatic-sdk-for-js/compare/v0.0.1-alpha.5...v0.0.1-alpha.6) (2021-12-08)


Expand Down
3 changes: 1 addition & 2 deletions dist/models/apiEntity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export interface ApiEntity {
serverConfiguration: ServerConfiguration;
/** API Endpoint Groups */
endpointsGroup?: EndpointsGroup[];
/** API Meta Data */
metaData: MetaData[];
metaData: MetaData;
}
export declare const apiEntitySchema: Schema<ApiEntity>;
3 changes: 1 addition & 2 deletions dist/models/apiEntityDetailed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ export interface ApiEntityDetailed {
serverConfiguration: ServerConfiguration;
/** API Endpoint Groups */
endpointsGroup?: EndpointsGroup[];
/** API Meta Data */
metaData: MetaData[];
metaData: MetaData;
/** API Endpoints */
endpoints: Endpoint[];
/** Complex Custom Model Types */
Expand Down
2 changes: 1 addition & 1 deletion dist/models/testGenSettings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ export interface TestGenSettings {
/** Number of seconds after which if the endpoint is not returning any response, the test is forced to fail e.g. a timeout of 60 */
testTimeout: number;
/** The parameters allows to provide values for configuration file for use in the test environment */
configuration: string[];
configuration?: unknown;
}
export declare const testGenSettingsSchema: Schema<TestGenSettings>;
6 changes: 3 additions & 3 deletions dist/sdk.cjs.development.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sdk.cjs.development.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sdk.cjs.production.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sdk.cjs.production.min.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/sdk.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sdk.esm.js.map

Large diffs are not rendered by default.

0 comments on commit 266629c

Please sign in to comment.