@coffer-org/plugin-webchat 7.0.1 → 7.2.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/ChatWidget-BIPLpTMp.js +2398 -0
- package/dist/index.js +2 -0
- package/dist/runtime/actions.d.ts +1 -1
- package/dist/runtime/actions.js +40 -24
- package/dist/runtime/channel-registry.d.ts +11 -4
- package/dist/runtime/channel-registry.js +91 -13
- package/dist/runtime/connector.d.ts +3 -7
- package/dist/runtime/connector.js +14 -55
- package/dist/runtime/format.d.ts +0 -1
- package/dist/runtime/format.js +2 -11
- package/dist/runtime/index.d.ts +1 -2
- package/dist/runtime/index.js +6 -7
- package/dist/runtime/send.d.ts +2 -0
- package/dist/runtime/send.js +54 -29
- package/dist/schema.js +133 -84
- package/dist/web.js +1 -1
- package/locales/en.json +4 -3
- package/locales/ru.json +5 -3
- package/locales/uk.json +5 -3
- package/package.json +5 -6
- package/dist/ChatWidget-DkEKl1-2.js +0 -24846
package/locales/ru.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"stop": "Стоп",
|
|
22
22
|
"attach": "Прикрепить файл",
|
|
23
23
|
"removeAttachment": "Удалить {{name}}",
|
|
24
|
+
"attachments": "Прикреплённые файлы",
|
|
25
|
+
"moreFiles_one": "ещё {{count}} файл",
|
|
26
|
+
"moreFiles_few": "ещё {{count}} файла",
|
|
27
|
+
"moreFiles_many": "ещё {{count}} файлов",
|
|
28
|
+
"fewerFiles": "Свернуть",
|
|
24
29
|
"uploading": "Загрузка…",
|
|
25
30
|
"uploadProgress": "Прогресс загрузки",
|
|
26
31
|
"uploadTooLarge": "Файл слишком большой (максимум 25 МБ).",
|
|
@@ -32,9 +37,6 @@
|
|
|
32
37
|
"error": "Ошибка: {{message}}",
|
|
33
38
|
"reasoning": "Рассуждения",
|
|
34
39
|
"agentPicker": "Агент и пресет",
|
|
35
|
-
"level": "Уровень {{value}} из {{max}}",
|
|
36
|
-
"quality": "Качество {{value}} из 5",
|
|
37
|
-
"time": "Время {{value}} из 5",
|
|
38
40
|
"settings": {
|
|
39
41
|
"label": "Чат на сайте",
|
|
40
42
|
"reasoning_display": "Показ рассуждений",
|
package/locales/uk.json
CHANGED
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"stop": "Стоп",
|
|
22
22
|
"attach": "Додати файл",
|
|
23
23
|
"removeAttachment": "Видалити {{name}}",
|
|
24
|
+
"attachments": "Прикріплені файли",
|
|
25
|
+
"moreFiles_one": "ще {{count}} файл",
|
|
26
|
+
"moreFiles_few": "ще {{count}} файли",
|
|
27
|
+
"moreFiles_many": "ще {{count}} файлів",
|
|
28
|
+
"fewerFiles": "Згорнути",
|
|
24
29
|
"uploading": "Завантаження…",
|
|
25
30
|
"uploadProgress": "Прогрес завантаження",
|
|
26
31
|
"uploadTooLarge": "Файл завеликий (максимум 25 МБ).",
|
|
@@ -32,9 +37,6 @@
|
|
|
32
37
|
"error": "Помилка: {{message}}",
|
|
33
38
|
"reasoning": "Міркування",
|
|
34
39
|
"agentPicker": "Агент і пресет",
|
|
35
|
-
"level": "Рівень {{value}} з {{max}}",
|
|
36
|
-
"quality": "Якість {{value}} з 5",
|
|
37
|
-
"time": "Час {{value}} з 5",
|
|
38
40
|
"settings": {
|
|
39
41
|
"label": "Чат на сайті",
|
|
40
42
|
"reasoning_display": "Показ міркувань",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coffer-org/plugin-webchat",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=24"
|
|
@@ -27,11 +27,10 @@
|
|
|
27
27
|
"test:ui": "vitest run --root ."
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@coffer-org/
|
|
31
|
-
"@coffer-org/
|
|
32
|
-
"
|
|
33
|
-
"react
|
|
34
|
-
"remark-gfm": "^4.0.1"
|
|
30
|
+
"@coffer-org/markdown": "^7.4.0",
|
|
31
|
+
"@coffer-org/sdk": "^7.4.1",
|
|
32
|
+
"@coffer-org/server": "^7.5.0",
|
|
33
|
+
"lucide-react": "^1.17.0"
|
|
35
34
|
},
|
|
36
35
|
"coffer": {
|
|
37
36
|
"runtime": "node",
|