mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
update execution response model
This commit is contained in:
parent
391d1127ca
commit
5424b85685
1 changed files with 6 additions and 0 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue