@spiffcommerce/core 32.4.0-beta.a1f69100-8b64-5ab1-b13d-d042fc2f8765 → 32.4.0-beta.cd474f46-545e-5665-a996-1f7685b6328c
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/dist/index.d.ts +2 -0
- package/dist/index.js +47 -47
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +279 -268
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1390,6 +1390,7 @@ declare abstract class GlobalPropertyHandle {
|
|
1390
1390
|
* @returns Whether this aspect has been marked as `completed` for mandatory checks. Note that this function always returns `true` if the aspect has not been marked as mandatory.
|
1391
1391
|
*/
|
1392
1392
|
isMandatoryFulfilled(): boolean;
|
1393
|
+
clear(): Promise<void>;
|
1393
1394
|
/**
|
1394
1395
|
* Applies the global state to all shared steps, if the state is set.
|
1395
1396
|
* @param targetExperiences Optionally filter the workflow experiences it should be applied to.
|
@@ -1555,6 +1556,7 @@ interface GlobalPropertyStateManager {
|
|
1555
1556
|
setBundleOptions(bundleOptions?: BundleOptions): void;
|
1556
1557
|
getBundleOptions(): BundleOptions | undefined;
|
1557
1558
|
setConfiguration(configuration: GlobalPropertyConfiguration | undefined): void;
|
1559
|
+
clearAspect(name: string): Promise<void>;
|
1558
1560
|
}
|
1559
1561
|
interface BundleOptions {
|
1560
1562
|
additionalHeaders?: {
|