diff --git a/docs/.vitepress/theme/openapi.json b/docs/.vitepress/theme/openapi.json index 9d69c4ae..5c1728f1 100644 --- a/docs/.vitepress/theme/openapi.json +++ b/docs/.vitepress/theme/openapi.json @@ -6912,6 +6912,11 @@ "example": false, "description": "Instant validate." }, + "start_proxy": { + "type": "boolean", + "example": true, + "description": "Start proxy after server creation. Defaults to the value of instant_validate. Set to false to disable automatic proxy start. Ignored if is_build_server is true." + }, "proxy_type": { "type": "string", "enum": ["traefik", "caddy", "none"], @@ -7114,6 +7119,10 @@ "type": "boolean", "description": "Instant validate." }, + "start_proxy": { + "type": "boolean", + "description": "Start proxy after server update. Defaults to the value of instant_validate. Set to false to disable automatic proxy start. Ignored if is_build_server is true." + }, "proxy_type": { "type": "string", "enum": ["traefik", "caddy", "none"], diff --git a/docs/public/openapi.yml b/docs/public/openapi.yml index 97739a07..f9afadda 100644 --- a/docs/public/openapi.yml +++ b/docs/public/openapi.yml @@ -4892,6 +4892,10 @@ paths: type: boolean example: false description: "Instant validate." + start_proxy: + type: boolean + example: true + description: "Start proxy after server creation. Defaults to the value of instant_validate. Set to false to disable automatic proxy start. Ignored if is_build_server is true." proxy_type: type: string enum: [traefik, caddy, none] @@ -5028,6 +5032,9 @@ paths: instant_validate: type: boolean description: "Instant validate." + start_proxy: + type: boolean + description: "Start proxy after server update. Defaults to the value of instant_validate. Set to false to disable automatic proxy start. Ignored if is_build_server is true." proxy_type: type: string enum: [traefik, caddy, none]