@spiffcommerce/core 0.10.231 → 0.10.232
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 +10 -7
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -660,9 +660,9 @@ export interface Transaction {
|
|
|
660
660
|
*/
|
|
661
661
|
externalCartProductId?: string;
|
|
662
662
|
/**
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
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
666
|
externalCartProductVariantId?: string;
|
|
667
667
|
priceModifierTotal?: number;
|
|
668
668
|
/**
|
|
@@ -712,15 +712,18 @@ interface ProductWorkflow {
|
|
|
712
712
|
imageUrl: string;
|
|
713
713
|
workflowName: string;
|
|
714
714
|
}
|
|
715
|
+
interface Partner {
|
|
716
|
+
id?: string;
|
|
717
|
+
name?: string;
|
|
718
|
+
currencyCode?: string;
|
|
719
|
+
customerDetailsPromptMarkdown?: string;
|
|
720
|
+
}
|
|
715
721
|
interface Product {
|
|
716
722
|
/**
|
|
717
723
|
* ID of the partner owner.
|
|
718
724
|
*/
|
|
719
725
|
partnerId?: string;
|
|
720
|
-
partner?:
|
|
721
|
-
currencyCode?: string;
|
|
722
|
-
customerDetailsPromptMarkdown?: string;
|
|
723
|
-
};
|
|
726
|
+
partner?: Partner;
|
|
724
727
|
/**
|
|
725
728
|
* Whether a line item for this product is delivered as soon as the order is received.
|
|
726
729
|
*/
|