@spiffcommerce/core 33.1.0 → 33.2.1-beta.608a39d6-d415-5e24-9212-3d6b4823b699
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 +7 -0
- package/dist/index.js +141 -140
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +857 -856
- 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
@@ -2401,6 +2401,8 @@ interface GetNewWorkflowExperienceOptionsBase extends GetWorkflowOptionsBase {
|
|
2401
2401
|
workflowState?: string;
|
2402
2402
|
}
|
2403
2403
|
interface GetWorkflowExperienceFromBlankOptions extends GetNewWorkflowExperienceOptionsBase {
|
2404
|
+
quantity?: number;
|
2405
|
+
recipient?: any;
|
2404
2406
|
type: "blank";
|
2405
2407
|
}
|
2406
2408
|
interface GetWorkflowExperienceFromIntegrationProductOptions extends GetNewWorkflowExperienceOptionsBase {
|
@@ -2965,6 +2967,10 @@ interface GlobalPropertyConfiguration {
|
|
2965
2967
|
id: string;
|
2966
2968
|
aspects: GlobalPropertyConfigurationAspect[];
|
2967
2969
|
}
|
2970
|
+
declare enum GlobalPropertyConfigurationConditionMode {
|
2971
|
+
AND = "AND",
|
2972
|
+
OR = "OR"
|
2973
|
+
}
|
2968
2974
|
interface GlobalPropertyConfigurationAspect {
|
2969
2975
|
name: string;
|
2970
2976
|
type: AspectType;
|
@@ -2972,6 +2978,7 @@ interface GlobalPropertyConfigurationAspect {
|
|
2972
2978
|
description: string;
|
2973
2979
|
entityId?: string;
|
2974
2980
|
conditions?: GlobalPropertyConfigurationAspectCondition[];
|
2981
|
+
conditionMode?: GlobalPropertyConfigurationConditionMode;
|
2975
2982
|
data?: GlobalPropertyConfigurationAspectData;
|
2976
2983
|
mandatory?: boolean;
|
2977
2984
|
}
|