Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

DINT-1688: Add EDS storefront template option #171

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ type Storefront = {
websiteCode?: string;
websiteId: number;
websiteName: string;
storefrontTemplate?: "Luma" | "Hyva" | "AEM CIF" | "Franklin" | "PWA Studio" | "Other";
storefrontTemplate?: "Luma" | "EDS" | "Hyva" | "AEM CIF" | "Franklin" | "PWA Studio" | "Other";
};

type Tracker = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const mockStorefrontCtx = {
websiteCode: "website",
websiteId: 333333,
websiteName: "website",
storefrontTemplate: "Franklin",
storefrontTemplate: "EDS",
};

const mockAepCtx = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ const mockStorefront: StorefrontInstance = {
websiteCode: "website",
websiteId: 333333,
websiteName: "website",
storefrontTemplate: "Franklin",
storefrontTemplate: "EDS",
};

const mockShopper: Shopper = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ export type StorefrontInstance = {
baseCurrencyCode: string;
storeViewCurrencyCode: string;
catalogExtensionVersion?: string | null;
storefrontTemplate?: "Luma" | "Hyva" | "AEM CIF" | "Franklin" | "PWA Studio" | "Other";
storefrontTemplate?: "Luma" | "EDS" | "Hyva" | "AEM CIF" | "Franklin" | "PWA Studio" | "Other";
};
Loading