@spiffcommerce/core 21.7.1 → 21.8.0-alpha.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
@@ -2115,6 +2115,11 @@ interface Bundle {
2115
2115
  * @param stakeholderType The type of stakeholder to add. Defaults to Owner.
2116
2116
  */
2117
2117
  addStakeholder(customerDetails: CustomerDetailsInput, stakeholderType?: StakeholderType): Promise<void>;
2118
+ /**
2119
+ * Removes a stakeholder from this bundle. Write access to the bundle is required.
2120
+ * @param emailAddress The email address of the stakeholder to remove.
2121
+ */
2122
+ removeStakeholder(emailAddress: string): Promise<void>;
2118
2123
  /**
2119
2124
  * Updates all stakeholders associated with this bundle. Write access to the bundle is required.
2120
2125
  * @param stakeholders An array of stakeholders to update. Unknown stakeholders will be added, and absent stakeholders will be removed.