@spiffcommerce/core 39.2.2 → 39.2.3
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.cjs +36 -36
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +123 -119
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1461,7 +1461,7 @@ declare class FileUploadGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
|
1461
1461
|
* @returns A promise resolving when all affected steps have been updated.
|
|
1462
1462
|
*/
|
|
1463
1463
|
selectImage(asset: Asset): Promise<void>;
|
|
1464
|
-
|
|
1464
|
+
canUseAdvancedImageManipulation(): Promise<boolean>;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Removes the background from an image, stores it in the state, and returns the new asset.
|
|
1467
1467
|
* @param applyNewAsset Optionally applies the new asset to all shared steps. Default: `true`.
|
|
@@ -4041,7 +4041,7 @@ interface Partner {
|
|
|
4041
4041
|
beta?: boolean;
|
|
4042
4042
|
}
|
|
4043
4043
|
declare enum AddonHandle {
|
|
4044
|
-
|
|
4044
|
+
AdvancedImageManipulation = "BackgroundRemover",
|
|
4045
4045
|
ConversionAccelerator = "Conversion Accelerator",
|
|
4046
4046
|
ProcessBuilder = "ProcessBuilder"
|
|
4047
4047
|
}
|