@spiffcommerce/core 0.10.50 → 0.10.51

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/types.d.ts CHANGED
@@ -462,6 +462,7 @@ export interface WorkflowManager {
462
462
  getTransaction: () => Transaction;
463
463
  getWorkflow: () => _Workflow1;
464
464
  getWorkflowSelections: () => WorkflowSelections;
465
+ getProduct: () => Product;
465
466
  /**
466
467
  * A promise resolving when the initial state of the workflow has completed loading.
467
468
  */
@@ -1297,6 +1298,7 @@ export class Client {
1297
1298
  }
1298
1299
  export class MockWorkflowManager implements WorkflowManager {
1299
1300
  getInitializationPromise(): Promise<void>;
1301
+ getProduct: () => Product;
1300
1302
  isInitialized(): boolean;
1301
1303
  getCommandContext: () => _CommandContext1;
1302
1304
  getAllLayoutData: () => LayoutState[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "0.10.50",
3
+ "version": "0.10.51",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",