@spiffcommerce/core 26.31.0 → 26.32.0-beta.0809bb4f-f297-5407-815c-30e8f3b0cb89

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
@@ -2613,7 +2613,7 @@ interface WorkflowManager {
2613
2613
  /**
2614
2614
  * Create or amend the recipient fo the transaction.
2615
2615
  */
2616
- updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string): Promise<void>;
2616
+ updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string, mobile?: string): Promise<void>;
2617
2617
  }
2618
2618
 
2619
2619
  declare enum AssetType {
@@ -3634,6 +3634,7 @@ interface Recipient {
3634
3634
  email?: string;
3635
3635
  postalCode?: string;
3636
3636
  country?: string;
3637
+ mobile?: string;
3637
3638
  createdAt?: string;
3638
3639
  updatedAt?: string;
3639
3640
  deletedAt?: string;
@@ -4932,7 +4933,7 @@ declare class DigitalContentStepService implements StepService<DigitalContentSte
4932
4933
  declare const digitalContentStepService: DigitalContentStepService;
4933
4934
 
4934
4935
  declare class MockWorkflowManager implements WorkflowManager {
4935
- updateRecipient(_firstName?: string, _lastName?: string, _address?: string, _suburb?: string, _state?: string, _email?: string, _postalCode?: string, _country?: string): Promise<void>;
4936
+ updateRecipient(_firstName?: string, _lastName?: string, _address?: string, _suburb?: string, _state?: string, _email?: string, _postalCode?: string, _country?: string, _mobile?: string): Promise<void>;
4936
4937
  approveTransaction(_note?: string): Promise<void>;
4937
4938
  rejectTransaction(_note?: string): Promise<void>;
4938
4939
  private client;