diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-12-08 11:06:05 +0100 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-12-08 13:02:44 +0100 |
commit | 0f320e352fa3ee8070c6f626b64117e382f8f7cd (patch) | |
tree | f9724563c55cbc22b1e2ed566a6b8abfb002f815 /core/openapi.json | |
parent | cd428124ffc62b18f89d920a44664ca5ebc7530e (diff) | |
download | nextcloud-server-0f320e352fa3ee8070c6f626b64117e382f8f7cd.tar.gz nextcloud-server-0f320e352fa3ee8070c6f626b64117e382f8f7cd.zip |
chore(deps): Update openapi-extractor
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'core/openapi.json')
-rw-r--r-- | core/openapi.json | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/core/openapi.json b/core/openapi.json index c5de93838a1..2314c0df413 100644 --- a/core/openapi.json +++ b/core/openapi.json @@ -430,7 +430,14 @@ }, "status": { "type": "integer", - "format": "int64" + "format": "int64", + "enum": [ + 0, + 1, + 2, + 3, + 4 + ] }, "userId": { "type": "string", @@ -476,7 +483,14 @@ }, "status": { "type": "integer", - "format": "int64" + "format": "int64", + "enum": [ + 0, + 1, + 2, + 3, + 4 + ] }, "userId": { "type": "string", @@ -4080,8 +4094,16 @@ "in": "query", "description": "Offset for searching", "schema": { - "type": "string", - "nullable": true + "nullable": true, + "oneOf": [ + { + "type": "integer", + "format": "int64" + }, + { + "type": "string" + } + ] } }, { |