@hiennc24/constant 1.7.6 → 1.7.8
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/lib/service.constant.json +12 -1
- package/package.json +2 -2
|
@@ -2368,6 +2368,7 @@
|
|
|
2368
2368
|
"ACTION_BULK_DELETE": "bulkDelete",
|
|
2369
2369
|
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
2370
2370
|
"ACTION_CREATE_ORDER_FROM_CONTRACT": "createOrderFromContract",
|
|
2371
|
+
"ACTION_SEND_EMAIL": "sendEmail",
|
|
2371
2372
|
"ACTION_GET_CONTENT": "getContractContent"
|
|
2372
2373
|
},
|
|
2373
2374
|
"SVC_ADMINISTRATION_LIST_CONTRACT_PRODUCTS": {
|
|
@@ -3396,6 +3397,7 @@
|
|
|
3396
3397
|
"ACTION_RECEIVE_OUTBOUND": "receiveOutbound",
|
|
3397
3398
|
"ACTION_GET_WIDGET_CHAT": "getWidgetChat",
|
|
3398
3399
|
"ACTION_UPDATE_WIDGET_CHAT": "updateWidgetChat",
|
|
3400
|
+
"ACTION_GET_WIDGET_BY_TOKEN": "getWidgetByToken",
|
|
3399
3401
|
"EVENT_INTEGRATION_CREATED": "ai-platform.integration.created",
|
|
3400
3402
|
"EVENT_INTEGRATION_UPDATED": "ai-platform.integration.updated",
|
|
3401
3403
|
"EVENT_INTEGRATION_DELETED": "ai-platform.integration.deleted"
|
|
@@ -3422,9 +3424,13 @@
|
|
|
3422
3424
|
"ACTION_CLOSE": "close",
|
|
3423
3425
|
"ACTION_REOPEN": "reopen",
|
|
3424
3426
|
"ACTION_UPDATE_TAGS": "updateTags",
|
|
3427
|
+
"ACTION_UPDATE_LAST_MESSAGE": "updateLastMessage",
|
|
3428
|
+
"ACTION_SYNC_CONTACT_SEARCH": "syncContactSearch",
|
|
3429
|
+
"ACTION_MARK_READ": "markRead",
|
|
3425
3430
|
"EVENT_CONVERSATION_CREATED": "ai-platform.conversation.created",
|
|
3426
3431
|
"EVENT_CONVERSATION_HANDOFF": "ai-platform.conversation.handoff",
|
|
3427
|
-
"EVENT_CONVERSATION_CLOSED": "ai-platform.conversation.closed"
|
|
3432
|
+
"EVENT_CONVERSATION_CLOSED": "ai-platform.conversation.closed",
|
|
3433
|
+
"EVENT_CONVERSATION_UPDATED": "ai-platform.conversation.updated"
|
|
3428
3434
|
},
|
|
3429
3435
|
"API_AI_PLATFORM_MESSAGES": {
|
|
3430
3436
|
"NAME": "svc-ai-platform.messages",
|
|
@@ -3526,6 +3532,11 @@
|
|
|
3526
3532
|
"ACTION_SEND_MESSAGE": "sendMessage",
|
|
3527
3533
|
"ACTION_ATTACHMENT_UPLOAD": "attachmentUpload"
|
|
3528
3534
|
},
|
|
3535
|
+
"API_AI_PLATFORM_MCP": {
|
|
3536
|
+
"NAME": "svc-ai-platform.mcp",
|
|
3537
|
+
"ACTION_GET_LIST_TOOLS": "getListTools",
|
|
3538
|
+
"ACTION_EXECUTE_TOOL": "executeTool"
|
|
3539
|
+
},
|
|
3529
3540
|
"BISO24_API_GATEWAY": {
|
|
3530
3541
|
"NAME": "BISO24-API-GATEWAY"
|
|
3531
3542
|
}
|
package/package.json
CHANGED