@spiffcommerce/core 0.10.224 → 0.10.225
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +7 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -861,8 +861,14 @@ export enum ProductCameraRig {
|
|
|
861
861
|
Orbit = 0,
|
|
862
862
|
Pan = 1
|
|
863
863
|
}
|
|
864
|
-
|
|
864
|
+
/**
|
|
865
|
+
* Defines the different strategies to use when calculating the total price
|
|
866
|
+
* when creating bulk designs.
|
|
867
|
+
*/
|
|
868
|
+
export enum BulkPriceCalculationStrategy {
|
|
869
|
+
/** The total price should increase with the amount of variations. */
|
|
865
870
|
PerVariation = 0,
|
|
871
|
+
/** The total price should remain at the base price of the product. */
|
|
866
872
|
BaseProduct = 1
|
|
867
873
|
}
|
|
868
874
|
interface BulkConfiguration {
|