@spiffcommerce/core 33.12.0 → 33.13.0

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/CHANGELOG.md CHANGED
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ ## [33.13.0] - 10-11-2025
18
+
19
+ ### Added
20
+
21
+ - Added `prevalidated` argument to `updateRecipient` methods for addresses that have already been validated by external means.
22
+
17
23
  ## [33.12.0] - 10-11-2025
18
24
 
19
25
  ### Changed
package/dist/index.d.ts CHANGED
@@ -2812,7 +2812,7 @@ interface WorkflowManager {
2812
2812
  /**
2813
2813
  * Create or amend the recipient fo the transaction.
2814
2814
  */
2815
- 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>;
2815
+ 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, prevalidated?: boolean): Promise<void>;
2816
2816
  /**
2817
2817
  * Returns the context object used for text templating.
2818
2818
  */