diff --git a/src/api/types.ts b/src/api/types.ts index c37ab2e7f..1d3766497 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -13018,6 +13018,8 @@ export interface IngestInferenceProcessor extends IngestProcessorBase { target_field?: Field field_map?: Record inference_config?: IngestInferenceConfig + input_output?: IngestInputConfig[] + ignore_missing?: boolean } export interface IngestIngest { @@ -13026,6 +13028,11 @@ export interface IngestIngest { pipeline?: Name } +export interface IngestInputConfig { + input_field: string + output_field: string +} + export interface IngestIpLocationProcessor extends IngestProcessorBase { database_file?: string field: Field diff --git a/src/api/typesWithBodyKey.ts b/src/api/typesWithBodyKey.ts index 721119f5b..aef2580ad 100644 --- a/src/api/typesWithBodyKey.ts +++ b/src/api/typesWithBodyKey.ts @@ -13266,6 +13266,8 @@ export interface IngestInferenceProcessor extends IngestProcessorBase { target_field?: Field field_map?: Record inference_config?: IngestInferenceConfig + input_output?: IngestInputConfig[] + ignore_missing?: boolean } export interface IngestIngest { @@ -13274,6 +13276,11 @@ export interface IngestIngest { pipeline?: Name } +export interface IngestInputConfig { + input_field: string + output_field: string +} + export interface IngestIpLocationProcessor extends IngestProcessorBase { database_file?: string field: Field