@spiffcommerce/core 31.2.1 → 31.2.3-beta.5249dfb4-40fc-508c-8b98-cb6aa1aafe90

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,19 @@ 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
+ ## [30.2.2] - 01-09-2025
18
+
19
+ ## Added
20
+
21
+ - The `collectionId`field will now be available on the complete event.
22
+
23
+ ## [31.2.2] - 01-09-2025
24
+
25
+ ## Fixed
26
+
27
+ - Text steps with templated input should have their font correctly resized in appropriate situations.
28
+ - The templating context for a WorkflowManager now correctly provides first/last name fields with a custom `uniqueIdentifier`.
29
+
17
30
  ## [30.2.1] - 01-09-2025
18
31
 
19
32
  ## Added
package/dist/index.d.ts CHANGED
@@ -2750,9 +2750,9 @@ interface WorkflowManager {
2750
2750
  /**
2751
2751
  * Returns the context object used for text templating.
2752
2752
  */
2753
- getTemplatingContext(): Promise<{
2753
+ getTemplatingContext(): {
2754
2754
  [key: string]: any;
2755
- }>;
2755
+ };
2756
2756
  }
2757
2757
 
2758
2758
  declare enum AssetType {
@@ -3657,6 +3657,10 @@ interface BundleDesignCreationMessage {
3657
3657
  * The purchase order associated with this bundle.
3658
3658
  */
3659
3659
  purchaseOrder: string;
3660
+ /**
3661
+ * The ID of the collection this bundle is using.
3662
+ */
3663
+ collectionId: string;
3660
3664
  /**
3661
3665
  * The name of the collection this bundle is using.
3662
3666
  */