@5minds/node-red-contrib-processcube-tools 1.2.3-feature-33870f-mha9zcs8 → 1.2.3-feature-e5b62e-mhaadpe6
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.
|
@@ -24,25 +24,25 @@
|
|
|
24
24
|
oneditprepare: function () {
|
|
25
25
|
$('#node-config-input-host').typedInput({
|
|
26
26
|
default: 'env',
|
|
27
|
-
types: ['str', 'env'],
|
|
27
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
28
28
|
typeField: '#node-config-input-hostType',
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
$('#node-config-input-port').typedInput({
|
|
32
32
|
default: 'env',
|
|
33
|
-
types: ['num', 'env'],
|
|
33
|
+
types: ['num', 'env', 'flow', 'global'],
|
|
34
34
|
typeField: '#node-config-input-portType',
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
$('#node-config-input-user').typedInput({
|
|
38
38
|
default: 'env',
|
|
39
|
-
types: ['str', 'env'],
|
|
39
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
40
40
|
typeField: '#node-config-input-userType',
|
|
41
41
|
});
|
|
42
42
|
|
|
43
43
|
$('#node-config-input-password').typedInput({
|
|
44
44
|
default: 'env',
|
|
45
|
-
types: ['str', 'env'],
|
|
45
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
46
46
|
typeField: '#node-config-input-passwordType',
|
|
47
47
|
});
|
|
48
48
|
},
|
|
@@ -122,20 +122,20 @@
|
|
|
122
122
|
<dt>Name <span class="property-type">string</span></dt>
|
|
123
123
|
<dd>A friendly name for this IMAP configuration.</dd>
|
|
124
124
|
|
|
125
|
-
<dt>IMAP Host <span class="property-type">string</span></dt>
|
|
126
|
-
<dd>The hostname or IP address of the IMAP server (e.g., imap.gmail.com).</dd>
|
|
125
|
+
<dt>IMAP Host <span class="property-type">string | variable</span></dt>
|
|
126
|
+
<dd>The hostname or IP address of the IMAP server (e.g., imap.gmail.com). Supports string, environment variables, flow context, and global context.</dd>
|
|
127
127
|
|
|
128
|
-
<dt>Port <span class="property-type">number</span></dt>
|
|
129
|
-
<dd>The port number for IMAP connection (typically 993 for TLS, 143 for non-TLS).</dd>
|
|
128
|
+
<dt>Port <span class="property-type">number | variable</span></dt>
|
|
129
|
+
<dd>The port number for IMAP connection (typically 993 for TLS, 143 for non-TLS). Supports number, environment variables, flow context, and global context.</dd>
|
|
130
130
|
|
|
131
131
|
<dt>Use TLS <span class="property-type">boolean</span></dt>
|
|
132
132
|
<dd>Enable TLS/SSL encryption for the connection.</dd>
|
|
133
133
|
|
|
134
|
-
<dt>User <span class="property-type">string</span></dt>
|
|
135
|
-
<dd>The username for IMAP authentication.</dd>
|
|
134
|
+
<dt>User <span class="property-type">string | variable</span></dt>
|
|
135
|
+
<dd>The username for IMAP authentication. Supports string, environment variables, flow context, and global context.</dd>
|
|
136
136
|
|
|
137
|
-
<dt>Password <span class="property-type">string</span></dt>
|
|
138
|
-
<dd>The password for IMAP authentication.
|
|
137
|
+
<dt>Password <span class="property-type">string | variable</span></dt>
|
|
138
|
+
<dd>The password for IMAP authentication. Supports string, environment variables, flow context, and global context.</dd>
|
|
139
139
|
|
|
140
140
|
<dt>Connection Timeout <span class="property-type">number</span></dt>
|
|
141
141
|
<dd>The connection timeout in milliseconds (default: 10000).</dd>
|
|
@@ -24,23 +24,23 @@
|
|
|
24
24
|
oneditprepare: function () {
|
|
25
25
|
$('#node-config-input-host').typedInput({
|
|
26
26
|
default: 'env',
|
|
27
|
-
types: ['str', 'env'],
|
|
27
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
28
28
|
typeField: '#node-config-input-hostType',
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
$('#node-config-input-port').typedInput({
|
|
32
32
|
default: 'env',
|
|
33
|
-
types: ['num', 'env'],
|
|
33
|
+
types: ['num', 'env', 'flow', 'global'],
|
|
34
34
|
typeField: '#node-config-input-portType',
|
|
35
35
|
});
|
|
36
36
|
$('#node-config-input-user').typedInput({
|
|
37
37
|
default: 'env',
|
|
38
|
-
types: ['str', 'env'],
|
|
38
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
39
39
|
typeField: '#node-config-input-userType',
|
|
40
40
|
});
|
|
41
41
|
$('#node-config-input-password').typedInput({
|
|
42
42
|
default: 'env',
|
|
43
|
-
types: ['str', 'env'],
|
|
43
|
+
types: ['str', 'env', 'flow', 'global'],
|
|
44
44
|
typeField: '#node-config-input-passwordType',
|
|
45
45
|
});
|
|
46
46
|
},
|
|
@@ -120,17 +120,17 @@
|
|
|
120
120
|
<dt>Name <span class="property-type">string</span></dt>
|
|
121
121
|
<dd>A friendly name for this SMTP configuration.</dd>
|
|
122
122
|
|
|
123
|
-
<dt>SMTP Host <span class="property-type">string</span></dt>
|
|
124
|
-
<dd>The hostname or IP address of the SMTP server (e.g., smtp.gmail.com).</dd>
|
|
123
|
+
<dt>SMTP Host <span class="property-type">string | variable</span></dt>
|
|
124
|
+
<dd>The hostname or IP address of the SMTP server (e.g., smtp.gmail.com). Supports string, environment variables, flow context, and global context.</dd>
|
|
125
125
|
|
|
126
|
-
<dt>Port <span class="property-type">number</span></dt>
|
|
127
|
-
<dd>The port number for SMTP connection (typically 587 for STARTTLS, 465 for SSL/TLS).</dd>
|
|
126
|
+
<dt>Port <span class="property-type">number | variable</span></dt>
|
|
127
|
+
<dd>The port number for SMTP connection (typically 587 for STARTTLS, 465 for SSL/TLS). Supports number, environment variables, flow context, and global context.</dd>
|
|
128
128
|
|
|
129
129
|
<dt>User <span class="property-type">string | variable</span></dt>
|
|
130
|
-
<dd>The username for SMTP authentication. Supports environment variables and global context.</dd>
|
|
130
|
+
<dd>The username for SMTP authentication. Supports string, environment variables, flow context, and global context.</dd>
|
|
131
131
|
|
|
132
132
|
<dt>Password <span class="property-type">string | variable</span></dt>
|
|
133
|
-
<dd>The password for SMTP authentication. Supports environment variables and global context.</dd>
|
|
133
|
+
<dd>The password for SMTP authentication. Supports string, environment variables, flow context, and global context.</dd>
|
|
134
134
|
|
|
135
135
|
<dt>Connection Timeout <span class="property-type">number</span></dt>
|
|
136
136
|
<dd>The connection timeout in milliseconds (default: 10000).</dd>
|
package/package.json
CHANGED