Bump package version to v0.1.0:94 (NL-query matched-only fix)

Ships the comms_by_user / email_counts_by_user matched-only fix to the box.
No schema change, no UI change — version migrations are no-ops.
This commit is contained in:
Keysat
2026-06-18 20:25:34 -05:00
parent 2d43bad6fc
commit 9d0d3068fb
3 changed files with 26 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
import { VersionInfo } from '@start9labs/start-sdk'
// NL-query correctness fix (W2). The comms_by_user and email_counts_by_user intents counted /
// listed a user's ENTIRE captured sent corpus (internal / vendor / personal mail), not only
// email to a matched investor — they were missing the `EXISTS email_investor_links` gate that
// recent_emails and the Communications panel's query_email_activity already use. Added the
// matched-only gate to both (mirroring query_email_activity), so "emails sent by <user>" and
// "how many emails did <user> send" answer about investor relationships only. No schema change,
// no UI change — up/down are no-ops.
export const v_0_1_0_94 = VersionInfo.of({
version: '0.1.0:94',
releaseNotes: {
en_US: [
'Natural-language query fix: "emails sent by <user>" and per-user email counts now count',
'only email to matched investors (not internal/vendor/personal mail), matching the',
'Communications panel.',
].join(' '),
},
migrations: { up: async () => {}, down: async () => {} },
})