Skip to content

Commit

Permalink
Merge pull request #41 from blockfrost/bump-open-api
Browse files Browse the repository at this point in the history
chore: bump open-api
  • Loading branch information
1000101 authored May 19, 2021
2 parents 9c6323c + fcb30ca commit 11d5c2a
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 18 deletions.
10 changes: 5 additions & 5 deletions .pnp.cjs

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

Binary file not shown.
Binary file not shown.
Binary file modified .yarn/install-state.gz
Binary file not shown.
8 changes: 7 additions & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.4] - 2021-18-06
## [0.2.5] - 2021-05-19

### Changed

- openapi 0.1.15

## [0.2.4] - 2021-05-18

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blockfrost/blockfrost-js",
"version": "0.2.4",
"version": "0.2.5",
"description": "A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API",
"files": [
"lib/**/*.js",
Expand All @@ -24,7 +24,7 @@
"test": "jest --setupFiles dotenv/config"
},
"dependencies": {
"@blockfrost/openapi": "^0.1.13",
"@blockfrost/openapi": "0.1.15",
"@yarnpkg/pnpify": "^2.4.0",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
Expand Down
10 changes: 5 additions & 5 deletions src/types/OpenApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,7 @@ export interface components {
/** Epoch of the associated reward */
epoch: number;
/** Rewards for given epoch in Lovelaces */
amount: string | null;
amount: string;
/** Bech32 pool ID being delegated to */
pool_id: string;
}[];
Expand All @@ -2265,15 +2265,15 @@ export interface components {
/** Hash of the transaction containing the delegation */
tx_hash: string;
/** Rewards for given epoch in Lovelaces */
amount: string | null;
amount: string;
/** Bech32 ID of pool being delegated to */
pool_id: string;
}[];
account_history_content: {
/** Epoch in which the stake was active */
active_epoch: number;
/** Stake amount in Lovelaces */
amount: string | null;
amount: string;
/** Bech32 ID of pool being delegated to */
pool_id: string;
}[];
Expand Down Expand Up @@ -2400,8 +2400,8 @@ export interface components {
/** Bech32 reward account of the stake pool */
reward_account: string;
owners: string[];
registration: (string | null)[];
retirement: (string | null)[];
registration: string[];
retirement: string[];
};
pool_metadata: {
/** URL to the stake pool metadata */
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@blockfrost/blockfrost-js@workspace:."
dependencies:
"@blockfrost/openapi": ^0.1.13
"@blockfrost/openapi": 0.1.15
"@types/jest": ^26.0.22
"@types/node": ^14.14.37
"@types/url-join": ^4.0.0
Expand Down Expand Up @@ -435,10 +435,10 @@ __metadata:
languageName: unknown
linkType: soft

"@blockfrost/openapi@npm:^0.1.13":
version: 0.1.13
resolution: "@blockfrost/openapi@npm:0.1.13"
checksum: 888ee9495f9c760a1317e6ad1783b7c0be405c05503ef55a68a686a422323747bf2c5304050f89bfbc426118887b62543d2b1db1f5939f192bde6a5817db6e3f
"@blockfrost/openapi@npm:0.1.15":
version: 0.1.15
resolution: "@blockfrost/openapi@npm:0.1.15"
checksum: 97bece868b60823f27fbbc0f943019f351e635141e56dd6287b464f79c748be30b996c93e5ba13436beeef6ff21c66614a6c64c5b4d38930ab93d0c026cc6723
languageName: node
linkType: hard

Expand Down

0 comments on commit 11d5c2a

Please sign in to comment.