import { VersionInfo } from '@start9labs/start-sdk' // Clarify email-proposal note wording (part of a review-UX refinement; the matching Matrix-side // tweaks — dash separators + redacting decided cards — ship on the Spark, not here). The proposed // grid note now NAMES who emailed whom — "{teammate} emailed {investor}" (outbound) / // "{sender} emailed the team" (inbound) — instead of a bare "Sent"/"Received" that left // "who received?" ambiguous. Also fixes a misclassification where a sender on our corporate // domain whose mailbox isn't enrolled read as "Received": outbound now also matches our domain // (public providers like gmail excluded, so an LP's gmail never reads as ours). Going-forward // only (existing proposals keep their text); no schema change. export const v_0_1_0_91 = VersionInfo.of({ version: '0.1.0:91', releaseNotes: { en_US: [ 'Proposed grid notes now name who emailed whom (e.g. "Jane emailed Acme Capital")', 'instead of an ambiguous "Sent"/"Received", and correctly classify mail from your', 'own domain as outbound even when that mailbox isn\'t enrolled.', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })