@company-semantics/contracts 34.0.0 → 35.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/package.json +4 -4
  2. package/src/index.ts +17 -11
  3. package/src/notifications/README.md +140 -0
  4. package/src/notifications/__tests__/README.md +54 -0
  5. package/src/notifications/__tests__/__snapshots__/README.md +32 -0
  6. package/src/notifications/__tests__/content.test.ts +186 -0
  7. package/src/notifications/__tests__/context.test.ts +72 -0
  8. package/src/notifications/__tests__/definition.test.ts +222 -0
  9. package/src/notifications/__tests__/kinds.test.ts +81 -0
  10. package/src/notifications/__tests__/output-parity.golden.ts +363 -0
  11. package/src/notifications/__tests__/output-parity.test.ts +122 -0
  12. package/src/notifications/__tests__/registry.test.ts +184 -0
  13. package/src/{email/render → notifications}/__tests__/render-snapshot.test.ts +58 -29
  14. package/src/notifications/__tests__/renderer.test.ts +181 -0
  15. package/src/notifications/content.ts +249 -0
  16. package/src/notifications/context.ts +70 -0
  17. package/src/notifications/definition.ts +82 -0
  18. package/src/notifications/index.ts +104 -0
  19. package/src/notifications/kinds/README.md +57 -0
  20. package/src/notifications/kinds/auth-otp.ts +99 -0
  21. package/src/notifications/kinds/chat-shared.ts +56 -0
  22. package/src/notifications/kinds/company-md-access-approved.ts +57 -0
  23. package/src/notifications/kinds/company-md-access-denied.ts +61 -0
  24. package/src/notifications/kinds/company-md-access-requested.ts +65 -0
  25. package/src/notifications/kinds/index.ts +19 -0
  26. package/src/notifications/kinds/org-invite.ts +62 -0
  27. package/src/notifications/kinds/ownership-transfer-completed.ts +57 -0
  28. package/src/notifications/kinds/ownership-transfer.ts +68 -0
  29. package/src/notifications/kinds/security-alert.ts +78 -0
  30. package/src/notifications/kinds/share-granted.ts +74 -0
  31. package/src/notifications/kinds/unit-owner-granted.ts +95 -0
  32. package/src/notifications/kinds.ts +68 -0
  33. package/src/{email/types.ts → notifications/payloads.ts} +33 -68
  34. package/src/notifications/registry.ts +107 -0
  35. package/src/notifications/render.ts +106 -0
  36. package/src/notifications/renderer.ts +50 -0
  37. package/src/notifications/renderers/README.md +50 -0
  38. package/src/notifications/renderers/email/README.md +74 -0
  39. package/src/notifications/renderers/email/__tests__/README.md +29 -0
  40. package/src/notifications/renderers/email/__tests__/render.test.ts +180 -0
  41. package/src/{email/render → notifications/renderers/email}/chat.ts +53 -107
  42. package/src/notifications/renderers/email/constants.ts +47 -0
  43. package/src/notifications/renderers/email/cta.ts +63 -0
  44. package/src/{email/render → notifications/renderers/email}/escape-html.ts +5 -1
  45. package/src/notifications/renderers/email/index.ts +73 -0
  46. package/src/notifications/renderers/email/render.ts +225 -0
  47. package/src/notifications/renderers/email/shells.ts +60 -0
  48. package/src/notifications/renderers/slack/README.md +73 -0
  49. package/src/notifications/renderers/slack/__tests__/README.md +33 -0
  50. package/src/notifications/renderers/slack/__tests__/index.test.ts +201 -0
  51. package/src/notifications/renderers/slack/index.ts +261 -0
  52. package/src/notifications/renderers/sms/README.md +69 -0
  53. package/src/notifications/renderers/sms/__tests__/README.md +31 -0
  54. package/src/notifications/renderers/sms/__tests__/index.test.ts +162 -0
  55. package/src/notifications/renderers/sms/index.ts +131 -0
  56. package/src/notifications/text.ts +52 -0
  57. package/src/email/README.md +0 -51
  58. package/src/email/__tests__/registry.test.ts +0 -161
  59. package/src/email/index.ts +0 -36
  60. package/src/email/registry.ts +0 -155
  61. package/src/email/render/auth-otp.ts +0 -71
  62. package/src/email/render/blocks.ts +0 -281
  63. package/src/email/render/chat-shared.ts +0 -35
  64. package/src/email/render/company-md-access-approved.ts +0 -42
  65. package/src/email/render/company-md-access-denied.ts +0 -43
  66. package/src/email/render/company-md-access-requested.ts +0 -46
  67. package/src/email/render/constants.ts +0 -18
  68. package/src/email/render/index.ts +0 -58
  69. package/src/email/render/org-invite.ts +0 -40
  70. package/src/email/render/ownership-transfer-completed.ts +0 -41
  71. package/src/email/render/ownership-transfer.ts +0 -42
  72. package/src/email/render/render-email.ts +0 -194
  73. package/src/email/render/security-alert.ts +0 -61
  74. package/src/email/render/share-granted.ts +0 -52
  75. package/src/email/render/unit-owner-granted.ts +0 -60
  76. /package/src/{email/render → notifications}/__tests__/__snapshots__/render-snapshot.test.ts.snap +0 -0
