From 5c75af6388b721267b9a146f71e15c111af647ff Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Tue, 19 Nov 2024 21:01:09 -0600 Subject: [PATCH] fix: Added missing parameters to patch operations --- openapi.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 4304559..5cf5602 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -1217,6 +1217,15 @@ paths: summary: Update description: 'Update application by UUID.' operationId: update-application-by-uuid + parameters: + - + name: uuid + in: path + description: 'UUID of the application.' + required: true + schema: + type: string + format: uuid requestBody: description: 'Application updated.' required: true @@ -3253,6 +3262,15 @@ paths: summary: Update description: 'Update Project.' operationId: update-project-by-uuid + parameters: + - + name: uuid + in: path + description: 'UUID of the application.' + required: true + schema: + type: string + format: uuid requestBody: description: 'Project updated.' required: true @@ -3671,6 +3689,14 @@ paths: summary: Update description: 'Update Server.' operationId: update-server-by-uuid + parameters: + - + name: uuid + in: path + description: "Server's UUID" + required: true + schema: + type: string requestBody: description: 'Server updated.' required: true