mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.153.1 [skip ci]
## [0.153.1](https://github.com/gotson/komga/compare/v0.153.0...v0.153.1) (2022-03-14) ### Bug Fixes * **api:** return created thumbnail ([dd1ffbe
](dd1ffbe54a
)) * translated using Weblate ([b778a2a
](b778a2afc2
)) * translated using Weblate ([6449f22
](6449f2247d
))
This commit is contained in:
parent
b778a2afc2
commit
c1549b0583
@ -1,3 +1,12 @@
|
||||
## [0.153.1](https://github.com/gotson/komga/compare/v0.153.0...v0.153.1) (2022-03-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **api:** return created thumbnail ([dd1ffbe](https://github.com/gotson/komga/commit/dd1ffbe54ade732dafb3db00bdb829274276b1e6))
|
||||
* translated using Weblate ([b778a2a](https://github.com/gotson/komga/commit/b778a2afc217c35277a23967c932f0261cd5a232))
|
||||
* translated using Weblate ([6449f22](https://github.com/gotson/komga/commit/6449f2247d84a160596608b617c518c823222179))
|
||||
|
||||
# [0.153.0](https://github.com/gotson/komga/compare/v0.152.0...v0.153.0) (2022-03-03)
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.153.0
|
||||
version=0.153.1
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
@ -968,8 +968,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"202": {
|
||||
"description": "Accepted"
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SeriesThumbnailDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1313,8 +1320,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"202": {
|
||||
"description": "Accepted"
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ThumbnailReadListDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1932,8 +1946,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"202": {
|
||||
"description": "Accepted"
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ThumbnailSeriesCollectionDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2108,8 +2129,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"202": {
|
||||
"description": "Accepted"
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ThumbnailBookDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -8258,7 +8286,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_5",
|
||||
"operationId": "getProviders_3",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8320,7 +8348,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_4",
|
||||
"operationId": "getProviders_2",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8382,7 +8410,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_6",
|
||||
"operationId": "getProviders_4",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8413,7 +8441,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_3",
|
||||
"operationId": "getProviders_6",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8444,7 +8472,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_2",
|
||||
"operationId": "getProviders_5",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8869,6 +8897,29 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SeriesThumbnailDto": {
|
||||
"required": [
|
||||
"id",
|
||||
"selected",
|
||||
"seriesId",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"seriesId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListCreationDto": {
|
||||
"required": [
|
||||
"bookIds",
|
||||
@ -8931,6 +8982,29 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailReadListDto": {
|
||||
"required": [
|
||||
"id",
|
||||
"readListId",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"readListId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookDto": {
|
||||
"required": [
|
||||
"number",
|
||||
@ -9313,6 +9387,52 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailSeriesCollectionDto": {
|
||||
"required": [
|
||||
"collectionId",
|
||||
"id",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"collectionId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailBookDto": {
|
||||
"required": [
|
||||
"bookId",
|
||||
"id",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bookId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"BookImportBatchDto": {
|
||||
"required": [
|
||||
"books",
|
||||
@ -9399,6 +9519,13 @@
|
||||
"UserUpdateDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"labelsExclude": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"roles": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
@ -9413,18 +9540,11 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ageRestriction": {
|
||||
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
|
||||
},
|
||||
"labelsExclude": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"sharedLibraries": {
|
||||
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
|
||||
},
|
||||
"ageRestriction": {
|
||||
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9516,16 +9636,7 @@
|
||||
"sharingLabelsLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"LEFT_TO_RIGHT",
|
||||
"RIGHT_TO_LEFT",
|
||||
"VERTICAL",
|
||||
"WEBTOON"
|
||||
]
|
||||
},
|
||||
"genres": {
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
@ -9536,7 +9647,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"tags": {
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"LEFT_TO_RIGHT",
|
||||
"RIGHT_TO_LEFT",
|
||||
"VERTICAL",
|
||||
"WEBTOON"
|
||||
]
|
||||
},
|
||||
"genres": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
@ -9659,16 +9779,6 @@
|
||||
"linksLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
@ -9676,17 +9786,27 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/WebLinkUpdateDto"
|
||||
}
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/WebLinkUpdateDto"
|
||||
}
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."
|
||||
@ -9884,30 +10004,20 @@
|
||||
"PageAuthenticationActivityDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9922,6 +10032,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -9933,37 +10053,37 @@
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"paged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageNumber": {
|
||||
"offset": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
"format": "int64"
|
||||
},
|
||||
"unpaged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageSize": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"unpaged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"offset": {
|
||||
"pageNumber": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
"format": "int32"
|
||||
},
|
||||
"paged": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Sort": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sorted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"unsorted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10022,30 +10142,20 @@
|
||||
"PageAuthorDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10060,6 +10170,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -10156,30 +10276,20 @@
|
||||
"PageSeriesDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10194,6 +10304,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -10394,29 +10514,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SeriesThumbnailDto": {
|
||||
"required": [
|
||||
"id",
|
||||
"selected",
|
||||
"seriesId",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"seriesId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"TachiyomiReadProgressDto": {
|
||||
"required": [
|
||||
"booksCount",
|
||||
@ -10658,30 +10755,20 @@
|
||||
"PageBookDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10696,6 +10783,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -10766,30 +10863,20 @@
|
||||
"PageReadListDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10804,30 +10891,17 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"empty": {
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailReadListDto": {
|
||||
"required": [
|
||||
"id",
|
||||
"readListId",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"readListId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
@ -10878,30 +10952,20 @@
|
||||
"PagePageHashKnownDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10916,6 +10980,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -10924,30 +10998,20 @@
|
||||
"PagePageHashMatchDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10962,6 +11026,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -10994,30 +11068,20 @@
|
||||
"PagePageHashUnknownDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -11032,6 +11096,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -11069,30 +11143,20 @@
|
||||
"PageHistoricalEventDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -11107,6 +11171,16 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
@ -11115,30 +11189,20 @@
|
||||
"PageCollectionDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"totalPages": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"first": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sort": {
|
||||
"$ref": "#/components/schemas/Sort"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -11153,30 +11217,17 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"empty": {
|
||||
"numberOfElements": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailSeriesCollectionDto": {
|
||||
"required": [
|
||||
"collectionId",
|
||||
"id",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"collectionId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"empty": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
@ -11192,29 +11243,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ThumbnailBookDto": {
|
||||
"required": [
|
||||
"bookId",
|
||||
"id",
|
||||
"selected",
|
||||
"type"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bookId": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"selected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OAuth2ClientDto": {
|
||||
"required": [
|
||||
"name",
|
||||
|
Loading…
Reference in New Issue
Block a user