@spiffcommerce/core 25.0.6 → 25.0.7
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 +2 -0
- package/dist/index.js +75 -61
- package/dist/index.mjs +422 -383
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3497,6 +3497,7 @@ interface Transaction {
|
|
|
3497
3497
|
/** Whether any share actions for this Transaction require the user to be authenticated as a stakeholder */
|
|
3498
3498
|
hasAuthenticatedActions?: boolean;
|
|
3499
3499
|
marketplaceThemeInstallConfiguration?: ThemeInstallConfigurationGraphQl;
|
|
3500
|
+
completed?: boolean;
|
|
3500
3501
|
}
|
|
3501
3502
|
interface ShareAction {
|
|
3502
3503
|
id: string;
|
|
@@ -3922,6 +3923,7 @@ declare enum BundleTemplateStatus {
|
|
|
3922
3923
|
interface Bundle {
|
|
3923
3924
|
id?: string;
|
|
3924
3925
|
bundleOwnerId?: string;
|
|
3926
|
+
completed?: boolean;
|
|
3925
3927
|
currentBundleStakeholder?: BundleStakeholder;
|
|
3926
3928
|
bundleStakeholders?: BundleStakeholder[];
|
|
3927
3929
|
bundleStateData?: string;
|