import { VersionInfo } from '@start9labs/start-sdk' // Email-activity agent (propose -> review -> approve). When a sent/received email is // matched to an investor, a local-model agent drafts a one-line dated note and queues // it for review on the Email Capture page; a partner edits if needed and Approves // (appends to that investor's grid notes) or Dismisses. Going-forward only (never // summarizes email older than when this was switched on), so the historical backfill // makes no noise. Sovereign: the summary runs entirely on the local model. Gmail sync // interval tightened to ~15 min so outgoing email surfaces quickly. Migration 0002 // (email_activity_proposals). export const v_0_1_0_64 = VersionInfo.of({ version: '0.1.0:64', releaseNotes: { en_US: [ 'New email-activity agent: when an email is matched to an investor, it drafts a short', 'dated note (on your local model) and queues it on the Email Capture page for you to', 'edit, approve into that investor’s grid notes, or dismiss. Going-forward only, so', 'the historical backfill stays quiet. Gmail now syncs about every 15 minutes.', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })