const ALWAYS_FRESH_INTEGRATION_TOOL_IDS = new Set([ 'google_workspace_request', 'google_workspace_export_dataset', // Unique public operation alias for google_workspace_export_dataset. 'export_dataset', ]); /** * These tools read or mutate reviewer-owned live state. Reusing a checkpoint or * durable receipt would hide edits or skip the export's conflict checks. */ export function isAlwaysFreshIntegrationTool(toolId: string): boolean { return ALWAYS_FRESH_INTEGRATION_TOOL_IDS.has(toolId.trim()); }