Skip to main content

@terascope/data-mate / function-configs/interfaces / RecordTransformConfig

Interface: RecordTransformConfig<T>

Defined in: data-mate/src/function-configs/interfaces.ts:210

Extends

Type Parameters

Type ParameterDefault type
T extends Record<string, any>Record<string, unknown>

Properties

PropertyModifierTypeDescriptionOverridesInherited fromDefined in
acceptsreadonlyreadonly FieldType[]Can be used in strongly typed contexts to throw early, some types or only compatible with a given operation-FunctionDefinitionConfig.acceptsdata-mate/src/function-configs/interfaces.ts:138
aliases?readonlyreadonly string[]Optionally specify other known aliases to this function-FunctionDefinitionConfig.aliasesdata-mate/src/function-configs/interfaces.ts:102
argument_schema?readonlyDataTypeFieldsUsed for validating and defining the types of the input arguments, please include description field when creating the schema-FunctionDefinitionConfig.argument_schemadata-mate/src/function-configs/interfaces.ts:126
categoryreadonlyFunctionDefinitionCategoryThe category of operation, for documentation purposes-FunctionDefinitionConfig.categorydata-mate/src/function-configs/interfaces.ts:113
createreadonly(config: FunctionContext<T>) => (value, index) => Record<string, unknown>---data-mate/src/function-configs/interfaces.ts:218
descriptionreadonlystringUsed to generate documentation-FunctionDefinitionConfig.descriptiondata-mate/src/function-configs/interfaces.ts:108
examples?readonlyreadonly FunctionDefinitionExample<T, unknown>[]Examples that will be used in the documentation and potentially in the automated tests. FIXME make this non-optional-FunctionDefinitionConfig.examplesdata-mate/src/function-configs/interfaces.ts:120
namereadonlystringThe name of the function, this should be considered case-insensitive, since some languages like SQL are case insensitive.-FunctionDefinitionConfig.namedata-mate/src/function-configs/interfaces.ts:97
output_typereadonly(inputConfig: ReadonlyDataTypeFields, args?: T) => ReadonlyDataTypeFields---data-mate/src/function-configs/interfaces.ts:214
required_arguments?readonlyreadonly string[]Used to determine what of the possible args are required, as DataType configs does not have a mechanism to specify what is required-FunctionDefinitionConfig.required_argumentsdata-mate/src/function-configs/interfaces.ts:132
typereadonlyRECORD_TRANSFORMType of operation that will be preformedFunctionDefinitionConfig.type-data-mate/src/function-configs/interfaces.ts:213
validate_arguments?readonly(args: T) => voidUsed for additional custom validation of args, called after generic arg validation-FunctionDefinitionConfig.validate_argumentsdata-mate/src/function-configs/interfaces.ts:141