diff --git a/grocy.openapi.json b/grocy.openapi.json index db41715e..43c12d3e 100644 --- a/grocy.openapi.json +++ b/grocy.openapi.json @@ -721,6 +721,37 @@ } } }, + "/recipes/add-not-fulfilled-products-to-shopping-list/{recipeId}": { + "get": { + "description": "Adds all missing products for the given recipe to the shopping list", + "tags": [ + "Recipes" + ], + "parameters": [ + { + "in": "path", + "name": "recipeId", + "required": true, + "description": "A valid recipe id", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A VoidApiActionResponse object", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/VoidApiActionResponse" + } + } + } + } + } + } + }, "/habits/track-habit-execution/{habitId}": { "get": { "description": "Tracks an execution of the given habit",