@spiffcommerce/core 33.10.0 → 33.11.0-beta.1c20a63b-d01f-59c6-8e14-8e80cf12cee4
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 +10 -0
- package/dist/index.js +126 -187
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2245 -2280
- 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
|
/**
|
|
@@ -3803,6 +3808,10 @@ interface Transaction {
|
|
|
3803
3808
|
* The integration product related to this lineitem.
|
|
3804
3809
|
*/
|
|
3805
3810
|
integrationProduct?: IntegrationProductResource;
|
|
3811
|
+
/**
|
|
3812
|
+
* The ID of the integration product that this transaction belongs to.
|
|
3813
|
+
*/
|
|
3814
|
+
integrationProductId?: string;
|
|
3806
3815
|
/**
|
|
3807
3816
|
* Whether this transaction has previously been ordered.
|
|
3808
3817
|
*/
|
|
@@ -4309,6 +4318,7 @@ interface Bundle {
|
|
|
4309
4318
|
partner?: Partner;
|
|
4310
4319
|
productCollection?: ProductCollectionResource;
|
|
4311
4320
|
transactions?: Transaction[];
|
|
4321
|
+
transactionIds?: string[];
|
|
4312
4322
|
template?: boolean;
|
|
4313
4323
|
templateStatus?: BundleTemplateStatus;
|
|
4314
4324
|
bundleShareActions?: ShareAction[];
|