@spiffcommerce/core 33.1.0 → 33.2.0
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 +5 -0
- package/dist/index.js +140 -139
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +812 -811
- 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
|
+
## [33.2.0] - 20-10-2025
|
18
|
+
|
19
|
+
### Changed
|
20
|
+
|
21
|
+
- Global aspects can now be configured to check their conditions using a logical "AND" or "OR", rather than just "OR".
|
22
|
+
|
17
23
|
## [33.1.0] - 20-10-2025
|
18
24
|
|
19
25
|
### Fixed
|
package/dist/index.d.ts
CHANGED
@@ -2965,6 +2965,10 @@ interface GlobalPropertyConfiguration {
|
|
2965
2965
|
id: string;
|
2966
2966
|
aspects: GlobalPropertyConfigurationAspect[];
|
2967
2967
|
}
|
2968
|
+
declare enum GlobalPropertyConfigurationConditionMode {
|
2969
|
+
AND = "AND",
|
2970
|
+
OR = "OR"
|
2971
|
+
}
|
2968
2972
|
interface GlobalPropertyConfigurationAspect {
|
2969
2973
|
name: string;
|
2970
2974
|
type: AspectType;
|
@@ -2972,6 +2976,7 @@ interface GlobalPropertyConfigurationAspect {
|
|
2972
2976
|
description: string;
|
2973
2977
|
entityId?: string;
|
2974
2978
|
conditions?: GlobalPropertyConfigurationAspectCondition[];
|
2979
|
+
conditionMode?: GlobalPropertyConfigurationConditionMode;
|
2975
2980
|
data?: GlobalPropertyConfigurationAspectData;
|
2976
2981
|
mandatory?: boolean;
|
2977
2982
|
}
|