@trii/types 2.10.498 → 2.10.499
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.
|
@@ -45,6 +45,18 @@ exports.defaultNodeConditional = {
|
|
|
45
45
|
default: '',
|
|
46
46
|
placeholder: 'Enter the input value to evaluate conditions'
|
|
47
47
|
},
|
|
48
|
+
{
|
|
49
|
+
type: 'options',
|
|
50
|
+
id: 'operator',
|
|
51
|
+
label: 'Operator',
|
|
52
|
+
labelKey: 'NODE_CONDITIONAL_OPERATOR',
|
|
53
|
+
optional: false,
|
|
54
|
+
default: 'AND',
|
|
55
|
+
options: [
|
|
56
|
+
{ id: 'AND', label: 'AND' },
|
|
57
|
+
{ id: 'OR', label: 'OR' }
|
|
58
|
+
]
|
|
59
|
+
},
|
|
48
60
|
{
|
|
49
61
|
type: 'array',
|
|
50
62
|
id: 'conditions',
|
|
@@ -8,7 +8,7 @@ exports.defaultNodeTimeScheduleControl = {
|
|
|
8
8
|
category: 'action',
|
|
9
9
|
description: "Node for controlling the flow based on time schedules, such as handling after-hours, holidays, or specific time ranges.",
|
|
10
10
|
tags: [],
|
|
11
|
-
version:
|
|
11
|
+
version: 2,
|
|
12
12
|
asyncLoadHandlesOut: true,
|
|
13
13
|
handlesIn: [
|
|
14
14
|
{
|
|
@@ -52,6 +52,14 @@ exports.defaultNodeTimeScheduleControl = {
|
|
|
52
52
|
labelKey: 'NODE_TIME_SCHEDULE_CONTROL_SCHEDULE_ID',
|
|
53
53
|
optional: false,
|
|
54
54
|
loadMethod: 'getTimeSchedules',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
type: 'string',
|
|
58
|
+
id: 'version',
|
|
59
|
+
label: 'Version',
|
|
60
|
+
labelKey: 'NODE_TIME_SCHEDULE_CONTROL_VERSION',
|
|
61
|
+
optional: false,
|
|
62
|
+
default: '2',
|
|
55
63
|
}
|
|
56
64
|
],
|
|
57
65
|
values: undefined,
|