Contains the current and staged ProductData.

interface ProductCatalogData {
    current: ProductData;
    hasStagedChanges: boolean;
    published: boolean;
    staged: ProductData;
}

Properties

current: ProductData

Current (published) data of the Product.

hasStagedChanges: boolean

true if the staged data is different from the current data.

published: boolean

true if the Product is published.

staged: ProductData

Staged (unpublished) data of the Product.

Generated using TypeDoc