@spiffcommerce/core 12.2.0 → 12.3.0
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 +4 -1
- package/dist/module.js +9 -6
- package/dist/types.d.ts +6 -5
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -583,24 +583,25 @@ interface ExportedData {
|
|
|
583
583
|
}
|
|
584
584
|
export interface DesignCreationMessage {
|
|
585
585
|
baseCost?: number;
|
|
586
|
-
weight?: number;
|
|
587
586
|
designProductId?: string;
|
|
588
587
|
designProductVariantId?: string;
|
|
589
|
-
externalCartProductId?: string;
|
|
590
|
-
externalCartProductVariantId?: string;
|
|
591
588
|
event: string;
|
|
592
589
|
exportedData: ExportedData;
|
|
590
|
+
externalCartProductId?: string;
|
|
591
|
+
externalCartProductVariantId?: string;
|
|
593
592
|
lineItemImageUrl: string;
|
|
594
|
-
transactionId: string;
|
|
595
593
|
metadata?: {
|
|
596
594
|
[stepName: string]: string;
|
|
597
595
|
};
|
|
598
596
|
optionsCost: number;
|
|
597
|
+
processExecutionId?: string;
|
|
599
598
|
selectedVariants?: SelectedVariants;
|
|
600
599
|
sku?: string;
|
|
600
|
+
transactionId: string;
|
|
601
|
+
transactionOwnerId?: string;
|
|
602
|
+
weight?: number;
|
|
601
603
|
workflowViewerLink: string;
|
|
602
604
|
workflowViewerReadOnlyLink: string;
|
|
603
|
-
transactionOwnerId?: string;
|
|
604
605
|
}
|
|
605
606
|
/**
|
|
606
607
|
* Represents a transaction.
|