@spiffcommerce/core 31.3.0 → 31.4.0-beta.5fa2c8d1-12a9-57f7-90b0-7e4a963b36e7
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 +4 -0
- package/dist/index.js +17 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +68 -61
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
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
|
+
## [31.4.0] - 10-09-2025
|
18
|
+
|
19
|
+
## Added
|
20
|
+
|
21
|
+
- Fetching new `limit` option for Theme Configurations
|
22
|
+
|
17
23
|
## [31.3.0] - 10-09-2025
|
18
24
|
|
19
25
|
## Added
|
package/dist/index.d.ts
CHANGED
@@ -2689,6 +2689,7 @@ interface WorkflowManager {
|
|
2689
2689
|
setEditedStatus: (stepName: string, status: boolean) => void;
|
2690
2690
|
setInformationResults: (results: InformationResult[]) => void;
|
2691
2691
|
setMandatoryFulfilled: (stepName: string, status: boolean) => void;
|
2692
|
+
getMandatoryUnfulfilledSteps: () => string[];
|
2692
2693
|
setSelectionsAndElements: (stepName: string, variants: VariantResource[], elements: RegionElement[], callback?: () => Promise<void>) => Promise<void>;
|
2693
2694
|
setStepError: (stepName: string, field: string, error: string | undefined) => void;
|
2694
2695
|
/** Gets any validation errors for a specific step, or `undefined` if there are none. */
|
@@ -2754,6 +2755,7 @@ interface WorkflowManager {
|
|
2754
2755
|
getTemplatingContext(): {
|
2755
2756
|
[key: string]: any;
|
2756
2757
|
};
|
2758
|
+
traversableScenes(): Promise<WorkflowScene[]>;
|
2757
2759
|
}
|
2758
2760
|
|
2759
2761
|
declare enum AssetType {
|
@@ -5145,6 +5147,8 @@ declare class DigitalContentStepService implements StepService<DigitalContentSte
|
|
5145
5147
|
declare const digitalContentStepService: DigitalContentStepService;
|
5146
5148
|
|
5147
5149
|
declare class MockWorkflowManager implements WorkflowManager {
|
5150
|
+
traversableScenes(): Promise<WorkflowScene[]>;
|
5151
|
+
getMandatoryUnfulfilledSteps: () => string[];
|
5148
5152
|
getTemplatingContext: () => Promise<{
|
5149
5153
|
[key: string]: any;
|
5150
5154
|
}>;
|