diff --git a/clients/ts-sdk/openapi.json b/clients/ts-sdk/openapi.json index 5e4368fafa..3610bc29c5 100644 --- a/clients/ts-sdk/openapi.json +++ b/clients/ts-sdk/openapi.json @@ -10964,10 +10964,6 @@ "PublicPageParameters": { "type": "object", "properties": { - "accentColor": { - "type": "string", - "nullable": true - }, "allowSwitchingModes": { "type": "boolean", "nullable": true @@ -10984,6 +10980,10 @@ "type": "string", "nullable": true }, + "brandColor": { + "type": "string", + "nullable": true + }, "brandLogoImgSrcUrl": { "type": "string", "nullable": true diff --git a/clients/ts-sdk/src/types.gen.ts b/clients/ts-sdk/src/types.gen.ts index 41c5d45412..18f238d57a 100644 --- a/clients/ts-sdk/src/types.gen.ts +++ b/clients/ts-sdk/src/types.gen.ts @@ -1657,11 +1657,11 @@ export type PublicDatasetOptions = { }; export type PublicPageParameters = { - accentColor?: (string) | null; allowSwitchingModes?: (boolean) | null; analytics?: (boolean) | null; apiKey?: (string) | null; baseUrl?: (string) | null; + brandColor?: (string) | null; brandLogoImgSrcUrl?: (string) | null; brandName?: (string) | null; chat?: (boolean) | null; diff --git a/frontends/dashboard/src/pages/dataset/PublicPageSettings.tsx b/frontends/dashboard/src/pages/dataset/PublicPageSettings.tsx index 78729ea7ba..8c598ff018 100644 --- a/frontends/dashboard/src/pages/dataset/PublicPageSettings.tsx +++ b/frontends/dashboard/src/pages/dataset/PublicPageSettings.tsx @@ -238,7 +238,7 @@ export const PublicPageSettings = () => {