|
|
|
@ -162,25 +162,25 @@
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"Username": {
|
|
|
|
|
"username": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"Password": {
|
|
|
|
|
"password": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"RememberMe": {
|
|
|
|
|
"rememberMe": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"encoding": {
|
|
|
|
|
"Username": {
|
|
|
|
|
"username": {
|
|
|
|
|
"style": "form"
|
|
|
|
|
},
|
|
|
|
|
"Password": {
|
|
|
|
|
"password": {
|
|
|
|
|
"style": "form"
|
|
|
|
|
},
|
|
|
|
|
"RememberMe": {
|
|
|
|
|
"rememberMe": {
|
|
|
|
|
"style": "form"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -494,6 +494,40 @@
|
|
|
|
|
"tags": [
|
|
|
|
|
"Blocklist"
|
|
|
|
|
],
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"name": "page",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "pageSize",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 10
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortKey",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortDirection",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"responses": {
|
|
|
|
|
"200": {
|
|
|
|
|
"description": "Success",
|
|
|
|
@ -2413,32 +2447,69 @@
|
|
|
|
|
"History"
|
|
|
|
|
],
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"name": "page",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "pageSize",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 10
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortKey",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortDirection",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "includeMovie",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "eventType",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "downloadId",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"responses": {
|
|
|
|
|
"200": {
|
|
|
|
|
"description": "Success",
|
|
|
|
|
"content": {
|
|
|
|
|
"text/plain": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/HistoryResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"application/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/HistoryResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"text/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/HistoryResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -4075,24 +4146,55 @@
|
|
|
|
|
"tags": [
|
|
|
|
|
"Log"
|
|
|
|
|
],
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"name": "page",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "pageSize",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 10
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortKey",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortDirection",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "level",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"responses": {
|
|
|
|
|
"200": {
|
|
|
|
|
"description": "Success",
|
|
|
|
|
"content": {
|
|
|
|
|
"text/plain": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/LogResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"application/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/LogResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"text/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/LogResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -5612,70 +5714,70 @@
|
|
|
|
|
],
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"name": "RenameMovies",
|
|
|
|
|
"name": "renameMovies",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "ReplaceIllegalCharacters",
|
|
|
|
|
"name": "replaceIllegalCharacters",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "ColonReplacementFormat",
|
|
|
|
|
"name": "colonReplacementFormat",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/ColonReplacementFormat"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "StandardMovieFormat",
|
|
|
|
|
"name": "standardMovieFormat",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "MovieFolderFormat",
|
|
|
|
|
"name": "movieFolderFormat",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "IncludeQuality",
|
|
|
|
|
"name": "includeQuality",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "ReplaceSpaces",
|
|
|
|
|
"name": "replaceSpaces",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Separator",
|
|
|
|
|
"name": "separator",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "NumberStyle",
|
|
|
|
|
"name": "numberStyle",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Id",
|
|
|
|
|
"name": "id",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
@ -5683,7 +5785,7 @@
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "ResourceName",
|
|
|
|
|
"name": "resourceName",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
@ -6597,6 +6699,38 @@
|
|
|
|
|
"Queue"
|
|
|
|
|
],
|
|
|
|
|
"parameters": [
|
|
|
|
|
{
|
|
|
|
|
"name": "page",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 1
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "pageSize",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32",
|
|
|
|
|
"default": 10
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortKey",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "sortDirection",
|
|
|
|
|
"in": "query",
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "includeUnknownMovieItems",
|
|
|
|
|
"in": "query",
|
|
|
|
@ -6618,20 +6752,10 @@
|
|
|
|
|
"200": {
|
|
|
|
|
"description": "Success",
|
|
|
|
|
"content": {
|
|
|
|
|
"text/plain": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/QueueResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"application/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/QueueResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"text/json": {
|
|
|
|
|
"schema": {
|
|
|
|
|
"$ref": "#/components/schemas/QueueResourcePagingResource"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -8639,13 +8763,6 @@
|
|
|
|
|
"sortDirection": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
},
|
|
|
|
|
"filters": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
|
|
|
},
|
|
|
|
|
"nullable": true
|
|
|
|
|
},
|
|
|
|
|
"totalRecords": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32"
|
|
|
|
@ -9635,13 +9752,6 @@
|
|
|
|
|
"sortDirection": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
},
|
|
|
|
|
"filters": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
|
|
|
},
|
|
|
|
|
"nullable": true
|
|
|
|
|
},
|
|
|
|
|
"totalRecords": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32"
|
|
|
|
@ -10366,13 +10476,6 @@
|
|
|
|
|
"sortDirection": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
},
|
|
|
|
|
"filters": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
|
|
|
},
|
|
|
|
|
"nullable": true
|
|
|
|
|
},
|
|
|
|
|
"totalRecords": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32"
|
|
|
|
@ -11616,20 +11719,6 @@
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false
|
|
|
|
|
},
|
|
|
|
|
"PagingResourceFilter": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"key": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"nullable": true
|
|
|
|
|
},
|
|
|
|
|
"value": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"nullable": true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false
|
|
|
|
|
},
|
|
|
|
|
"ParseResource": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
@ -12110,13 +12199,6 @@
|
|
|
|
|
"sortDirection": {
|
|
|
|
|
"$ref": "#/components/schemas/SortDirection"
|
|
|
|
|
},
|
|
|
|
|
"filters": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"$ref": "#/components/schemas/PagingResourceFilter"
|
|
|
|
|
},
|
|
|
|
|
"nullable": true
|
|
|
|
|
},
|
|
|
|
|
"totalRecords": {
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"format": "int32"
|
|
|
|
|