Added example provider to the frontend

This commit is contained in:
SwiftyOS
2025-02-28 17:09:18 +01:00
committed by Swifty
parent b9366c9b28
commit 95ce2c825f
3 changed files with 3 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ export const providerIcons: Record<
smartlead: fallbackIcon,
todoist: fallbackIcon,
zerobounce: fallbackIcon,
example: fallbackIcon,
};
// --8<-- [end:ProviderIconsEmbed]

View File

@@ -52,6 +52,7 @@ const providerDisplayNames: Record<CredentialsProviderName, string> = {
todoist: "Todoist",
unreal_speech: "Unreal Speech",
zerobounce: "ZeroBounce",
example: "Example",
} as const;
// --8<-- [end:CredentialsProviderNames]

View File

@@ -148,6 +148,7 @@ export const PROVIDER_NAMES = {
UNREAL_SPEECH: "unreal_speech",
TODOIST: "todoist",
ZEROBOUNCE: "zerobounce",
EXAMPLE: "example",
} as const;
// --8<-- [end:BlockIOCredentialsSubSchema]