@spiffcommerce/core 0.10.64 → 0.10.66
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 +5 -2
- package/dist/module.js +5 -2
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -565,6 +565,7 @@ export interface DesignCreationMessage {
|
|
|
565
565
|
selectedVariants?: SelectedVariants;
|
|
566
566
|
sku?: string;
|
|
567
567
|
workflowViewerLink: string;
|
|
568
|
+
workflowViewerReadOnlyLink: string;
|
|
568
569
|
}
|
|
569
570
|
/**
|
|
570
571
|
* Represents a transaction.
|
|
@@ -633,6 +634,7 @@ export interface Transaction {
|
|
|
633
634
|
* URL to open the transaction in the workflow viewer.
|
|
634
635
|
*/
|
|
635
636
|
workflowViewerLink?: string;
|
|
637
|
+
workflowViewerReadOnlyLink?: string;
|
|
636
638
|
bulkSourceUrl?: string;
|
|
637
639
|
bulkEmailAddress?: string;
|
|
638
640
|
lastSyncedAt?: string;
|