@spiffcommerce/core 31.3.0 → 31.4.0-beta.c4e503af-360f-5779-8464-b409180b3fde
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 +2 -0
- package/dist/index.js +17 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +65 -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. */
|
@@ -5145,6 +5146,7 @@ declare class DigitalContentStepService implements StepService<DigitalContentSte
|
|
5145
5146
|
declare const digitalContentStepService: DigitalContentStepService;
|
5146
5147
|
|
5147
5148
|
declare class MockWorkflowManager implements WorkflowManager {
|
5149
|
+
getMandatoryUnfulfilledSteps: () => string[];
|
5148
5150
|
getTemplatingContext: () => Promise<{
|
5149
5151
|
[key: string]: any;
|
5150
5152
|
}>;
|