flowquery 1.0.25 → 1.0.26

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 (49) hide show
  1. package/.github/workflows/release.yml +1 -0
  2. package/.husky/pre-commit +3 -2
  3. package/dist/flowquery.min.js +1 -1
  4. package/dist/parsing/parser.d.ts.map +1 -1
  5. package/dist/parsing/parser.js +1 -0
  6. package/dist/parsing/parser.js.map +1 -1
  7. package/docs/flowquery.min.js +1 -1
  8. package/flowquery-py/pyproject.toml +1 -1
  9. package/flowquery-py/src/parsing/parser.py +1 -0
  10. package/flowquery-py/tests/compute/test_runner.py +26 -0
  11. package/flowquery-py/tests/parsing/test_parser.py +18 -0
  12. package/flowquery-vscode/flowQueryEngine/flowquery.min.js +1 -1
  13. package/jest.config.js +6 -9
  14. package/misc/apps/RAG/data/chats.json +302 -0
  15. package/misc/apps/RAG/data/emails.json +182 -0
  16. package/misc/apps/RAG/data/events.json +226 -0
  17. package/misc/apps/RAG/data/files.json +172 -0
  18. package/misc/apps/RAG/data/users.json +158 -0
  19. package/misc/apps/RAG/jest.config.js +21 -0
  20. package/misc/apps/RAG/package.json +9 -2
  21. package/misc/apps/RAG/src/App.tsx +5 -5
  22. package/misc/apps/RAG/src/components/ChatContainer.tsx +53 -124
  23. package/misc/apps/RAG/src/components/FlowQueryAgent.ts +151 -157
  24. package/misc/apps/RAG/src/components/index.ts +1 -1
  25. package/misc/apps/RAG/src/graph/index.ts +19 -0
  26. package/misc/apps/RAG/src/graph/initializeGraph.ts +254 -0
  27. package/misc/apps/RAG/src/index.tsx +25 -13
  28. package/misc/apps/RAG/src/prompts/FlowQuerySystemPrompt.ts +146 -231
  29. package/misc/apps/RAG/src/prompts/index.ts +4 -4
  30. package/misc/apps/RAG/src/tests/graph.test.ts +35 -0
  31. package/misc/apps/RAG/src/utils/FlowQueryExecutor.ts +20 -21
  32. package/misc/apps/RAG/src/utils/FlowQueryExtractor.ts +35 -30
  33. package/misc/apps/RAG/src/utils/Llm.ts +248 -0
  34. package/misc/apps/RAG/src/utils/index.ts +7 -4
  35. package/misc/apps/RAG/tsconfig.json +4 -3
  36. package/misc/apps/RAG/webpack.config.js +40 -40
  37. package/package.json +1 -1
  38. package/src/parsing/parser.ts +1 -0
  39. package/tests/compute/runner.test.ts +1 -1
  40. package/tests/parsing/parser.test.ts +16 -0
  41. package/misc/apps/RAG/src/plugins/README.md +0 -139
  42. package/misc/apps/RAG/src/plugins/index.ts +0 -72
  43. package/misc/apps/RAG/src/plugins/loaders/CatFacts.ts +0 -70
  44. package/misc/apps/RAG/src/plugins/loaders/FetchJson.ts +0 -65
  45. package/misc/apps/RAG/src/plugins/loaders/Form.ts +0 -594
  46. package/misc/apps/RAG/src/plugins/loaders/Llm.ts +0 -450
  47. package/misc/apps/RAG/src/plugins/loaders/MockData.ts +0 -101
  48. package/misc/apps/RAG/src/plugins/loaders/Table.ts +0 -274
  49. package/misc/apps/RAG/src/plugins/loaders/Weather.ts +0 -138
package/jest.config.js CHANGED
@@ -1,11 +1,8 @@
1
1
  /** @type {import('ts-jest').JestConfigWithTsJest} **/
