@spiffcommerce/core 27.1.1 → 27.2.0-beta.2a17a167-4433-5a09-95c8-ee4c8186de81
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 +1 -0
- package/dist/index.js +149 -149
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1373 -1239
- 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
|
+
## [27.2.0] - 24-07-2025
|
|
18
|
+
|
|
19
|
+
## Added
|
|
20
|
+
|
|
21
|
+
- Bundles now have the `applyGlobalPropertyState` method for copying one global state onto another.
|
|
22
|
+
|
|
17
23
|
## [27.1.1] - 23-07-2025
|
|
18
24
|
|
|
19
25
|
## Fixed
|
package/dist/index.d.ts
CHANGED
|
@@ -2006,6 +2006,7 @@ interface Bundle$1 {
|
|
|
2006
2006
|
attachOrganization(name: string): Promise<void>;
|
|
2007
2007
|
generateQuoteId(): Promise<string>;
|
|
2008
2008
|
getQuoteCompleteMessage(): CompleteQuoteMessage;
|
|
2009
|
+
applyGlobalPropertyState(state: GlobalPropertyState): Promise<void>;
|
|
2009
2010
|
}
|
|
2010
2011
|
|
|
2011
2012
|
/**
|