@spiffcommerce/core 0.10.231 → 0.10.233

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,8 +567,6 @@ export interface DesignCreationMessage {
567
567
  weight?: number;
568
568
  designProductId?: string;
569
569
  designProductVariantId?: string;
570
- externalCartProductId?: string;
571
- externalCartProductVariantId?: string;
572
570
  event: string;
573
571
  exportedData: ExportedData;
574
572
  lineItemImageUrl: string;
@@ -645,25 +643,13 @@ export interface Transaction {
645
643
  * to this transaction, null unless the createDesignProduct flag was set
646
644
  * and the design was finalized using createDesign operation.
647
645
  */
648
- /**@deprecated use externalCartProductVariantId instead of this moving forward */
649
646
  externalDesignProductVariantId?: string;
650
647
  /**
651
648
  * The external product id representing the design product related
652
649
  * to this transaction, null unless the createDesignProduct flag was set
653
650
  * and the design was finalized using createDesign operation.
654
651
  */
655
- /**@deprecated use externalCartProductId instead of this moving forward. */
656
652
  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;
667
653
  priceModifierTotal?: number;
668
654
  /**
669
655
  * The amount of variations associated with this transaction.
@@ -712,15 +698,18 @@ interface ProductWorkflow {
712
698
  imageUrl: string;
713
699
  workflowName: string;
714
700
  }
701
+ interface Partner {
702
+ id?: string;
703
+ name?: string;
704
+ currencyCode?: string;
705
+ customerDetailsPromptMarkdown?: string;
706
+ }
715
707
  interface Product {
716
708
  /**
717
709
  * ID of the partner owner.
718
710
  */
719
711
  partnerId?: string;
720
- partner?: {
721
- currencyCode?: string;
722
- customerDetailsPromptMarkdown?: string;
723
- };
712
+ partner?: Partner;
724
713
  /**
725
714
  * Whether a line item for this product is delivered as soon as the order is received.
726
715
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "0.10.231",
3
+ "version": "0.10.233",
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",