2
2
  module.exports = {
3
- testEnvironment: "node",
4
- transform: {
5
- "^.+.tsx?$": ["ts-jest",{}],
6
- },
7
- testPathIgnorePatterns: [
8
- "/node_modules/",
9
- "/flowquery-vscode/test/"
10
- ],
11
- };
3
+ testEnvironment: "node",
4
+ transform: {
5
+ "^.+.tsx?$": ["ts-jest", {}],
6
+ },
7
+ testPathIgnorePatterns: ["/node_modules/", "/flowquery-vscode/test/", "/misc/apps/"],
8
+ };
@@ -0,0 +1,302 @@
1
+ [
2
+ {
3
+ "id": "ch-001",
4
+ "topic": "Project Aurora",
5
+ "type": "channel",
6
+ "teamName": "Product & Engineering",
7
+ "members": ["u-002", "u-003", "u-005", "u-006", "u-007", "u-008", "u-009"],
8
+ "messages": [
9
+ {
10
+ "id": "msg-001",
11
+ "from": "u-008",
12
+ "timestamp": "2026-01-10T09:15:00Z",
13
+ "body": "Hey team! Mia just shared the Aurora mockups. They look amazing. Let's review before the design meeting Tuesday.",
14
+ "reactions": [{ "type": "thumbsUp", "users": ["u-005", "u-009"] }],
15
+ "mentions": ["u-009"],
16
+ "relatedFiles": ["f-003"]
17
+ },
18
+ {
19
+ "id": "msg-002",
20
+ "from": "u-005",
21
+ "timestamp": "2026-01-10T09:32:00Z",
22
+ "body": "Just looked through them - the drag-and-drop widget approach is really clean. I think we can leverage the existing React DnD library for that. Should be straightforward.",
23
+ "reactions": [{ "type": "thumbsUp", "users": ["u-009", "u-008"] }],
24
+ "mentions": []
25
+ },
26
+ {
27
+ "id": "msg-003",
28
+ "from": "u-009",
29
+ "timestamp": "2026-01-10T09:40:00Z",
30
+ "body": "Thanks Emily! I designed the grid system with 12-column breakpoints so it maps well to a component-based layout. Happy to walk through the interaction specs.",
31
+ "reactions": [],
32
+ "mentions": ["u-005"]
33
+ },
34
+ {
35
+ "id": "msg-004",
36
+ "from": "u-002",
37
+ "timestamp": "2026-01-10T10:05:00Z",
38
+ "body": "Great collaboration you two. @Liam, can you make sure we have story points estimated for the frontend work before sprint planning Monday?",
39
+ "reactions": [{ "type": "thumbsUp", "users": ["u-008"] }],
40
+ "mentions": ["u-008"]
41
+ },
42
+ {
43
+ "id": "msg-005",
44
+ "from": "u-008",
45
+ "timestamp": "2026-01-10T10:08:00Z",
46
+ "body": "Will do. I'll break it into epics: widget framework, chart components, real-time data layer, and settings/preferences.",
47
+ "reactions": [],
48
+ "mentions": []
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "id": "ch-002",
54
+ "topic": "DevOps & Infrastructure",
55
+ "type": "channel",
56
+ "teamName": "Engineering",
57
+ "members": ["u-002", "u-005", "u-006", "u-007", "u-012"],
58
+ "messages": [
59
+ {
60
+ "id": "msg-006",
61
+ "from": "u-007",
62
+ "timestamp": "2026-01-08T11:00:00Z",
63
+ "body": "Migration plan for AKS is shared in the Engineering folder. @David, can you review the CosmosDB connection string migration section? Want to make sure the failover logic is right.",
64
+ "reactions": [],
65
+ "mentions": ["u-006"],
66
+ "relatedFiles": ["f-004"]
67
+ },
68
+ {
69
+ "id": "msg-007",
70
+ "from": "u-006",
71
+ "timestamp": "2026-01-08T11:25:00Z",
72
+ "body": "Looking at it now. One thing - we should use managed identity instead of connection strings for the new cluster. I'll update the Terraform configs.",
73
+ "reactions": [{ "type": "thumbsUp", "users": ["u-007", "u-012"] }],
74
+ "mentions": []
75
+ },
76
+ {
77
+ "id": "msg-008",
78
+ "from": "u-012",
79
+ "timestamp": "2026-01-08T11:45:00Z",
80
+ "body": "Good call David. I've already set up the managed identity in Azure AD for the staging subscription. I'll send you the resource IDs.",
81
+ "reactions": [{ "type": "heart", "users": ["u-006"] }],
82
+ "mentions": ["u-006"]
83
+ },
84
+ {
85
+ "id": "msg-009",
86
+ "from": "u-007",
87
+ "timestamp": "2026-01-08T12:00:00Z",
88
+ "body": "Perfect teamwork 🎉 Updated the plan to reflect managed identity approach. The staging migration window is confirmed for Jan 20-24. I'll send a calendar invite.",
89
+ "reactions": [{ "type": "thumbsUp", "users": ["u-002", "u-006", "u-012"] }],
90
+ "mentions": [],
91
+ "relatedEvents": ["ev-005"]
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ "id": "ch-003",
97
+ "topic": null,
98
+ "type": "oneOnOne",
99
+ "teamName": null,
100
+ "members": ["u-004", "u-010"],
101
+ "messages": [
102
+ {
103
+ "id": "msg-010",
104
+ "from": "u-010",
105
+ "timestamp": "2026-01-09T14:50:00Z",
106
+ "body": "James, just got off the call with Contoso. They're in! 200 seats. 🎉",
107
+ "reactions": [{ "type": "celebrate", "users": ["u-004"] }],
108
+ "mentions": []
109
+ },
110
+ {
111
+ "id": "msg-011",
112
+ "from": "u-004",
113
+ "timestamp": "2026-01-09T14:52:00Z",
114
+ "body": "That's incredible Ryan!! Best news all week. Can you send me the details over email so I can loop in Sarah and Marcus?",
115
+ "reactions": [],
116
+ "mentions": []
117
+ },
118
+ {
119
+ "id": "msg-012",
120
+ "from": "u-010",
121
+ "timestamp": "2026-01-09T14:55:00Z",
122
+ "body": "Sending now. They need SSO scoping and a data residency conversation. I told them we'd get back to them by end of next week.",
123
+ "reactions": [{ "type": "thumbsUp", "users": ["u-004"] }],
124
+ "mentions": [],
125
+ "relatedEmails": ["em-005"]
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "id": "ch-004",
131
+ "topic": "Security & Compliance",
132
+ "type": "channel",
133
+ "teamName": "Engineering",
134
+ "members": ["u-002", "u-005", "u-006", "u-007", "u-012"],
135
+ "messages": [
136
+ {
137
+ "id": "msg-013",
138
+ "from": "u-012",
139
+ "timestamp": "2026-01-13T09:30:00Z",
140
+ "body": "Heads up team - just sent the Q4 security audit findings via email. Three items need attention within 14 days. Most critical: npm CVEs in the frontend build.",
141
+ "reactions": [],
142
+ "mentions": [],
143
+ "relatedEmails": ["em-009"],
144
+ "relatedFiles": ["f-007"]
145
+ },
146
+ {
147
+ "id": "msg-014",
148
+ "from": "u-005",
149
+ "timestamp": "2026-01-13T09:45:00Z",
150
+ "body": "I saw the report. Two of the three CVEs are in transitive dependencies. I can bump the parent packages and run the test suite today.",
151
+ "reactions": [{ "type": "thumbsUp", "users": ["u-012", "u-002"] }],
152
+ "mentions": []
153
+ },
154
+ {
155
+ "id": "msg-015",
156
+ "from": "u-007",
157
+ "timestamp": "2026-01-13T10:00:00Z",
158
+ "body": "I'll handle the TLS 1.0 deprecation on the legacy gateway. Should be a config change + testing. @Noah, can you verify from the network side after I push?",
159
+ "reactions": [],
160
+ "mentions": ["u-012"]
161
+ },
162
+ {
163
+ "id": "msg-016",
164
+ "from": "u-012",
165
+ "timestamp": "2026-01-13T10:05:00Z",
166
+ "body": "Absolutely. I'll set up the TLS scanner to validate. For the service account permissions, I can tighten those in Azure AD this afternoon - just need Marcus to approve the scope changes.",
167
+ "reactions": [{ "type": "thumbsUp", "users": ["u-002"] }],
168
+ "mentions": ["u-002"]
169
+ },
170
+ {
171
+ "id": "msg-017",
172
+ "from": "u-002",
173
+ "timestamp": "2026-01-13T10:12:00Z",
174
+ "body": "Approved. Go ahead Noah. And let's add the security items to sprint 25 backlog. @Liam can you create the tickets?",
175
+ "reactions": [{ "type": "thumbsUp", "users": ["u-012", "u-008"] }],
176
+ "mentions": ["u-008"]
177
+ }
178
+ ]
179
+ },
180
+ {
181
+ "id": "ch-005",
182
+ "topic": null,
183
+ "type": "oneOnOne",
184
+ "teamName": null,
185
+ "members": ["u-003", "u-009"],
186
+ "messages": [
187
+ {
188
+ "id": "msg-018",
189
+ "from": "u-003",
190
+ "timestamp": "2026-01-10T09:00:00Z",
191
+ "body": "Mia, the mockups look fantastic! Quick question - did we consider the accessibility requirements for the color contrast in dark mode?",
192
+ "reactions": [],
193
+ "mentions": [],
194
+ "relatedFiles": ["f-003"]
195
+ },
196
+ {
197
+ "id": "msg-019",
198
+ "from": "u-009",
199
+ "timestamp": "2026-01-10T09:10:00Z",
200
+ "body": "Yes! All color combinations meet WCAG 2.1 AA standards. I used the Figma contrast checker plugin. I'll add the accessibility notes to the design spec doc.",
201
+ "reactions": [{ "type": "heart", "users": ["u-003"] }],
202
+ "mentions": []
203
+ },
204
+ {
205
+ "id": "msg-020",
206
+ "from": "u-003",
207
+ "timestamp": "2026-01-10T09:12:00Z",
208
+ "body": "Perfect. Let's make sure Emily knows about the ARIA roles needed for the drag-and-drop. Great work!",
209
+ "reactions": [{ "type": "thumbsUp", "users": ["u-009"] }],
210
+ "mentions": ["u-005"]
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "id": "ch-006",
216
+ "topic": "Sales & Marketing",
217
+ "type": "channel",
218
+ "teamName": "Sales & Marketing",
219
+ "members": ["u-004", "u-010", "u-011"],
220
+ "messages": [
221
+ {
222
+ "id": "msg-021",
223
+ "from": "u-011",
224
+ "timestamp": "2026-01-12T14:00:00Z",
225
+ "body": "Blog post draft is out for review. @James and @Sarah have it. Targeting Jan 15th publish date.",
226
+ "reactions": [],
227
+ "mentions": ["u-004"],
228
+ "relatedEmails": ["em-008"],
229
+ "relatedFiles": ["f-006"]
230
+ },
231
+ {
232
+ "id": "msg-022",
233
+ "from": "u-004",
234
+ "timestamp": "2026-01-12T14:15:00Z",
235
+ "body": "Great timing Olivia. Also - Fabrikam wants to do a joint webinar Feb 12th. Can you start planning the logistics?",
236
+ "reactions": [],
237
+ "mentions": [],
238
+ "relatedEmails": ["em-011"]
239
+ },
240
+ {
241
+ "id": "msg-023",
242
+ "from": "u-011",
243
+ "timestamp": "2026-01-12T14:20:00Z",
244
+ "body": "On it! I'll draft a landing page and promotional email sequence. We should aim for 200+ registrations. Ryan, can you share the Contoso win as a case study teaser?",
245
+ "reactions": [{ "type": "thumbsUp", "users": ["u-004"] }],
246
+ "mentions": ["u-010"]
247
+ },
248
+ {
249
+ "id": "msg-024",
250
+ "from": "u-010",
251
+ "timestamp": "2026-01-12T14:30:00Z",
252
+ "body": "Definitely! Once the deal is signed I'll get a quote from their CTO. Should make great social proof.",
253
+ "reactions": [{ "type": "fire", "users": ["u-011", "u-004"] }],
254
+ "mentions": []
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "id": "ch-007",
260
+ "topic": null,
261
+ "type": "groupChat",
262
+ "teamName": null,
263
+ "members": ["u-005", "u-006", "u-007"],
264
+ "messages": [
265
+ {
266
+ "id": "msg-025",
267
+ "from": "u-006",
268
+ "timestamp": "2026-01-16T12:00:00Z",
269
+ "body": "Hey, did either of you see the Python SDK beta results? 9 out of 12 rated DX as excellent or good!",
270
+ "reactions": [{ "type": "celebrate", "users": ["u-005", "u-007"] }],
271
+ "mentions": [],
272
+ "relatedEmails": ["em-012"],
273
+ "relatedFiles": ["f-008"]
274
+ },
275
+ {
276
+ "id": "msg-026",
277
+ "from": "u-005",
278
+ "timestamp": "2026-01-16T12:05:00Z",
279
+ "body": "That's awesome David! The auth token refresh bugs - are those in the same area I refactored last sprint?",
280
+ "reactions": [],
281
+ "mentions": ["u-006"]
282
+ },
283
+ {
284
+ "id": "msg-027",
285
+ "from": "u-006",
286
+ "timestamp": "2026-01-16T12:10:00Z",
287
+ "body": "Different code path actually. It's the background renewal timer in the async client. I have a fix ready, just need to add retry logic.",
288
+ "reactions": [{ "type": "thumbsUp", "users": ["u-005"] }],
289
+ "mentions": []
290
+ },
291
+ {
292
+ "id": "msg-028",
293
+ "from": "u-007",
294
+ "timestamp": "2026-01-16T12:15:00Z",
295
+ "body": "Nice work both of you! David, make sure the fix goes through the security scan pipeline before merging. Noah flagged some dependency issues yesterday.",
296
+ "reactions": [{ "type": "thumbsUp", "users": ["u-006"] }],
297
+ "mentions": ["u-006"],
298
+ "relatedEmails": ["em-009"]
299
+ }
300
+ ]
301
+ }
302
+ ]
@@ -0,0 +1,182 @@
1
+ [
2
+ {
3
+ "id": "em-001",
4
+ "subject": "Q1 2026 Roadmap Review",
5
+ "from": "u-003",
6
+ "to": ["u-001", "u-002", "u-004"],
7
+ "cc": ["u-008"],
8
+ "receivedDateTime": "2026-01-06T09:15:00Z",
9
+ "body": "Hi team,\n\nI've put together the Q1 2026 roadmap draft based on our December planning sessions. Key highlights include:\n\n1. Launch the new Analytics Dashboard (Project Aurora)\n2. API v3 rollout with GraphQL support\n3. Enterprise SSO improvements\n\nPlease review the attached deck and share feedback before our Thursday sync.\n\nBest,\nPriya",
10
+ "importance": "high",
11
+ "hasAttachments": true,
12
+ "attachments": ["f-001"],
13
+ "isRead": true,
14
+ "conversationId": "conv-001",
15
+ "categories": ["Roadmap", "Q1 Planning"]
16
+ },
17
+ {
18
+ "id": "em-002",
19
+ "subject": "Re: Q1 2026 Roadmap Review",
20
+ "from": "u-002",
21
+ "to": ["u-003"],
22
+ "cc": ["u-001", "u-004", "u-008"],
23
+ "receivedDateTime": "2026-01-06T11:42:00Z",
24
+ "body": "Priya,\n\nLooks solid. A couple of thoughts:\n\n- The GraphQL migration timeline seems aggressive. Emily and David estimate 6 weeks minimum for the schema design alone. Can we discuss phasing?\n- We need to factor in the infrastructure upgrades Ana is planning for late January.\n\nLet's dig into this Thursday.\n\nMarcus",
25
+ "importance": "normal",
26
+ "hasAttachments": false,
27
+ "attachments": [],
28
+ "isRead": true,
29
+ "conversationId": "conv-001",
30
+ "categories": ["Roadmap"]
31
+ },
32
+ {
33
+ "id": "em-003",
34
+ "subject": "Re: Q1 2026 Roadmap Review",
35
+ "from": "u-001",
36
+ "to": ["u-003", "u-002"],
37
+ "cc": ["u-004"],
38
+ "receivedDateTime": "2026-01-06T14:05:00Z",
39
+ "body": "Both great points. Priya, let's also make sure we have clear success metrics for each initiative. James, can you bring customer feedback data from the enterprise accounts to the Thursday meeting?\n\nSarah",
40
+ "importance": "normal",
41
+ "hasAttachments": false,
42
+ "attachments": [],
43
+ "isRead": true,
44
+ "conversationId": "conv-001",
45
+ "categories": ["Roadmap"]
46
+ },
47
+ {
48
+ "id": "em-004",
49
+ "subject": "Infrastructure Upgrade Plan - K8s Migration",
50
+ "from": "u-007",
51
+ "to": ["u-002"],
52
+ "cc": ["u-005", "u-006"],
53
+ "receivedDateTime": "2026-01-08T10:30:00Z",
54
+ "body": "Hi Marcus,\n\nI've completed the assessment for migrating our staging environment to the new AKS cluster. Summary:\n\n- Estimated downtime: 2 hours during off-peak\n- Cost savings: ~18% on compute after migration\n- Timeline: Jan 20-24 for staging, Feb 3-7 for production\n\nI've documented the full plan in the shared engineering folder. David is helping with the database migration scripts.\n\nLet me know if you'd like to walk through it before I present to the team.\n\nAna",
55
+ "importance": "high",
56
+ "hasAttachments": true,
57
+ "attachments": ["f-004"],
58
+ "isRead": true,
59
+ "conversationId": "conv-002",
60
+ "categories": ["Infrastructure", "DevOps"]
61
+ },
62
+ {
63
+ "id": "em-005",
64
+ "subject": "Contoso Enterprise Deal - Update",
65
+ "from": "u-010",
66
+ "to": ["u-004"],
67
+ "cc": [],
68
+ "receivedDateTime": "2026-01-09T15:20:00Z",
69
+ "body": "James,\n\nGreat news on the Contoso account. After last week's demo, they're moving forward with a 200-seat enterprise license. They want:\n\n1. Custom SSO integration (SAML + OIDC)\n2. Dedicated support SLA\n3. On-prem data residency option\n\nTotal deal value: $340K ARR. I've updated the pipeline in Salesforce. Can we loop in Marcus for the SSO technical scoping?\n\nRyan",
70
+ "importance": "high",
71
+ "hasAttachments": false,
72
+ "attachments": [],
73
+ "isRead": true,
74
+ "conversationId": "conv-003",
75
+ "categories": ["Sales", "Enterprise"]
76
+ },
77
+ {
78
+ "id": "em-006",
79
+ "subject": "Re: Contoso Enterprise Deal - Update",
80
+ "from": "u-004",
81
+ "to": ["u-010"],
82
+ "cc": ["u-001", "u-002"],
83
+ "receivedDateTime": "2026-01-09T16:45:00Z",
84
+ "body": "Excellent work Ryan! This is our biggest enterprise deal this quarter.\n\nSarah - FYI on this win. Marcus - can your team scope the SSO and data residency requirements? I want to get back to Contoso by end of next week.\n\nJames",
85
+ "importance": "high",
86
+ "hasAttachments": false,
87
+ "attachments": [],
88
+ "isRead": true,
89
+ "conversationId": "conv-003",
90
+ "categories": ["Sales", "Enterprise"]
91
+ },
92
+ {
93
+ "id": "em-007",
94
+ "subject": "Analytics Dashboard Mockups Ready",
95
+ "from": "u-009",
96
+ "to": ["u-008", "u-003"],
97
+ "cc": ["u-005"],
98
+ "receivedDateTime": "2026-01-10T08:50:00Z",
99
+ "body": "Hi Liam & Priya,\n\nThe first round of mockups for Project Aurora is ready for review. I've created three layout options based on the user research sessions we ran in December.\n\nKey design decisions:\n- Dark mode default with light mode toggle\n- Drag-and-drop widget customization\n- Real-time data refresh indicators\n\nThe Figma file is linked in the shared project folder. Emily, I'd love your input on the component architecture feasibility.\n\nMia",
100
+ "importance": "normal",
101
+ "hasAttachments": true,
102
+ "attachments": ["f-003"],
103
+ "isRead": true,
104
+ "conversationId": "conv-004",
105
+ "categories": ["Project Aurora", "Design"]
106
+ },
107
+ {
108
+ "id": "em-008",
109
+ "subject": "Blog Post Draft: 2025 Year in Review",
110
+ "from": "u-011",
111
+ "to": ["u-004", "u-001"],
112
+ "cc": [],
113
+ "receivedDateTime": "2026-01-12T13:00:00Z",
114
+ "body": "Hi James & Sarah,\n\nI've drafted our 2025 Year in Review blog post highlighting key milestones:\n\n- 3x customer growth\n- API v2 launch\n- SOC 2 Type II certification\n- Partnership with Fabrikam\n\nPlease review and let me know if there's anything to add or adjust in tone. I'd like to publish by Jan 15th.\n\nOlivia",
115
+ "importance": "normal",
116
+ "hasAttachments": true,
117
+ "attachments": ["f-006"],
118
+ "isRead": false,
119
+ "conversationId": "conv-005",
120
+ "categories": ["Marketing", "Content"]
121
+ },
122
+ {
123
+ "id": "em-009",
124
+ "subject": "Security Audit Findings - Action Required",
125
+ "from": "u-012",
126
+ "to": ["u-002", "u-007"],
127
+ "cc": ["u-001"],
128
+ "receivedDateTime": "2026-01-13T09:10:00Z",
129
+ "body": "Marcus & Ana,\n\nOur quarterly security scan flagged a few items that need attention:\n\n1. Three npm packages with known CVEs in the frontend build (medium severity)\n2. TLS 1.0 still enabled on the legacy API gateway\n3. Two service accounts with overly broad permissions in Azure AD\n\nI've documented details and remediation steps in the attached report. Items 1 and 2 should be addressed within 14 days per our security policy.\n\nNoah",
130
+ "importance": "high",
131
+ "hasAttachments": true,
132
+ "attachments": ["f-007"],
133
+ "isRead": true,
134
+ "conversationId": "conv-006",
135
+ "categories": ["Security", "Compliance"]
136
+ },
137
+ {
138
+ "id": "em-010",
139
+ "subject": "Sprint 24 Retrospective Notes",
140
+ "from": "u-008",
141
+ "to": ["u-002", "u-005", "u-006", "u-007"],
142
+ "cc": ["u-003"],
143
+ "receivedDateTime": "2026-01-14T17:30:00Z",
144
+ "body": "Team,\n\nThanks for a productive retro today. Here's the summary:\n\nWhat went well:\n- Aurora frontend prototype delivered ahead of schedule\n- Great cross-team collaboration between Emily and Mia on the component library\n\nWhat to improve:\n- PR review turnaround time (target: < 24 hours)\n- Better estimation on backend tasks\n\nAction items:\n- David to set up automated PR reminder bot\n- Ana to document the new deployment checklist\n- Emily to create shared component storybook\n\nNotes are in the shared Sprint folder.\n\nLiam",
145
+ "importance": "normal",
146
+ "hasAttachments": false,
147
+ "attachments": [],
148
+ "isRead": true,
149
+ "conversationId": "conv-007",
150
+ "categories": ["Sprint", "Agile"]
151
+ },
152
+ {
153
+ "id": "em-011",
154
+ "subject": "Fabrikam Partnership - Joint Webinar Planning",
155
+ "from": "u-004",
156
+ "to": ["u-011", "u-003"],
157
+ "cc": ["u-001"],
158
+ "receivedDateTime": "2026-01-15T10:00:00Z",
159
+ "body": "Olivia & Priya,\n\nFabrikam wants to co-host a webinar showcasing our integration. Proposed date: Feb 12th.\n\nOlivia - can you handle the marketing logistics and landing page?\nPriya - we'll need a product demo segment, maybe 15 minutes showing the API integration.\n\nLet's discuss at our next marketing sync.\n\nJames",
160
+ "importance": "normal",
161
+ "hasAttachments": false,
162
+ "attachments": [],
163
+ "isRead": true,
164
+ "conversationId": "conv-008",
165
+ "categories": ["Partnership", "Marketing"]
166
+ },
167
+ {
168
+ "id": "em-012",
169
+ "subject": "Python SDK Beta Feedback",
170
+ "from": "u-006",
171
+ "to": ["u-002", "u-008"],
172
+ "cc": ["u-005"],
173
+ "receivedDateTime": "2026-01-16T11:20:00Z",
174
+ "body": "Marcus & Liam,\n\nI've compiled early feedback from the Python SDK beta testers (12 participants so far):\n\n- 9/12 rated the DX as 'excellent' or 'good'\n- Top request: async support for batch operations\n- Bug reports: 3 issues filed, all related to auth token refresh\n- Performance: 40% faster than the REST wrapper approach\n\nFull report attached. I think we're on track for GA in February if we address the auth issues.\n\nDavid",
175
+ "importance": "normal",
176
+ "hasAttachments": true,
177
+ "attachments": ["f-008"],
178
+ "isRead": true,
179
+ "conversationId": "conv-009",
180
+ "categories": ["SDK", "Beta"]
181
+ }
182
+ ]