@spiffcommerce/core 29.1.0-beta.3610848a-e163-58bd-968d-57b57e0094f6 → 29.1.0-beta.5d6da371-2c8b-5fa7-b96d-4f71c0128832

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
@@ -2722,7 +2722,7 @@ interface WorkflowManager {
2722
2722
  /**
2723
2723
  * Create or amend the recipient fo the transaction.
2724
2724
  */
2725
- updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string, mobile?: string, company?: string, apartment?: string, customField1?: string, customField2?: string, customField3?: string, customField4?: string, customField5?: string, conversionConfigurationId?: string): Promise<void>;
2725
+ updateRecipient(firstName?: string, lastName?: string, address?: string, suburb?: string, state?: string, email?: string, postalCode?: string, country?: string, mobile?: string, company?: string): Promise<void>;
2726
2726
  /**
2727
2727
  * Returns the context object used for text templating.
2728
2728
  */
@@ -3753,13 +3753,6 @@ interface Recipient {
3753
3753
  country?: string;
3754
3754
  mobile?: string;
3755
3755
  company?: string;
3756
- apartment?: string;
3757
- customField1?: string;
3758
- customField2?: string;
3759
- customField3?: string;
3760
- customField4?: string;
3761
- customField5?: string;
3762
- conversionConfigurationId?: string;
3763
3756
  createdAt?: string;
3764
3757
  updatedAt?: string;
3765
3758
  deletedAt?: string;
@@ -5072,7 +5065,7 @@ declare class MockWorkflowManager implements WorkflowManager {
5072
5065
  getTemplatingContext: () => void;
5073
5066
  removeRecipientCallback: (callback: RecipientCallback) => void;
5074
5067
  addRecipientCallback: (callback: RecipientCallback) => void;
5075
- updateRecipient(_firstName?: string, _lastName?: string, _address?: string, _suburb?: string, _state?: string, _email?: string, _postalCode?: string, _country?: string, _mobile?: string, _company?: string, _apartment?: string, _customField1?: string, _customField2?: string, _customField3?: string, _customField4?: string, _customField5?: string, _conversionConfigurationId?: string): Promise<void>;
5068
+ updateRecipient(_firstName?: string, _lastName?: string, _address?: string, _suburb?: string, _state?: string, _email?: string, _postalCode?: string, _country?: string, _mobile?: string, _company?: string): Promise<void>;
5076
5069
  approveTransaction(_note?: string): Promise<void>;
5077
5070
  rejectTransaction(_note?: string): Promise<void>;
5078
5071
  private client;