@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 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
@@ -1098,6 +1098,13 @@ const oe = D`
1098
1098
  printFileName3
1099
1099
  printFileName4
1100
1100
  printFileName5
1101
+ transactionShareActions {
1102
+ id
1103
+ title
1104
+ stakeholderType
1105
+ precedence
1106
+ url
1107
+ }
1101
1108
  product {
1102
1109
  id
1103
1110
  basePrice
@@ -447,6 +447,13 @@
447
447
  printFileName3
448
448
  printFileName4
449
449
  printFileName5
450
+ transactionShareActions {
451
+ id
452
+ title
453
+ stakeholderType
454
+ precedence
455
+ url
456
+ }
450
457
  product {
451
458
  id
452
459
  basePrice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "21.17.1",
3
+ "version": "21.17.2",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.umd.cjs",