mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
Automated API Docs update
ignore-downstream
This commit is contained in:
@@ -1936,6 +1936,74 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v5/language": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"Language"
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"text/plain": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/LanguageResource"
|
||||
}
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/LanguageResource"
|
||||
}
|
||||
}
|
||||
},
|
||||
"text/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/LanguageResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v5/language/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"Language"
|
||||
],
|
||||
"parameters": [
|
||||
{
|
||||
"name": "id",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/LanguageResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v5/localization": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -6226,7 +6294,8 @@
|
||||
"diskCustomFormatScore",
|
||||
"diskCustomFormatScoreIncrement",
|
||||
"diskUpgradesNotAllowed",
|
||||
"diskNotUpgrade"
|
||||
"diskNotUpgrade",
|
||||
"beforeAirDate"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
@@ -6900,6 +6969,25 @@
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"LanguageResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"name": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"nameLower": {
|
||||
"type": "string",
|
||||
"nullable": true,
|
||||
"readOnly": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"LocalizationLanguageResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -8566,6 +8654,13 @@
|
||||
},
|
||||
"nullable": true
|
||||
},
|
||||
"airDateRestriction": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"airDateGracePeriod": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"indexerIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -10013,6 +10108,9 @@
|
||||
{
|
||||
"name": "History"
|
||||
},
|
||||
{
|
||||
"name": "Language"
|
||||
},
|
||||
{
|
||||
"name": "Localization"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user