@spiffcommerce/core 33.11.0 → 33.12.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.12.0] - 10-11-2025
18
+
19
+ ### Changed
20
+
21
+ - Further improved performance of loading large Bundles and creating/loading large amounts of Transactions.
22
+
17
23
  ## [33.11.0] - 07-11-2025
18
24
 
19
25
  ### Added
package/dist/index.d.ts CHANGED
@@ -3808,6 +3808,10 @@ interface Transaction {
3808
3808
  * The integration product related to this lineitem.
3809
3809
  */
3810
3810
  integrationProduct?: IntegrationProductResource;
3811
+ /**
3812
+ * The ID of the integration product that this transaction belongs to.
3813
+ */
3814
+ integrationProductId?: string;
3811
3815
  /**
3812
3816
  * Whether this transaction has previously been ordered.
3813
3817
  */
@@ -4314,6 +4318,7 @@ interface Bundle {
4314
4318
  partner?: Partner;
4315
4319
  productCollection?: ProductCollectionResource;
4316
4320
  transactions?: Transaction[];
4321
+ transactionIds?: string[];
4317
4322
  template?: boolean;
4318
4323
  templateStatus?: BundleTemplateStatus;
4319
4324
  bundleShareActions?: ShareAction[];