@spiffcommerce/core 32.4.0-beta.8897ea88-ee5b-526f-a5cc-8b19f8c7e3a8 → 32.4.0-beta.df096a40-d76c-5b5c-bcd4-35d476c8e1d0
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 +1 -7
- package/dist/index.js +124 -124
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5204 -5219
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { FunctionComponent, ReactNode } from 'preact/compat';
|
2
2
|
import * as _apollo_client_core from '@apollo/client/core';
|
3
3
|
import { OperationVariables, QueryOptions, ApolloQueryResult, DefaultContext, MutationOptions, FetchResult, ApolloClient } from '@apollo/client/core';
|
4
|
-
import { RenderableContextService, RenderableContext,
|
4
|
+
import { RenderableContextService, RenderableContext, ModelContainer, ThreeDPreviewService } from '@spiffcommerce/preview';
|
5
5
|
import * as lodash from 'lodash';
|
6
6
|
import { CompleteQuoteMessage, ThemeInstallConfigurationGraphQl, ConversionConfiguration } from '@spiffcommerce/theme-bridge';
|
7
7
|
export { ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation } from '@spiffcommerce/theme-bridge';
|
@@ -1051,13 +1051,8 @@ interface Scene {
|
|
1051
1051
|
interface ExperienceOptions {
|
1052
1052
|
transaction: Transaction;
|
1053
1053
|
workflow?: Workflow;
|
1054
|
-
/**
|
1055
|
-
* @deprecated favor inject / eject functions.
|
1056
|
-
*/
|
1057
|
-
previewService?: ThreeDPreviewService;
|
1058
1054
|
modelContainer?: ModelContainer;
|
1059
1055
|
renderableContextService?: LayoutPreviewService;
|
1060
|
-
layouts: ILayout[];
|
1061
1056
|
reloadedState?: LayoutsState;
|
1062
1057
|
/**
|
1063
1058
|
* When true the experience is intended to be immutable.
|
@@ -1316,7 +1311,6 @@ declare enum WorkflowExperienceEventType {
|
|
1316
1311
|
declare class WorkflowExperienceImpl implements WorkflowExperience {
|
1317
1312
|
readonly client: SpiffCommerceClient;
|
1318
1313
|
readonly transaction: Transaction;
|
1319
|
-
readonly commandContext: CommandContext;
|
1320
1314
|
readonly graphQlClient: GraphQlClientFunc;
|
1321
1315
|
readonly workflowManager: WorkflowManager;
|
1322
1316
|
readonly isReadOnly: boolean;
|