feat(walmart): add playground catalog entry and icon

This commit is contained in:
CREDO23 2026-07-19 09:01:04 +02:00
parent 07721bda40
commit 1c50a33647
3 changed files with 22 additions and 0 deletions

View file

@ -6,6 +6,7 @@ import {
InstagramIcon,
RedditIcon,
TikTokIcon,
WalmartIcon,
WebIcon,
YouTubeIcon,
} from "./platform-icons";
@ -96,6 +97,15 @@ export const PLAYGROUND_PLATFORMS: PlaygroundPlatform[] = [
icon: AmazonIcon,
verbs: [{ name: "amazon.scrape", verb: "scrape", label: "Scrape" }],
},
{
id: "walmart",
label: "Walmart",
icon: WalmartIcon,
verbs: [
{ name: "walmart.scrape", verb: "scrape", label: "Scrape" },
{ name: "walmart.reviews", verb: "reviews", label: "Reviews" },
],
},
{
id: "web",
label: "Web",

View file

@ -23,6 +23,7 @@ function brandIcon(src: string, alt: string) {
}
export const AmazonIcon = brandIcon("/connectors/amazon.svg", "Amazon");
export const WalmartIcon = brandIcon("/connectors/walmart.svg", "Walmart");
export const RedditIcon = brandIcon("/connectors/reddit.svg", "Reddit");
export const YouTubeIcon = brandIcon("/connectors/youtube.svg", "YouTube");
export const InstagramIcon = brandIcon("/connectors/instagram.svg", "Instagram");