diff --git a/apps/web/src/views/docs.ejs b/apps/web/src/views/docs.ejs index 134e485..4b97f39 100644 --- a/apps/web/src/views/docs.ejs +++ b/apps/web/src/views/docs.ejs @@ -608,18 +608,14 @@ Content-Type: application/json
{
"$and": [
{ "status": { "$lt": 400 } },
- {
- "$or": [
- { "$json": { "$.env": { "$eq": "production" } } },
- { "$json": { "$.env": { "$eq": "staging" } } }
- ]
- },
- {
- "$or": [
- { "$responseTime": { "$lt": 2000 } },
- { "$json": { "$.cache": { "$eq": "hit" } } }
- ]
- }
+ { "$or": [
+ { "$json": { "$.env": { "$eq": "production" } } },
+ { "$json": { "$.env": { "$eq": "staging" } } }
+ ] },
+ { "$or": [
+ { "$responseTime": { "$lt": 2000 } },
+ { "$json": { "$.cache": { "$eq": "hit" } } }
+ ] }
]
}