@spiffcommerce/core 0.10.213 → 0.10.215
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 -7
- package/dist/module.js +3 -7
- package/dist/types.d.ts +0 -14
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -665,8 +665,6 @@ export interface DesignCreationMessage {
|
|
|
665
665
|
weight?: number;
|
|
666
666
|
designProductId?: string;
|
|
667
667
|
designProductVariantId?: string;
|
|
668
|
-
externalCartProductId?: string;
|
|
669
|
-
externalCartProductVariantId?: string;
|
|
670
668
|
event: string;
|
|
671
669
|
exportedData: ExportedData;
|
|
672
670
|
lineItemImageUrl: string;
|
|
@@ -743,25 +741,13 @@ export interface Transaction {
|
|
|
743
741
|
* to this transaction, null unless the createDesignProduct flag was set
|
|
744
742
|
* and the design was finalized using createDesign operation.
|
|
745
743
|
*/
|
|
746
|
-
/**@deprecated use externalCartProductVariantId instead of this moving forward */
|
|
747
744
|
externalDesignProductVariantId?: string;
|
|
748
745
|
/**
|
|
749
746
|
* The external product id representing the design product related
|
|
750
747
|
* to this transaction, null unless the createDesignProduct flag was set
|
|
751
748
|
* and the design was finalized using createDesign operation.
|
|
752
749
|
*/
|
|
753
|
-
/**@deprecated use externalCartProductId instead of this moving forward. */
|
|
754
750
|
externalDesignProductId?: string;
|
|
755
|
-
/**
|
|
756
|
-
* The external product id representing the product related to the transaction.
|
|
757
|
-
* This value can hold any type of transaction such as design and standard products.
|
|
758
|
-
*/
|
|
759
|
-
externalCartProductId?: string;
|
|
760
|
-
/**
|
|
761
|
-
* The external product variant id representing the product related to the transaction.
|
|
762
|
-
* This value can hold any type of transaction such as design and standard products.
|
|
763
|
-
*/
|
|
764
|
-
externalCartProductVariantId?: string;
|
|
765
751
|
priceModifierTotal?: number;
|
|
766
752
|
/**
|
|
767
753
|
* The amount of variations associated with this transaction.
|