import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { GenAiConfiguration } from "./GenAiConfiguration.js"; import { StartingPointChangeVector } from "../../StartingPointChangeVector.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; export interface UpdateEtlOperationResult { raftCommandIndex: number; taskId: number; } /** * Operation to update an existing GenAI ETL task. * Allows modifying the configuration and optionally resetting the transformation state. */ export declare class UpdateGenAiOperation implements IMaintenanceOperation { private readonly _taskId; private readonly _configuration; private readonly _startingPoint; private readonly _reset; /** * Creates a new UpdateGenAiOperation. * @param taskId The ID of the task to update * @param configuration The updated GenAI ETL configuration * @param startingPoint Where the ETL should start processing documents (default: DoNotChange) * @param reset Whether to reset the transformation state (default: false) */ constructor(taskId: number, configuration: GenAiConfiguration, startingPoint?: StartingPointChangeVector, reset?: boolean); get resultType(): OperationResultType; getCommand(conventions: DocumentConventions): RavenCommand; } //# sourceMappingURL=UpdateGenAiOperation.d.ts.map