@company-semantics/contracts 27.13.1 → 28.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.
- package/package.json +1 -1
- package/src/email/render/__tests__/__snapshots__/render-snapshot.test.ts.snap +281 -221
- package/src/email/render/auth-otp.ts +31 -50
- package/src/email/render/blocks.ts +230 -179
- package/src/email/render/chat-shared.ts +19 -61
- package/src/email/render/company-md-access-approved.ts +16 -40
- package/src/email/render/company-md-access-denied.ts +23 -44
- package/src/email/render/company-md-access-requested.ts +23 -48
- package/src/email/render/constants.ts +0 -6
- package/src/email/render/index.ts +15 -58
- package/src/email/render/org-invite.ts +14 -37
- package/src/email/render/ownership-transfer-completed.ts +19 -17
- package/src/email/render/ownership-transfer.ts +36 -21
- package/src/email/render/render-email.ts +110 -100
- package/src/email/render/security-alert.ts +27 -27
- package/src/email/render/share-granted.ts +27 -58
- package/src/email/render/unit-owner-granted.ts +26 -50
- package/src/email/render/base-text.ts +0 -26
|
@@ -6,29 +6,34 @@ exports[`email render > auth.otp · Default 1`] = `
|
|
|
6
6
|
<html lang="en">
|
|
7
7
|
<head><meta charset="UTF-8"></head>
|
|
8
8
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
9
|
-
<p style="
|
|
9
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Copy/paste code in login form:</p>
|
|
10
10
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; border-radius: 0; margin: 0 0 20px 0;">
|
|
11
11
|
<tr><td style="padding: 20px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; letter-spacing: 4px;">
|
|
12
12
|
<b>>> 123456 <<</b>
|
|
13
13
|
</td></tr>
|
|
14
14
|
</table>
|
|
15
15
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Status: <b>VALID</b></p>
|
|
16
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>10
|
|
16
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>10 minutes</b></p>
|
|
17
17
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This code was generated to authorize a login to Company Semantics.<br>It expires automatically and cannot be reused.</p>
|
|
18
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn
|
|
19
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
18
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn't you, no action is required.</p>
|
|
19
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
20
20
|
</body>
|
|
21
21
|
</html>",
|
|
22
22
|
"subject": "Your login code",
|
|
23
|
-
"text": "
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
"text": "Copy/paste code in login form:
|
|
24
|
+
|
|
25
|
+
*------------------*
|
|
26
|
+
| >> 123456 << |
|
|
27
|
+
*------------------*
|
|
28
|
+
|
|
29
|
+
Status: VALID
|
|
30
|
+
Expires in: 10 minutes
|
|
31
|
+
|
|
32
|
+
This code was generated to authorize a login to Company Semantics.
|
|
33
|
+
It expires automatically and cannot be reused.
|
|
34
|
+
|
|
35
|
+
If this wasn't you, no action is required.
|
|
36
|
+
|
|
32
37
|
---
|
|
33
38
|
Company Semantics
|
|
34
39
|
Questions? Contact support@companysemantics.ai
|
|
@@ -42,29 +47,34 @@ exports[`email render > auth.otp · Short expiry 1`] = `
|
|
|
42
47
|
<html lang="en">
|
|
43
48
|
<head><meta charset="UTF-8"></head>
|
|
44
49
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
45
|
-
<p style="
|
|
50
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Copy/paste code in login form:</p>
|
|
46
51
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; border-radius: 0; margin: 0 0 20px 0;">
|
|
47
52
|
<tr><td style="padding: 20px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; letter-spacing: 4px;">
|
|
48
53
|
<b>>> 902413 <<</b>
|
|
49
54
|
</td></tr>
|
|
50
55
|
</table>
|
|
51
56
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Status: <b>VALID</b></p>
|
|
52
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>1
|
|
57
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>1 minute</b></p>
|
|
53
58
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This code was generated to authorize a login to Company Semantics.<br>It expires automatically and cannot be reused.</p>
|
|
54
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn
|
|
55
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
59
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn't you, no action is required.</p>
|
|
60
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
56
61
|
</body>
|
|
57
62
|
</html>",
|
|
58
63
|
"subject": "Your login code",
|
|
59
|
-
"text": "
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
"text": "Copy/paste code in login form:
|
|
65
|
+
|
|
66
|
+
*------------------*
|
|
67
|
+
| >> 902413 << |
|
|
68
|
+
*------------------*
|
|
69
|
+
|
|
70
|
+
Status: VALID
|
|
71
|
+
Expires in: 1 minute
|
|
72
|
+
|
|
73
|
+
This code was generated to authorize a login to Company Semantics.
|
|
74
|
+
It expires automatically and cannot be reused.
|
|
75
|
+
|
|
76
|
+
If this wasn't you, no action is required.
|
|
77
|
+
|
|
68
78
|
---
|
|
69
79
|
Company Semantics
|
|
70
80
|
Questions? Contact support@companysemantics.ai
|
|
@@ -78,33 +88,41 @@ exports[`email render > auth.otp · With request metadata 1`] = `
|
|
|
78
88
|
<html lang="en">
|
|
79
89
|
<head><meta charset="UTF-8"></head>
|
|
80
90
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
81
|
-
<p style="
|
|
91
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Copy/paste code in login form:</p>
|
|
82
92
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; border-radius: 0; margin: 0 0 20px 0;">
|
|
83
93
|
<tr><td style="padding: 20px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; letter-spacing: 4px;">
|
|
84
94
|
<b>>> 246810 <<</b>
|
|
85
95
|
</td></tr>
|
|
86
96
|
</table>
|
|
87
97
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Status: <b>VALID</b></p>
|
|
88
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>5
|
|
98
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>5 minutes</b></p>
|
|
99
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Request details:</p>
|
|
100
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">IP address: <b>203.0.113.4</b></p>
|
|
101
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Device: <b>Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)</b></p>
|
|
89
102
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This code was generated to authorize a login to Company Semantics.<br>It expires automatically and cannot be reused.</p>
|
|
90
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn
|
|
91
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
103
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">If this wasn't you, no action is required.</p>
|
|
104
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
92
105
|
</body>
|
|
93
106
|
</html>",
|
|
94
107
|
"subject": "Your login code",
|
|
95
|
-
"text": "
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
108
|
+
"text": "Copy/paste code in login form:
|
|
109
|
+
|
|
110
|
+
*------------------*
|
|
111
|
+
| >> 246810 << |
|
|
112
|
+
*------------------*
|
|
113
|
+
|
|
114
|
+
Status: VALID
|
|
115
|
+
Expires in: 5 minutes
|
|
102
116
|
|
|
103
117
|
Request details:
|
|
104
|
-
|
|
105
|
-
|
|
118
|
+
IP address: 203.0.113.4
|
|
119
|
+
Device: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)
|
|
120
|
+
|
|
121
|
+
This code was generated to authorize a login to Company Semantics.
|
|
122
|
+
It expires automatically and cannot be reused.
|
|
123
|
+
|
|
124
|
+
If this wasn't you, no action is required.
|
|
106
125
|
|
|
107
|
-
If you didn't request this code, you can safely ignore this email.
|
|
108
126
|
---
|
|
109
127
|
Company Semantics
|
|
110
128
|
Questions? Contact support@companysemantics.ai
|
|
@@ -118,16 +136,17 @@ exports[`email render > chat.shared · Default 1`] = `
|
|
|
118
136
|
<html lang="en">
|
|
119
137
|
<head><meta charset="UTF-8"></head>
|
|
120
138
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
121
|
-
<p style="
|
|
139
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">A chat has been shared with you.</p>
|
|
122
140
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
123
141
|
<tr>
|
|
124
142
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">API design discussion</td>
|
|
125
143
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
126
144
|
</tr>
|
|
127
|
-
</table
|
|
145
|
+
</table>
|
|
146
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 16px 0;">
|
|
128
147
|
<tr>
|
|
129
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align:
|
|
130
|
-
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Here are my thoughts on the REST API design for the new
|
|
148
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align: bottom;">[c_S]</td>
|
|
149
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Here are my thoughts on the REST API design for the new authentication endpoints.</td>
|
|
131
150
|
</tr>
|
|
132
151
|
</table>
|
|
133
152
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; margin: 0 0 16px 0; max-width: 320px; text-align: center;">⋮</p>
|
|
@@ -137,28 +156,27 @@ exports[`email render > chat.shared · Default 1`] = `
|
|
|
137
156
|
</td></tr>
|
|
138
157
|
</table>
|
|
139
158
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This share was sent via Company Semantics.</p>
|
|
140
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren
|
|
141
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
159
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren't expecting this, no action is required.</p>
|
|
160
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
142
161
|
</body>
|
|
143
162
|
</html>",
|
|
144
163
|
"subject": "A chat has been shared with you",
|
|
145
164
|
"text": "A chat has been shared with you.
|
|
146
165
|
|
|
147
166
|
┌────────────────────────────────────┐
|
|
148
|
-
│ API design discussion │
|
|
149
|
-
└────────────────────────────────────┘
|
|
167
|
+
│ API design discussion │
|
|
168
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
150
169
|
|
|
151
170
|
┌──────────────────────────────────────┐
|
|
152
|
-
|
|
153
|
-
│ design for the new
|
|
154
|
-
|
|
171
|
+
│ Here are my thoughts on the REST API │
|
|
172
|
+
│ design for the new authentication │
|
|
173
|
+
│ endpoints. │
|
|
174
|
+
[c_S] └──────────────────────────────────────┘
|
|
155
175
|
|
|
156
176
|
⋮
|
|
157
177
|
|
|
158
178
|
*--------------------*
|
|
159
|
-
| |
|
|
160
179
|
| >> SEE MORE << |
|
|
161
|
-
| |
|
|
162
180
|
*--------------------*
|
|
163
181
|
|
|
164
182
|
https://app.companysemantics.ai/share/abc123
|
|
@@ -179,16 +197,17 @@ exports[`email render > chat.shared · Long preview 1`] = `
|
|
|
179
197
|
<html lang="en">
|
|
180
198
|
<head><meta charset="UTF-8"></head>
|
|
181
199
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
182
|
-
<p style="
|
|
200
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">A chat has been shared with you.</p>
|
|
183
201
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
184
202
|
<tr>
|
|
185
203
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Code review feedback</td>
|
|
186
204
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
187
205
|
</tr>
|
|
188
|
-
</table
|
|
206
|
+
</table>
|
|
207
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 16px 0;">
|
|
189
208
|
<tr>
|
|
190
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align:
|
|
191
|
-
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">I reviewed the pull request and found several areas that need
|
|
209
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align: bottom;">[c_S]</td>
|
|
210
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">I reviewed the pull request and found several areas that need improvement. The authentication...</td>
|
|
192
211
|
</tr>
|
|
193
212
|
</table>
|
|
194
213
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; margin: 0 0 16px 0; max-width: 320px; text-align: center;">⋮</p>
|
|
@@ -198,28 +217,27 @@ exports[`email render > chat.shared · Long preview 1`] = `
|
|
|
198
217
|
</td></tr>
|
|
199
218
|
</table>
|
|
200
219
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This share was sent via Company Semantics.</p>
|
|
201
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren
|
|
202
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
220
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren't expecting this, no action is required.</p>
|
|
221
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
203
222
|
</body>
|
|
204
223
|
</html>",
|
|
205
224
|
"subject": "A chat has been shared with you",
|
|
206
225
|
"text": "A chat has been shared with you.
|
|
207
226
|
|
|
208
227
|
┌────────────────────────────────────┐
|
|
209
|
-
│ Code review feedback │
|
|
210
|
-
└────────────────────────────────────┘
|
|
228
|
+
│ Code review feedback │
|
|
229
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
211
230
|
|
|
212
231
|
┌──────────────────────────────────────┐
|
|
213
|
-
|
|
232
|
+
│ I reviewed the pull request and │
|
|
214
233
|
│ found several areas that need │
|
|
215
|
-
|
|
234
|
+
│ improvement. The authentication... │
|
|
235
|
+
[c_S] └──────────────────────────────────────┘
|
|
216
236
|
|
|
217
237
|
⋮
|
|
218
238
|
|
|
219
239
|
*--------------------*
|
|
220
|
-
| |
|
|
221
240
|
| >> SEE MORE << |
|
|
222
|
-
| |
|
|
223
241
|
*--------------------*
|
|
224
242
|
|
|
225
243
|
https://app.companysemantics.ai/share/preview789
|
|
@@ -240,15 +258,16 @@ exports[`email render > chat.shared · Long title 1`] = `
|
|
|
240
258
|
<html lang="en">
|
|
241
259
|
<head><meta charset="UTF-8"></head>
|
|
242
260
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
243
|
-
<p style="
|
|
261
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">A chat has been shared with you.</p>
|
|
244
262
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
245
263
|
<tr>
|
|
246
|
-
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">This is a very long chat
|
|
264
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">This is a very long chat title that should be truncated to fit the layout properly</td>
|
|
247
265
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
248
266
|
</tr>
|
|
249
|
-
</table
|
|
267
|
+
</table>
|
|
268
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 16px 0;">
|
|
250
269
|
<tr>
|
|
251
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align:
|
|
270
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align: bottom;">[c_S]</td>
|
|
252
271
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">The assistant response preview text.</td>
|
|
253
272
|
</tr>
|
|
254
273
|
</table>
|
|
@@ -259,27 +278,27 @@ exports[`email render > chat.shared · Long title 1`] = `
|
|
|
259
278
|
</td></tr>
|
|
260
279
|
</table>
|
|
261
280
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This share was sent via Company Semantics.</p>
|
|
262
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren
|
|
263
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
281
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren't expecting this, no action is required.</p>
|
|
282
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
264
283
|
</body>
|
|
265
284
|
</html>",
|
|
266
285
|
"subject": "A chat has been shared with you",
|
|
267
286
|
"text": "A chat has been shared with you.
|
|
268
287
|
|
|
269
288
|
┌────────────────────────────────────┐
|
|
270
|
-
│
|
|
271
|
-
|
|
289
|
+
│This is a very long chat title that │
|
|
290
|
+
│ should be truncated to fit the │
|
|
291
|
+
│ layout properly │
|
|
292
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
272
293
|
|
|
273
294
|
┌──────────────────────────────────────┐
|
|
274
|
-
|
|
275
|
-
|
|
295
|
+
│ The assistant response preview text. │
|
|
296
|
+
[c_S] └──────────────────────────────────────┘
|
|
276
297
|
|
|
277
298
|
⋮
|
|
278
299
|
|
|
279
300
|
*--------------------*
|
|
280
|
-
| |
|
|
281
301
|
| >> SEE MORE << |
|
|
282
|
-
| |
|
|
283
302
|
*--------------------*
|
|
284
303
|
|
|
285
304
|
https://app.companysemantics.ai/share/long456
|
|
@@ -300,7 +319,7 @@ exports[`email render > chat.shared · No preview 1`] = `
|
|
|
300
319
|
<html lang="en">
|
|
301
320
|
<head><meta charset="UTF-8"></head>
|
|
302
321
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
303
|
-
<p style="
|
|
322
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">A chat has been shared with you.</p>
|
|
304
323
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
305
324
|
<tr>
|
|
306
325
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Quick sync notes</td>
|
|
@@ -314,23 +333,21 @@ exports[`email render > chat.shared · No preview 1`] = `
|
|
|
314
333
|
</td></tr>
|
|
315
334
|
</table>
|
|
316
335
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This share was sent via Company Semantics.</p>
|
|
317
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren
|
|
318
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
336
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren't expecting this, no action is required.</p>
|
|
337
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
319
338
|
</body>
|
|
320
339
|
</html>",
|
|
321
340
|
"subject": "A chat has been shared with you",
|
|
322
341
|
"text": "A chat has been shared with you.
|
|
323
342
|
|
|
324
343
|
┌────────────────────────────────────┐
|
|
325
|
-
│ Quick sync notes │
|
|
326
|
-
└────────────────────────────────────┘
|
|
344
|
+
│ Quick sync notes │
|
|
345
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
327
346
|
|
|
328
347
|
⋮
|
|
329
348
|
|
|
330
349
|
*--------------------*
|
|
331
|
-
| |
|
|
332
350
|
| >> SEE MORE << |
|
|
333
|
-
| |
|
|
334
351
|
*--------------------*
|
|
335
352
|
|
|
336
353
|
https://app.companysemantics.ai/share/xyz789
|
|
@@ -351,15 +368,16 @@ exports[`email render > chat.shared · Short 1`] = `
|
|
|
351
368
|
<html lang="en">
|
|
352
369
|
<head><meta charset="UTF-8"></head>
|
|
353
370
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
354
|
-
<p style="
|
|
371
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">A chat has been shared with you.</p>
|
|
355
372
|
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
356
373
|
<tr>
|
|
357
374
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Hi</td>
|
|
358
375
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
359
376
|
</tr>
|
|
360
|
-
</table
|
|
377
|
+
</table>
|
|
378
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 16px 0;">
|
|
361
379
|
<tr>
|
|
362
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align:
|
|
380
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-right: 8px; vertical-align: bottom;">[c_S]</td>
|
|
363
381
|
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 12px 0; padding: 10px 14px; min-width: 280px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Hello!</td>
|
|
364
382
|
</tr>
|
|
365
383
|
</table>
|
|
@@ -370,27 +388,25 @@ exports[`email render > chat.shared · Short 1`] = `
|
|
|
370
388
|
</td></tr>
|
|
371
389
|
</table>
|
|
372
390
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This share was sent via Company Semantics.</p>
|
|
373
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren
|
|
374
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
391
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">If you weren't expecting this, no action is required.</p>
|
|
392
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
375
393
|
</body>
|
|
376
394
|
</html>",
|
|
377
395
|
"subject": "A chat has been shared with you",
|
|
378
396
|
"text": "A chat has been shared with you.
|
|
379
397
|
|
|
380
398
|
┌────────────────────────────────────┐
|
|
381
|
-
│ Hi │
|
|
382
|
-
└────────────────────────────────────┘
|
|
399
|
+
│ Hi │
|
|
400
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
383
401
|
|
|
384
402
|
┌──────────────────────────────────────┐
|
|
385
|
-
|
|
386
|
-
|
|
403
|
+
│ Hello! │
|
|
404
|
+
[c_S] └──────────────────────────────────────┘
|
|
387
405
|
|
|
388
406
|
⋮
|
|
389
407
|
|
|
390
408
|
*--------------------*
|
|
391
|
-
| |
|
|
392
409
|
| >> SEE MORE << |
|
|
393
|
-
| |
|
|
394
410
|
*--------------------*
|
|
395
411
|
|
|
396
412
|
https://app.companysemantics.ai/share/short123
|
|
@@ -411,14 +427,15 @@ exports[`email render > companyMd.access_request_approved · Editor 1`] = `
|
|
|
411
427
|
<html lang="en">
|
|
412
428
|
<head><meta charset="UTF-8"></head>
|
|
413
429
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
414
|
-
<p style="
|
|
415
|
-
<p style="
|
|
430
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
431
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> approved your request to access <b>"Engineering Handbook"</b> — you can edit.</p>
|
|
416
432
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
417
433
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
418
434
|
<a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: underline;"><b>>> OPEN <<</b></a>
|
|
419
435
|
</td></tr>
|
|
420
436
|
</table>
|
|
421
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">This notification was sent via Company Semantics.</p>
|
|
437
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.</p>
|
|
438
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
422
439
|
</body>
|
|
423
440
|
</html>",
|
|
424
441
|
"subject": "Your access request was approved",
|
|
@@ -426,15 +443,14 @@ exports[`email render > companyMd.access_request_approved · Editor 1`] = `
|
|
|
426
443
|
|
|
427
444
|
Jordan Lee approved your request to access "Engineering Handbook" — you can edit.
|
|
428
445
|
|
|
429
|
-
|
|
430
|
-
|
|
|
431
|
-
|
|
432
|
-
| |
|
|
433
|
-
*--------------------*
|
|
446
|
+
*----------------*
|
|
447
|
+
| >> OPEN << |
|
|
448
|
+
*----------------*
|
|
434
449
|
|
|
435
450
|
https://app.companysemantics.ai/doc/handbook
|
|
436
451
|
|
|
437
452
|
This notification was sent via Company Semantics.
|
|
453
|
+
|
|
438
454
|
---
|
|
439
455
|
Company Semantics
|
|
440
456
|
Questions? Contact support@companysemantics.ai
|
|
@@ -448,14 +464,15 @@ exports[`email render > companyMd.access_request_approved · Viewer 1`] = `
|
|
|
448
464
|
<html lang="en">
|
|
449
465
|
<head><meta charset="UTF-8"></head>
|
|
450
466
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
451
|
-
<p style="
|
|
452
|
-
<p style="
|
|
467
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
468
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> approved your request to access <b>"Engineering Handbook"</b> — you can view.</p>
|
|
453
469
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
454
470
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
455
471
|
<a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: underline;"><b>>> OPEN <<</b></a>
|
|
456
472
|
</td></tr>
|
|
457
473
|
</table>
|
|
458
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">This notification was sent via Company Semantics.</p>
|
|
474
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.</p>
|
|
475
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
459
476
|
</body>
|
|
460
477
|
</html>",
|
|
461
478
|
"subject": "Your access request was approved",
|
|
@@ -463,15 +480,14 @@ exports[`email render > companyMd.access_request_approved · Viewer 1`] = `
|
|
|
463
480
|
|
|
464
481
|
Jordan Lee approved your request to access "Engineering Handbook" — you can view.
|
|
465
482
|
|
|
466
|
-
|
|
467
|
-
|
|
|
468
|
-
|
|
469
|
-
| |
|
|
470
|
-
*--------------------*
|
|
483
|
+
*----------------*
|
|
484
|
+
| >> OPEN << |
|
|
485
|
+
*----------------*
|
|
471
486
|
|
|
472
487
|
https://app.companysemantics.ai/doc/handbook
|
|
473
488
|
|
|
474
489
|
This notification was sent via Company Semantics.
|
|
490
|
+
|
|
475
491
|
---
|
|
476
492
|
Company Semantics
|
|
477
493
|
Questions? Contact support@companysemantics.ai
|
|
@@ -485,9 +501,10 @@ exports[`email render > companyMd.access_request_denied · No reason 1`] = `
|
|
|
485
501
|
<html lang="en">
|
|
486
502
|
<head><meta charset="UTF-8"></head>
|
|
487
503
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
488
|
-
<p style="
|
|
489
|
-
<p style="
|
|
490
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">This notification was sent via Company Semantics.</p>
|
|
504
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
505
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> declined your request to access <b>"Engineering Handbook"</b>.</p>
|
|
506
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.</p>
|
|
507
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
491
508
|
</body>
|
|
492
509
|
</html>",
|
|
493
510
|
"subject": "Your access request was reviewed",
|
|
@@ -496,6 +513,7 @@ exports[`email render > companyMd.access_request_denied · No reason 1`] = `
|
|
|
496
513
|
Jordan Lee declined your request to access "Engineering Handbook".
|
|
497
514
|
|
|
498
515
|
This notification was sent via Company Semantics.
|
|
516
|
+
|
|
499
517
|
---
|
|
500
518
|
Company Semantics
|
|
501
519
|
Questions? Contact support@companysemantics.ai
|
|
@@ -509,14 +527,20 @@ exports[`email render > companyMd.access_request_denied · With reason 1`] = `
|
|
|
509
527
|
<html lang="en">
|
|
510
528
|
<head><meta charset="UTF-8"></head>
|
|
511
529
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
512
|
-
<p style="
|
|
513
|
-
<p style="
|
|
514
|
-
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0
|
|
515
|
-
<tr
|
|
516
|
-
<
|
|
517
|
-
|
|
530
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
531
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> declined your request to access <b>"Engineering Handbook"</b>.</p>
|
|
532
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
533
|
+
<tr>
|
|
534
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">This doc is limited to the platform team for now.</td>
|
|
535
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
536
|
+
</tr>
|
|
537
|
+
<tr>
|
|
538
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 11px; color: #888; text-align: right; padding-top: 4px;">Reason from Jordan Lee</td>
|
|
539
|
+
<td></td>
|
|
540
|
+
</tr>
|
|
518
541
|
</table>
|
|
519
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">This notification was sent via Company Semantics.</p>
|
|
542
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.</p>
|
|
543
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
520
544
|
</body>
|
|
521
545
|
</html>",
|
|
522
546
|
"subject": "Your access request was reviewed",
|
|
@@ -524,10 +548,14 @@ exports[`email render > companyMd.access_request_denied · With reason 1`] = `
|
|
|
524
548
|
|
|
525
549
|
Jordan Lee declined your request to access "Engineering Handbook".
|
|
526
550
|
|
|
527
|
-
|
|
528
|
-
|
|
551
|
+
┌────────────────────────────────────┐
|
|
552
|
+
│This doc is limited to the platform │
|
|
553
|
+
│ team for now. │
|
|
554
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
555
|
+
Reason from Jordan Lee
|
|
529
556
|
|
|
530
557
|
This notification was sent via Company Semantics.
|
|
558
|
+
|
|
531
559
|
---
|
|
532
560
|
Company Semantics
|
|
533
561
|
Questions? Contact support@companysemantics.ai
|
|
@@ -541,15 +569,15 @@ exports[`email render > companyMd.access_requested · No message 1`] = `
|
|
|
541
569
|
<html lang="en">
|
|
542
570
|
<head><meta charset="UTF-8"></head>
|
|
543
571
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
544
|
-
<p style="
|
|
545
|
-
<p style="
|
|
572
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
573
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Sam Chen</b> is requesting access to <b>"Engineering Handbook"</b>.</p>
|
|
546
574
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
547
575
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
548
576
|
<a href="https://app.companysemantics.ai/doc/handbook?request=req_456" style="color: #0047FF; text-decoration: underline;"><b>>> REVIEW <<</b></a>
|
|
549
577
|
</td></tr>
|
|
550
578
|
</table>
|
|
551
579
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>You are receiving this because you own this document.</p>
|
|
552
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
580
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
553
581
|
</body>
|
|
554
582
|
</html>",
|
|
555
583
|
"subject": "Someone requested access to a document",
|
|
@@ -557,16 +585,15 @@ exports[`email render > companyMd.access_requested · No message 1`] = `
|
|
|
557
585
|
|
|
558
586
|
Sam Chen is requesting access to "Engineering Handbook".
|
|
559
587
|
|
|
560
|
-
|
|
561
|
-
|
|
|
562
|
-
|
|
563
|
-
| |
|
|
564
|
-
*--------------------*
|
|
588
|
+
*------------------*
|
|
589
|
+
| >> REVIEW << |
|
|
590
|
+
*------------------*
|
|
565
591
|
|
|
566
592
|
https://app.companysemantics.ai/doc/handbook?request=req_456
|
|
567
593
|
|
|
568
594
|
This notification was sent via Company Semantics.
|
|
569
595
|
You are receiving this because you own this document.
|
|
596
|
+
|
|
570
597
|
---
|
|
571
598
|
Company Semantics
|
|
572
599
|
Questions? Contact support@companysemantics.ai
|
|
@@ -580,12 +607,17 @@ exports[`email render > companyMd.access_requested · With message 1`] = `
|
|
|
580
607
|
<html lang="en">
|
|
581
608
|
<head><meta charset="UTF-8"></head>
|
|
582
609
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
583
|
-
<p style="
|
|
584
|
-
<p style="
|
|
585
|
-
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0
|
|
586
|
-
<tr
|
|
587
|
-
<
|
|
588
|
-
|
|
610
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
611
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Sam Chen</b> is requesting access to <b>"Engineering Handbook"</b>.</p>
|
|
612
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
613
|
+
<tr>
|
|
614
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">I'd like to contribute the onboarding section.</td>
|
|
615
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
616
|
+
</tr>
|
|
617
|
+
<tr>
|
|
618
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 11px; color: #888; text-align: right; padding-top: 4px;">Message from Sam Chen</td>
|
|
619
|
+
<td></td>
|
|
620
|
+
</tr>
|
|
589
621
|
</table>
|
|
590
622
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
591
623
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
@@ -593,7 +625,7 @@ exports[`email render > companyMd.access_requested · With message 1`] = `
|
|
|
593
625
|
</td></tr>
|
|
594
626
|
</table>
|
|
595
627
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>You are receiving this because you own this document.</p>
|
|
596
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
628
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
597
629
|
</body>
|
|
598
630
|
</html>",
|
|
599
631
|
"subject": "Someone requested access to a document",
|
|
@@ -601,19 +633,21 @@ exports[`email render > companyMd.access_requested · With message 1`] = `
|
|
|
601
633
|
|
|
602
634
|
Sam Chen is requesting access to "Engineering Handbook".
|
|
603
635
|
|
|
604
|
-
|
|
605
|
-
|
|
636
|
+
┌────────────────────────────────────┐
|
|
637
|
+
│ I'd like to contribute the │
|
|
638
|
+
│ onboarding section. │
|
|
639
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
640
|
+
Message from Sam Chen
|
|
606
641
|
|
|
607
|
-
|
|
608
|
-
|
|
|
609
|
-
|
|
610
|
-
| |
|
|
611
|
-
*--------------------*
|
|
642
|
+
*------------------*
|
|
643
|
+
| >> REVIEW << |
|
|
644
|
+
*------------------*
|
|
612
645
|
|
|
613
646
|
https://app.companysemantics.ai/doc/handbook?request=req_123
|
|
614
647
|
|
|
615
648
|
This notification was sent via Company Semantics.
|
|
616
649
|
You are receiving this because you own this document.
|
|
650
|
+
|
|
617
651
|
---
|
|
618
652
|
Company Semantics
|
|
619
653
|
Questions? Contact support@companysemantics.ai
|
|
@@ -627,7 +661,7 @@ exports[`email render > org.invite · Admin 1`] = `
|
|
|
627
661
|
<html lang="en">
|
|
628
662
|
<head><meta charset="UTF-8"></head>
|
|
629
663
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
630
|
-
<p style="
|
|
664
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Workspace invitation.</p>
|
|
631
665
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0;">
|
|
632
666
|
<tr><td style="padding: 20px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
633
667
|
<a href="https://app.companysemantics.ai/invite/abc123" style="color: #0047FF; text-decoration: underline;"><b>>> JOIN <<</b></a>
|
|
@@ -637,27 +671,27 @@ exports[`email render > org.invite · Admin 1`] = `
|
|
|
637
671
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Workspace: <b>Acme Corp</b></p>
|
|
638
672
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Role: <b>admin</b></p>
|
|
639
673
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>7 days</b></p>
|
|
640
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This invitation was sent via Company Semantics.<br>If you weren
|
|
641
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
674
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
675
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
642
676
|
</body>
|
|
643
677
|
</html>",
|
|
644
678
|
"subject": "You have been invited to join a workspace",
|
|
645
679
|
"text": "Workspace invitation.
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
|
649
|
-
|
|
650
|
-
|
|
680
|
+
|
|
681
|
+
*----------------*
|
|
682
|
+
| >> JOIN << |
|
|
683
|
+
*----------------*
|
|
684
|
+
|
|
685
|
+
https://app.companysemantics.ai/invite/abc123
|
|
651
686
|
|
|
652
687
|
From: Alex Rivera
|
|
653
688
|
Workspace: Acme Corp
|
|
654
689
|
Role: admin
|
|
655
690
|
Expires in: 7 days
|
|
656
691
|
|
|
657
|
-
https://app.companysemantics.ai/invite/abc123
|
|
658
|
-
|
|
659
692
|
This invitation was sent via Company Semantics.
|
|
660
693
|
If you weren't expecting this, no action is required.
|
|
694
|
+
|
|
661
695
|
---
|
|
662
696
|
Company Semantics
|
|
663
697
|
Questions? Contact support@companysemantics.ai
|
|
@@ -671,7 +705,7 @@ exports[`email render > org.invite · Member 1`] = `
|
|
|
671
705
|
<html lang="en">
|
|
672
706
|
<head><meta charset="UTF-8"></head>
|
|
673
707
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
674
|
-
<p style="
|
|
708
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Workspace invitation.</p>
|
|
675
709
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0;">
|
|
676
710
|
<tr><td style="padding: 20px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
677
711
|
<a href="https://app.companysemantics.ai/invite/def456" style="color: #0047FF; text-decoration: underline;"><b>>> JOIN <<</b></a>
|
|
@@ -681,27 +715,27 @@ exports[`email render > org.invite · Member 1`] = `
|
|
|
681
715
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Workspace: <b>Acme Corp</b></p>
|
|
682
716
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 4px 0;">Role: <b>member</b></p>
|
|
683
717
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Expires in: <b>7 days</b></p>
|
|
684
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This invitation was sent via Company Semantics.<br>If you weren
|
|
685
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
718
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
719
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
686
720
|
</body>
|
|
687
721
|
</html>",
|
|
688
722
|
"subject": "You have been invited to join a workspace",
|
|
689
723
|
"text": "Workspace invitation.
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
|
693
|
-
|
|
694
|
-
|
|
724
|
+
|
|
725
|
+
*----------------*
|
|
726
|
+
| >> JOIN << |
|
|
727
|
+
*----------------*
|
|
728
|
+
|
|
729
|
+
https://app.companysemantics.ai/invite/def456
|
|
695
730
|
|
|
696
731
|
From: Alex Rivera
|
|
697
732
|
Workspace: Acme Corp
|
|
698
733
|
Role: member
|
|
699
734
|
Expires in: 7 days
|
|
700
735
|
|
|
701
|
-
https://app.companysemantics.ai/invite/def456
|
|
702
|
-
|
|
703
736
|
This invitation was sent via Company Semantics.
|
|
704
737
|
If you weren't expecting this, no action is required.
|
|
738
|
+
|
|
705
739
|
---
|
|
706
740
|
Company Semantics
|
|
707
741
|
Questions? Contact support@companysemantics.ai
|
|
@@ -714,12 +748,16 @@ exports[`email render > org.ownership_transfer · No note 1`] = `
|
|
|
714
748
|
"subject": "You've been invited to become a workspace owner",
|
|
715
749
|
"text": "You have been invited to become the owner of "Acme Corp".
|
|
716
750
|
|
|
717
|
-
|
|
751
|
+
*------------------*
|
|
752
|
+
| >> ACCEPT << |
|
|
753
|
+
*------------------*
|
|
754
|
+
|
|
718
755
|
https://app.companysemantics.ai/owner-transfer/accept/tok456
|
|
719
756
|
|
|
720
|
-
|
|
757
|
+
Expires in: 14 days
|
|
721
758
|
|
|
722
759
|
If you did not expect this invitation, you can safely ignore this email.
|
|
760
|
+
|
|
723
761
|
---
|
|
724
762
|
Company Semantics
|
|
725
763
|
Questions? Contact support@companysemantics.ai
|
|
@@ -732,15 +770,22 @@ exports[`email render > org.ownership_transfer · With note 1`] = `
|
|
|
732
770
|
"subject": "You've been invited to become a workspace owner",
|
|
733
771
|
"text": "You have been invited to become the owner of "Acme Corp".
|
|
734
772
|
|
|
735
|
-
|
|
736
|
-
|
|
773
|
+
┌────────────────────────────────────┐
|
|
774
|
+
│ Handing this over as I move to an │
|
|
775
|
+
│ advisory role. │
|
|
776
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
777
|
+
Message from the current owner
|
|
778
|
+
|
|
779
|
+
*------------------*
|
|
780
|
+
| >> ACCEPT << |
|
|
781
|
+
*------------------*
|
|
737
782
|
|
|
738
|
-
To accept this invitation, please click the link below:
|
|
739
783
|
https://app.companysemantics.ai/owner-transfer/accept/tok123
|
|
740
784
|
|
|
741
|
-
|
|
785
|
+
Expires in: 14 days
|
|
742
786
|
|
|
743
787
|
If you did not expect this invitation, you can safely ignore this email.
|
|
788
|
+
|
|
744
789
|
---
|
|
745
790
|
Company Semantics
|
|
746
791
|
Questions? Contact support@companysemantics.ai
|
|
@@ -756,6 +801,7 @@ exports[`email render > org.ownership_transfer_completed · Default 1`] = `
|
|
|
756
801
|
You are no longer the owner of this workspace, but you remain an admin.
|
|
757
802
|
|
|
758
803
|
If you did not authorize this transfer, please contact support immediately.
|
|
804
|
+
|
|
759
805
|
---
|
|
760
806
|
Company Semantics
|
|
761
807
|
Questions? Contact support@companysemantics.ai
|
|
@@ -769,32 +815,31 @@ exports[`email render > org.unit_owner_granted · Delegate, no message 1`] = `
|
|
|
769
815
|
<html lang="en">
|
|
770
816
|
<head><meta charset="UTF-8"></head>
|
|
771
817
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
772
|
-
<p style="
|
|
773
|
-
<p style="
|
|
818
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
819
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> added you as a <b>Delegate</b> of <b>Platform Engineering</b>.</p>
|
|
774
820
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
775
821
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
776
822
|
<a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: underline;"><b>>> VIEW TEAM <<</b></a>
|
|
777
823
|
</td></tr>
|
|
778
824
|
</table>
|
|
779
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren
|
|
780
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
825
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
826
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
781
827
|
</body>
|
|
782
828
|
</html>",
|
|
783
829
|
"subject": "You've been added to a team",
|
|
784
830
|
"text": "Hi,
|
|
785
831
|
|
|
786
|
-
Jordan Lee added you as a Delegate of
|
|
832
|
+
Jordan Lee added you as a Delegate of Platform Engineering.
|
|
787
833
|
|
|
788
|
-
|
|
789
|
-
|
|
|
790
|
-
|
|
791
|
-
| |
|
|
792
|
-
*--------------------*
|
|
834
|
+
*---------------------*
|
|
835
|
+
| >> VIEW TEAM << |
|
|
836
|
+
*---------------------*
|
|
793
837
|
|
|
794
838
|
https://app.companysemantics.ai/org/unit/42
|
|
795
839
|
|
|
796
840
|
This notification was sent via Company Semantics.
|
|
797
841
|
If you weren't expecting this, no action is required.
|
|
842
|
+
|
|
798
843
|
---
|
|
799
844
|
Company Semantics
|
|
800
845
|
Questions? Contact support@companysemantics.ai
|
|
@@ -808,40 +853,47 @@ exports[`email render > org.unit_owner_granted · Unit owner + message 1`] = `
|
|
|
808
853
|
<html lang="en">
|
|
809
854
|
<head><meta charset="UTF-8"></head>
|
|
810
855
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
811
|
-
<p style="
|
|
812
|
-
<p style="
|
|
813
|
-
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0
|
|
814
|
-
<tr
|
|
815
|
-
<
|
|
816
|
-
|
|
856
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi Sam Chen,</p>
|
|
857
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> added you as a <b>Unit owner</b> of <b>Platform Engineering</b>.</p>
|
|
858
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
859
|
+
<tr>
|
|
860
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Welcome aboard — glad to have you owning this team.</td>
|
|
861
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
862
|
+
</tr>
|
|
863
|
+
<tr>
|
|
864
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 11px; color: #888; text-align: right; padding-top: 4px;">Message from Jordan Lee</td>
|
|
865
|
+
<td></td>
|
|
866
|
+
</tr>
|
|
817
867
|
</table>
|
|
818
868
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
819
869
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
820
870
|
<a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: underline;"><b>>> VIEW TEAM <<</b></a>
|
|
821
871
|
</td></tr>
|
|
822
872
|
</table>
|
|
823
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren
|
|
824
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
873
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
874
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
825
875
|
</body>
|
|
826
876
|
</html>",
|
|
827
877
|
"subject": "You've been added to a team",
|
|
828
878
|
"text": "Hi Sam Chen,
|
|
829
879
|
|
|
830
|
-
Jordan Lee added you as a Unit owner of
|
|
880
|
+
Jordan Lee added you as a Unit owner of Platform Engineering.
|
|
831
881
|
|
|
832
|
-
|
|
833
|
-
|
|
882
|
+
┌────────────────────────────────────┐
|
|
883
|
+
│ Welcome aboard — glad to have you │
|
|
884
|
+
│ owning this team. │
|
|
885
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
886
|
+
Message from Jordan Lee
|
|
834
887
|
|
|
835
|
-
|
|
836
|
-
|
|
|
837
|
-
|
|
838
|
-
| |
|
|
839
|
-
*--------------------*
|
|
888
|
+
*---------------------*
|
|
889
|
+
| >> VIEW TEAM << |
|
|
890
|
+
*---------------------*
|
|
840
891
|
|
|
841
892
|
https://app.companysemantics.ai/org/unit/42
|
|
842
893
|
|
|
843
894
|
This notification was sent via Company Semantics.
|
|
844
895
|
If you weren't expecting this, no action is required.
|
|
896
|
+
|
|
845
897
|
---
|
|
846
898
|
Company Semantics
|
|
847
899
|
Questions? Contact support@companysemantics.ai
|
|
@@ -861,6 +913,7 @@ If you didn't request these codes, someone may be trying to access your account.
|
|
|
861
913
|
We recommend reviewing your account security.
|
|
862
914
|
|
|
863
915
|
Time: Sun, 12 Jul 2026 14:30:00 GMT
|
|
916
|
+
|
|
864
917
|
---
|
|
865
918
|
Company Semantics Security
|
|
866
919
|
Questions? Contact support@companysemantics.ai
|
|
@@ -879,6 +932,7 @@ If this was you, no action is needed.
|
|
|
879
932
|
If you didn't attempt to log in, please secure your account immediately.
|
|
880
933
|
|
|
881
934
|
Time: Sun, 12 Jul 2026 14:30:00 GMT
|
|
935
|
+
|
|
882
936
|
---
|
|
883
937
|
Company Semantics Security
|
|
884
938
|
Questions? Contact support@companysemantics.ai
|
|
@@ -892,20 +946,25 @@ exports[`email render > share.granted · Document · editor · message 1`] = `
|
|
|
892
946
|
<html lang="en">
|
|
893
947
|
<head><meta charset="UTF-8"></head>
|
|
894
948
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
895
|
-
<p style="
|
|
896
|
-
<p style="
|
|
897
|
-
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0
|
|
898
|
-
<tr
|
|
899
|
-
<
|
|
900
|
-
|
|
949
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi Sam Chen,</p>
|
|
950
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> shared the document <b>"Q3 Roadmap"</b> with you — you can edit.</p>
|
|
951
|
+
<table cellpadding="0" cellspacing="0" border="0" style="margin: 0 0 16px 0;">
|
|
952
|
+
<tr>
|
|
953
|
+
<td style="border: 1px solid #1a1a1a; border-radius: 12px 12px 0 12px; padding: 10px 14px; min-width: 280px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; background: #f5f5f5;">Take a look before Thursday's planning.</td>
|
|
954
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; padding-left: 8px; vertical-align: bottom;">(•̀_ರ╮)</td>
|
|
955
|
+
</tr>
|
|
956
|
+
<tr>
|
|
957
|
+
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 11px; color: #888; text-align: right; padding-top: 4px;">Message from Jordan Lee</td>
|
|
958
|
+
<td></td>
|
|
959
|
+
</tr>
|
|
901
960
|
</table>
|
|
902
961
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
903
962
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
904
963
|
<a href="https://app.companysemantics.ai/doc/roadmap" style="color: #0047FF; text-decoration: underline;"><b>>> OPEN <<</b></a>
|
|
905
964
|
</td></tr>
|
|
906
965
|
</table>
|
|
907
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren
|
|
908
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
966
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
967
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
909
968
|
</body>
|
|
910
969
|
</html>",
|
|
911
970
|
"subject": "Something has been shared with you",
|
|
@@ -913,19 +972,21 @@ exports[`email render > share.granted · Document · editor · message 1`] = `
|
|
|
913
972
|
|
|
914
973
|
Jordan Lee shared the document "Q3 Roadmap" with you — you can edit.
|
|
915
974
|
|
|
916
|
-
|
|
917
|
-
|
|
975
|
+
┌────────────────────────────────────┐
|
|
976
|
+
│ Take a look before Thursday's │
|
|
977
|
+
│ planning. │
|
|
978
|
+
└────────────────────────────────────┘ (•̀_ರ╮)
|
|
979
|
+
Message from Jordan Lee
|
|
918
980
|
|
|
919
|
-
|
|
920
|
-
|
|
|
921
|
-
|
|
922
|
-
| |
|
|
923
|
-
*--------------------*
|
|
981
|
+
*----------------*
|
|
982
|
+
| >> OPEN << |
|
|
983
|
+
*----------------*
|
|
924
984
|
|
|
925
985
|
https://app.companysemantics.ai/doc/roadmap
|
|
926
986
|
|
|
927
987
|
This notification was sent via Company Semantics.
|
|
928
988
|
If you weren't expecting this, no action is required.
|
|
989
|
+
|
|
929
990
|
---
|
|
930
991
|
Company Semantics
|
|
931
992
|
Questions? Contact support@companysemantics.ai
|
|
@@ -939,15 +1000,15 @@ exports[`email render > share.granted · Meeting · viewer · no title 1`] = `
|
|
|
939
1000
|
<html lang="en">
|
|
940
1001
|
<head><meta charset="UTF-8"></head>
|
|
941
1002
|
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; margin: 0; padding: 0;">
|
|
942
|
-
<p style="
|
|
943
|
-
<p style="
|
|
1003
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">Hi,</p>
|
|
1004
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;"><b>Jordan Lee</b> shared a meeting with you — you can view.</p>
|
|
944
1005
|
<table cellpadding="0" cellspacing="0" border="0" style="border: 2px solid #1a1a1a; margin: 0 0 20px 0; max-width: 220px;">
|
|
945
1006
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 16px;">
|
|
946
1007
|
<a href="https://app.companysemantics.ai/meeting/8842" style="color: #0047FF; text-decoration: underline;"><b>>> OPEN <<</b></a>
|
|
947
1008
|
</td></tr>
|
|
948
1009
|
</table>
|
|
949
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren
|
|
950
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics</p>
|
|
1010
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0 0 20px 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1011
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 14px; margin: 0;">Company Semantics<br><span style="color: #888;">Questions? Contact <a href="mailto:support@companysemantics.ai" style="color: #888;">support@companysemantics.ai</a></span></p>
|
|
951
1012
|
</body>
|
|
952
1013
|
</html>",
|
|
953
1014
|
"subject": "Something has been shared with you",
|
|
@@ -955,16 +1016,15 @@ exports[`email render > share.granted · Meeting · viewer · no title 1`] = `
|
|
|
955
1016
|
|
|
956
1017
|
Jordan Lee shared a meeting with you — you can view.
|
|
957
1018
|
|
|
958
|
-
|
|
959
|
-
|
|
|
960
|
-
|
|
961
|
-
| |
|
|
962
|
-
*--------------------*
|
|
1019
|
+
*----------------*
|
|
1020
|
+
| >> OPEN << |
|
|
1021
|
+
*----------------*
|
|
963
1022
|
|
|
964
1023
|
https://app.companysemantics.ai/meeting/8842
|
|
965
1024
|
|
|
966
1025
|
This notification was sent via Company Semantics.
|
|
967
1026
|
If you weren't expecting this, no action is required.
|
|
1027
|
+
|
|
968
1028
|
---
|
|
969
1029
|
Company Semantics
|
|
970
1030
|
Questions? Contact support@companysemantics.ai
|