commerce/lib/aspire/types.ts
2024-07-20 20:54:32 -07:00

29 lines
453 B
TypeScript

export type Brand = {
brandId: string;
companyName: string;
};
export type Content = {
contentId: string;
contentUrl: string;
};
export type ContentLandingPage = {
contentLandingPageId: string;
slug: string;
content: Content;
brand: Brand;
store: Store;
productId: string;
};
export type ContentLandingPages = {
[key: string]: ContentLandingPage;
};
export type Store = {
storeId: string;
domain: string;
key: string;
};