@spiffcommerce/core 30.0.0 → 30.0.1-beta.57023781-fe72-5b4d-8d39-56e420f46c18

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
+ ## [30.0.2] - 28-08-2025
18
+
19
+ ## Added
20
+
21
+ - The `getOrCreateCustomer` call will fetch an existing customer's product collection customers.
22
+
17
23
  ## [30.0.0] - 27-08-2025
18
24
 
19
25
  ## Added
package/dist/index.d.ts CHANGED
@@ -4140,6 +4140,12 @@ interface Customer {
4140
4140
  stakeholders?: Stakeholder[];
4141
4141
  bundleStakeholders?: BundleStakeholder[];
4142
4142
  hasBundleTemplates?: boolean;
4143
+ productCollectionCustomers?: ProductCollectionCustomer[];
4144
+ }
4145
+ interface ProductCollectionCustomer {
4146
+ id: string;
4147
+ customer: Customer;
4148
+ productCollection: ProductCollectionResource;
4143
4149
  }
4144
4150
  interface CustomerDetailsInput {
4145
4151
  emailAddress: string;