/** * @example * { * id: "HydraDoc1234", * credentials: { * "api_token": "xoxb-..." * } * } */ export interface HandlerVaultCredentialUpdateReq { /** Connector ID */ id: string; /** Provider-specific credentials (typically `{"api_token": "..."}` or `{"access_token": "..."}`). */ credentials: Record; }