@spiffcommerce/core 26.0.0 → 26.1.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/CHANGELOG.md CHANGED
@@ -5,202 +5,232 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ #### Types of changes
9
+
10
+ - `Added` for new features.
11
+ - `Changed` for changes in existing functionality.
12
+ - `Deprecated` for soon-to-be removed features.
13
+ - `Removed` for now removed features.
14
+ - `Fixed` for any bug fixes.
15
+ - `Security` in case of vulnerabilities.
16
+
17
+ ## [26.1.0] - 30-10-2024
18
+
19
+ ### Changed
20
+
21
+ - Several internal functions have been changed, been merged or removed. This should not affect any public API.
22
+ - `rehydrateSerializedLayout` is no longer exported from the package. No functionality is intended to take its place. The function was always intended for internal use only.
23
+
24
+ ## [26.0.0] - 30-10-2024
25
+
26
+ ### Changed
27
+
28
+ - `getWorkflowExperience` has removed 3 deprecated parameters in favor of the options object. The options object is no longer optional.
29
+ - `configureUrls` has been removed in favor of the `configure` function. Please use `configure` moving forwards.
30
+ - The client constructor should know be called with an application in most use cases. We'll continue locking down functionality to require this in the future.
31
+
8
32
  ## [22.0.0] - 10-07-2024
9
33
 
10
34
  ### Changed
11
35
 
12
- - `matchHexToPms` now returns a list of objects of `{ pms: string; hex: string; }` rather than strings.
36
+ - `matchHexToPms` now returns a list of objects of `{ pms: string; hex: string; }` rather than strings.
13
37
 
14
38
  ### Added
15
39
 
16
- - `findPmsColors(input: string, limit?: number): PmsSearchResult[]`: A function to find PMS colors by name using fuzzy search.
40
+ - `findPmsColors(input: string, limit?: number): PmsSearchResult[]`: A function to find PMS colors by name using fuzzy search.
17
41
 
18
42
  ## [21.8.1] - 27-03-2024
19
43
 
20
44
  ### Fixed
21
45
 
22
- - `WorkflowExperience.getTotalPriceSubunits` no longer always returns the discounted price.
46
+ - `WorkflowExperience.getTotalPriceSubunits` no longer always returns the discounted price.
23
47
 
24
48
  ## [21.8.0] - 26-03-2024
25
49
 
26
50
  ### Added
27
51
 
28
- - `Bundle.removeStakeholder(email: string): Promise<void>`: Removes a single stakeholder from the Bundle, via email address.
52
+ - `Bundle.removeStakeholder(email: string): Promise<void>`: Removes a single stakeholder from the Bundle, via email address.
29
53
 
30
54
  ## [21.7.1] - 25-03-2024
31
55
 
32
56
  ### Fixed
33
57
 
34
- - `Bundle.getAllStakeholders()` now returns correct results on subsequent calls.
58
+ - `Bundle.getAllStakeholders()` now returns correct results on subsequent calls.
35
59
 
36
60
  ## [21.7.0] - 25-03-2024
37
61
 
38
62
  ### Added
39
63
 
40
- - `CollectionProduct.getAllWorkflows(): ProductWorkflow[]`: Returns all workflows associated with this product.
64
+ - `CollectionProduct.getAllWorkflows(): ProductWorkflow[]`: Returns all workflows associated with this product.
41
65
 
42
66
  ## [21.6.0] - 22-03-2024
43
67
 
44
68
  ### Added
45
69
 
46
- - `WorkflowExperienceEventType.PriceBreakChanged`: The relevant event fires whenever the price break to be used in a WorkflowExperience changes. This even will fire when the quantity changes, and will also fire when in a Bundle when other WorkflowExperiences using the same Product have quantity changes (or are added & removed from the Bundle).
70
+ - `WorkflowExperienceEventType.PriceBreakChanged`: The relevant event fires whenever the price break to be used in a WorkflowExperience changes. This even will fire when the quantity changes, and will also fire when in a Bundle when other WorkflowExperiences using the same Product have quantity changes (or are added & removed from the Bundle).
47
71
 
48
72
  ## [21.5.0] - 22-03-2024
49
73
 
50
74
  ### Changed
51
75
 
