Creates a new Action Type (sys_hub_action_type_definition).
This function defines the metadata and schema for a reusable action within the Flow system.
Param: _config
An object adhering to ActionConfig but with FlowValueType for inputs/outputs:
$id - Unique ID for the record, typically using Now.ID["value"].
name - Display name for the action.
natlang? - Natural language phrase for the action.
description? - Detailed explanation of the action's purpose.
annotation? - Default annotation text when used in a flow.
category? - Reference to sys_hub_category for grouping.
inputs - Input definitions using FlowValueType.
outputs - Output definitions using FlowValueType.
Returns
A callable Action object, typed with inferred input and output schemas
(transformed by FlowSchemaType). Currently, the implementation returns undefined
and likely serves as a type definition or registration mechanism.
Creates a new Action Type (
sys_hub_action_type_definition). This function defines the metadata and schema for a reusable action within the Flow system.Param: _config
An object adhering to
ActionConfigbut withFlowValueTypefor inputs/outputs:Now.ID["value"].sys_hub_categoryfor grouping.FlowValueType.FlowValueType.Returns
A callable
Actionobject, typed with inferred input and output schemas (transformed byFlowSchemaType). Currently, the implementation returnsundefinedand likely serves as a type definition or registration mechanism.