@trii/types 2.10.482 → 2.10.483

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.
@@ -118,9 +118,13 @@ export interface INodeHandle {
118
118
  type: 'source' | 'target';
119
119
  position: 'left' | 'right' | 'top' | 'bottom';
120
120
  /**
121
- * Si permite múltiples conexiones
121
+ * Si un handle del tipo (source) permite múltiples conexiones salientes.
122
122
  */
123
- multiple?: boolean;
123
+ multiple?: boolean | false;
124
+ /**
125
+ * Si un handle de tipo fuente (source) muestra el nombre definido en la UI
126
+ */
127
+ showName?: boolean | true;
124
128
  }
125
129
  export interface INodeProperty {
126
130
  /**
@@ -15,7 +15,7 @@ exports.defaultNodeSendEmail = {
15
15
  type: 'target',
16
16
  position: 'left',
17
17
  name: "IN",
18
- nameKey: 'NODE_HANDLE_IN'
18
+ nameKey: 'NODE_HANDLE_IN',
19
19
  }
20
20
  ],
21
21
  handlesOut: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.482",
3
+ "version": "2.10.483",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",