52
- - `StepHandle`: The override global property state setting now has a different value for each Global Property Aspect type. The get/set functions have been renamed and have an extra parameter to determine the Aspect Type.
53
- - `getOverrideGlobalPreviewConfiguration` -> `getOverrideGlobalPropertyConfiguration(type: AspectType): boolean`.
54
- - `setOverrideGlobalPreviewConfiguration` -> `setOverrideGlobalPropertyConfiguration(type: AspectType, value: boolean): void`
55
-
76
+ - `StepHandle`: The override global property state setting now has a different value for each Global Property Aspect type. The get/set functions have been renamed and have an extra parameter to determine the Aspect Type.
77
+ - `getOverrideGlobalPreviewConfiguration` -> `getOverrideGlobalPropertyConfiguration(type: AspectType): boolean`.
78
+ - `setOverrideGlobalPreviewConfiguration` -> `setOverrideGlobalPropertyConfiguration(type: AspectType, value: boolean): void`
56
79
 
57
80
  ## [21.4.1] - 21-03-2024
58
81
 
59
82
  ### Changed
60
83
 
61
- - `readTransactionsQuery` now fetches `printFileUrl1` to `printFileUrl5` for each transaction.
84
+ - `readTransactionsQuery` now fetches `printFileUrl1` to `printFileUrl5` for each transaction.
62
85
 
63
86
  ## [21.4.0] - 20-03-2024
64
87
 
65
88
  ### Added
66
89
 
67
- - `StepHandle`:
68
- - `getOverrideGlobalPreviewConfiguration(): boolean`: Returns a boolean that indicates whether this step should override (ignore) Global Property state.
69
- - `setOverrideGlobalPreviewConfiguration(value: boolean): void`: Modifies whether this step should override (ignore) Global Property state.
70
- - `getGlobalPropertyAspects(configurationId: string): string[]`: Returns all Aspect names in the supplied Global Property Configuration that this step is configured to use.
71
- - `Bundle.getGlobalPropertyConfiguration(): GlobalPropertyConfiguration | undefined`: Returns the Global Property Configuration object associated with the Bundle, if it exists.
90
+ - `StepHandle`:
91
+ - `getOverrideGlobalPreviewConfiguration(): boolean`: Returns a boolean that indicates whether this step should override (ignore) Global Property state.
92
+ - `setOverrideGlobalPreviewConfiguration(value: boolean): void`: Modifies whether this step should override (ignore) Global Property state.
93
+ - `getGlobalPropertyAspects(configurationId: string): string[]`: Returns all Aspect names in the supplied Global Property Configuration that this step is configured to use.
94
+ - `Bundle.getGlobalPropertyConfiguration(): GlobalPropertyConfiguration | undefined`: Returns the Global Property Configuration object associated with the Bundle, if it exists.
72
95
 
73
96
  ## [21.3.1] - 20-03-2024
74
97
 
75
98
  ### Fixed
76
99
 
77
- - When a `Bundle` is loaded by ID, the `WorkflowExperience` objects it loads will not correctly be linked internally. This resolves issues regarding price breaks not calculating correctly on bundle reload when multiple transactions share a product.
100
+ - When a `Bundle` is loaded by ID, the `WorkflowExperience` objects it loads will not correctly be linked internally. This resolves issues regarding price breaks not calculating correctly on bundle reload when multiple transactions share a product.
78
101
 
79
102
  ## [21.3.0] - 20-03-2024
80
103
 
81
104
  ### Added
82
105
 
83
- - `WorkflowExperience.priceBreakToBeApplied()` returns the percentage that will be used in `WorkflowExperience.getTotalPriceSubunits()` and related methods.
106
+ - `WorkflowExperience.priceBreakToBeApplied()` returns the percentage that will be used in `WorkflowExperience.getTotalPriceSubunits()` and related methods.
84
107
 
85
108
  ### Changed
86
109
 
87
- - `WorkflowExperience.getTotalPriceSubunits()` and related methods now consider price breaks in their calculations, but also now have a `disablePriceBreaks` argument.
110
+ - `WorkflowExperience.getTotalPriceSubunits()` and related methods now consider price breaks in their calculations, but also now have a `disablePriceBreaks` argument.
88
111
 
89
112
  ## [21.2.1] - 15-03-2024
90
113
 
91
114
  ### Fixed
92
115
 
