Type Alias: SetConfigurationCode()
SetConfigurationCode = (
configurationCode
) =>Promise
<void
>
Function
Function signature for directly setting the configuration code of a product.
This function allows for setting the complete configuration code at once, which updates all options simultaneously. This is useful for restoring saved configurations, applying presets, or implementing "popular configurations" functionality.
When the code is applied, all options defined in the code will be selected and any options not included will revert to their default values.
Parameters
configurationCode
string
The complete configuration code string
Returns
Promise
<void
>
Promise that resolves when the configuration is applied
Example
// Set a complete configuration for a chair product
setConfigurationCode("Width-a1&Fabric-b3&Color-c2&Legs-a4");