Merge remote-tracking branch 'upstream/documents-db-api' into documents-db-api

This commit is contained in:
ArnabChatterjee20k
2025-10-10 15:26:33 +05:30
3 changed files with 4 additions and 4 deletions
@@ -45,7 +45,7 @@ class Database extends Model
'description' => 'Database type.',
'default' => 'legacy',
'example' => 'legacy',
'enum' => ['legacy', 'tablesdb'],
'enum' => ['legacy', 'tablesdb', 'documentsdb'],
])
->addRule('database', [
'type' => self::TYPE_STRING,
@@ -60,10 +60,10 @@ class Execution extends Model
])
->addRule('status', [
'type' => self::TYPE_ENUM,
'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, or `failed`.',
'description' => 'The status of the function execution. Possible values can be: `waiting`, `processing`, `completed`, `failed` or `scheduled`.',
'default' => '',
'example' => 'processing',
'enum' => ['waiting', 'processing', 'completed', 'failed'],
'enum' => ['waiting', 'processing', 'completed', 'failed', 'scheduled'],
])
->addRule('requestMethod', [
'type' => self::TYPE_STRING,
+1 -1
View File
@@ -94,7 +94,7 @@ class Rule extends Model
'type' => self::TYPE_STRING,
'description' => 'Certificate generation logs. This will return an empty string if generation did not run, or succeeded.',
'default' => '',
'example' => 'HTTP challegne failed.',
'example' => 'HTTP challenge failed.',
])
->addRule('renewAt', [
'type' => self::TYPE_DATETIME,