Update OpenAPI documentation

This commit is contained in:
GitHub Action 2025-06-20 19:11:24 +00:00
parent 225572732f
commit fa8d778c8d

View File

@ -2,12 +2,12 @@
"openapi": "3.0.4", "openapi": "3.0.4",
"info": { "info": {
"title": "Kavita", "title": "Kavita",
"description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.6.15", "description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.6.16",
"license": { "license": {
"name": "GPL-3.0", "name": "GPL-3.0",
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE" "url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
}, },
"version": "0.8.6.15" "version": "0.8.6.16"
}, },
"servers": [ "servers": [
{ {
@ -10522,7 +10522,7 @@
"tags": [ "tags": [
"Scrobbling" "Scrobbling"
], ],
"summary": "Adds a hold against the Series for user's scrobbling", "summary": "Remove a hold against the Series for user's scrobbling",
"parameters": [ "parameters": [
{ {
"name": "seriesId", "name": "seriesId",
@ -10571,6 +10571,51 @@
} }
} }
}, },
"/api/Scrobbling/bulk-remove-events": {
"post": {
"tags": [
"Scrobbling"
],
"summary": "Delete the given scrobble events if they belong to that user",
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
}
},
"text/json": {
"schema": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
}
},
"application/*+json": {
"schema": {
"type": "array",
"items": {
"type": "integer",
"format": "int64"
}
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/api/Search/series-for-mangafile": { "/api/Search/series-for-mangafile": {
"get": { "get": {
"tags": [ "tags": [
@ -23505,6 +23550,10 @@
"ScrobbleEventDto": { "ScrobbleEventDto": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": {
"type": "integer",
"format": "int64"
},
"seriesName": { "seriesName": {
"type": "string", "type": "string",
"nullable": true "nullable": true