@spiffcommerce/core 33.6.0-beta.7a84179a-d020-5bb7-a38a-3ec41980ae98 → 33.7.0-beta.83bc95ea-6318-5ed9-8de6-d402830696f8
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 +5 -0
- package/dist/index.js +128 -128
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +612 -602
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1113,6 +1113,10 @@ interface WorkflowExperience {
|
|
|
1113
1113
|
* @param product The new product to set.
|
|
1114
1114
|
*/
|
|
1115
1115
|
setProduct(integrationProductId: string): Promise<void>;
|
|
1116
|
+
/**
|
|
1117
|
+
* Clear the product from this experience.
|
|
1118
|
+
*/
|
|
1119
|
+
clearProduct(): Promise<void>;
|
|
1116
1120
|
/**
|
|
1117
1121
|
* Get the current workflow for this experience. May be undefined.
|
|
1118
1122
|
*/
|
|
@@ -1330,6 +1334,7 @@ declare class WorkflowExperienceImpl implements WorkflowExperience {
|
|
|
1330
1334
|
getProduct(): Product | undefined;
|
|
1331
1335
|
getProfanityList(): string[];
|
|
1332
1336
|
setProduct(integrationProductId: string): Promise<void>;
|
|
1337
|
+
clearProduct(): Promise<void>;
|
|
1333
1338
|
getWorkflow(): Workflow | undefined;
|
|
1334
1339
|
setWorkflow(workflow: Workflow): Promise<void>;
|
|
1335
1340
|
attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
|