mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
feat: add missing response models
This commit is contained in:
parent
6cce8a1f07
commit
ed9335afdf
1 changed files with 2 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ class V12 extends Filter
|
||||||
protected function parseFunction(array $content)
|
protected function parseFunction(array $content)
|
||||||
{
|
{
|
||||||
$content['tag'] = $content['deployment'];
|
$content['tag'] = $content['deployment'];
|
||||||
|
unset($content['deployment']);
|
||||||
return $content;
|
return $content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -180,6 +180,7 @@ class V12 extends Filter
|
||||||
|
|
||||||
protected function parseExecution($content) {
|
protected function parseExecution($content) {
|
||||||
$content['exitCode'] = $content['statusCode'];
|
$content['exitCode'] = $content['statusCode'];
|
||||||
|
unset($content['statusCode']);
|
||||||
|
|
||||||
return $content;
|
return $content;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue