From fa4529846cc8b8f9499420772e2233940ea2d41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Fri, 24 Oct 2025 16:18:11 +0200 Subject: [PATCH] Applying SDK generation fix for Console https://github.com/appwrite/appwrite/pull/10628/files --- src/Appwrite/Utopia/Response/Model/Execution.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Utopia/Response/Model/Execution.php b/src/Appwrite/Utopia/Response/Model/Execution.php index f8ee32aa6e..963066e41c 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -63,7 +63,7 @@ class Execution extends Model 'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, or `failed`.', 'default' => '', 'example' => 'processing', - 'enum' => ['waiting', 'processing', 'completed', 'failed'], + 'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'], ]) ->addRule('requestMethod', [ 'type' => self::TYPE_STRING,