@spiffcommerce/core 0.10.229 → 0.10.230
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 +10 -36
- package/dist/module.js +9 -35
- package/dist/types.d.ts +0 -17
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -567,8 +567,6 @@ export interface DesignCreationMessage {
|
|
|
567
567
|
weight?: number;
|
|
568
568
|
designProductId?: string;
|
|
569
569
|
designProductVariantId?: string;
|
|
570
|
-
externalCartProductId?: string;
|
|
571
|
-
externalCartProductVariantId?: string;
|
|
572
570
|
event: string;
|
|
573
571
|
exportedData: ExportedData;
|
|
574
572
|
lineItemImageUrl: string;
|
|
@@ -645,25 +643,13 @@ export interface Transaction {
|
|
|
645
643
|
* to this transaction, null unless the createDesignProduct flag was set
|
|
646
644
|
* and the design was finalized using createDesign operation.
|
|
647
645
|
*/
|
|
648
|
-
/**@deprecated use externalCartProductVariantId instead of this moving forward */
|
|
649
646
|
externalDesignProductVariantId?: string;
|
|
650
647
|
/**
|
|
651
648
|
* The external product id representing the design product related
|
|
652
649
|
* to this transaction, null unless the createDesignProduct flag was set
|
|
653
650
|
* and the design was finalized using createDesign operation.
|
|
654
651
|
*/
|
|
655
|
-
/**@deprecated use externalCartProductId instead of this moving forward. */
|
|
656
652
|
externalDesignProductId?: string;
|
|
657
|
-
/**
|
|
658
|
-
* The external product id representing the product related to the transaction.
|
|
659
|
-
* This value can hold any type of transaction such as design and standard products.
|
|
660
|
-
*/
|
|
661
|
-
externalCartProductId?: string;
|
|
662
|
-
/**
|
|
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
|
-
externalCartProductVariantId?: string;
|
|
667
653
|
priceModifierTotal?: number;
|
|
668
654
|
/**
|
|
669
655
|
* The amount of variations associated with this transaction.
|
|
@@ -1267,9 +1253,6 @@ export abstract class StepHandle<T extends _AnyStepData1> {
|
|
|
1267
1253
|
}
|
|
1268
1254
|
export class BulkStepHandle extends StepHandle<_BulkStepData1> {
|
|
1269
1255
|
constructor(manager: WorkflowManager, step: _Step1<_BulkStepData1>);
|
|
1270
|
-
/**
|
|
1271
|
-
* @param variant The variant to select. This is not supported in the bulk step.
|
|
1272
|
-
*/
|
|
1273
1256
|
selectVariant(): Promise<void>;
|
|
1274
1257
|
setDesignName(designName: string): Promise<void>;
|
|
1275
1258
|
addVariationRecord(): VariationRecord;
|