Skip to content

Commit

Permalink
Merge pull request #18 from blockfrost/v0.1.4
Browse files Browse the repository at this point in the history
fix(openapi): invalid_ types integer -> string
  • Loading branch information
mmahut authored Mar 8, 2021
2 parents fd77172 + 34b7188 commit e12fe31
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.1.3] - 2021-03-08
## [0.1.4] - 2021-03-08

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blockfrost/openapi",
"version": "0.1.3",
"version": "0.1.4",
"description": "OpenAPI specifications for blockfrost.io",
"repository": "git@github.com:blockfrost/openapi.git",
"author": "admin@blockfrost.io",
Expand Down
8 changes: 4 additions & 4 deletions swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.0
info:
version: "0.1.3"
version: "0.1.4"
title: Blockfrost.io ~ API Documentation
x-logo:
url: https://staging.blockfrost.io/images/logo.svg
Expand Down Expand Up @@ -3081,14 +3081,14 @@ components:
example: 433
description: Size of the transaction in Bytes
invalid_before:
type: integer
type: string
nullable: true
example: null
description: Left (included) endpoint of the timelock validity intervals
invalid_hereafter:
type: integer
type: string
nullable: true
example: 13885913
example: "13885913"
description: Right (excluded) endpoint of the timelock validity intervals
utxo_count:
type: integer
Expand Down

0 comments on commit e12fe31

Please sign in to comment.