### What is the bug? `SetProcessor.value`'s type is `Record<string, any>` but should be `string` ### How can one reproduce the bug? ```ts await osClient.ingest.putPipeline({ id: ingestPipelineName, body: { processors: [ { set: { field: "content", value: "{{{title}}} {{{description}}}", }, }, { text_embedding: { field_map: { content: "content_vector", }, model_id: osModelId, }, }, ], }, }); } ``` ### What is the expected behavior? No TS error. ### What is your host/environment? macOS, 3.5.1 ### Do you have any screenshots? <img width="876" height="224" alt="Image" src="https://github.com/user-attachments/assets/9a989f7a-efd6-45e8-b725-d5d9634bc632" /> ### Do you have any additional context? _Add any other context about the problem._