Skip to content

Commit

Permalink
Automated API Docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
ServarrAdmin authored and mynameisbogdan committed Mar 14, 2024
1 parent ebfa680 commit 5ffde40
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions src/Lidarr.Api.V1/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3869,6 +3869,44 @@
}
}
},
"/api/v1/indexerflag": {
"get": {
"tags": [
"IndexerFlag"
],
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndexerFlagResource"
}
}
},
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndexerFlagResource"
}
}
},
"text/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndexerFlagResource"
}
}
}
}
}
}
}
},
"/api/v1/language/{id}": {
"get": {
"tags": [
Expand Down Expand Up @@ -10143,6 +10181,25 @@
},
"additionalProperties": false
},
"IndexerFlagResource": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32"
},
"name": {
"type": "string",
"nullable": true
},
"nameLower": {
"type": "string",
"nullable": true,
"readOnly": true
}
},
"additionalProperties": false
},
"IndexerResource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -10437,6 +10494,10 @@
"type": "string",
"nullable": true
},
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"rejections": {
"type": "array",
"items": {
Expand Down Expand Up @@ -10511,6 +10572,10 @@
"type": "string",
"nullable": true
},
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"downloadId": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -11972,6 +12037,10 @@
"protocol": {
"$ref": "#/components/schemas/DownloadProtocol"
},
"indexerFlags": {
"type": "integer",
"format": "int32"
},
"artistId": {
"type": "integer",
"format": "int32",
Expand Down Expand Up @@ -12640,6 +12709,11 @@
"type": "integer",
"format": "int32"
},
"indexerFlags": {
"type": "integer",
"format": "int32",
"nullable": true
},
"mediaInfo": {
"$ref": "#/components/schemas/MediaInfoResource"
},
Expand Down

0 comments on commit 5ffde40

Please sign in to comment.