@spiffcommerce/core 14.1.5 → 14.2.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/main.js +43 -29
- package/dist/module.js +42 -28
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2252,6 +2252,11 @@ export class SpiffCommerceClient {
|
|
|
2252
2252
|
* @returns A bundle to be used for grouping and operating on large amounts of workflow experiences.
|
|
2253
2253
|
*/
|
|
2254
2254
|
getExistingBundle(bundleId: string, previewServiceConstructor?: (workflow: _Workflow1, transactionId: string) => any): Promise<_Bundle1>;
|
|
2255
|
+
/**
|
|
2256
|
+
* Retrieves all existing bundle stakeholders from the API, for the currently authenticated customer.
|
|
2257
|
+
* @returns An array of bundle stakeholders.
|
|
2258
|
+
*/
|
|
2259
|
+
getBundleStakeholders(): Promise<BundleStakeholder[]>;
|
|
2255
2260
|
/**
|
|
2256
2261
|
* Creates a new instance of WorkflowExperience. A high level wrapper for workflows.
|
|
2257
2262
|
* @param workflowId The id of the workflow to be run. Deprecated: Provide options instead.
|