/** * @example * { * id: "HydraDoc1234" * } */ export interface HandlerConnectorUpdateReq { /** Connector ID */ id: string; /** Provider-specific credentials (typically `{"api_token": "..."}` or `{"access_token": "..."}`). */ credentials?: Record; /** * CustomInstructions replaces the guidance applied when this connector's * documents are ingested. Omitted leaves it unchanged; an explicit empty * string clears it. Max 4000 characters; applies from the next sync cycle. */ customInstructions?: string; /** How frequently the scheduler triggers incremental syncs, in seconds. Bounded per provider; send 0 or omit to use the provider default. Change it later with PATCH /connectors/{id}. */ syncIntervalSeconds?: number; }