Automated API Docs update

pull/1026/head
Servarr 2 years ago committed by Qstick
parent 40e7f80be9
commit f0abfae978

@ -4210,7 +4210,7 @@
} }
}, },
"/api/v1/config/ui/{id}": { "/api/v1/config/ui/{id}": {
"get": { "put": {
"tags": [ "tags": [
"UiConfig" "UiConfig"
], ],
@ -4220,26 +4220,34 @@
"in": "path", "in": "path",
"required": true, "required": true,
"schema": { "schema": {
"type": "integer", "type": "string"
"format": "int32"
} }
} }
], ],
"responses": { "requestBody": {
"200": {
"description": "Success",
"content": { "content": {
"text/plain": { "application/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
}, },
"application/json": { "text/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
}, },
"text/json": { "application/*+json": {
"schema": {
"$ref": "#/components/schemas/UiConfigResource"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
@ -4248,7 +4256,7 @@
} }
} }
}, },
"put": { "get": {
"tags": [ "tags": [
"UiConfig" "UiConfig"
], ],
@ -4258,34 +4266,26 @@
"in": "path", "in": "path",
"required": true, "required": true,
"schema": { "schema": {
"type": "string" "type": "integer",
"format": "int32"
} }
} }
], ],
"requestBody": { "responses": {
"200": {
"description": "Success",
"content": { "content": {
"application/json": { "text/plain": {
"schema": {
"$ref": "#/components/schemas/UiConfigResource"
}
},
"text/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
}, },
"application/*+json": { "application/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
}
}
}, },
"responses": { "text/json": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": { "schema": {
"$ref": "#/components/schemas/UiConfigResource" "$ref": "#/components/schemas/UiConfigResource"
} }
@ -6316,6 +6316,10 @@
"uiLanguage": { "uiLanguage": {
"type": "integer", "type": "integer",
"format": "int32" "format": "int32"
},
"theme": {
"type": "string",
"nullable": true
} }
}, },
"additionalProperties": false "additionalProperties": false

Loading…
Cancel
Save