Merge pull request #10540 from appwrite/fix-healthstatus-enum

Fix healthstatus enum
This commit is contained in:
Jake Barnby 2025-09-24 14:09:28 +12:00 committed by GitHub
commit 7a31e1cf15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 9 additions and 9 deletions

View file

@ -53810,7 +53810,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -40998,7 +40998,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -53810,7 +53810,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -40998,7 +40998,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -53766,7 +53766,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -41035,7 +41035,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -53766,7 +53766,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -41035,7 +41035,7 @@
"pass",
"fail"
],
"x-enum-name": "HealthStatus"
"x-enum-name": "HealthCheckStatus"
}
},
"required": [

View file

@ -627,7 +627,7 @@ abstract class Format
case 'healthStatus':
switch ($param) {
case 'status':
return 'HealthStatus';
return 'HealthCheckStatus';
}
break;
}