@swimlane/connector-interfaces
Advanced tools
Comparing version 1.8.5-rc8 to 1.8.5-rc9
@@ -0,1 +1,2 @@ | ||
import { Expression } from '@turbine/turbine-expression'; | ||
/** | ||
@@ -22,2 +23,16 @@ * Transformation Display Descriptor | ||
label?: string; | ||
/** | ||
* Condition used to determine if the input should be displayed | ||
*/ | ||
show?: TransformationConditional; | ||
/** | ||
* Condition used to determine if the input should be required | ||
*/ | ||
required?: TransformationConditional; | ||
} | ||
export interface TransformationConditional { | ||
/** | ||
* Boolean expression | ||
*/ | ||
if: Expression; | ||
} |
{ | ||
"name": "@swimlane/connector-interfaces", | ||
"version": "1.8.5-rc8", | ||
"version": "1.8.5-rc9", | ||
"description": "Contains all the Connector interfaces required by external projects.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
75574
1040