@spiffcommerce/core 33.2.1-beta.608a39d6-d415-5e24-9212-3d6b4823b699 → 33.2.2

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 CHANGED
@@ -2399,16 +2399,16 @@ interface GetNewWorkflowExperienceOptionsBase extends GetWorkflowOptionsBase {
2399
2399
  workflowId?: string;
2400
2400
  /** An existing workflow state, if available. */
2401
2401
  workflowState?: string;
2402
- }
2403
- interface GetWorkflowExperienceFromBlankOptions extends GetNewWorkflowExperienceOptionsBase {
2402
+ /** An initial quantity to use in place of the default. */
2404
2403
  quantity?: number;
2404
+ /** Initial recipient details to use. */
2405
2405
  recipient?: any;
2406
+ }
2407
+ interface GetWorkflowExperienceFromBlankOptions extends GetNewWorkflowExperienceOptionsBase {
2406
2408
  type: "blank";
2407
2409
  }
2408
2410
  interface GetWorkflowExperienceFromIntegrationProductOptions extends GetNewWorkflowExperienceOptionsBase {
2409
2411
  integrationProductId: string;
2410
- quantity?: number;
2411
- recipient?: any;
2412
2412
  type: "integration";
2413
2413
  }
2414
2414
  interface GetWorkflowExperienceFromExternalProductOptions extends GetNewWorkflowExperienceOptionsBase {