@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 +3 -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
|
@@ -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
|
package/dist/index.umd.cjs
CHANGED