@imgly/plugin-ai-apps-web 0.1.0-rc.2 → 0.1.2
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.mjs +15 -15
- package/dist/index.mjs.map +4 -4
- package/dist/types.d.ts +7 -0
- package/package.json +2 -4
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.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "AI apps orchestration plugin for the CE.SDK editor",
|
|
5
5
|
"keywords": ["CE.SDK", "plugin", "AI", "ai apps"],
|
|
6
6
|
"repository": {
|
|
@@ -34,9 +34,7 @@
|
|
|
34
34
|
"build": "pnpm run clean && pnpm _syncPnpm && pnpm exec node scripts/build.mjs",
|
|
35
35
|
"publish:latest": "pnpm run build && npm publish --tag latest --access public",
|
|
36
36
|
"publish:next": "pnpm run build && npm publish --tag next --access public",
|
|
37
|
-
"test": "
|
|
38
|
-
"test:watch": "jest --watch",
|
|
39
|
-
"test:coverage": "jest --coverage",
|
|
37
|
+
"test": "echo No tests",
|
|
40
38
|
"dev": "pnpm --filter \"${npm_package_name}^...\" --parallel run dev:wait && node scripts/watch.mjs",
|
|
41
39
|
"dev:wait": "pnpm exec wait-on ./dist/index.mjs ./dist/index.d.ts --window 250 --timeout 30000",
|
|
42
40
|
"dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
|