Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update execution response model
  • Loading branch information
lohanidamodar committed Aug 10, 2022
commit 5424b856859407f9006321d3b7732cab91e43e1f
6 changes: 6 additions & 0 deletions src/Appwrite/Utopia/Response/Model/Execution.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ public function __construct()
'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',
Expand Down