@spiffcommerce/core 32.3.1-beta.0913bb04-4304-5dae-95b3-20ea61cba9ab → 32.3.1-beta.3b8ccab8-d0c2-53b3-8f6e-79134c2e5bf5

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
@@ -1819,6 +1819,9 @@ declare class Transform {
1819
1819
  }
1820
1820
  declare const getProductCollections: (ids: string[]) => Promise<ProductCollection[] | undefined>;
1821
1821
 
1822
+ interface BundleIntegrationProductsAddedEventData {
1823
+ integrationProductIds: string[];
1824
+ }
1822
1825
  interface ConditionalGlobalPropertiesChangedEventData {
1823
1826
  globalProperties: GlobalPropertyHandle[];
1824
1827
  }
@@ -1836,6 +1839,7 @@ interface WorkflowExperienceAddedEventData {
1836
1839
  interface WorkflowExperienceRemovedEventData extends WorkflowExperienceAddedEventData {
1837
1840
  }
1838
1841
  type BundleEventMap = {
1842
+ "bundle-integration-products-added": BundleIntegrationProductsAddedEventData;
1839
1843
  "conditional-global-properties-changed": ConditionalGlobalPropertiesChangedEventData;
1840
1844
  "global-properties-mandatory-changed": GlobalPropertiesMandatoryChangedEventData;
1841
1845
  "workflow-experience-hover-enter": WorkflowExperienceHoverEventData;
@@ -1844,7 +1848,7 @@ type BundleEventMap = {
1844
1848
  "workflow-experience-removed": WorkflowExperienceRemovedEventData;
1845
1849
  };
1846
1850
  type BundleEventType = keyof BundleEventMap;
1847
- type BundleEventData = WorkflowExperienceHoverEventData | ConditionalGlobalPropertiesChangedEventData | WorkflowExperienceAddedEventData;
1851
+ type BundleEventData = BundleIntegrationProductsAddedEventData | WorkflowExperienceHoverEventData | ConditionalGlobalPropertiesChangedEventData | WorkflowExperienceAddedEventData;
1848
1852
  type BundleEvent<K extends BundleEventType = BundleEventType> = BundleEventMap[K];
1849
1853
 
1850
1854
  /**