@spiffcommerce/core 0.10.97 → 0.10.99
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 +2 -2
- package/dist/module.js +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1288,6 +1288,10 @@ export class IllustrationStepHandle extends StepHandle<_IllustrationStepData1> {
|
|
|
1288
1288
|
hasVaryingColors(): boolean | undefined;
|
|
1289
1289
|
isColorPickerEnabled(): boolean;
|
|
1290
1290
|
}
|
|
1291
|
+
export class ModelStepHandle extends StepHandle<_ModelStepData1> {
|
|
1292
|
+
constructor(manager: WorkflowManager, step: _Step1<_ModelStepData1>);
|
|
1293
|
+
selectVariant(variant: _VariantResource1): Promise<void>;
|
|
1294
|
+
}
|
|
1291
1295
|
export class PictureStepHandle extends StepHandle<_PictureStepData1> {
|
|
1292
1296
|
constructor(manager: WorkflowManager, step: _Step1<_PictureStepData1>);
|
|
1293
1297
|
/**
|