93
- - Fixed Global Property Handles not updating values when WorkflowExperiences in the Bundle share the same Workflow.
116
+ - Fixed Global Property Handles not updating values when WorkflowExperiences in the Bundle share the same Workflow.
94
117
 
95
118
  ## [21.2.0] - 15-03-2024
96
119
 
97
120
  ### Added
98
121
 
99
- - `FileUploadGlobalPropertyHandle`:
100
- - `hasImage(): boolean`: Returns a boolean value indicating if the associated state has an image.
101
- - `getImage(): Promise<Asset | undefined>`: Retrieves the current image from the server.
122
+ - `FileUploadGlobalPropertyHandle`:
123
+ - `hasImage(): boolean`: Returns a boolean value indicating if the associated state has an image.
124
+ - `getImage(): Promise<Asset | undefined>`: Retrieves the current image from the server.
102
125
 
103
126
  ## [21.1.1] - 15-03-2024
104
127
 
105
128
  ### Fixed
106
129
 
107
- - Exported missing `AspectType` for global property handles.
130
+ - Exported missing `AspectType` for global property handles.
108
131
 
109
132
  ## [21.1.0] - 14-03-2024
110
133
 
111
134
  ### Added
112
135
 
113
- - `Bundle.hasGlobalProperties(): boolean`: Returns true when the bundle is linked to a Global Property Configuration.
136
+ - `Bundle.hasGlobalProperties(): boolean`: Returns true when the bundle is linked to a Global Property Configuration.
114
137
 
115
138
  ## [21.0.1] - 13-03-2024
116
139
 
117
140
  ### Fixed
118
141
 
119
- - Package now supplies this `CHANGELOG.md` in published releases.
142
+ - Package now supplies this `CHANGELOG.md` in published releases.
120
143
 
121
144
  ## [21.0.0] - 13-03-2024
122
145
 
123
146
  ### Added
124
147
 
125
- - `DesignCreationMessage` now has `quantity: number | undefined`.
148
+ - `DesignCreationMessage` now has `quantity: number | undefined`.
126
149
 
127
150
  ### Changed
128
151
 
129
- - `Bundle.finish()` no longer returns an array of `DesignCreationMessage` objects, but instead returns a `BundleDesignCreationMessage` object which wraps the array of `DesignCreationMessage` entries.
152
+ - `Bundle.finish()` no longer returns an array of `DesignCreationMessage` objects, but instead returns a `BundleDesignCreationMessage` object which wraps the array of `DesignCreationMessage` entries.
130
153
 
131
154
  ## [20.5.1] - 12-03-2024
132
155
 
133
156
  ### Fixed
134
157
 
135
- - `WorkflowExperience.getSelectionPriceSubunits()` (and consequently `getTotalPriceSubunits()`) can no longer return `NaN`.
158
+ - `WorkflowExperience.getSelectionPriceSubunits()` (and consequently `getTotalPriceSubunits()`) can no longer return `NaN`.
136
159
 
137
160
  ## [20.5.0] - 12-03-2024
138
161
 
139
162
  ### Added
140
163
 
141
- - `WorkflowManager.injectIntoPreviewService()` now has a second argument `refocusCamera`, a boolean which allows you to disable the automatic refocusing of the camera when the model is loaded. This requires `@spiffcommerce/preview@^5.7.0`.
164
+ - `WorkflowManager.injectIntoPreviewService()` now has a second argument `refocusCamera`, a boolean which allows you to disable the automatic refocusing of the camera when the model is loaded. This requires `@spiffcommerce/preview@^5.7.0`.
142
165
 
143
166
  ## [20.4.5] - 08-03-2024
144
167
 
145
168
  ### Added
146
169
 
147
- - `RenderableScene` objects will now contain a `workflowScene: WorkflowScene` field. This is only provided for backwards compatibility and is considered deprecated functionality.
170
+ - `RenderableScene` objects will now contain a `workflowScene: WorkflowScene` field. This is only provided for backwards compatibility and is considered deprecated functionality.
148
171
 
149
172
  ## [20.4.4] - 08-03-2024
150
173
 
151
174
  ### Fixed
152
175
 
153
- - Updating quantity via `WorkflowExperience.setQuantity()` will now correctly update on the server.
176
+ - Updating quantity via `WorkflowExperience.setQuantity()` will now correctly update on the server.
154
177
 