@@ -0,0 +1,363 @@
1
+ /**
2
+ * Byte-exact baseline of what the email render layer emitted at 32.0.0, before
3
+ * any of the notification work existed.
4
+ *
5
+ * `OUTPUT_PARITY_FIXTURES` are the inputs (kind + payload);
6
+ * `OUTPUT_PARITY_GOLDEN` is the `{ subject, text, html }` each one rendered to,
7
+ * keyed by `fixtureKey()`. Together they are the "no output change" contract for
8
+ * the multi-channel notification work (ADR-CONTRACTS-086): as the render layer
9
+ * was generalised behind a channel abstraction, the same fixtures had to keep
10
+ * producing these exact bytes. A diff here means a real sent email changed.
11
+ *
12
+ * THE BYTES BELOW ARE FROZEN. They are the only surviving evidence of what the
13
+ * old layer did — `src/email/` is deleted, so there is nothing left to
14
+ * re-capture them from. Regenerating them to make a test pass does not fix a
15
+ * failure, it destroys the proof. Fix the renderer instead.
16
+ *
17
+ * The TYPES have been re-anchored onto this domain (`NotificationKind`,
18
+ * `NotificationPayloads`, `../renderers/email`'s `RenderedEmail`) now that their
19
+ * `Email*` originals are gone. That moved no bytes: the golden's own equality
20
+ * test is what says so.
21
+ *
22
+ * The fixtures mirror `./render-snapshot.test.ts` so the parity proof covers
23
+ * every kind that file covers.
24
+ *
25
+ * Capture-time options are not recorded. The old `renderEmail` took a
26
+ * `RenderEmailOptions`, and one fixture set `includeRequestMetadata: true`; the
27
+ * new entry point has no equivalent because `auth.otp`'s `compose` gates request
28
+ * details on whether the payload carries them — and that fixture's payload
29
+ * carries both, so the gate opens anyway. The byte equality in
30
+ * `./output-parity.test.ts` is what proves it rather than the dropped argument.
31
+ */
32
+
33
+ import type { NotificationKind } from "../kinds";
34
+ import type { NotificationPayloads } from "../payloads";
35
+ import type { RenderedEmail } from "../renderers/email";
36
+
37
+ /**
38
+ * The instant the golden bytes were captured under.
39
+ *
40
+ * The old layer read `new Date().getFullYear()` inside `signature()`, so every
41
+ * kind below embeds that instant's year. It is deliberately NOT redacted: the
42
+ * year is part of the output surface this proof exists to protect. Rendering the
43
+ * fixtures now means stating this year in the `RenderContext` rather than
44
+ * freezing a clock — which is the impurity the migration retired.
45
+ */
46
+ export const OUTPUT_PARITY_CLOCK = "2026-07-15T00:00:00.000Z";
47
+
48
+ /** One baseline case: a kind rendered with a representative payload. */
49
+ export interface OutputParityFixture {
50
+ readonly kind: NotificationKind;
51
+ /** Variant label, unique within a kind. */
52
+ readonly name: string;
53
+ readonly payload: NotificationPayloads[NotificationKind];
54
+ }
55
+
56
+ /** Stable key for a fixture — the lookup into `OUTPUT_PARITY_GOLDEN`. */
57
+ export function fixtureKey(kind: NotificationKind, name: string): string {
58
+ return `${kind} · ${name}`;
59
+ }
60
+
61
+ const fixtures: OutputParityFixture[] = [];
62
+ function add<K extends NotificationKind>(
63
+ kind: K,
64
+ name: string,
65
+ payload: NotificationPayloads[K],
66
+ ): void {
67
+ fixtures.push({ kind, name, payload });
68
+ }
69
+
70
+ const APP = "https://app.companysemantics.ai";
71
+
72
+ add("auth.otp", "Default", { otp: "123456", expiresInMinutes: 10 });
73
+ add("auth.otp", "Short expiry", { otp: "902413", expiresInMinutes: 1 });
74
+ add("auth.otp", "With request metadata", {
75
+ otp: "246810",
76
+ expiresInMinutes: 5,
77
+ requestIp: "203.0.113.4",
78
+ userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
79
+ });
80
+
81
+ add("org.invite", "Admin", {
82
+ inviterName: "Alex Rivera",
83
+ orgName: "Acme Corp",
84
+ role: "admin",
85
+ acceptUrl: `${APP}/invite/abc123`,
86
+ expiresAt: "2026-06-13T00:00:00.000Z",
87
+ });
88
+ add("org.invite", "Member", {
89
+ inviterName: "Alex Rivera",
90
+ orgName: "Acme Corp",
91
+ role: "member",
92
+ acceptUrl: `${APP}/invite/def456`,
93
+ expiresAt: "2026-06-13T00:00:00.000Z",
94
+ });
95
+
96
+ add("org.unit_owner_granted", "Unit owner + message", {
97
+ granterName: "Jordan Lee",
98
+ recipientName: "Sam Chen",
99
+ orgName: "Acme Corp",
100
+ unitName: "Platform Engineering",
101
+ roleLabel: "Unit owner",
102
+ ctaUrl: `${APP}/org/unit/42`,
103
+ message: "Welcome aboard — glad to have you owning this team.",
104
+ });
105
+ add("org.unit_owner_granted", "Delegate with expiry", {
106
+ granterName: "Jordan Lee",
107
+ orgName: "Acme Corp",
108
+ unitName: "Platform Engineering",
109
+ roleLabel: "Delegate",
110
+ ctaUrl: `${APP}/org/unit/42`,
111
+ expiresAt: "2026-06-13T00:00:00.000Z",
112
+ });
113
+
114
+ add("org.ownership_transfer", "With note + from", {
115
+ orgName: "Acme Corp",
116
+ acceptUrl: `${APP}/owner-transfer/accept/tok123`,
117
+ expiresAt: "2026-06-13T00:00:00.000Z",
118
+ note: "Handing this over as I move to an advisory role.",
119
+ fromName: "Jordan Lee",
120
+ });
121
+ add("org.ownership_transfer", "No note (admin)", {
122
+ orgName: "Acme Corp",
123
+ acceptUrl: `${APP}/owner-transfer/accept/tok456`,
124
+ expiresAt: "2026-06-13T00:00:00.000Z",
125
+ });
126
+
127
+ add("org.ownership_transfer_completed", "Default", {
128
+ orgName: "Acme Corp",
129
+ newOwnerEmail: "new.owner@acme.com",
130
+ });
131
+
132
+ add("security.alert", "Excessive OTP requests", {
133
+ alertType: "excessive_otp_requests",
134
+ details: "12 login codes requested in 5 minutes",
135
+ timestamp: "2026-07-12T14:30:00Z",
136
+ });
137
+ add("security.alert", "Unusual login location", {
138
+ alertType: "unusual_login_location",
139
+ details: "Login from Berlin, DE",
140
+ timestamp: "2026-07-12T14:30:00Z",
141
+ });
142
+
143
+ const CHAT_BASE = {
144
+ sharedByName: "Alex Rivera",
145
+ visibility: "private",
146
+ } as const;
147
+ add("chat.shared", "Default", {
148
+ ...CHAT_BASE,
149
+ chatTitle: "API design discussion",
150
+ shareUrl: `${APP}/share/abc123`,
151
+ previewText:
152
+ "Here are my thoughts on the REST API design for the new authentication endpoints.",
153
+ });
154
+ add("chat.shared", "No preview", {
155
+ ...CHAT_BASE,
156
+ chatTitle: "Quick sync notes",
157
+ shareUrl: `${APP}/share/xyz789`,
158
+ });
159
+ add("chat.shared", "Long title", {
160
+ ...CHAT_BASE,
161
+ visibility: "public",
162
+ chatTitle:
163
+ "This is a very long chat title that should be truncated to fit the layout properly",
164
+ shareUrl: `${APP}/share/long456`,
165
+ previewText: "The assistant response preview text.",
166
+ });
167
+ add("chat.shared", "Long preview", {
168
+ ...CHAT_BASE,
169
+ chatTitle: "Code review feedback",
170
+ shareUrl: `${APP}/share/preview789`,
171
+ previewText:
172
+ "I reviewed the pull request and found several areas that need improvement. The authentication logic needs better error handling, and the database queries could be optimized.",
173
+ });
174
+ add("chat.shared", "Short", {
175
+ ...CHAT_BASE,
176
+ chatTitle: "Hi",
177
+ shareUrl: `${APP}/share/short123`,
178
+ previewText: "Hello!",
179
+ });
180
+
181
+ add("share.granted", "Document · editor · message", {
182
+ granterName: "Jordan Lee",
183
+ recipientName: "Sam Chen",
184
+ entityLabel: "document",
185
+ entityTitle: "Q3 Roadmap",
186
+ accessLevel: "editor",
187
+ ctaUrl: `${APP}/doc/roadmap`,
188
+ message: "Take a look before Thursday's planning.",
189
+ });
190
+ add("share.granted", "Meeting · viewer · no title", {
191
+ granterName: "Jordan Lee",
192
+ entityLabel: "meeting",
193
+ accessLevel: "viewer",
194
+ ctaUrl: `${APP}/meeting/8842`,
195
+ });
196
+
197
+ add("companyMd.access_requested", "With message", {
198
+ requesterName: "Sam Chen",
199
+ docTitle: "Engineering Handbook",
200
+ message: "I'd like to contribute the onboarding section.",
201
+ reviewUrl: `${APP}/doc/handbook?request=req_123`,
202
+ });
203
+ add("companyMd.access_requested", "No message", {
204
+ requesterName: "Sam Chen",
205
+ docTitle: "Engineering Handbook",
206
+ reviewUrl: `${APP}/doc/handbook?request=req_456`,
207
+ });
208
+
209
+ add("companyMd.access_request_approved", "Editor", {
210
+ approverName: "Jordan Lee",
211
+ docTitle: "Engineering Handbook",
212
+ accessLevel: "editor",
213
+ docUrl: `${APP}/doc/handbook`,
214
+ });
215
+ add("companyMd.access_request_approved", "Viewer", {
216
+ approverName: "Jordan Lee",
217
+ docTitle: "Engineering Handbook",
218
+ accessLevel: "viewer",
219
+ docUrl: `${APP}/doc/handbook`,
220
+ });
221
+
222
+ add("companyMd.access_request_denied", "With reason", {
223
+ approverName: "Jordan Lee",
224
+ docTitle: "Engineering Handbook",
225
+ reason: "This doc is limited to the platform team for now.",
226
+ });
227
+ add("companyMd.access_request_denied", "No reason", {
228
+ approverName: "Jordan Lee",
229
+ docTitle: "Engineering Handbook",
230
+ });
231
+
232
+ /** The baseline inputs — every implemented kind × representative variants. */
233
+ export const OUTPUT_PARITY_FIXTURES: readonly OutputParityFixture[] = fixtures;
234
+
235
+ // GENERATED BELOW — regenerate rather than hand-edit; see the module header.
236
+ export const OUTPUT_PARITY_GOLDEN: Readonly<Record<string, RenderedEmail>> = {
237
+ "auth.otp · Default": {
238
+ subject: "Your login code for Company Semantics",
239
+ text: "Hi there,\n\nA login code was requested.\n\n_______________________________________________\n\n ┌──────────────────────────────────────┐\n │ Copy + paste this code in the login │\n[c_S] │ form. │\n └──────────────────────────────────────┘\n\n *------------------*\n | >> 123456 << |\n *------------------*\n_______________________________________________\n\nStatus: Valid\nExpires in: 10 minutes\n\nThis login code was sent via Company Semantics.\nIf this wasn't you, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
240
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n &gt;&gt; 123456 &lt;&lt;\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 10 minutes</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn&#39;t you, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
241
+ },
242
+ "auth.otp · Short expiry": {
243
+ subject: "Your login code for Company Semantics",
244
+ text: "Hi there,\n\nA login code was requested.\n\n_______________________________________________\n\n ┌──────────────────────────────────────┐\n │ Copy + paste this code in the login │\n[c_S] │ form. │\n └──────────────────────────────────────┘\n\n *------------------*\n | >> 902413 << |\n *------------------*\n_______________________________________________\n\nStatus: Valid\nExpires in: 1 minute\n\nThis login code was sent via Company Semantics.\nIf this wasn't you, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
245
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n &gt;&gt; 902413 &lt;&lt;\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 1 minute</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn&#39;t you, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
246
+ },
247
+ "auth.otp · With request metadata": {
248
+ subject: "Your login code for Company Semantics",
249
+ text: "Hi there,\n\nA login code was requested.\n\n_______________________________________________\n\n ┌──────────────────────────────────────┐\n │ Copy + paste this code in the login │\n[c_S] │ form. │\n └──────────────────────────────────────┘\n\n *------------------*\n | >> 246810 << |\n *------------------*\n_______________________________________________\n\nStatus: Valid\nExpires in: 5 minutes\n\nRequest details:\nIP address: 203.0.113.4\nDevice: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)\n\nThis login code was sent via Company Semantics.\nIf this wasn't you, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
250
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n &gt;&gt; 246810 &lt;&lt;\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 5 minutes</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Request details:</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">IP address: 203.0.113.4</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Device: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn&#39;t you, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
251
+ },
252
+ "org.invite · Admin": {
253
+ subject: "You've been invited to join Acme Corp on Company Semantics",
254
+ text: "Hi there,\n\nAcme Corp uses Company Semantics.\n\n____________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Join to accept the invitation. │\n └──────────────────────────────────────┘\n\n *----------------*\n | >> JOIN << |\n *----------------*\n\n https://app.companysemantics.ai/invite/abc123\n____________________________________________________\n\nFrom: Alex Rivera\nWorkspace: Acme Corp\nRole: Admin\nExpires: Jun 13, 2026\n\nThis invitation was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
255
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Acme Corp uses Company Semantics.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/invite/abc123" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">JOIN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Alex Rivera</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Admin</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This invitation was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
256
+ },
257
+ "org.invite · Member": {
258
+ subject: "You've been invited to join Acme Corp on Company Semantics",
259
+ text: "Hi there,\n\nAcme Corp uses Company Semantics.\n\n____________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Join to accept the invitation. │\n └──────────────────────────────────────┘\n\n *----------------*\n | >> JOIN << |\n *----------------*\n\n https://app.companysemantics.ai/invite/def456\n____________________________________________________\n\nFrom: Alex Rivera\nWorkspace: Acme Corp\nRole: Member\nExpires: Jun 13, 2026\n\nThis invitation was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
260
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Acme Corp uses Company Semantics.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/invite/def456" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">JOIN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Alex Rivera</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Member</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This invitation was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
261
+ },
262
+ "org.unit_owner_granted · Unit owner + message": {
263
+ subject: "You've been added as owner to Platform Engineering in Acme Corp",
264
+ text: "Hi Sam Chen,\n\nYou are now a unit owner of Platform Engineering. Unit owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Welcome aboard — glad to have you │\n │ owning this team. │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Jordan Lee\n\n ┌──────────────────────────────────────┐\n[c_S] │ Open the team to get started. │\n └──────────────────────────────────────┘\n\n *-----------------------*\n | >> MANAGE TEAM << |\n *-----------------------*\n\n https://app.companysemantics.ai/org/unit/42\n________________________________________________________\n\nFrom: Jordan Lee\nTeam: Platform Engineering\nRole: Unit Owner\n\nThis notification was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
265
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi Sam Chen,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You are now a unit owner of Platform Engineering. Unit owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Welcome aboard — glad to have you owning this team.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">MANAGE TEAM</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Team: Platform Engineering</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Role: Unit Owner</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
266
+ },
267
+ "org.unit_owner_granted · Delegate with expiry": {
268
+ subject:
269
+ "You've been added as delegate owner to Platform Engineering in Acme Corp",
270
+ text: "Hi there,\n\nYou are now a delegate owner of Platform Engineering. Delegate owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.\n\n__________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Open the team to get started. │\n └──────────────────────────────────────┘\n\n *-----------------------*\n | >> MANAGE TEAM << |\n *-----------------------*\n\n https://app.companysemantics.ai/org/unit/42\n__________________________________________________\n\nFrom: Jordan Lee\nTeam: Platform Engineering\nRole: Delegate\nExpires: Jun 13, 2026\n\nThis notification was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
271
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You are now a delegate owner of Platform Engineering. Delegate owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">MANAGE TEAM</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Team: Platform Engineering</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Delegate</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
272
+ },
273
+ "org.ownership_transfer · With note + from": {
274
+ subject: "You've been invited to become a workspace owner",
275
+ text: "Hi there,\n\nYou've been invited to take ownership.\n\n____________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Handing this over as I move to an │\n │ advisory role. │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Jordan Lee\n\n *------------------*\n | >> ACCEPT << |\n *------------------*\n\nhttps://app.companysemantics.ai/owner-transfer/accept/tok123\n____________________________________________________________\n\nFrom: Jordan Lee\nWorkspace: Acme Corp\nExpires: Jun 13, 2026\n\nThis transfer was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
276
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You&#39;ve been invited to take ownership.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Handing this over as I move to an advisory role.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/owner-transfer/accept/tok123" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">ACCEPT</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This transfer was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
277
+ },
278
+ "org.ownership_transfer · No note (admin)": {
279
+ subject: "You've been invited to become a workspace owner",
280
+ text: "Hi there,\n\nYou've been invited to take ownership.\n\n___________________________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Accept to take ownership. │\n └──────────────────────────────────────┘\n\n *------------------*\n | >> ACCEPT << |\n *------------------*\n\n https://app.companysemantics.ai/owner-transfer/accept/tok456\n___________________________________________________________________\n\nWorkspace: Acme Corp\nExpires: Jun 13, 2026\n\nThis transfer was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
281
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You&#39;ve been invited to take ownership.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Accept to take ownership.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/owner-transfer/accept/tok456" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">ACCEPT</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This transfer was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
282
+ },
283
+ "org.ownership_transfer_completed · Default": {
284
+ subject: "Workspace ownership has been transferred",
285
+ text: "Hi there,\n\nOwnership was transferred.\n\n_______________________________________________\n\n ┌──────────────────────────────────────┐\n │ You're no longer the owner, but you │\n[c_S] │ remain an admin. │\n └──────────────────────────────────────┘\n_______________________________________________\n\nWorkspace: Acme Corp\nNew owner: new.owner@acme.com\n\nThis confirmation was sent via Company Semantics.\nIf you did not authorize this, contact support immediately.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
286
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Ownership was transferred.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">You&#39;re no longer the owner, but you remain an admin.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">New owner: new.owner@acme.com</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This confirmation was sent via Company Semantics.<br>If you did not authorize this, contact support immediately.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
287
+ },
288
+ "security.alert · Excessive OTP requests": {
289
+ subject: "Security alert for your account",
290
+ text: "🆆🅰🆁🅽🅸🅽🅶\n\nUnusual login-code activity detected.\n\nDetails: 12 login codes requested in 5 minutes\n\nIf this was you, no action is needed.\nIf you didn't request these codes, someone may be trying to access your account.\n\nWe recommend reviewing your account security.\n\nTime: Sun, 12 Jul 2026 14:30:00 GMT\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
291
+ html: "<!DOCTYPE html>\n<html lang=\"en\">\n<head><meta charset=\"UTF-8\"></head>\n<body style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;\">\n<div style=\"max-width: 520px; margin: 0 auto;\">\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">🆆🅰🆁🅽🅸🅽🅶</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">Unusual login-code activity detected.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">Details: 12 login codes requested in 5 minutes</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;\">If this was you, no action is needed.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">If you didn&#39;t request these codes, someone may be trying to access your account.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">We recommend reviewing your account security.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;\">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;\"><br><br><span style=\"color: #bbb;\">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href=\"https://companysemantics.ai\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0047FF; text-decoration: none;\">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>",
292
+ },
293
+ "security.alert · Unusual login location": {
294
+ subject: "Security alert for your account",
295
+ text: "🆆🅰🆁🅽🅸🅽🅶\n\nA login from an unusual location was detected.\n\nDetails: Login from Berlin, DE\n\nIf this was you, no action is needed.\nIf you didn't attempt to log in, someone may be trying to access your account.\n\nWe recommend reviewing your account security.\n\nTime: Sun, 12 Jul 2026 14:30:00 GMT\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
296
+ html: "<!DOCTYPE html>\n<html lang=\"en\">\n<head><meta charset=\"UTF-8\"></head>\n<body style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;\">\n<div style=\"max-width: 520px; margin: 0 auto;\">\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">🆆🅰🆁🅽🅸🅽🅶</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">A login from an unusual location was detected.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">Details: Login from Berlin, DE</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;\">If this was you, no action is needed.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">If you didn&#39;t attempt to log in, someone may be trying to access your account.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;\">We recommend reviewing your account security.</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;\">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>\n<p style=\"font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;\"><br><br><span style=\"color: #bbb;\">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href=\"https://companysemantics.ai\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"color: #0047FF; text-decoration: none;\">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>",
297
+ },
298
+ "chat.shared · Default": {
299
+ subject: "A chat has been shared with you",
300
+ text: "Hi there,\n\nA chat was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ API design discussion │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Alex Rivera\n\n ┌──────────────────────────────────────┐\n │ Here are my thoughts on the REST API │\n │ design for the new authentication │\n[c_S] │ endpoints. │\n └──────────────────────────────────────┘\n\n ⋮\n\n *--------------------*\n | >> SEE MORE << |\n *--------------------*\n\n https://app.companysemantics.ai/share/abc123\n________________________________________________________\n\nThis share was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
301
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">API design discussion</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Here are my thoughts on the REST API design for the new authentication endpoints.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/share/abc123" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">SEE MORE</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
302
+ },
303
+ "chat.shared · No preview": {
304
+ subject: "A chat has been shared with you",
305
+ text: "Hi there,\n\nA chat was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Quick sync notes │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Alex Rivera\n\n ⋮\n\n *--------------------*\n | >> SEE MORE << |\n *--------------------*\n\n https://app.companysemantics.ai/share/xyz789\n________________________________________________________\n\nThis share was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
306
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Quick sync notes</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><div style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/share/xyz789" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">SEE MORE</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
307
+ },
308
+ "chat.shared · Long title": {
309
+ subject: "A chat has been shared with you",
310
+ text: "Hi there,\n\nA chat was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ This is a very long chat title that │\n │ should be truncated to fit the │\n │ layout properly │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Alex Rivera\n\n ┌──────────────────────────────────────┐\n[c_S] │ The assistant response preview text. │\n └──────────────────────────────────────┘\n\n ⋮\n\n *--------------------*\n | >> SEE MORE << |\n *--------------------*\n\n https://app.companysemantics.ai/share/long456\n________________________________________________________\n\nThis share was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
311
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This is a very long chat title that should be truncated to fit the layout properly</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">The assistant response preview text.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/share/long456" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">SEE MORE</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
312
+ },
313
+ "chat.shared · Long preview": {
314
+ subject: "A chat has been shared with you",
315
+ text: "Hi there,\n\nA chat was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Code review feedback │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Alex Rivera\n\n ┌──────────────────────────────────────┐\n │ I reviewed the pull request and │\n │ found several areas that need │\n[c_S] │ improvement. The authentication... │\n └──────────────────────────────────────┘\n\n ⋮\n\n *--------------------*\n | >> SEE MORE << |\n *--------------------*\n\n https://app.companysemantics.ai/share/preview789\n________________________________________________________\n\nThis share was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
316
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Code review feedback</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I reviewed the pull request and found several areas that need improvement. The authentication...</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/share/preview789" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">SEE MORE</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
317
+ },
318
+ "chat.shared · Short": {
319
+ subject: "A chat has been shared with you",
320
+ text: "Hi there,\n\nA chat was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Hi │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Alex Rivera\n\n ┌──────────────────────────────────────┐\n[c_S] │ Hello! │\n └──────────────────────────────────────┘\n\n ⋮\n\n *--------------------*\n | >> SEE MORE << |\n *--------------------*\n\n https://app.companysemantics.ai/share/short123\n________________________________________________________\n\nThis share was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
321
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hi</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hello!</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/share/short123" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">SEE MORE</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
322
+ },
323
+ "share.granted · Document · editor · message": {
324
+ subject: "Something has been shared with you",
325
+ text: "Hi Sam Chen,\n\nA document was shared with you.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ Take a look before Thursday's │\n │ planning. │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Jordan Lee\n\n *----------------*\n | >> OPEN << |\n *----------------*\n\n https://app.companysemantics.ai/doc/roadmap\n________________________________________________________\n\nFrom: Jordan Lee\nItem: \"Q3 Roadmap\"\nAccess: can edit\n\nThis notification was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
326
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi Sam Chen,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A document was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Take a look before Thursday&#39;s planning.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/doc/roadmap" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">OPEN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Item: &quot;Q3 Roadmap&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Access: can edit</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
327
+ },
328
+ "share.granted · Meeting · viewer · no title": {
329
+ subject: "Something has been shared with you",
330
+ text: "Hi there,\n\nA meeting was shared with you.\n\n___________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Open to view. │\n └──────────────────────────────────────┘\n\n *----------------*\n | >> OPEN << |\n *----------------*\n\n https://app.companysemantics.ai/meeting/8842\n___________________________________________________\n\nFrom: Jordan Lee\nAccess: can view\n\nThis notification was sent via Company Semantics.\nIf you weren't expecting this, no action is required.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n",
331
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A meeting was shared with you.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/meeting/8842" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">OPEN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Access: can view</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren&#39;t expecting this, no action is required.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
332
+ },
333
+ "companyMd.access_requested · With message": {
334
+ subject: "Someone requested access to a document",
335
+ text: 'Hi there,\n\nSomeone requested document access.\n\n____________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ I\'d like to contribute the │\n │ onboarding section. │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Sam Chen\n\n *------------------*\n | >> REVIEW << |\n *------------------*\n\nhttps://app.companysemantics.ai/doc/handbook?request=req_123\n____________________________________________________________\n\nFrom: Sam Chen\nDocument: "Engineering Handbook"\n\nThis notification was sent via Company Semantics.\nYou own this document.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
336
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Someone requested document access.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I&#39;d like to contribute the onboarding section.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Sam Chen</td>\n <td></td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/doc/handbook?request=req_123" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">REVIEW</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Sam Chen</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>You own this document.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
337
+ },
338
+ "companyMd.access_requested · No message": {
339
+ subject: "Someone requested access to a document",
340
+ text: 'Hi there,\n\nSomeone requested document access.\n\n___________________________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Review the request. │\n └──────────────────────────────────────┘\n\n *------------------*\n | >> REVIEW << |\n *------------------*\n\n https://app.companysemantics.ai/doc/handbook?request=req_456\n___________________________________________________________________\n\nFrom: Sam Chen\nDocument: "Engineering Handbook"\n\nThis notification was sent via Company Semantics.\nYou own this document.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
341
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Someone requested document access.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Review the request.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/doc/handbook?request=req_456" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">REVIEW</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Sam Chen</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>You own this document.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
342
+ },
343
+ "companyMd.access_request_approved · Editor": {
344
+ subject: "Your access request was approved",
345
+ text: 'Hi there,\n\nYour access request was approved.\n\n___________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Open to view. │\n └──────────────────────────────────────┘\n\n *----------------*\n | >> OPEN << |\n *----------------*\n\n https://app.companysemantics.ai/doc/handbook\n___________________________________________________\n\nDocument: "Engineering Handbook"\nAccess: can edit\nApproved by: Jordan Lee\n\nThis notification was sent via Company Semantics.\nAccess is now active.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
346
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was approved.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">OPEN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Access: can edit</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Approved by: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>Access is now active.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
347
+ },
348
+ "companyMd.access_request_approved · Viewer": {
349
+ subject: "Your access request was approved",
350
+ text: 'Hi there,\n\nYour access request was approved.\n\n___________________________________________________\n\n ┌──────────────────────────────────────┐\n[c_S] │ Open to view. │\n └──────────────────────────────────────┘\n\n *----------------*\n | >> OPEN << |\n *----------------*\n\n https://app.companysemantics.ai/doc/handbook\n___________________________________________________\n\nDocument: "Engineering Handbook"\nAccess: can view\nApproved by: Jordan Lee\n\nThis notification was sent via Company Semantics.\nAccess is now active.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
351
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was approved.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #666; border-radius: 2px; margin: 0; max-width: 220px;">\n <tr><td style="padding: 16px 24px; text-align: center; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px;">\n <a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: none;">&gt;&gt; <span style="text-decoration: underline;">OPEN</span> &lt;&lt;</a>\n </td></tr>\n</table></div></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Access: can view</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Approved by: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>Access is now active.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
352
+ },
353
+ "companyMd.access_request_denied · With reason": {
354
+ subject: "Your access request was reviewed",
355
+ text: 'Hi there,\n\nYour access request was declined.\n\n________________________________________________________\n\n ┌──────────────────────────────────────┐\n │ This doc is limited to the platform │\n │ team for now. │ (•̀_ರ╮)\n └──────────────────────────────────────┘\n Jordan Lee\n________________________________________________________\n\nDocument: "Engineering Handbook"\nDeclined by: Jordan Lee\n\nThis notification was sent via Company Semantics.\nThis request is now closed.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
356
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was declined.</p>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">\n<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">\n <tr>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>\n <td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">\n <tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This doc is limited to the platform team for now.</td></tr>\n </table></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>\n </tr>\n <tr>\n <td></td>\n <td style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>\n <td></td>\n </tr>\n</table>\n<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Declined by: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>This request is now closed.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
357
+ },
358
+ "companyMd.access_request_denied · No reason": {
359
+ subject: "Your access request was reviewed",
360
+ text: 'Hi there,\n\nYour access request was declined.\n\nDocument: "Engineering Handbook"\nDeclined by: Jordan Lee\n\nThis notification was sent via Company Semantics.\nThis request is now closed.\n\n\n/* EOM */\nⓒ 2026 • Company Semantics\nhttps://companysemantics.ai\n',
361
+ html: '<!DOCTYPE html>\n<html lang="en">\n<head><meta charset="UTF-8"></head>\n<body style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">\n<div style="max-width: 520px; margin: 0 auto;">\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was declined.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: &quot;Engineering Handbook&quot;</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Declined by: Jordan Lee</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>This request is now closed.</p>\n<p style="font-family: \'SF Mono\', SFMono-Regular, Consolas, \'Liberation Mono\', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>\n</div>\n</body>\n</html>',
362
+ },
363
+ };