Interface: HistoryItem
Represents a single entry in the configuration history stack.
This interface captures a point-in-time snapshot of a configuration change, including information about what was changed, which product was affected, and contextual metadata for the change. History items are used to build the undo/redo functionality and to display the configuration history to users.
Properties
groupName?
optional
groupName:string
Name of the option group that was modified.
For option selection history entries, this identifies which logical group of options was being configured.
id
id:
number
Unique identifier for this history entry.
This sequential number identifies the position of this entry in the history stack.
isRoot?
optional
isRoot:boolean
Indicates whether this is the root/initial history entry.
When true, this represents the starting point of the configuration, typically the default state when the configurator was first loaded.
key?
optional
key:string
Internal key for identifying this history entry.
Used for more specific identification beyond the sequential ID, particularly in complex history scenarios.
option?
optional
option:Partial
<HistoryItemOption
|OptionSetOption
>
The specific option that was changed in this history entry.
Contains details about what option was selected when this history entry was created. May be undefined for history entries that don't represent option selections (like initial loading).
productId
productId:
string
ID of the product this history entry applies to.
Identifies which product's configuration was changed in this history entry. For standard products, this will remain constant throughout the history stack.
resize?
optional
resize:boolean
Indicates whether a resize action was performed.
Used specifically for history entries that represent visual adjustments rather than option selections.
variantCode
variantCode:
string
The variant code at the time of this history entry.
Captures the complete configuration state code for the product when this history entry was created.