@spiffcommerce/core 25.0.9 → 25.1.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/dist/index.d.ts CHANGED
@@ -2222,6 +2222,7 @@ declare class SpiffCommerceClient {
2222
2222
  }>;
2223
2223
  clearCustomer(): void;
2224
2224
  clearCustomerForTransaction(transactionId: string): void;
2225
+ customerHasBundleTemplates(emailAddress: string): Promise<boolean>;
2225
2226
  getStakeholderTypeForTransaction(transactionId: string): StakeholderType | undefined;
2226
2227
  getOrCreateCustomer(emailAddress: string): Promise<{
2227
2228
  customer: Customer;
@@ -3893,6 +3894,7 @@ interface Customer {
3893
3894
  partner?: Partner;
3894
3895
  stakeholders?: Stakeholder[];
3895
3896
  bundleStakeholders?: BundleStakeholder[];
3897
+ hasBundleTemplates?: boolean;
3896
3898
  }
3897
3899
  interface CustomerDetailsInput {
3898
3900
  emailAddress: string;