@imgly/plugin-ai-text-generation-web 0.2.4 → 0.2.6
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/CHANGELOG.md +22 -0
- package/README.md +31 -4
- package/dist/anthropic/index.mjs +9 -9
- package/dist/anthropic/index.mjs.map +4 -4
- package/dist/index.mjs +15 -15
- package/dist/index.mjs.map +4 -4
- package/dist/open-ai/index.mjs +9 -9
- package/dist/open-ai/index.mjs.map +4 -4
- package/dist/quickActions/ChangeTextTo.d.ts +1 -0
- package/dist/quickActions/ChangeTone.d.ts +1 -0
- package/dist/quickActions/Fix.d.ts +1 -0
- package/dist/quickActions/Improve.d.ts +1 -0
- package/dist/quickActions/Longer.d.ts +1 -0
- package/dist/quickActions/Shorter.d.ts +1 -0
- package/dist/quickActions/Translate.d.ts +1 -0
- package/dist/quickActions/__tests__/Translate.test.d.ts +1 -0
- package/package.json +17 -4
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.changeTextTo";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.changeTextTo";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.changeTextTo";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.changeTone";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.changeTone";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.changeTone";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.fix";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.fix";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.fix";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.improve";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.improve";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.improve";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.longer";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.longer";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.longer";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.shorter";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.shorter";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.shorter";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -7,6 +7,7 @@ export declare const ID = "ly.img.translate";
|
|
|
7
7
|
* The i18n prefix for the quick action.
|
|
8
8
|
*/
|
|
9
9
|
export declare const I18N_PREFIX = "ly.img.plugin-ai-text-generation-web.quickAction.translate";
|
|
10
|
+
export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-text-generation-web.defaults.quickAction.translate";
|
|
10
11
|
/**
|
|
11
12
|
* The input generated from this quick action which needs
|
|
12
13
|
* to be mapped to the specific provider.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imgly/plugin-ai-text-generation-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "AI text generation plugin for the CE.SDK editor",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"CE.SDK",
|
|
7
|
+
"plugin",
|
|
8
|
+
"AI",
|
|
9
|
+
"text generation",
|
|
10
|
+
"llm"
|
|
11
|
+
],
|
|
6
12
|
"repository": {
|
|
7
13
|
"type": "git",
|
|
8
14
|
"url": "git+https://github.com/imgly/plugins.git"
|
|
@@ -34,7 +40,13 @@
|
|
|
34
40
|
}
|
|
35
41
|
},
|
|
36
42
|
"homepage": "https://img.ly/products/creative-sdk",
|
|
37
|
-
"files": [
|
|
43
|
+
"files": [
|
|
44
|
+
"LICENSE.md",
|
|
45
|
+
"README.md",
|
|
46
|
+
"CHANGELOG.md",
|
|
47
|
+
"dist/",
|
|
48
|
+
"bin/"
|
|
49
|
+
],
|
|
38
50
|
"scripts": {
|
|
39
51
|
"start": "npm run watch",
|
|
40
52
|
"clean": "pnpm exec rimraf dist",
|
|
@@ -54,8 +66,9 @@
|
|
|
54
66
|
"_syncPnpm": "pnpm sync-dependencies-meta-injected"
|
|
55
67
|
},
|
|
56
68
|
"devDependencies": {
|
|
57
|
-
"@imgly/plugin-utils": "workspace:*",
|
|
58
69
|
"@imgly/plugin-ai-generation-web": "workspace:*",
|
|
70
|
+
"@imgly/plugin-utils": "workspace:*",
|
|
71
|
+
"@types/jest": "^30.0.0",
|
|
59
72
|
"@types/ndarray": "^1.0.14",
|
|
60
73
|
"chalk": "^5.3.0",
|
|
61
74
|
"concurrently": "^8.2.2",
|