Ship Matrix-intake CRM endpoints to the box (v0.1.0:84)

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.
This commit is contained in:
Keysat
2026-06-17 15:33:06 -05:00
parent fd2e3ed78e
commit 13326cbdc6
4 changed files with 30 additions and 4 deletions
+3 -2
View File
@@ -44,8 +44,9 @@ import { v_0_1_0_80 } from './v0.1.0.80'
import { v_0_1_0_81 } from './v0.1.0.81'
import { v_0_1_0_82 } from './v0.1.0.82'
import { v_0_1_0_83 } from './v0.1.0.83'
import { v_0_1_0_84 } from './v0.1.0.84'
export const versionGraph = VersionGraph.of({
current: v_0_1_0_83,
other: [v_0_1_0_39, v_0_1_0_40, v_0_1_0_41, v_0_1_0_42, v_0_1_0_43, v_0_1_0_44, v_0_1_0_45, v_0_1_0_46, v_0_1_0_47, v_0_1_0_48, v_0_1_0_49, v_0_1_0_50, v_0_1_0_51, v_0_1_0_52, v_0_1_0_53, v_0_1_0_54, v_0_1_0_55, v_0_1_0_56, v_0_1_0_57, v_0_1_0_58, v_0_1_0_59, v_0_1_0_60, v_0_1_0_61, v_0_1_0_62, v_0_1_0_63, v_0_1_0_64, v_0_1_0_65, v_0_1_0_66, v_0_1_0_67, v_0_1_0_68, v_0_1_0_69, v_0_1_0_70, v_0_1_0_71, v_0_1_0_72, v_0_1_0_73, v_0_1_0_74, v_0_1_0_75, v_0_1_0_76, v_0_1_0_77, v_0_1_0_78, v_0_1_0_79, v_0_1_0_80, v_0_1_0_81, v_0_1_0_82],
current: v_0_1_0_84,
other: [v_0_1_0_39, v_0_1_0_40, v_0_1_0_41, v_0_1_0_42, v_0_1_0_43, v_0_1_0_44, v_0_1_0_45, v_0_1_0_46, v_0_1_0_47, v_0_1_0_48, v_0_1_0_49, v_0_1_0_50, v_0_1_0_51, v_0_1_0_52, v_0_1_0_53, v_0_1_0_54, v_0_1_0_55, v_0_1_0_56, v_0_1_0_57, v_0_1_0_58, v_0_1_0_59, v_0_1_0_60, v_0_1_0_61, v_0_1_0_62, v_0_1_0_63, v_0_1_0_64, v_0_1_0_65, v_0_1_0_66, v_0_1_0_67, v_0_1_0_68, v_0_1_0_69, v_0_1_0_70, v_0_1_0_71, v_0_1_0_72, v_0_1_0_73, v_0_1_0_74, v_0_1_0_75, v_0_1_0_76, v_0_1_0_77, v_0_1_0_78, v_0_1_0_79, v_0_1_0_80, v_0_1_0_81, v_0_1_0_82, v_0_1_0_83],
})
+22
View File
@@ -0,0 +1,22 @@
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 () => {} },
})