chore: sync OpenAPI specification [skip ci]

Source: Dokploy/dokploy@c98548fa51

Updated: 2026-02-19 02:19:58 UTC
This commit is contained in:
Dokploy Bot
2026-02-19 02:19:58 +00:00
parent c045b8f59b
commit a3c781f1d8

View File

@@ -24006,6 +24006,648 @@
}
}
}
},
"/patch.create": {
"post": {
"operationId": "patch-create",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"filePath": {
"type": "string",
"minLength": 1
},
"content": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"create",
"update",
"delete"
]
},
"enabled": {
"type": "boolean"
},
"applicationId": {
"type": "string",
"nullable": true
},
"composeId": {
"type": "string",
"nullable": true
}
},
"required": [
"filePath",
"content"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.one": {
"get": {
"operationId": "patch-one",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"parameters": [
{
"name": "patchId",
"in": "query",
"required": true,
"schema": {
"type": "string",
"minLength": 1
}
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.byEntityId": {
"get": {
"operationId": "patch-byEntityId",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"parameters": [
{
"name": "id",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "type",
"in": "query",
"required": true,
"schema": {
"type": "string",
"enum": [
"application",
"compose"
]
}
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.update": {
"post": {
"operationId": "patch-update",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"patchId": {
"type": "string",
"minLength": 1
},
"type": {
"type": "string",
"enum": [
"create",
"update",
"delete"
]
},
"filePath": {
"type": "string",
"minLength": 1
},
"enabled": {
"type": "boolean"
},
"content": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string",
"nullable": true
}
},
"required": [
"patchId"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.delete": {
"post": {
"operationId": "patch-delete",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"patchId": {
"type": "string",
"minLength": 1
}
},
"required": [
"patchId"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.toggleEnabled": {
"post": {
"operationId": "patch-toggleEnabled",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"patchId": {
"type": "string",
"minLength": 1
},
"enabled": {
"type": "boolean"
}
},
"required": [
"patchId",
"enabled"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.ensureRepo": {
"post": {
"operationId": "patch-ensureRepo",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"application",
"compose"
]
}
},
"required": [
"id",
"type"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.readRepoDirectories": {
"get": {
"operationId": "patch-readRepoDirectories",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"parameters": [
{
"name": "id",
"in": "query",
"required": true,
"schema": {
"type": "string",
"minLength": 1
}
},
{
"name": "type",
"in": "query",
"required": true,
"schema": {
"type": "string",
"enum": [
"application",
"compose"
]
}
},
{
"name": "repoPath",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.readRepoFile": {
"get": {
"operationId": "patch-readRepoFile",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"parameters": [
{
"name": "id",
"in": "query",
"required": true,
"schema": {
"type": "string",
"minLength": 1
}
},
{
"name": "type",
"in": "query",
"required": true,
"schema": {
"type": "string",
"enum": [
"application",
"compose"
]
}
},
{
"name": "filePath",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.saveFileAsPatch": {
"post": {
"operationId": "patch-saveFileAsPatch",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"type": {
"type": "string",
"enum": [
"application",
"compose"
]
},
"filePath": {
"type": "string"
},
"content": {
"type": "string"
},
"patchType": {
"type": "string",
"enum": [
"create",
"update"
],
"default": "update"
}
},
"required": [
"id",
"type",
"filePath",
"content"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.markFileForDeletion": {
"post": {
"operationId": "patch-markFileForDeletion",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"type": {
"type": "string",
"enum": [
"application",
"compose"
]
},
"filePath": {
"type": "string"
}
},
"required": [
"id",
"type",
"filePath"
],
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
},
"/patch.cleanPatchRepos": {
"post": {
"operationId": "patch-cleanPatchRepos",
"tags": [
"patch"
],
"security": [
{
"Authorization": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"serverId": {
"type": "string"
}
},
"additionalProperties": false
}
}
}
},
"parameters": [],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {}
}
},
"default": {
"$ref": "#/components/responses/error"
}
}
}
}
},
"components": {