@spiffcommerce/core 0.10.226 → 0.10.228
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/main.js +3 -3
- package/dist/module.js +3 -3
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -867,9 +867,9 @@ export enum ProductCameraRig {
|
|
|
867
867
|
*/
|
|
868
868
|
export enum BulkPriceCalculationStrategy {
|
|
869
869
|
/** The total price should increase with the amount of variations. */
|
|
870
|
-
PerVariation =
|
|
870
|
+
PerVariation = "PerVariation",
|
|
871
871
|
/** The total price should remain at the base price of the product. */
|
|
872
|
-
BaseProduct =
|
|
872
|
+
BaseProduct = "BaseProduct"
|
|
873
873
|
}
|
|
874
874
|
interface BulkConfiguration {
|
|
875
875
|
id: string;
|