@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/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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "12.2.0",
3
+ "version": "12.3.0",
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",