@spiffcommerce/core 16.5.1-1 → 16.5.1-alpha.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 CHANGED
@@ -67,7 +67,6 @@ interface WorkflowScene {
67
67
  /**
68
68
  * Steps which don't display to the user.
69
69
  * Their behavior is always silent & executed in the background.
70
- * @deprecated Silent steps are no longer handled seperately from normal steps.
71
70
  */
72
71
  silentSteps: Step<AnyStepData>[];
73
72
  }
@@ -1376,9 +1375,6 @@ interface ExperienceOptions {
1376
1375
  product: Product;
1377
1376
  transaction: Transaction;
1378
1377
  workflow?: Workflow;
1379
- /**
1380
- * @deprecated favor inject / eject functions.
1381
- */
1382
1378
  previewService?: ThreeDPreviewService;
1383
1379
  modelContainer?: ModelContainer;
1384
1380
  renderableContextService?: LayoutPreviewService;
@@ -1394,15 +1390,8 @@ interface ExperienceOptions {
1394
1390
  stateMutationFunc: StateMutationFunc;
1395
1391
  /**
1396
1392
  * Should be set to true when the experience is loaded from an existing transaction.
1397
- * FIXME: Wouldn't we know this from existance of reloadedState
1398
1393
  */
1399
1394
  isReloadedTransaction?: boolean;
1400
- /**
1401
- * When true the system will treat steps with
1402
- * a single variant as renderable. False
1403
- * by default.
1404
- */
1405
- singleVariantsRenderable?: boolean;
1406
1395
  }
1407
1396
  /**
1408
1397
  * A Workflow experience encapsulates the workflow manager and command context. It
@@ -2130,18 +2119,6 @@ interface GetWorkflowOptionsBase {
2130
2119
  * An existing preview service to use, instead of creating a new one.
2131
2120
  */
2132
2121
  previewService?: ThreeDPreviewService;
2133
- /**
2134
- * Coniguration related to the
2135
- * workflow and how the system interprets it.
2136
- */
2137
- workflowConfiguration?: {
2138
- /**
2139
- * False by default, when true the system will treat
2140
- * steps with a single variant
2141
- * as being renderable.
2142
- */
2143
- singleVariantsRenderable?: boolean;
2144
- };
2145
2122
  /**
2146
2123
  * Configuration for the graphQL request made for workflows. Allows for retrieval
2147
2124
  * of additional data.