155
178
  ## [20.4.3] - 08-03-2024
156
179
 
157
180
  ### Changed
158
181
 
159
- - `WorkflowExperience.setQuantity()` now returns a promise that resolves once the quantity has been updated on the server.
182
+ - `WorkflowExperience.setQuantity()` now returns a promise that resolves once the quantity has been updated on the server.
160
183
 
161
184
  ## [20.4.0] - 08-03-2024
162
185
 
163
186
  ### Added
164
187
 
165
- - `Transaction` entities now have `quantity: number | undefined`.
166
- - New functions on `WorkflowExperience` for managing quantity:
167
- - `getQuantity()`: The amount that was, or will be, ordered of the underlying `Transaction`. This will default to `1` if the value is undefined. If you want to read the raw value, use `getWorkflowManager().getTransaction().quantity`.
168
- - `setQuantity(<number>)`: Updates the quantity value on the underlying `Transaction` entity. Must be >= 1.
169
- - New events functionality on `WorkflowExperience`. Currently the only event is `QuantityChanged`.
170
- - `addEventListener(<type>, <callback>)`: Registers a callback function to be called when the specified event is raised. The associated `WorkflowExperience` is passed as a parameter to the callback function.
171
- - `removeEventListener(<type>, <callback>)`: Removes a previously registered callback.
188
+ - `Transaction` entities now have `quantity: number | undefined`.
189
+ - New functions on `WorkflowExperience` for managing quantity:
190
+ - `getQuantity()`: The amount that was, or will be, ordered of the underlying `Transaction`. This will default to `1` if the value is undefined. If you want to read the raw value, use `getWorkflowManager().getTransaction().quantity`.
191
+ - `setQuantity(<number>)`: Updates the quantity value on the underlying `Transaction` entity. Must be >= 1.
192
+ - New events functionality on `WorkflowExperience`. Currently the only event is `QuantityChanged`.
193
+ - `addEventListener(<type>, <callback>)`: Registers a callback function to be called when the specified event is raised. The associated `WorkflowExperience` is passed as a parameter to the callback function.
194
+ - `removeEventListener(<type>, <callback>)`: Removes a previously registered callback.
172
195
 
173
196
  ## [20.3.0] - 07-03-2024
174
197
 
175
198
  ### Added
176
199
 
177
- - `CollectionProduct.getCurrentIntegration()`: returns the `IntegrationProductResource` associated with the product that is linked to the current Integration (resolved via the application key).
200
+ - `CollectionProduct.getCurrentIntegration()`: returns the `IntegrationProductResource` associated with the product that is linked to the current Integration (resolved via the application key).
178
201
 
179
202
  ## [20.2.2] - 05-03-2024
180
203
 
181
204
  ### Changed
182
205
 
183
- - `WorkflowExperience.getStepById(<string>)` now internally caches the `StepHandle` objects that it creates. This resolves an issue with functional rendering systems that re-render when the object reference changes, where they would re-renderer whenever this function was called even if the object was identical.
206
+ - `WorkflowExperience.getStepById(<string>)` now internally caches the `StepHandle` objects that it creates. This resolves an issue with functional rendering systems that re-render when the object reference changes, where they would re-renderer whenever this function was called even if the object was identical.
184
207
 
185
208
  ## [20.2.1] - 29-02-2024
186
209
 
187
210
  ### Changed
188
211
 
189
- - The union type `GetWorkflowOptions` has some of its entries wrapped in another union. The types that will create a brand new `Transaction` are now nested under `GetNewWorkflowOptions`:
212
+ - The union type `GetWorkflowOptions` has some of its entries wrapped in another union. The types that will create a brand new `Transaction` are now nested under `GetNewWorkflowOptions`:
213
+
190
214
  ```ts
191
215
  // Before
192
- export type GetWorkflowOptions = GetWorkflowFromTransactionOptions | GetWorkflowFromIntegrationProductOptions | GetWorkflowFromExternalProductOptions;
216
+ export type GetWorkflowOptions =
217
+ | GetWorkflowFromTransactionOptions
218
+ | GetWorkflowFromIntegrationProductOptions
219
+ | GetWorkflowFromExternalProductOptions;
193
220
 
194
221
  // After
195
- export type GetNewWorkflowOptions = GetWorkflowFromIntegrationProductOptions | GetWorkflowFromExternalProductOptions;
222
+ export type GetNewWorkflowOptions =
223
+ | GetWorkflowFromIntegrationProductOptions
224
+ | GetWorkflowFromExternalProductOptions;
196
225
 
197
226
  export type GetWorkflowOptions = GetWorkflowFromTransactionOptions | GetNewWorkflowOptions;
198
227
  ```
