@@ -113,6 +113,7 @@ const createSdk = (config: ActionSdk["config"], configDefinitions?: HerculesActi
113113 registerFlowTypes : async ( ...flowTypes ) => {
114114 flowTypes . forEach ( flowType => {
115115 state . flowTypes . push ( {
116+ signature : flowType . signature ,
116117 identifier : flowType . identifier ,
117118 name : flowType . name || [ ] ,
118119 alias : flowType . alias || [ ] ,
@@ -122,16 +123,13 @@ const createSdk = (config: ActionSdk["config"], configDefinitions?: HerculesActi
122123 documentation : flowType . documentation || [ ] ,
123124 definitionSource : "action" ,
124125 version : flowType . version || config . version ,
125- inputType : flowType . inputType || "" ,
126- returnType : flowType . returnType || "" ,
127126 linkedDataTypeIdentifiers : flowType . linkedDataTypes || [ ] ,
128127 settings : ( flowType . settings || [ ] ) . map ( setting => ( {
129128 name : setting . name || [ ] ,
130129 defaultValue : constructValue ( setting . defaultValue || null ) ,
131130 identifier : setting . identifier ,
132131 description : setting . description || [ ] ,
133132 unique : setting . unique || 1 ,
134- type : setting . type ,
135133 linkedDataTypeIdentifiers : setting . linkedDataTypeIdentifiers || [ ] ,
136134 } as FlowTypeSetting ) ) ,
137135 editable : flowType . editable || false
0 commit comments