Skip to content

Commit

Permalink
Automated API Docs update [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ServarrAdmin authored and mynameisbogdan committed Jul 10, 2023
1 parent 1706728 commit 6b698b3
Showing 1 changed file with 262 additions and 79 deletions.
341 changes: 262 additions & 79 deletions src/Prowlarr.Api.V1/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,53 @@
}
}
},
"/api/v1/applications/bulk": {
"put": {
"tags": [
"Application"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApplicationBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApplicationResource"
}
}
}
}
}
},
"delete": {
"tags": [
"Application"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ApplicationBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/api/v1/applications/schema": {
"get": {
"tags": [
Expand Down Expand Up @@ -1062,6 +1109,53 @@
}
}
},
"/api/v1/downloadclient/bulk": {
"put": {
"tags": [
"DownloadClient"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DownloadClientBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DownloadClientResource"
}
}
}
}
}
},
"delete": {
"tags": [
"DownloadClient"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DownloadClientBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/api/v1/downloadclient/schema": {
"get": {
"tags": [
Expand Down Expand Up @@ -1648,6 +1742,53 @@
}
}
},
"/api/v1/indexer/bulk": {
"put": {
"tags": [
"Indexer"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexerBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexerResource"
}
}
}
}
}
},
"delete": {
"tags": [
"Indexer"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexerBulkResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/api/v1/indexer/schema": {
"get": {
"tags": [
Expand Down Expand Up @@ -1756,46 +1897,6 @@
}
}
},
"/api/v1/indexer/editor": {
"put": {
"tags": [
"IndexerEditor"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexerEditorResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
},
"delete": {
"tags": [
"IndexerEditor"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IndexerEditorResource"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/api/v1/indexerproxy/{id}": {
"get": {
"tags": [
Expand Down Expand Up @@ -3733,6 +3834,34 @@
},
"additionalProperties": false
},
"ApplicationBulkResource": {
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"applyTags": {
"$ref": "#/components/schemas/ApplyTags"
},
"syncLevel": {
"$ref": "#/components/schemas/ApplicationSyncLevel"
}
},
"additionalProperties": false
},
"ApplicationResource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4102,6 +4231,40 @@
},
"additionalProperties": false
},
"DownloadClientBulkResource": {
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"applyTags": {
"$ref": "#/components/schemas/ApplyTags"
},
"enable": {
"type": "boolean",
"nullable": true
},
"priority": {
"type": "integer",
"format": "int32",
"nullable": true
}
},
"additionalProperties": false
},
"DownloadClientCategory": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4603,6 +4766,65 @@
"type": "object",
"additionalProperties": false
},
"IndexerBulkResource": {
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"applyTags": {
"$ref": "#/components/schemas/ApplyTags"
},
"enable": {
"type": "boolean",
"nullable": true
},
"appProfileId": {
"type": "integer",
"format": "int32",
"nullable": true
},
"priority": {
"type": "integer",
"format": "int32",
"nullable": true
},
"minimumSeeders": {
"type": "integer",
"format": "int32",
"nullable": true
},
"seedRatio": {
"type": "number",
"format": "double",
"nullable": true
},
"seedTime": {
"type": "integer",
"format": "int32",
"nullable": true
},
"packSeedTime": {
"type": "integer",
"format": "int32",
"nullable": true
}
},
"additionalProperties": false
},
"IndexerCapabilityResource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4694,45 +4916,6 @@
},
"additionalProperties": false
},
"IndexerEditorResource": {
"type": "object",
"properties": {
"indexerIds": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"enable": {
"type": "boolean",
"nullable": true
},
"appProfileId": {
"type": "integer",
"format": "int32",
"nullable": true
},
"priority": {
"type": "integer",
"format": "int32",
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "integer",
"format": "int32"
},
"nullable": true
},
"applyTags": {
"$ref": "#/components/schemas/ApplyTags"
}
},
"additionalProperties": false
},
"IndexerPrivacy": {
"enum": [
"public",
Expand Down

0 comments on commit 6b698b3

Please sign in to comment.