@spiffcommerce/core 33.8.5 → 33.9.0-beta.09c79ef9-5c43-5036-b18e-8b04f98ca9b9
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 +6 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +281 -276
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3420 -3380
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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.9.0] - 06-11-2025
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Improved performance when loading many WorkflowExperiences at the same time.
|
|
22
|
+
|
|
17
23
|
## [33.8.5] - 03-11-2025
|
|
18
24
|
|
|
19
25
|
### Changed
|
package/dist/index.d.ts
CHANGED
|
@@ -1824,6 +1824,9 @@ declare const getProductCollections: (ids: string[]) => Promise<ProductCollectio
|
|
|
1824
1824
|
interface BundleIntegrationProductsAddedEventData {
|
|
1825
1825
|
integrationProductIds: string[];
|
|
1826
1826
|
}
|
|
1827
|
+
interface BundleIntegrationProductsRemovedEventData {
|
|
1828
|
+
integrationProductIds: string[];
|
|
1829
|
+
}
|
|
1827
1830
|
interface ConditionalGlobalPropertiesChangedEventData {
|
|
1828
1831
|
globalProperties: GlobalPropertyHandle[];
|
|
1829
1832
|
}
|
|
@@ -1842,6 +1845,7 @@ interface WorkflowExperienceRemovedEventData extends WorkflowExperienceAddedEven
|
|
|
1842
1845
|
}
|
|
1843
1846
|
type BundleEventMap = {
|
|
1844
1847
|
"bundle-integration-products-added": BundleIntegrationProductsAddedEventData;
|
|
1848
|
+
"bundle-integration-products-removed": BundleIntegrationProductsRemovedEventData;
|
|
1845
1849
|
"conditional-global-properties-changed": ConditionalGlobalPropertiesChangedEventData;
|
|
1846
1850
|
"global-properties-mandatory-changed": GlobalPropertiesMandatoryChangedEventData;
|
|
1847
1851
|
"workflow-experience-hover-enter": WorkflowExperienceHoverEventData;
|
|
@@ -2096,6 +2100,7 @@ interface Bundle$1 {
|
|
|
2096
2100
|
applyGlobalPropertyState(state: GlobalPropertyState): Promise<void>;
|
|
2097
2101
|
getIntegrationProductIds(): undefined | string[];
|
|
2098
2102
|
addIntegrationProductId(id: string): Promise<void>;
|
|
2103
|
+
clearIntegrationProductIds(): Promise<void>;
|
|
2099
2104
|
}
|
|
2100
2105
|
|
|
2101
2106
|
/**
|
|
@@ -3795,6 +3800,10 @@ interface Transaction {
|
|
|
3795
3800
|
* Product that this transaction belongs to.
|
|
3796
3801
|
*/
|
|
3797
3802
|
product?: Product;
|
|
3803
|
+
/**
|
|
3804
|
+
* The ID of the product that this transaction belongs to.
|
|
3805
|
+
*/
|
|
3806
|
+
productId?: string;
|
|
3798
3807
|
/**
|
|
3799
3808
|
* The integration product related to this lineitem.
|
|
3800
3809
|
*/
|