@innovastudio/contentbuilder 1.5.181 → 1.5.182

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -338,6 +338,9 @@ declare class ContentBuilder {
338
338
  ): void;
339
339
  openIconPicker(callback: (iconHtml: string) => void): void;
340
340
 
341
- createImage(prompt: string): Promise<string>;
341
+ createImage(
342
+ prompt: string,
343
+ options?: Record<string, any>
344
+ ): Promise<string>;
342
345
  }
343
346
  export default ContentBuilder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.181",
4
+ "version": "1.5.182",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "types": "index.d.ts",