@spiffcommerce/core 0.10.233 → 0.10.234

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 CHANGED
@@ -567,6 +567,8 @@ export interface DesignCreationMessage {
567
567
  weight?: number;
568
568
  designProductId?: string;
569
569
  designProductVariantId?: string;
570
+ externalCartProductId?: string;
571
+ externalCartProductVariantId?: string;
570
572
  event: string;
571
573
  exportedData: ExportedData;
572
574
  lineItemImageUrl: string;
@@ -643,13 +645,25 @@ export interface Transaction {
643
645
  * to this transaction, null unless the createDesignProduct flag was set
644
646
  * and the design was finalized using createDesign operation.
645
647
  */
648
+ /**@deprecated use externalCartProductVariantId instead of this moving forward */
646
649
  externalDesignProductVariantId?: string;
647
650
  /**
648
651
  * The external product id representing the design product related
649
652
  * to this transaction, null unless the createDesignProduct flag was set
650
653
  * and the design was finalized using createDesign operation.
651
654
  */
655
+ /**@deprecated use externalCartProductId instead of this moving forward. */
652
656
  externalDesignProductId?: string;
657
+ /**
658
+ * The external product id representing the product related to the transaction.
659
+ * This value can hold any type of transaction such as design and standard products.
660
+ */
661
+ externalCartProductId?: string;
662
+ /**
663
+ * The external product variant id representing the product related to the transaction.
664
+ * This value can hold any type of transaction such as design and standard products.
665
+ */
666
+ externalCartProductVariantId?: string;
653
667
  priceModifierTotal?: number;
654
668
  /**
655
669
  * The amount of variations associated with this transaction.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "0.10.233",
3
+ "version": "0.10.234",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",