@spiffcommerce/core 0.8.7 → 0.8.8

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/types.d.ts CHANGED
@@ -336,11 +336,11 @@ declare abstract class ModuleProduct {
336
336
  /**
337
337
  * SVG with styled path positioned on a background image. To be displayed to user.
338
338
  */
339
- abstract svgPreview(text: string): string;
339
+ abstract svgPreview(text: string, region: Region): string;
340
340
  /**
341
341
  * SVG with styled path positioned on a background image. To be submitted for print.
342
342
  */
343
- abstract svgPrint(text: string): string;
343
+ abstract svgPrint(text: string, region: Region): string;
344
344
  }
345
345
  export interface EditedSteps {
346
346
  [stepName: string]: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spiffcommerce/core",
3
- "version": "0.8.7",
3
+ "version": "0.8.8",
4
4
  "description": "Core client API for interacting with the Spiff Commerce backend.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",