From 0519d2d1fe3427299d1191b64bcd0376f7f43bf0 Mon Sep 17 00:00:00 2001 From: Rory Date: Sun, 5 Apr 2026 13:22:43 +0800 Subject: [PATCH 1/2] Add basic auth for the rest spec --- open-api/rest-catalog-open-api.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/open-api/rest-catalog-open-api.yaml b/open-api/rest-catalog-open-api.yaml index 4b4c9f6730ec..08910044af83 100644 --- a/open-api/rest-catalog-open-api.yaml +++ b/open-api/rest-catalog-open-api.yaml @@ -60,6 +60,7 @@ servers: security: - OAuth2: [catalog] - BearerAuth: [] + - BasicAuth: [] paths: /v1/config: From b1510457559f29d8fa7f6d8db2ee8ff7826af030 Mon Sep 17 00:00:00 2001 From: Rory Date: Sun, 5 Apr 2026 23:06:11 +0800 Subject: [PATCH 2/2] Add the definition --- open-api/rest-catalog-open-api.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/open-api/rest-catalog-open-api.yaml b/open-api/rest-catalog-open-api.yaml index 08910044af83..8afd9291e2dc 100644 --- a/open-api/rest-catalog-open-api.yaml +++ b/open-api/rest-catalog-open-api.yaml @@ -5265,3 +5265,6 @@ components: BearerAuth: type: http scheme: bearer + BasicAuth: + type: http + scheme: basic