@spiffcommerce/core 33.1.0-beta.862b8150-11b4-59dd-84cf-02e1089dd07d → 33.1.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 CHANGED
@@ -14,12 +14,6 @@ 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
-
23
17
  ## [33.1.0] - 20-10-2025
24
18
 
25
19
  ### Fixed
package/dist/index.d.ts CHANGED
@@ -2965,10 +2965,6 @@ interface GlobalPropertyConfiguration {
2965
2965
  id: string;
2966
2966
  aspects: GlobalPropertyConfigurationAspect[];
2967
2967
  }
2968
- declare enum GlobalPropertyConfigurationConditionMode {
2969
- AND = "AND",
2970
- OR = "OR"
2971
- }
2972
2968
  interface GlobalPropertyConfigurationAspect {
2973
2969
  name: string;
2974
2970
  type: AspectType;
@@ -2976,7 +2972,6 @@ interface GlobalPropertyConfigurationAspect {
2976
2972
  description: string;
2977
2973
  entityId?: string;
2978
2974
  conditions?: GlobalPropertyConfigurationAspectCondition[];
2979
- conditionMode?: GlobalPropertyConfigurationConditionMode;
2980
2975
  data?: GlobalPropertyConfigurationAspectData;
2981
2976
  mandatory?: boolean;
2982
2977
  }