@spiffcommerce/core 21.23.2 → 21.24.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/index.d.ts +12 -2
- package/dist/index.js +364 -344
- package/dist/index.umd.cjs +83 -83
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -944,7 +944,7 @@ declare class WorkflowExperienceImpl implements WorkflowExperience {
|
|
|
944
944
|
private getMatchingExperiencesFromBundle;
|
|
945
945
|
private updatePriceBreak;
|
|
946
946
|
copySelectionsViaGlobalConfiguration(bundle: Bundle$1, experience: WorkflowExperience, filter?: StepHandle<AnyStepData>[]): Promise<void>;
|
|
947
|
-
getStepByName(name: string): TextStepHandle | FrameStepHandle | ShapeStepHandle | InformationStepHandle | IllustrationStepHandle | MaterialStepHandle | ModelStepHandle | PictureStepHandle | QuestionStepHandle | undefined;
|
|
947
|
+
getStepByName(name: string): DigitalContentStepHandle | ModuleStepHandle | TextStepHandle | FrameStepHandle | ShapeStepHandle | InformationStepHandle | IllustrationStepHandle | MaterialStepHandle | ModelStepHandle | PictureStepHandle | QuestionStepHandle | undefined;
|
|
948
948
|
getStepsByType(type: StepType): StepHandle<AnyStepData>[];
|
|
949
949
|
getStepsByScene(scene: Scene): StepHandle<AnyStepData>[];
|
|
950
950
|
attachCustomerDetails(details: {
|
|
@@ -3410,4 +3410,14 @@ declare function matchHexToPms(hex: string, maxDistance?: number): string[];
|
|
|
3410
3410
|
*/
|
|
3411
3411
|
declare function browserColorToHex(color: string): string;
|
|
3412
3412
|
|
|
3413
|
-
|
|
3413
|
+
declare class DigitalContentStepHandle extends StepHandle<DigitalContentStepData> {
|
|
3414
|
+
constructor(manager: WorkflowManager, step: Step<DigitalContentStepData>);
|
|
3415
|
+
selectVariant(): Promise<void>;
|
|
3416
|
+
}
|
|
3417
|
+
|
|
3418
|
+
declare class ModuleStepHandle extends StepHandle<ModuleStepData> {
|
|
3419
|
+
constructor(manager: WorkflowManager, step: Step<ModuleStepData>);
|
|
3420
|
+
selectVariant(): Promise<void>;
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3423
|
+
export { AddonHandle, ArrayInput, AssetNotFoundError, Bundle$1 as Bundle, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, CollectionProduct, ColorOption, ColorOptionGlobalPropertyHandle, ConditionalGlobalPropertiesChangedEventData, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, Customer, CustomerDetailsInput, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, DigitalContentStepHandle, EditedSteps, FileUploadGlobalPropertyHandle, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FrameService, FrameStep, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, GetWorkflowOptions, GlobalPropertyHandle, IllustrationStepHandle, InformationMessageType, InformationResult, InformationStepHandle, IntegrationProduct, IntegrationType, LayoutNotFoundError, MandatorySteps, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepHandle, ModuleStepHandle, NodeType, ObjectInput, ObjectInputType, OptionGlobalPropertyHandle, OptionNotFoundError, ParseError, PictureStepHandle, Product, ProductCameraRig, ProductCollection, ProductWorkflow$1 as ProductWorkflow, promiseCache as PromiseCache, PromiseQueue, QuestionStepHandle, QueueablePromise, RegionElement, RenderableScene, ResourceNotFoundError, SavedDesign, SelectionStorage, ShapeStepHandle, SilentIllustrationStepData, SpiffCommerceClient, Stakeholder, StakeholderType, StateMutationFunc, StepElements, StepHandle, TextGlobalPropertyHandle, TextInput, TextStepHandle, TextStepStorage, ToastCallback, Transaction, TransactionShareAction, TransactionShareActionType, Transform, TransformCollection$1 as TransformCollection, UnhandledBehaviorError, Variant, Vector3, WorkflowExperience, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, browserColorToHex, createDesign, designService, digitalContentStepService, frameStepService, generateCommands, generateStateFromDesignInputSteps, getBoundedOffsets, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, matchHexToPms, materialStepService, modelStepService, moduleStepService, optionService, persistenceService, pictureStepService, pmsToRgb, questionStepService, rgbToPms, setBearerAuthenticationToken, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, textStepService, toast };
|