feat: add missing response models

This commit is contained in:
Christy Jacob 2022-03-01 15:12:18 +04:00
parent 6cce8a1f07
commit ed9335afdf

View file

@ -118,7 +118,7 @@ class V12 extends Filter
protected function parseFunction(array $content)
{
$content['tag'] = $content['deployment'];
unset($content['deployment']);
return $content;
}
@ -180,6 +180,7 @@ class V12 extends Filter
protected function parseExecution($content) {
$content['exitCode'] = $content['statusCode'];
unset($content['statusCode']);
return $content;
}