Add base_path field to custom provider config (#7558)

Signed-off-by: Dan Prince <dprince@redhat.com>
This commit is contained in:
Dan Prince
2026-02-27 19:47:08 -05:00
committed by GitHub
parent 6e4d6fe1f2
commit d1fe375f30
6 changed files with 29 additions and 4 deletions
+8
View File
@@ -4177,6 +4177,10 @@
"api_key_env": {
"type": "string"
},
"base_path": {
"type": "string",
"nullable": true
},
"base_url": {
"type": "string"
},
@@ -8159,6 +8163,10 @@
"api_url": {
"type": "string"
},
"base_path": {
"type": "string",
"nullable": true
},
"catalog_provider_id": {
"type": "string",
"nullable": true
+2
View File
@@ -173,6 +173,7 @@ export type CspMetadata = {
export type DeclarativeProviderConfig = {
api_key_env?: string;
base_path?: string | null;
base_url: string;
catalog_provider_id?: string | null;
description?: string | null;
@@ -1477,6 +1478,7 @@ export type UiMetadata = {
export type UpdateCustomProviderRequest = {
api_key: string;
api_url: string;
base_path?: string | null;
catalog_provider_id?: string | null;
display_name: string;
engine: string;