mirror of
https://github.com/gotson/komga.git
synced 2025-12-27 19:04:28 +01:00
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:
parent
342f04c117
commit
0136ff6fb2
3 changed files with 34 additions and 28 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
version=0.63.1
|
||||
version=0.63.2
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue