@spiffcommerce/core 33.10.0 → 33.11.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 +6 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +42 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +223 -201
- 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.11.0] - 07-11-2025
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Added new method to `Bundle`: `removeIntegrationProductIds(ids: string[]): Promise<void>`
|
|
22
|
+
|
|
17
23
|
## [33.9.0] - 06-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
|
+
removeIntegrationProductIds(ids: string[]): Promise<void>;
|
|
2099
2104
|
}
|
|
2100
2105
|
|
|
2101
2106
|
/**
|