mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
Update API Docs
This commit is contained in:
@@ -4471,7 +4471,14 @@
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success"
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/PingResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -6236,7 +6243,14 @@
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success"
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SystemResource"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -9200,6 +9214,16 @@
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"PingResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"PrivacyLevel": {
|
||||
"enum": [
|
||||
"normal",
|
||||
@@ -10023,6 +10047,14 @@
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"RuntimeMode": {
|
||||
"enum": [
|
||||
"console",
|
||||
"service",
|
||||
"tray"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"SeasonPassResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -10478,6 +10510,118 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"SystemResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"appName": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"instanceName": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"version": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"buildTime": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"isDebug": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isProduction": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isAdmin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isUserInteractive": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"startupPath": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"appData": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"osName": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"osVersion": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"isNetCore": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isLinux": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isOsx": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isWindows": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isDocker": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"mode": {
|
||||
"$ref": "#/components/schemas/RuntimeMode"
|
||||
},
|
||||
"branch": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"authentication": {
|
||||
"$ref": "#/components/schemas/AuthenticationType"
|
||||
},
|
||||
"sqliteVersion": {
|
||||
"$ref": "#/components/schemas/Version"
|
||||
},
|
||||
"migrationVersion": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"urlBase": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"runtimeVersion": {
|
||||
"$ref": "#/components/schemas/Version"
|
||||
},
|
||||
"runtimeName": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"startTime": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"packageVersion": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"packageAuthor": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"packageUpdateMechanism": {
|
||||
"$ref": "#/components/schemas/UpdateMechanism"
|
||||
},
|
||||
"packageUpdateMechanismMessage": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"TagDetailsResource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user