@spiffcommerce/core 31.2.0-beta.dd65281e-c94f-5366-965e-8ae4343ab58b → 31.2.1
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +27 -2
- package/dist/index.js +76 -76
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1555 -1546
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
14
14
|
- `Fixed` for any bug fixes.
|
15
15
|
- `Security` in case of vulnerabilities.
|
16
16
|
|
17
|
+
## [30.2.1] - 01-09-2025
|
18
|
+
|
19
|
+
## Added
|
20
|
+
|
21
|
+
- The `name`, `dispatchDate`, `purchaseOrder` and `collectionName` fields will now be available on the complete event.
|
22
|
+
|
17
23
|
## [30.2.0] - 01-09-2025
|
18
24
|
|
19
25
|
## Added
|
package/dist/index.d.ts
CHANGED
@@ -2750,9 +2750,9 @@ interface WorkflowManager {
|
|
2750
2750
|
/**
|
2751
2751
|
* Returns the context object used for text templating.
|
2752
2752
|
*/
|
2753
|
-
getTemplatingContext(): {
|
2753
|
+
getTemplatingContext(): Promise<{
|
2754
2754
|
[key: string]: any;
|
2755
|
-
}
|
2755
|
+
}>;
|
2756
2756
|
}
|
2757
2757
|
|
2758
2758
|
declare enum AssetType {
|
@@ -3645,8 +3645,33 @@ declare enum BundleDesignCreationCartAddMode {
|
|
3645
3645
|
}
|
3646
3646
|
interface BundleDesignCreationMessage {
|
3647
3647
|
bundleId: string;
|
3648
|
+
/**
|
3649
|
+
* The name assigned by the user for this design.
|
3650
|
+
*/
|
3651
|
+
name: string;
|
3652
|
+
/**
|
3653
|
+
* The date this bundle is expected to be dispatched.
|
3654
|
+
*/
|
3655
|
+
dispatchDate: string;
|
3656
|
+
/**
|
3657
|
+
* The purchase order associated with this bundle.
|
3658
|
+
*/
|
3659
|
+
purchaseOrder: string;
|
3660
|
+
/**
|
3661
|
+
* The name of the collection this bundle is using.
|
3662
|
+
*/
|
3663
|
+
collectionName: string;
|
3664
|
+
/**
|
3665
|
+
* The line items associated with this bundle.
|
3666
|
+
*/
|
3648
3667
|
items: DesignCreationMessage[];
|
3668
|
+
/**
|
3669
|
+
* The ID of the user who owns this bundle.
|
3670
|
+
*/
|
3649
3671
|
bundleOwnerId?: string;
|
3672
|
+
/**
|
3673
|
+
* @deprecated
|
3674
|
+
*/
|
3650
3675
|
cartAddMode?: BundleDesignCreationCartAddMode;
|
3651
3676
|
}
|
3652
3677
|
/**
|