@chatman-media/conversation-engine 1.3.0 → 1.3.1
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.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -965,7 +965,7 @@ class NotificationService {
|
|
|
965
965
|
for (const [key, value] of Object.entries(vars)) {
|
|
966
966
|
result = result.replace(new RegExp(`\\{\\{${key}\\}\\}`, "g"), String(value ?? ""));
|
|
967
967
|
}
|
|
968
|
-
return result.replace(/\{\{
|
|
968
|
+
return result.replace(/\{\{.{0,200}?\}\}/g, "");
|
|
969
969
|
}
|
|
970
970
|
formatMessage(event) {
|
|
971
971
|
const emoji = this.getEventEmoji(event.eventType);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatman-media/conversation-engine",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Channel-agnostic pipeline обработки inbound сообщений: contact-resolve → conversation lookup → mode routing → AI-reply / queued / human → outbound. Сердце data plane.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|