@spiffcommerce/core 21.20.2 → 21.20.3

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
@@ -2665,6 +2665,9 @@ declare enum StakeholderType {
2665
2665
  interface Stakeholder {
2666
2666
  id: string;
2667
2667
  type?: StakeholderType;
2668
+ authorizationDate?: string;
2669
+ authorizationNote?: string;
2670
+ authorizationStatus?: string;
2668
2671
  transaction?: Transaction;
2669
2672
  customer?: Customer;
2670
2673
  }
package/dist/index.js CHANGED
@@ -1105,6 +1105,13 @@ const ce = f`
1105
1105
  printFileName3
1106
1106
  printFileName4
1107
1107
  printFileName5
1108
+ stakeholders {
1109
+ id
1110
+ type
1111
+ authorizationDate
1112
+ authorizationNote
1113
+ authorizationStatus
1114
+ }
1108
1115
  transactionShareActions {
1109
1116
  id
1110
1117
  title
@@ -449,6 +449,13 @@
449
449
  printFileName3
450
450
  printFileName4
451
451
  printFileName5
452
+ stakeholders {
453
+ id
454
+ type
455
+ authorizationDate
456
+ authorizationNote
457
+ authorizationStatus
458
+ }
452
459
  transactionShareActions {
453
460
  id
454
461
  title
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "21.20.2",
3
+ "version": "21.20.3",
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",