@spiffcommerce/core 21.17.1 → 21.17.2
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 +8 -0
- package/dist/index.js +7 -0
- package/dist/index.umd.cjs +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2259,6 +2259,14 @@ interface Transaction {
|
|
|
2259
2259
|
* Typically only available when being passed to {@link DesignCreationMessage}
|
|
2260
2260
|
*/
|
|
2261
2261
|
designExternalVariants?: DesignExternalVariant[];
|
|
2262
|
+
transactionShareActions?: TransactionShareAction[];
|
|
2263
|
+
}
|
|
2264
|
+
interface TransactionShareAction {
|
|
2265
|
+
id: string;
|
|
2266
|
+
title?: string;
|
|
2267
|
+
precedence?: number;
|
|
2268
|
+
stakeholderType?: string;
|
|
2269
|
+
url?: string;
|
|
2262
2270
|
}
|
|
2263
2271
|
/**
|
|
2264
2272
|
* An object containing ids for an external product/variant that should be added to the cart alongside the base product/variant.
|
package/dist/index.js
CHANGED
package/dist/index.umd.cjs
CHANGED