import { VersionInfo } from '@start9labs/start-sdk' // Server half of business-card capture for the Matrix intake bot: the fundraising contact // upsert (_upsert_contact_from_fundraising) now accepts phone + mobile on the contact dict // (alongside city + linkedin_url, which already worked) and writes them to the canonical // contact record. No schema change — the contacts table already has these columns. The bot's // matching transcription/extraction/card changes ship on the Spark (git pull + rebuild), not here. export const v_0_1_0_98 = VersionInfo.of({ version: '0.1.0:98', releaseNotes: { en_US: [ 'Business-card intake (Matrix bot) now captures a contact phone, mobile/cell, city, and', 'LinkedIn from a scanned card onto the contact record (cell to Mobile, office to Phone,', 'fax skipped). No user-facing CRM change.', ].join(' '), }, migrations: { up: async () => {}, down: async () => {} }, })