13326cbdc6
The intake bot's server-side dependencies — GET /api/intake/match (new-vs-
existing lookup) and `source` provenance on log-communication — shipped in
source with 7ad0ee7 but were never packaged. The box ran v83 (pre-7ad0ee7),
so the bot's match calls 404'd: a note on an existing investor would have
created a duplicate, and writes weren't tagged matrix_intake. Bump + build +
install verified live (installed-version 0.1.0:84, clean 83->84 migration,
match endpoint now resolves by name and email). No schema change.
Also log the conversational (LLM-mediated) edit enhancement in ROADMAP.
23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
// Matrix intake bot — CRM server-side support. Code-only, no schema change (migrations no-ops).
|
|
// These shipped in source with the intake bot (commit 7ad0ee7) but were never packaged; the bot
|
|
// (a separate process on the Spark) depends on them being live on the box:
|
|
// * GET /api/intake/match — read-only new-vs-existing lookup against the canonical fundraising
|
|
// grid blob; returns the grid row id so an approved note lands on the matched investor
|
|
// (no duplicate). The bot calls this to label its in-thread proposal new-vs-existing.
|
|
// * source provenance on POST /api/fundraising/log-communication — the audit entry now records
|
|
// a `source` (e.g. "matrix_intake"); defaults to "fundraising_grid", so existing callers
|
|
// (the grid UI) are unchanged.
|
|
export const v_0_1_0_84 = VersionInfo.of({
|
|
version: '0.1.0:84',
|
|
releaseNotes: {
|
|
en_US: [
|
|
'Matrix intake bot server support: a read-only investor-match endpoint so the bot can',
|
|
'recognize existing investors (no duplicates), plus write-provenance in the audit log.',
|
|
'No data changes.',
|
|
].join(' '),
|
|
},
|
|
migrations: { up: async () => {}, down: async () => {} },
|
|
})
|