@spiffcommerce/core 0.10.84 → 0.10.86

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
@@ -1178,6 +1178,10 @@ export interface SavedDesign {
1178
1178
  * The name of the workflow annotated at time of save (may be different from current workflow name).
1179
1179
  */
1180
1180
  workflowName: string;
1181
+ /**
1182
+ * The ID of the workflow annotated at time of save.
1183
+ */
1184
+ workflowId: string;
1181
1185
  /**
1182
1186
  * The last edit that occured on this saved design.
1183
1187
  */
@@ -1416,7 +1420,7 @@ export class SpiffCommerceClient {
1416
1420
  * Removes a design from storage. This will be a noop if the design isn't already saved.
1417
1421
  * @param experience The workflow experience to remove from storage.
1418
1422
  */
1419
- deleteDesign(experience: WorkflowExperience): Promise<void>;
1423
+ deleteDesign(transactionId: string): Promise<void>;
1420
1424
  /**
1421
1425
  * Initialize the client from an integration product.
1422
1426
  * @param integrationProductId The integration product to use.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "0.10.84",
3
+ "version": "0.10.86",
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",