From ffb2a02ea0bd9b4c7dda114f674d7c7e37f4c545 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Sat, 25 Oct 2025 10:52:22 +0530 Subject: [PATCH] fix: execution status enum description --- 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 963066e41c..a54242f878 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -60,7 +60,7 @@ class Execution extends Model ]) ->addRule('status', [ 'type' => self::TYPE_ENUM, - 'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, or `failed`.', + 'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, `failed`, or `scheduled`.', 'default' => '', 'example' => 'processing', 'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'],