chore(release): 0.63.2 [skip ci]

## [0.63.2](https://github.com/gotson/komga/compare/v0.63.1...v0.63.2) (2020-10-05)

### Bug Fixes

* **api:** incorrect parameter type ([342f04c](342f04c117))
This commit is contained in:
semantic-release-bot 2020-10-05 12:53:03 +00:00
parent 342f04c117
commit 0136ff6fb2
3 changed files with 34 additions and 28 deletions

View file

@ -1,3 +1,10 @@
## [0.63.2](https://github.com/gotson/komga/compare/v0.63.1...v0.63.2) (2020-10-05)
### Bug Fixes
* **api:** incorrect parameter type ([342f04c](https://github.com/gotson/komga/commit/342f04c117ee0ad2d26782f7ee65ec14247f741e))
## [0.63.1](https://github.com/gotson/komga/compare/v0.63.0...v0.63.1) (2020-09-29)

View file

@ -1 +1 @@
version=0.63.1
version=0.63.2

View file

@ -3332,8 +3332,7 @@
"schema": {
"type": "array",
"items": {
"format": "int64",
"type": "integer"
"type": "string"
}
},
"in": "query",
@ -4521,22 +4520,19 @@
]
}
},
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
}
},
"parameters": [
@ -4554,19 +4550,22 @@
]
}
},
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
}
},
"parameters": [