228
+
199
229
  ## [20.2.0] - 29-02-2024
200
230
 
201
231
  ### Added
202
232
 
203
- - `SpiffCommerceClient.getIntegrationProduct(<options>)`: Fetches an `IntegrationProduct` object. Essentially a wrapper for the functions `getIntegrationProductById` and `getIntegrationProductFromExternalIds`. The options object type is as follows:
233
+ - `SpiffCommerceClient.getIntegrationProduct(<options>)`: Fetches an `IntegrationProduct` object. Essentially a wrapper for the functions `getIntegrationProductById` and `getIntegrationProductFromExternalIds`. The options object type is as follows:
204
234
  ```ts
205
235
  {
206
236
  type: "integration";
@@ -216,27 +246,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
216
246
 
217
247
  ### Added
218
248
 
219
- - `IntegrationProduct.getAllWorkflows()`: Returns an array of `ProductWorkflow`, ordered by their internal `index` value (matches the order seen on the SpiffCommerce Hub).
249
+ - `IntegrationProduct.getAllWorkflows()`: Returns an array of `ProductWorkflow`, ordered by their internal `index` value (matches the order seen on the SpiffCommerce Hub).
220
250
 
221
251
  ## [20.0.1] - 23-02-2024
222
252
 
223
253
  ### Changed
224
254
 
225
- - `StepHandle.executeAnimations()` now logs a warning to the console when the associated `WorkflowManager` is not associated with a `ThreeDPreviewService`.
255
+ - `StepHandle.executeAnimations()` now logs a warning to the console when the associated `WorkflowManager` is not associated with a `ThreeDPreviewService`.
226
256
 
227
257
  ## [20.0.0] - 15-02-2024
228
258
 
229
259
  ### Added
230
260
 
231
- - Additional configuration options for GraphQL on bundles.
232
- - A separate fetchProducts function on the ProductCollection interface.
261
+ - Additional configuration options for GraphQL on bundles.
262
+ - A separate fetchProducts function on the ProductCollection interface.
233
263
 
234
264
  ### Changed
235
265
 
236
- - Removed async on getProducts call.
266
+ - Removed async on getProducts call.
237
267
 
238
268
  ### Removed
239
269
 
240
- - Unused normalize.css file.
241
- - Identical links assigned in each translation file.
242
- - Duplicate index file for the english version.
270
+ - Unused normalize.css file.
271
+ - Identical links assigned in each translation file.
272
+ - Duplicate index file for the english version.
package/dist/index.d.ts CHANGED
@@ -312,7 +312,6 @@ interface SVGLayoutProps {
312
312
  */
313
313
  declare abstract class CanvasCommand {
314
314
  abstract apply(state: LayoutsState): LayoutsState;
315
- varying?: boolean;
316
315
  protected oldState?: LayoutsState;
317
316
  undo(): LayoutsState;
318
317
  overrideOldState(state: LayoutsState): void;
@@ -556,7 +555,6 @@ declare class SendBackwardsCommand extends CanvasCommand {
556
555
 
557
556
  interface CommandState {
558
557
  transaction: LayoutsState;
559
- variation?: Partial<LayoutsState>;
560
558
  }
561
559
  interface LayoutComponentConfiguration {
562
560
  renderingConfiguration: RenderingConfiguration;
@@ -5304,7 +5302,6 @@ declare const dataUrlFromExternalUrl: (url: string) => Promise<string>;
5304
5302
  declare const svgToDataUrl: (svgString: string) => string;
5305
5303
 
5306
5304
  declare const findElement: <T extends LayoutElement>(id: string, layouts: LayoutState[]) => T;
5307
- declare const rehydrateSerializedLayout: (transactionState: LayoutsState, variationState?: LayoutsState) => Promise<void>;
5308
5305
 
5309
5306
  /**
5310
5307
  * A map of src to pattern image data.
@@ -5454,4 +5451,4 @@ declare const determineCorrectFontSizeAndLines: (curFontSize: number, fontData:
5454
5451
  */
5455
5452
  declare const loadFont: (url: string) => Promise<Font>;
5456
5453
 
5457
- export { AddonHandle, Animatable, AnyStepData, ArrayInput, AspectType, Asset, AssetNotFoundError, AssetObjectVersion, AssetType, BringForwardCommand, BringToBackCommand, BringToFrontCommand, Bundle$1 as Bundle, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, BundleStakeholder, CanvasCommand, CollectionProduct, ColorDefinition, ColorOption, ColorOptionGlobalPropertyHandle, ColorProfileProps, CommandContext, CommandState, Condition, ConditionalGlobalPropertiesChangedEventData, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, CreateElementCommand, CreateLayoutCommand, Customer, CustomerDetailsInput, DeleteElementCommand, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, DigitalContentStepData, DigitalContentStepHandle, EditedSteps, FileUploadGlobalPropertyHandle, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FontAlignmentCommand, FontColorCommand, FontSizeCommand, FontSourceCommand, FrameElement, FrameService, FrameStep, FrameStepData, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, GetWorkflowOptions, GlobalPropertyConfiguration, GlobalPropertyHandle, GroupCommand, ILayout, IllustrationElement, IllustrationStepData, IllustrationStepHandle, ImageElement, InformationMessageType, InformationResult, InformationStepData, InformationStepHandle, Integration, IntegrationOptionResource, IntegrationProduct, IntegrationType, LayoutData, LayoutElement, LayoutElementFactory, LayoutElementType, LayoutNotFoundError, LayoutRenderingPurpose, LayoutState, LayoutsState, MandatorySteps, MaterialEffectMode, MaterialStepData, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepData, ModelStepHandle, ModuleStepData, ModuleStepHandle, MoveCommand, NodeType, ObjectInput, ObjectInputType, OptionGlobalPropertyHandle, OptionNotFoundError, OptionResource, PapyrusComponent, ParseError, PictureStepData, PictureStepHandle, Placeable, PmsSearchResult, Point, Product, ProductCameraRig, ProductCollection, ProductWorkflow$1 as ProductWorkflow, promiseCache as PromiseCache, PromiseQueue, QuestionStepData, QuestionStepHandle, QueueablePromise, Region, RegionElement, RenderableScene, ResizeCommand, ResourceNotFoundError, RotateCommand, SavedDesign, ScaleAxis, SelectionStorage, SendBackwardsCommand, ShapeStepData, ShapeStepHandle, ShareAction, ShareActionType, SilentIllustrationStepData, SpiffCommerceClient, Stakeholder, StakeholderType, StateMutationFunc, Step, StepAspect, StepAspectType, StepElements, StepGroup, StepHandle, StepStorage, StepType, TextAlgorithm, TextChangeCommand, TextChangeResult, TextGlobalPropertyHandle, TextInput, TextStepData, TextStepHandle, TextStepStorage, TextboxElement, Theme, ToastCallback, Transaction, Transform, TransformCollection$1 as TransformCollection, UnhandledBehaviorError, UnitOfMeasurement, UpdateImageSourceCommand, Variant, VariantResource, Vector3, Workflow, WorkflowExperience, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowPanel, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, browserColorToHex, cmPerPixel, createDesign, currentDirection, dataUrlFromExternalUrl, designService, determineCorrectFontSizeAndLines, digitalContentStepService, fetchAsString, findAngle, findElement, findPmsColors, frameDataCache, frameStepService, generate, generateCommands, generateSVGWithUnknownColors, generateStateFromDesignInputSteps, getAttributesFromArrayBuffer, getAxisAlignedBoundingBox, getBoundedOffsets, getElementVertices, getFrameData, getNEPoint, getNWPoint, getPointOfRotation, getSEPoint, getSvgElement, getTrueCoordinates, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, isCloseToValue, loadFont, matchHexToPms, materialStepService, mmPerPixel, modelStepService, moduleStepService, optionService, patternImageDataCache, persistenceService, pictureStepService, pmsToRgb, questionStepService, registerFetchImplementation, registerWindowImplementation, rehydrateSerializedLayout, rgbToPms, rotateAroundPoint, sanitizeSvgTree, setBearerAuthenticationToken, setCanvasModule, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, svgColorValueToDefinition, svgStringDimensions, svgToDataUrl, textStepService, toast, xmlSerializer };
5454
+ export { AddonHandle, Animatable, AnyStepData, ArrayInput, AspectType, Asset, AssetNotFoundError, AssetObjectVersion, AssetType, BringForwardCommand, BringToBackCommand, BringToFrontCommand, Bundle$1 as Bundle, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, BundleStakeholder, CanvasCommand, CollectionProduct, ColorDefinition, ColorOption, ColorOptionGlobalPropertyHandle, ColorProfileProps, CommandContext, CommandState, Condition, ConditionalGlobalPropertiesChangedEventData, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, CreateElementCommand, CreateLayoutCommand, Customer, CustomerDetailsInput, DeleteElementCommand, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, DigitalContentStepData, DigitalContentStepHandle, EditedSteps, FileUploadGlobalPropertyHandle, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FontAlignmentCommand, FontColorCommand, FontSizeCommand, FontSourceCommand, FrameElement, FrameService, FrameStep, FrameStepData, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, GetWorkflowOptions, GlobalPropertyConfiguration, GlobalPropertyHandle, GroupCommand, ILayout, IllustrationElement, IllustrationStepData, IllustrationStepHandle, ImageElement, InformationMessageType, InformationResult, InformationStepData, InformationStepHandle, Integration, IntegrationOptionResource, IntegrationProduct, IntegrationType, LayoutData, LayoutElement, LayoutElementFactory, LayoutElementType, LayoutNotFoundError, LayoutRenderingPurpose, LayoutState, LayoutsState, MandatorySteps, MaterialEffectMode, MaterialStepData, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepData, ModelStepHandle, ModuleStepData, ModuleStepHandle, MoveCommand, NodeType, ObjectInput, ObjectInputType, OptionGlobalPropertyHandle, OptionNotFoundError, OptionResource, PapyrusComponent, ParseError, PictureStepData, PictureStepHandle, Placeable, PmsSearchResult, Point, Product, ProductCameraRig, ProductCollection, ProductWorkflow$1 as ProductWorkflow, promiseCache as PromiseCache, PromiseQueue, QuestionStepData, QuestionStepHandle, QueueablePromise, Region, RegionElement, RenderableScene, ResizeCommand, ResourceNotFoundError, RotateCommand, SavedDesign, ScaleAxis, SelectionStorage, SendBackwardsCommand, ShapeStepData, ShapeStepHandle, ShareAction, ShareActionType, SilentIllustrationStepData, SpiffCommerceClient, Stakeholder, StakeholderType, StateMutationFunc, Step, StepAspect, StepAspectType, StepElements, StepGroup, StepHandle, StepStorage, StepType, TextAlgorithm, TextChangeCommand, TextChangeResult, TextGlobalPropertyHandle, TextInput, TextStepData, TextStepHandle, TextStepStorage, TextboxElement, Theme, ToastCallback, Transaction, Transform, TransformCollection$1 as TransformCollection, UnhandledBehaviorError, UnitOfMeasurement, UpdateImageSourceCommand, Variant, VariantResource, Vector3, Workflow, WorkflowExperience, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowPanel, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, browserColorToHex, cmPerPixel, createDesign, currentDirection, dataUrlFromExternalUrl, designService, determineCorrectFontSizeAndLines, digitalContentStepService, fetchAsString, findAngle, findElement, findPmsColors, frameDataCache, frameStepService, generate, generateCommands, generateSVGWithUnknownColors, generateStateFromDesignInputSteps, getAttributesFromArrayBuffer, getAxisAlignedBoundingBox, getBoundedOffsets, getElementVertices, getFrameData, getNEPoint, getNWPoint, getPointOfRotation, getSEPoint, getSvgElement, getTrueCoordinates, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, isCloseToValue, loadFont, matchHexToPms, materialStepService, mmPerPixel, modelStepService, moduleStepService, optionService, patternImageDataCache, persistenceService, pictureStepService, pmsToRgb, questionStepService, registerFetchImplementation, registerWindowImplementation, rgbToPms, rotateAroundPoint, sanitizeSvgTree, setBearerAuthenticationToken, setCanvasModule, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, svgColorValueToDefinition, svgStringDimensions, svgToDataUrl, textStepService, toast, xmlSerializer };