From 5424b856859407f9006321d3b7732cab91e43e1f Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Wed, 10 Aug 2022 07:20:16 +0000 Subject: [PATCH] update execution response model --- src/Appwrite/Utopia/Response/Model/Execution.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Appwrite/Utopia/Response/Model/Execution.php b/src/Appwrite/Utopia/Response/Model/Execution.php index e4e4be696a..f8a6723fed 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -65,6 +65,12 @@ class Execution extends Model 'default' => '', 'example' => '', ]) + ->addRule('stdout', [ + 'type' => self::TYPE_STRING, + 'description' => 'The script stdout output string. Logs the last 4,000 characters of the execution stdout output', + 'default' => '', + 'example' => '', + ]) ->addRule('stderr', [ 'type' => self::TYPE_STRING, 'description' => 'The script stderr output string. Logs the last 4,000 characters of the execution stderr output',