@spiffcommerce/core 26.38.0 → 26.39.0-beta.2c2804ed-43ba-521e-bcb3-7dbf982a6283
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 +12 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +34 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -81
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,18 @@ 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
|
+
## [26.40.0] - 09-07-2025
|
|
18
|
+
|
|
19
|
+
## Added
|
|
20
|
+
|
|
21
|
+
- Added `setDispatchDate` and `setPurchaseOrder` to `Bundle`.
|
|
22
|
+
|
|
23
|
+
## [26.39.0] - 08-07-2025
|
|
24
|
+
|
|
25
|
+
## Fixed
|
|
26
|
+
|
|
27
|
+
- The function `fetchProductsFeed` on `ProductCollection` now correctly reads from the in-memory cache for repeated calls with the same inputs.
|
|
28
|
+
|
|
17
29
|
## [26.38.0] - 07-07-2025
|
|
18
30
|
|
|
19
31
|
## Added
|
package/dist/index.d.ts
CHANGED
|
@@ -1785,6 +1785,10 @@ interface Bundle$1 {
|
|
|
1785
1785
|
* @returns A promise that resolves when the name has been updated in the Spiff Commerce system.
|
|
1786
1786
|
*/
|
|
1787
1787
|
setName(name: string): Promise<void>;
|
|
1788
|
+
setDispatchDate(dd: string): Promise<void>;
|
|
1789
|
+
getDispatchDate(): string | undefined;
|
|
1790
|
+
setPurchaseOrder(po: string): Promise<void>;
|
|
1791
|
+
getPurchaseOrder(): string | undefined;
|
|
1788
1792
|
/**
|
|
1789
1793
|
* @returns Custom metadata associated with this bundle.
|
|
1790
1794
|
*/
|
|
@@ -4030,6 +4034,8 @@ interface Bundle {
|
|
|
4030
4034
|
id?: string;
|
|
4031
4035
|
bundleOwnerId?: string;
|
|
4032
4036
|
completed?: boolean;
|
|
4037
|
+
dispatchDate?: string;
|
|
4038
|
+
purchaseOrder?: string;
|
|
4033
4039
|
currentBundleStakeholder?: BundleStakeholder;
|
|
4034
4040
|
bundleStakeholders?: BundleStakeholder[];
|
|
4035
4041
|
bundleStateData?: string;
|