/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request body for toggling Session.disable_chathistory mid-conversation. */ export type SessionDisableChathistoryRequest = { /** * When true, subsequent messages on this session are not written to ChatMessageHistory and the session is unlinked from the user. When false, the session reverts to honoring the user's normal privacy preferences. Future-only: already-recorded messages are not retroactively deleted. */ disable_chathistory: boolean; };