update execution response model

This commit is contained in:
Damodar Lohani 2022-08-10 07:20:16 +00:00
parent 391d1127ca
commit 5424b85685

View file

@ -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',