@trii/types 2.10.492 → 2.10.494
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/Conversations/Flows/Nodes/NodeAIChatBot.js +12 -4
- package/dist/Conversations/Flows/Nodes/NodeApi.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeConditional.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeContactSearch.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeContactUpdate.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeConversationAssignTo.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeConversationFinalize.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeConversationUpdate.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeFillForm.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeMsgReply.js +3 -3
- package/dist/Conversations/Flows/Nodes/NodeMsgSend.js +4 -4
- package/dist/Conversations/Flows/Nodes/NodeMsgWaitResponse.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeRedirect.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeSendEmail.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeSqlQuery.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeStart.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeTimeScheduleControl.js +3 -3
- package/dist/Conversations/Flows/Nodes/NodeTimeTimer.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeTimeWaitUntil.js +2 -2
- package/dist/Conversations/Flows/Nodes/NodeToolCalculator.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolContacts.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolFunction.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolGoogleCalendar.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolKnowledge.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolMapsCheckPolygon.js +1 -1
- package/dist/Conversations/Flows/Nodes/NodeToolMcpClient.js +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ exports.defaultNodeNodeAIChatBot = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeNodeAIChatBot = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "aiTools
|
|
26
|
+
id: "aiTools",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Tools",
|
|
@@ -32,7 +32,7 @@ exports.defaultNodeNodeAIChatBot = {
|
|
|
32
32
|
showName: true
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
id: "aiTransitions
|
|
35
|
+
id: "aiTransitions",
|
|
36
36
|
type: 'source',
|
|
37
37
|
position: 'right',
|
|
38
38
|
name: "Transitions",
|
|
@@ -41,7 +41,7 @@ exports.defaultNodeNodeAIChatBot = {
|
|
|
41
41
|
showName: true
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
id: "aiError
|
|
44
|
+
id: "aiError",
|
|
45
45
|
type: 'source',
|
|
46
46
|
position: 'right',
|
|
47
47
|
name: "Error",
|
|
@@ -64,6 +64,14 @@ exports.defaultNodeNodeAIChatBot = {
|
|
|
64
64
|
placeholder: 'Enter the prompt for the AI model',
|
|
65
65
|
rows: 3
|
|
66
66
|
},
|
|
67
|
+
{
|
|
68
|
+
type: 'asyncOptions',
|
|
69
|
+
id: 'providerId',
|
|
70
|
+
label: 'Provider LLM',
|
|
71
|
+
labelKey: 'NODE_TIME_SCHEDULE_CONTROL_PROVIDER_ID',
|
|
72
|
+
optional: false,
|
|
73
|
+
loadMethod: 'llmProviders',
|
|
74
|
+
},
|
|
67
75
|
{
|
|
68
76
|
type: 'string',
|
|
69
77
|
id: 'llmProvider',
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeApi = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeApi = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeConditional = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeConditional = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNoCondition
|
|
26
|
+
id: "onNoCondition",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "No Condition",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeContactSearch = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeContactSearch = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeContactUpdate = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeContactUpdate = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeConversationAssignTo = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeConversationAssignTo = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeConversationFinalize = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeConversationFinalize = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeConversationUpdate = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeConversationUpdate = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -25,7 +25,7 @@ exports.defaultNodeFillForm = {
|
|
|
25
25
|
asyncLoadHandlesOut: false,
|
|
26
26
|
handlesIn: [
|
|
27
27
|
{
|
|
28
|
-
id: "
|
|
28
|
+
id: "in",
|
|
29
29
|
type: 'target',
|
|
30
30
|
position: 'left',
|
|
31
31
|
name: "IN",
|
|
@@ -36,7 +36,7 @@ exports.defaultNodeFillForm = {
|
|
|
36
36
|
],
|
|
37
37
|
handlesOut: [
|
|
38
38
|
{
|
|
39
|
-
id: "onNext
|
|
39
|
+
id: "onNext",
|
|
40
40
|
type: 'source',
|
|
41
41
|
position: 'right',
|
|
42
42
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeMsgTextReply = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -88,7 +88,7 @@ exports.defaultNodeMsgTemplateReply = {
|
|
|
88
88
|
asyncLoadHandlesOut: false,
|
|
89
89
|
handlesIn: [
|
|
90
90
|
{
|
|
91
|
-
id: "
|
|
91
|
+
id: "in",
|
|
92
92
|
type: 'target',
|
|
93
93
|
position: 'left',
|
|
94
94
|
name: "IN",
|
|
@@ -99,7 +99,7 @@ exports.defaultNodeMsgTemplateReply = {
|
|
|
99
99
|
],
|
|
100
100
|
handlesOut: [
|
|
101
101
|
{
|
|
102
|
-
id: "onNext
|
|
102
|
+
id: "onNext",
|
|
103
103
|
type: 'source',
|
|
104
104
|
position: 'right',
|
|
105
105
|
name: "Next",
|
|
@@ -37,7 +37,7 @@ exports.defaultNodeMsgText = {
|
|
|
37
37
|
asyncLoadHandlesOut: false,
|
|
38
38
|
handlesIn: [
|
|
39
39
|
{
|
|
40
|
-
id: "
|
|
40
|
+
id: "in",
|
|
41
41
|
type: 'target',
|
|
42
42
|
position: 'left',
|
|
43
43
|
name: "IN",
|
|
@@ -48,7 +48,7 @@ exports.defaultNodeMsgText = {
|
|
|
48
48
|
],
|
|
49
49
|
handlesOut: [
|
|
50
50
|
{
|
|
51
|
-
id: "onNext
|
|
51
|
+
id: "onNext",
|
|
52
52
|
type: 'source',
|
|
53
53
|
position: 'right',
|
|
54
54
|
name: "Next",
|
|
@@ -130,7 +130,7 @@ exports.defaultNodeMsgTemplate = {
|
|
|
130
130
|
asyncLoadHandlesOut: false,
|
|
131
131
|
handlesIn: [
|
|
132
132
|
{
|
|
133
|
-
id: "
|
|
133
|
+
id: "in",
|
|
134
134
|
type: 'target',
|
|
135
135
|
position: 'left',
|
|
136
136
|
name: "IN",
|
|
@@ -141,7 +141,7 @@ exports.defaultNodeMsgTemplate = {
|
|
|
141
141
|
],
|
|
142
142
|
handlesOut: [
|
|
143
143
|
{
|
|
144
|
-
id: "onNext
|
|
144
|
+
id: "onNext",
|
|
145
145
|
type: 'source',
|
|
146
146
|
position: 'right',
|
|
147
147
|
name: "Next",
|
|
@@ -18,7 +18,7 @@ exports.defaultNodeMsgWaitResponse = {
|
|
|
18
18
|
asyncLoadHandlesOut: false,
|
|
19
19
|
handlesIn: [
|
|
20
20
|
{
|
|
21
|
-
id: "
|
|
21
|
+
id: "in",
|
|
22
22
|
type: 'target',
|
|
23
23
|
position: 'left',
|
|
24
24
|
name: "IN",
|
|
@@ -29,7 +29,7 @@ exports.defaultNodeMsgWaitResponse = {
|
|
|
29
29
|
],
|
|
30
30
|
handlesOut: [
|
|
31
31
|
{
|
|
32
|
-
id: "onNext
|
|
32
|
+
id: "onNext",
|
|
33
33
|
type: 'source',
|
|
34
34
|
position: 'right',
|
|
35
35
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeSendEmail = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeSendEmail = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeSqlQuery = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeSqlQuery = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -13,7 +13,7 @@ exports.defaultNodeStartNewConversation = {
|
|
|
13
13
|
handlesIn: [],
|
|
14
14
|
handlesOut: [
|
|
15
15
|
{
|
|
16
|
-
id: "
|
|
16
|
+
id: "onNext",
|
|
17
17
|
type: 'source',
|
|
18
18
|
position: 'right',
|
|
19
19
|
name: "Start",
|
|
@@ -176,7 +176,7 @@ exports.defaultNodeStartConversationOpened = {
|
|
|
176
176
|
handlesIn: [],
|
|
177
177
|
handlesOut: [
|
|
178
178
|
{
|
|
179
|
-
id: "
|
|
179
|
+
id: "onNext",
|
|
180
180
|
type: 'source',
|
|
181
181
|
position: 'right',
|
|
182
182
|
name: "Start",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeTimeScheduleControl = {
|
|
|
12
12
|
asyncLoadHandlesOut: true,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeTimeScheduleControl = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onHoliday
|
|
26
|
+
id: "onHoliday",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Holiday",
|
|
@@ -32,7 +32,7 @@ exports.defaultNodeTimeScheduleControl = {
|
|
|
32
32
|
multiple: false
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
|
-
id: "onAfterHours
|
|
35
|
+
id: "onAfterHours",
|
|
36
36
|
type: 'source',
|
|
37
37
|
position: 'right',
|
|
38
38
|
name: "After Hours",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeTimeTimer = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeTimeTimer = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|
|
@@ -12,7 +12,7 @@ exports.defaultNodeTimeWaitUntil = {
|
|
|
12
12
|
asyncLoadHandlesOut: false,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
15
|
-
id: "
|
|
15
|
+
id: "in",
|
|
16
16
|
type: 'target',
|
|
17
17
|
position: 'left',
|
|
18
18
|
name: "IN",
|
|
@@ -23,7 +23,7 @@ exports.defaultNodeTimeWaitUntil = {
|
|
|
23
23
|
],
|
|
24
24
|
handlesOut: [
|
|
25
25
|
{
|
|
26
|
-
id: "onNext
|
|
26
|
+
id: "onNext",
|
|
27
27
|
type: 'source',
|
|
28
28
|
position: 'right',
|
|
29
29
|
name: "Next",
|