@spiffcommerce/core 17.0.0 → 17.0.1
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/index.d.ts +4 -0
- package/dist/index.js +204 -210
- package/dist/index.umd.cjs +43 -38
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -508,6 +508,8 @@ interface ExportedData {
|
|
|
508
508
|
};
|
|
509
509
|
}
|
|
510
510
|
interface DesignCreationMessage {
|
|
511
|
+
additionalExternalProductId?: string;
|
|
512
|
+
additionalExternalVariantId?: string;
|
|
511
513
|
baseCost?: number;
|
|
512
514
|
designProductId?: string;
|
|
513
515
|
designProductVariantId?: string;
|
|
@@ -640,6 +642,8 @@ interface IntegrationProduct {
|
|
|
640
642
|
* The integration that this product is associated with. For example a Shopify integration.
|
|
641
643
|
*/
|
|
642
644
|
integration?: Integration;
|
|
645
|
+
additionalExternalProductId?: string;
|
|
646
|
+
additionalExternalVariantId?: string;
|
|
643
647
|
}
|
|
644
648
|
interface Integration {
|
|
645
649
|
id: string;
|