@imgly/plugin-ai-apps-web 0.1.0-rc.1 → 0.1.0

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
@@ -40,4 +40,11 @@ export interface Providers {
40
40
  export interface PluginConfiguration {
41
41
  providers: Providers;
42
42
  debug?: boolean;
43
+ /**
44
+ * Base URL used for the UI assets used in the plugin.
45
+ *
46
+ * By default, we load the assets from the IMG.LY CDN. You can copy the assets.
47
+ * from the `/assets` folder to your own server and set the base URL to your server.
48
+ */
49
+ baseURL?: string;
43
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imgly/plugin-ai-apps-web",
3
- "version": "0.1.0-rc.1",
3
+ "version": "0.1.0",
4
4
  "description": "AI apps orchestration plugin for the CE.SDK editor",
5
5
  "keywords": ["CE.SDK", "plugin", "AI", "ai apps"],
6
6
  "repository": {
@@ -48,7 +48,7 @@
48
48
  "_syncPnpm": "pnpm sync-dependencies-meta-injected"
49
49
  },
50
50
  "devDependencies": {
51
- "@cesdk/cesdk-js": "^1.48.0",
51
+ "@cesdk/cesdk-js": "^1.49.1",
52
52
  "@imgly/plugin-utils": "workspace:*",
53
53
  "esbuild": "^0.19.12",
54
54
  "jest": "^29.7.0",
@@ -85,6 +85,6 @@
85
85
  }
86
86
  },
87
87
  "peerDependencies": {
88
- "@cesdk/cesdk-js": "^1.48.0"
88
+ "@cesdk/cesdk-js": "^1.49.1"
89
89
  }
90
90
  }