@spiffcommerce/core 33.8.0-beta.67cfe5f9-3d41-5a5c-a256-3ada8faf8201 → 33.8.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 +2 -5
- package/dist/index.js +60 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -459
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1295,7 +1295,6 @@ interface WorkflowExperience {
|
|
|
1295
1295
|
removeEventListener(type: WorkflowExperienceEventType, callback: (workflowExperience: WorkflowExperience) => void): void;
|
|
1296
1296
|
attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
|
|
1297
1297
|
attachOrganization(name: string): Promise<void>;
|
|
1298
|
-
callEvent(type: WorkflowExperienceEventType): any;
|
|
1299
1298
|
}
|
|
1300
1299
|
type ExportedStepDataPropertyType = "selection" | "color" | "image" | "text";
|
|
1301
1300
|
interface ExportedStepDataProperty {
|
|
@@ -1309,10 +1308,8 @@ interface ExportedStepData {
|
|
|
1309
1308
|
properties: ExportedStepDataProperty[];
|
|
1310
1309
|
}
|
|
1311
1310
|
declare enum WorkflowExperienceEventType {
|
|
1312
|
-
PriceBreakChanged = "PriceBreakChanged",
|
|
1313
|
-
ProductChanged = "ProductChanged",
|
|
1314
1311
|
QuantityChanged = "QuantityChanged",
|
|
1315
|
-
|
|
1312
|
+
PriceBreakChanged = "PriceBreakChanged",
|
|
1316
1313
|
SelectionChanged = "SelectionChanged"
|
|
1317
1314
|
}
|
|
1318
1315
|
declare class WorkflowExperienceImpl implements WorkflowExperience {
|
|
@@ -1387,7 +1384,7 @@ declare class WorkflowExperienceImpl implements WorkflowExperience {
|
|
|
1387
1384
|
setQuantity(quantity: number): Promise<void>;
|
|
1388
1385
|
addEventListener(type: WorkflowExperienceEventType, callback: (workflowExperience: WorkflowExperience) => void): void;
|
|
1389
1386
|
removeEventListener(type: WorkflowExperienceEventType, callback: (workflowExperience: WorkflowExperience) => void): void;
|
|
1390
|
-
callEvent
|
|
1387
|
+
private callEvent;
|
|
1391
1388
|
}
|
|
1392
1389
|
|
|
1393
1390
|
/**
|