@firedrill-tools/unified 0.1.1

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 (61) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +242 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/baseline.scenario.json +5 -0
  5. package/firedrill/bounds.scenario.json +23 -0
  6. package/firedrill/conformance.suite.json +23 -0
  7. package/firedrill/large-channels.scenario.json +4251 -0
  8. package/firedrill/many-workspaces.scenario.json +1623 -0
  9. package/firedrill/rate-limited.scenario.json +11 -0
  10. package/firedrill/tools/unified/behavior.mjs +69 -0
  11. package/firedrill/tools/unified/lib/assoc.mjs +61 -0
  12. package/firedrill/tools/unified/lib/enums.mjs +14 -0
  13. package/firedrill/tools/unified/lib/errors.mjs +50 -0
  14. package/firedrill/tools/unified/lib/events.mjs +27 -0
  15. package/firedrill/tools/unified/lib/identity.mjs +59 -0
  16. package/firedrill/tools/unified/lib/query.mjs +154 -0
  17. package/firedrill/tools/unified/lib/shapes.mjs +176 -0
  18. package/firedrill/tools/unified/lib/store.mjs +75 -0
  19. package/firedrill/tools/unified/lib/time.mjs +59 -0
  20. package/firedrill/tools/unified/lib/util.mjs +92 -0
  21. package/firedrill/tools/unified/lib/validate.mjs +114 -0
  22. package/firedrill/tools/unified/lib/wire.mjs +120 -0
  23. package/firedrill/tools/unified/ops/channels.mjs +45 -0
  24. package/firedrill/tools/unified/ops/connections.mjs +151 -0
  25. package/firedrill/tools/unified/ops/crm.mjs +126 -0
  26. package/firedrill/tools/unified/ops/deals.mjs +123 -0
  27. package/firedrill/tools/unified/ops/messages.mjs +133 -0
  28. package/firedrill/tools/unified/ops/pipelines.mjs +20 -0
  29. package/firedrill/tools/unified/ops/resource.mjs +114 -0
  30. package/firedrill/tools/unified/unified.tool.json +14068 -0
  31. package/firedrill/unified-bounds.drill.json +148 -0
  32. package/firedrill/unified-connections-flow.drill.json +226 -0
  33. package/firedrill/unified-crm-flow.drill.json +576 -0
  34. package/firedrill/unified-denied.drill.json +83 -0
  35. package/firedrill/unified-error-coverage.drill.json +528 -0
  36. package/firedrill/unified-fresh-actor.drill.json +83 -0
  37. package/firedrill/unified-invalid-workspace.drill.json +933 -0
  38. package/firedrill/unified-large-channels.drill.json +68 -0
  39. package/firedrill/unified-many-workspaces.drill.json +943 -0
  40. package/firedrill/unified-mcp-core-aliases.drill.json +113 -0
  41. package/firedrill/unified-messaging-flow.drill.json +326 -0
  42. package/firedrill/unified-rate-limited.drill.json +933 -0
  43. package/firedrill/unified-scoped-token.drill.json +113 -0
  44. package/firedrill/unified-size-bounds.drill.json +263 -0
  45. package/firedrill/unified-write-committed-lost.drill.json +107 -0
  46. package/firedrill/unified-write-unavailable.drill.json +528 -0
  47. package/firedrill/world.json +2958 -0
  48. package/firedrill/write-committed-lost.scenario.json +11 -0
  49. package/firedrill/write-unavailable.scenario.json +11 -0
  50. package/firedrill.json +5 -0
  51. package/package.json +52 -0
  52. package/starter.json +2446 -0
  53. package/test/conformance.mjs +39 -0
  54. package/test/flows/connections.mjs +87 -0
  55. package/test/flows/coverage.mjs +64 -0
  56. package/test/flows/crm.mjs +124 -0
  57. package/test/flows/faults.mjs +82 -0
  58. package/test/flows/identity.mjs +84 -0
  59. package/test/flows/messaging.mjs +82 -0
  60. package/test/flows/size.mjs +71 -0
  61. package/test/lib.mjs +133 -0
@@ -0,0 +1,2958 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "unified-conformance-world",
4
+ "title": "Unified.to Tool conformance world (Brightline Sales Ops workspace)",
5
+ "virtualTimeUs": 1789549200000000,
6
+ "actors": [
7
+ {
8
+ "id": "admin",
9
+ "description": "Workspace-wide API key (attribute workspaceId = the seeded workspace). Sees and changes every connection.",
10
+ "attributes": {
11
+ "workspaceId": "68c8000000000000000000a1"
12
+ },
13
+ "grants": [
14
+ {
15
+ "packageId": "unified",
16
+ "operationId": "connections.list"
17
+ },
18
+ {
19
+ "packageId": "unified",
20
+ "operationId": "connections.get"
21
+ },
22
+ {
23
+ "packageId": "unified",
24
+ "operationId": "connections.create"
25
+ },
26
+ {
27
+ "packageId": "unified",
28
+ "operationId": "connections.update"
29
+ },
30
+ {
31
+ "packageId": "unified",
32
+ "operationId": "connections.remove"
33
+ },
34
+ {
35
+ "packageId": "unified",
36
+ "operationId": "contacts.list"
37
+ },
38
+ {
39
+ "packageId": "unified",
40
+ "operationId": "contacts.get"
41
+ },
42
+ {
43
+ "packageId": "unified",
44
+ "operationId": "contacts.create"
45
+ },
46
+ {
47
+ "packageId": "unified",
48
+ "operationId": "contacts.update"
49
+ },
50
+ {
51
+ "packageId": "unified",
52
+ "operationId": "contacts.remove"
53
+ },
54
+ {
55
+ "packageId": "unified",
56
+ "operationId": "companies.list"
57
+ },
58
+ {
59
+ "packageId": "unified",
60
+ "operationId": "companies.get"
61
+ },
62
+ {
63
+ "packageId": "unified",
64
+ "operationId": "companies.create"
65
+ },
66
+ {
67
+ "packageId": "unified",
68
+ "operationId": "companies.update"
69
+ },
70
+ {
71
+ "packageId": "unified",
72
+ "operationId": "companies.remove"
73
+ },
74
+ {
75
+ "packageId": "unified",
76
+ "operationId": "deals.list"
77
+ },
78
+ {
79
+ "packageId": "unified",
80
+ "operationId": "deals.get"
81
+ },
82
+ {
83
+ "packageId": "unified",
84
+ "operationId": "deals.create"
85
+ },
86
+ {
87
+ "packageId": "unified",
88
+ "operationId": "deals.update"
89
+ },
90
+ {
91
+ "packageId": "unified",
92
+ "operationId": "deals.remove"
93
+ },
94
+ {
95
+ "packageId": "unified",
96
+ "operationId": "pipelines.list"
97
+ },
98
+ {
99
+ "packageId": "unified",
100
+ "operationId": "pipelines.get"
101
+ },
102
+ {
103
+ "packageId": "unified",
104
+ "operationId": "channels.list"
105
+ },
106
+ {
107
+ "packageId": "unified",
108
+ "operationId": "channels.get"
109
+ },
110
+ {
111
+ "packageId": "unified",
112
+ "operationId": "messages.list"
113
+ },
114
+ {
115
+ "packageId": "unified",
116
+ "operationId": "messages.get"
117
+ },
118
+ {
119
+ "packageId": "unified",
120
+ "operationId": "messages.create"
121
+ },
122
+ {
123
+ "packageId": "unified",
124
+ "operationId": "messages.update"
125
+ },
126
+ {
127
+ "packageId": "unified",
128
+ "operationId": "messages.remove"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "id": "fresh",
134
+ "description": "An actor with no identity attributes, as `firedrill tool add` creates: falls back to the first seeded workspace.",
135
+ "grants": [
136
+ {
137
+ "packageId": "unified",
138
+ "operationId": "connections.list"
139
+ },
140
+ {
141
+ "packageId": "unified",
142
+ "operationId": "connections.get"
143
+ },
144
+ {
145
+ "packageId": "unified",
146
+ "operationId": "connections.create"
147
+ },
148
+ {
149
+ "packageId": "unified",
150
+ "operationId": "connections.update"
151
+ },
152
+ {
153
+ "packageId": "unified",
154
+ "operationId": "connections.remove"
155
+ },
156
+ {
157
+ "packageId": "unified",
158
+ "operationId": "contacts.list"
159
+ },
160
+ {
161
+ "packageId": "unified",
162
+ "operationId": "contacts.get"
163
+ },
164
+ {
165
+ "packageId": "unified",
166
+ "operationId": "contacts.create"
167
+ },
168
+ {
169
+ "packageId": "unified",
170
+ "operationId": "contacts.update"
171
+ },
172
+ {
173
+ "packageId": "unified",
174
+ "operationId": "contacts.remove"
175
+ },
176
+ {
177
+ "packageId": "unified",
178
+ "operationId": "companies.list"
179
+ },
180
+ {
181
+ "packageId": "unified",
182
+ "operationId": "companies.get"
183
+ },
184
+ {
185
+ "packageId": "unified",
186
+ "operationId": "companies.create"
187
+ },
188
+ {
189
+ "packageId": "unified",
190
+ "operationId": "companies.update"
191
+ },
192
+ {
193
+ "packageId": "unified",
194
+ "operationId": "companies.remove"
195
+ },
196
+ {
197
+ "packageId": "unified",
198
+ "operationId": "deals.list"
199
+ },
200
+ {
201
+ "packageId": "unified",
202
+ "operationId": "deals.get"
203
+ },
204
+ {
205
+ "packageId": "unified",
206
+ "operationId": "deals.create"
207
+ },
208
+ {
209
+ "packageId": "unified",
210
+ "operationId": "deals.update"
211
+ },
212
+ {
213
+ "packageId": "unified",
214
+ "operationId": "deals.remove"
215
+ },
216
+ {
217
+ "packageId": "unified",
218
+ "operationId": "pipelines.list"
219
+ },
220
+ {
221
+ "packageId": "unified",
222
+ "operationId": "pipelines.get"
223
+ },
224
+ {
225
+ "packageId": "unified",
226
+ "operationId": "channels.list"
227
+ },
228
+ {
229
+ "packageId": "unified",
230
+ "operationId": "channels.get"
231
+ },
232
+ {
233
+ "packageId": "unified",
234
+ "operationId": "messages.list"
235
+ },
236
+ {
237
+ "packageId": "unified",
238
+ "operationId": "messages.get"
239
+ },
240
+ {
241
+ "packageId": "unified",
242
+ "operationId": "messages.create"
243
+ },
244
+ {
245
+ "packageId": "unified",
246
+ "operationId": "messages.update"
247
+ },
248
+ {
249
+ "packageId": "unified",
250
+ "operationId": "messages.remove"
251
+ }
252
+ ]
253
+ },
254
+ {
255
+ "id": "scoped",
256
+ "description": "Connection-scoped key: attribute connectionIds limits visibility to the chat connection; other connections answer 404 and creating connections answers 403.",
257
+ "attributes": {
258
+ "workspaceId": "68c8000000000000000000a1",
259
+ "connectionIds": [
260
+ "68c800000000000000000203"
261
+ ]
262
+ },
263
+ "grants": [
264
+ {
265
+ "packageId": "unified",
266
+ "operationId": "connections.list"
267
+ },
268
+ {
269
+ "packageId": "unified",
270
+ "operationId": "connections.get"
271
+ },
272
+ {
273
+ "packageId": "unified",
274
+ "operationId": "connections.create"
275
+ },
276
+ {
277
+ "packageId": "unified",
278
+ "operationId": "connections.update"
279
+ },
280
+ {
281
+ "packageId": "unified",
282
+ "operationId": "connections.remove"
283
+ },
284
+ {
285
+ "packageId": "unified",
286
+ "operationId": "contacts.list"
287
+ },
288
+ {
289
+ "packageId": "unified",
290
+ "operationId": "contacts.get"
291
+ },
292
+ {
293
+ "packageId": "unified",
294
+ "operationId": "contacts.create"
295
+ },
296
+ {
297
+ "packageId": "unified",
298
+ "operationId": "contacts.update"
299
+ },
300
+ {
301
+ "packageId": "unified",
302
+ "operationId": "contacts.remove"
303
+ },
304
+ {
305
+ "packageId": "unified",
306
+ "operationId": "companies.list"
307
+ },
308
+ {
309
+ "packageId": "unified",
310
+ "operationId": "companies.get"
311
+ },
312
+ {
313
+ "packageId": "unified",
314
+ "operationId": "companies.create"
315
+ },
316
+ {
317
+ "packageId": "unified",
318
+ "operationId": "companies.update"
319
+ },
320
+ {
321
+ "packageId": "unified",
322
+ "operationId": "companies.remove"
323
+ },
324
+ {
325
+ "packageId": "unified",
326
+ "operationId": "deals.list"
327
+ },
328
+ {
329
+ "packageId": "unified",
330
+ "operationId": "deals.get"
331
+ },
332
+ {
333
+ "packageId": "unified",
334
+ "operationId": "deals.create"
335
+ },
336
+ {
337
+ "packageId": "unified",
338
+ "operationId": "deals.update"
339
+ },
340
+ {
341
+ "packageId": "unified",
342
+ "operationId": "deals.remove"
343
+ },
344
+ {
345
+ "packageId": "unified",
346
+ "operationId": "pipelines.list"
347
+ },
348
+ {
349
+ "packageId": "unified",
350
+ "operationId": "pipelines.get"
351
+ },
352
+ {
353
+ "packageId": "unified",
354
+ "operationId": "channels.list"
355
+ },
356
+ {
357
+ "packageId": "unified",
358
+ "operationId": "channels.get"
359
+ },
360
+ {
361
+ "packageId": "unified",
362
+ "operationId": "messages.list"
363
+ },
364
+ {
365
+ "packageId": "unified",
366
+ "operationId": "messages.get"
367
+ },
368
+ {
369
+ "packageId": "unified",
370
+ "operationId": "messages.create"
371
+ },
372
+ {
373
+ "packageId": "unified",
374
+ "operationId": "messages.update"
375
+ },
376
+ {
377
+ "packageId": "unified",
378
+ "operationId": "messages.remove"
379
+ }
380
+ ]
381
+ },
382
+ {
383
+ "id": "ghost",
384
+ "description": "Claims a workspaceId that does not exist: every operation fails UNAUTHORIZED inside the Tool.",
385
+ "attributes": {
386
+ "workspaceId": "000000000000000000000000"
387
+ },
388
+ "grants": [
389
+ {
390
+ "packageId": "unified",
391
+ "operationId": "connections.list"
392
+ },
393
+ {
394
+ "packageId": "unified",
395
+ "operationId": "connections.get"
396
+ },
397
+ {
398
+ "packageId": "unified",
399
+ "operationId": "connections.create"
400
+ },
401
+ {
402
+ "packageId": "unified",
403
+ "operationId": "connections.update"
404
+ },
405
+ {
406
+ "packageId": "unified",
407
+ "operationId": "connections.remove"
408
+ },
409
+ {
410
+ "packageId": "unified",
411
+ "operationId": "contacts.list"
412
+ },
413
+ {
414
+ "packageId": "unified",
415
+ "operationId": "contacts.get"
416
+ },
417
+ {
418
+ "packageId": "unified",
419
+ "operationId": "contacts.create"
420
+ },
421
+ {
422
+ "packageId": "unified",
423
+ "operationId": "contacts.update"
424
+ },
425
+ {
426
+ "packageId": "unified",
427
+ "operationId": "contacts.remove"
428
+ },
429
+ {
430
+ "packageId": "unified",
431
+ "operationId": "companies.list"
432
+ },
433
+ {
434
+ "packageId": "unified",
435
+ "operationId": "companies.get"
436
+ },
437
+ {
438
+ "packageId": "unified",
439
+ "operationId": "companies.create"
440
+ },
441
+ {
442
+ "packageId": "unified",
443
+ "operationId": "companies.update"
444
+ },
445
+ {
446
+ "packageId": "unified",
447
+ "operationId": "companies.remove"
448
+ },
449
+ {
450
+ "packageId": "unified",
451
+ "operationId": "deals.list"
452
+ },
453
+ {
454
+ "packageId": "unified",
455
+ "operationId": "deals.get"
456
+ },
457
+ {
458
+ "packageId": "unified",
459
+ "operationId": "deals.create"
460
+ },
461
+ {
462
+ "packageId": "unified",
463
+ "operationId": "deals.update"
464
+ },
465
+ {
466
+ "packageId": "unified",
467
+ "operationId": "deals.remove"
468
+ },
469
+ {
470
+ "packageId": "unified",
471
+ "operationId": "pipelines.list"
472
+ },
473
+ {
474
+ "packageId": "unified",
475
+ "operationId": "pipelines.get"
476
+ },
477
+ {
478
+ "packageId": "unified",
479
+ "operationId": "channels.list"
480
+ },
481
+ {
482
+ "packageId": "unified",
483
+ "operationId": "channels.get"
484
+ },
485
+ {
486
+ "packageId": "unified",
487
+ "operationId": "messages.list"
488
+ },
489
+ {
490
+ "packageId": "unified",
491
+ "operationId": "messages.get"
492
+ },
493
+ {
494
+ "packageId": "unified",
495
+ "operationId": "messages.create"
496
+ },
497
+ {
498
+ "packageId": "unified",
499
+ "operationId": "messages.update"
500
+ },
501
+ {
502
+ "packageId": "unified",
503
+ "operationId": "messages.remove"
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "id": "auditor",
509
+ "description": "Valid workspace but no operation grants: the framework denies every call before the Tool runs.",
510
+ "attributes": {
511
+ "workspaceId": "68c8000000000000000000a1"
512
+ },
513
+ "grants": []
514
+ }
515
+ ],
516
+ "state": [
517
+ {
518
+ "action": "upsert",
519
+ "packageId": "unified",
520
+ "namespace": "meta",
521
+ "rowId": "counters",
522
+ "value": {
523
+ "next_id": 4097
524
+ }
525
+ },
526
+ {
527
+ "action": "upsert",
528
+ "packageId": "unified",
529
+ "namespace": "workspaces",
530
+ "rowId": "68c8000000000000000000a1",
531
+ "value": {
532
+ "id": "68c8000000000000000000a1",
533
+ "name": "Brightline Sales Ops",
534
+ "region": "north-america",
535
+ "limits": {
536
+ "max_rows_per_namespace": 10000
537
+ },
538
+ "created_at": "2026-06-01T09:00:00.000Z",
539
+ "updated_at": "2026-06-01T09:00:00.000Z"
540
+ }
541
+ },
542
+ {
543
+ "action": "upsert",
544
+ "packageId": "unified",
545
+ "namespace": "connections",
546
+ "rowId": "68c800000000000000000201",
547
+ "value": {
548
+ "id": "68c800000000000000000201",
549
+ "workspace_id": "68c8000000000000000000a1",
550
+ "integration_type": "hubspot",
551
+ "integration_name": "HubSpot",
552
+ "external_xref": "acct-brightline",
553
+ "permissions": [
554
+ "crm_contact_read",
555
+ "crm_contact_write",
556
+ "crm_company_read",
557
+ "crm_company_write",
558
+ "crm_deal_read",
559
+ "crm_deal_write",
560
+ "crm_pipeline_read"
561
+ ],
562
+ "categories": [
563
+ "crm"
564
+ ],
565
+ "auth": {
566
+ "name": "Maya Lindqvist",
567
+ "emails": [
568
+ "maya.lindqvist@brightline.example.com"
569
+ ],
570
+ "user_id": "u-maya"
571
+ },
572
+ "is_paused": false,
573
+ "environment": "Production",
574
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
575
+ "last_unhealthy_at": null,
576
+ "last_unhealthy_code": null,
577
+ "created_at": "2026-06-02T09:00:00.000Z",
578
+ "updated_at": "2026-09-15T09:00:00.000Z"
579
+ }
580
+ },
581
+ {
582
+ "action": "upsert",
583
+ "packageId": "unified",
584
+ "namespace": "connections",
585
+ "rowId": "68c800000000000000000202",
586
+ "value": {
587
+ "id": "68c800000000000000000202",
588
+ "workspace_id": "68c8000000000000000000a1",
589
+ "integration_type": "pipedrive",
590
+ "integration_name": "Pipedrive",
591
+ "external_xref": "acct-northwind",
592
+ "permissions": [
593
+ "crm_contact_read"
594
+ ],
595
+ "categories": [
596
+ "crm"
597
+ ],
598
+ "auth": {
599
+ "name": null,
600
+ "emails": [],
601
+ "user_id": null
602
+ },
603
+ "is_paused": false,
604
+ "environment": "Production",
605
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
606
+ "last_unhealthy_at": null,
607
+ "last_unhealthy_code": null,
608
+ "created_at": "2026-06-02T09:00:00.000Z",
609
+ "updated_at": "2026-08-20T09:00:00.000Z"
610
+ }
611
+ },
612
+ {
613
+ "action": "upsert",
614
+ "packageId": "unified",
615
+ "namespace": "connections",
616
+ "rowId": "68c800000000000000000203",
617
+ "value": {
618
+ "id": "68c800000000000000000203",
619
+ "workspace_id": "68c8000000000000000000a1",
620
+ "integration_type": "slack",
621
+ "integration_name": "Slack",
622
+ "external_xref": null,
623
+ "permissions": [
624
+ "messaging_channel_read",
625
+ "messaging_message_read",
626
+ "messaging_message_write"
627
+ ],
628
+ "categories": [
629
+ "messaging"
630
+ ],
631
+ "auth": {
632
+ "name": "Ops Bot",
633
+ "emails": [],
634
+ "user_id": "u-opsbot"
635
+ },
636
+ "is_paused": false,
637
+ "environment": "Production",
638
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
639
+ "last_unhealthy_at": null,
640
+ "last_unhealthy_code": null,
641
+ "created_at": "2026-06-02T09:00:00.000Z",
642
+ "updated_at": "2026-09-12T09:00:00.000Z"
643
+ }
644
+ },
645
+ {
646
+ "action": "upsert",
647
+ "packageId": "unified",
648
+ "namespace": "connections",
649
+ "rowId": "68c800000000000000000204",
650
+ "value": {
651
+ "id": "68c800000000000000000204",
652
+ "workspace_id": "68c8000000000000000000a1",
653
+ "integration_type": "gmail",
654
+ "integration_name": "Gmail",
655
+ "external_xref": null,
656
+ "permissions": [
657
+ "messaging_channel_read",
658
+ "messaging_message_read",
659
+ "messaging_message_write"
660
+ ],
661
+ "categories": [
662
+ "messaging"
663
+ ],
664
+ "auth": {
665
+ "name": "Maya Lindqvist",
666
+ "emails": [
667
+ "maya.lindqvist@brightline.example.com"
668
+ ],
669
+ "user_id": "u-maya"
670
+ },
671
+ "is_paused": false,
672
+ "environment": "Production",
673
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
674
+ "last_unhealthy_at": null,
675
+ "last_unhealthy_code": null,
676
+ "created_at": "2026-06-02T09:00:00.000Z",
677
+ "updated_at": "2026-09-14T09:00:00.000Z"
678
+ }
679
+ },
680
+ {
681
+ "action": "upsert",
682
+ "packageId": "unified",
683
+ "namespace": "connections",
684
+ "rowId": "68c800000000000000000205",
685
+ "value": {
686
+ "id": "68c800000000000000000205",
687
+ "workspace_id": "68c8000000000000000000a1",
688
+ "integration_type": "hubspot",
689
+ "integration_name": "HubSpot",
690
+ "external_xref": "acct-paused",
691
+ "permissions": [
692
+ "crm_contact_read",
693
+ "crm_contact_write",
694
+ "crm_company_read",
695
+ "crm_company_write",
696
+ "crm_deal_read",
697
+ "crm_deal_write",
698
+ "crm_pipeline_read"
699
+ ],
700
+ "categories": [
701
+ "crm"
702
+ ],
703
+ "auth": {
704
+ "name": null,
705
+ "emails": [],
706
+ "user_id": null
707
+ },
708
+ "is_paused": true,
709
+ "environment": "Production",
710
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
711
+ "last_unhealthy_at": null,
712
+ "last_unhealthy_code": null,
713
+ "created_at": "2026-06-02T09:00:00.000Z",
714
+ "updated_at": "2026-09-01T09:00:00.000Z"
715
+ }
716
+ },
717
+ {
718
+ "action": "upsert",
719
+ "packageId": "unified",
720
+ "namespace": "connections",
721
+ "rowId": "68c800000000000000000206",
722
+ "value": {
723
+ "id": "68c800000000000000000206",
724
+ "workspace_id": "68c8000000000000000000a1",
725
+ "integration_type": "salesforce",
726
+ "integration_name": "Salesforce",
727
+ "external_xref": null,
728
+ "permissions": [
729
+ "crm_contact_read",
730
+ "crm_contact_write",
731
+ "crm_company_read",
732
+ "crm_company_write",
733
+ "crm_deal_read",
734
+ "crm_deal_write",
735
+ "crm_pipeline_read"
736
+ ],
737
+ "categories": [
738
+ "crm"
739
+ ],
740
+ "auth": {
741
+ "name": null,
742
+ "emails": [],
743
+ "user_id": null
744
+ },
745
+ "is_paused": false,
746
+ "environment": "Production",
747
+ "last_healthy_at": "2026-09-09T09:00:00.000Z",
748
+ "last_unhealthy_at": "2026-09-10T09:00:00.000Z",
749
+ "last_unhealthy_code": "401",
750
+ "created_at": "2026-06-02T09:00:00.000Z",
751
+ "updated_at": "2026-09-10T09:00:00.000Z"
752
+ }
753
+ },
754
+ {
755
+ "action": "upsert",
756
+ "packageId": "unified",
757
+ "namespace": "connections",
758
+ "rowId": "68c800000000000000000207",
759
+ "value": {
760
+ "id": "68c800000000000000000207",
761
+ "workspace_id": "68c8000000000000000000a1",
762
+ "integration_type": "bamboohr",
763
+ "integration_name": "BambooHR",
764
+ "external_xref": null,
765
+ "permissions": [],
766
+ "categories": [
767
+ "hris"
768
+ ],
769
+ "auth": {
770
+ "name": null,
771
+ "emails": [],
772
+ "user_id": null
773
+ },
774
+ "is_paused": false,
775
+ "environment": "Production",
776
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
777
+ "last_unhealthy_at": null,
778
+ "last_unhealthy_code": null,
779
+ "created_at": "2026-06-02T09:00:00.000Z",
780
+ "updated_at": "2026-07-15T09:00:00.000Z"
781
+ }
782
+ },
783
+ {
784
+ "action": "upsert",
785
+ "packageId": "unified",
786
+ "namespace": "connections",
787
+ "rowId": "68c800000000000000000208",
788
+ "value": {
789
+ "id": "68c800000000000000000208",
790
+ "workspace_id": "68c8000000000000000000a1",
791
+ "integration_type": "hubspot",
792
+ "integration_name": "HubSpot",
793
+ "external_xref": "acct-sandbox",
794
+ "permissions": [
795
+ "crm_contact_read",
796
+ "crm_contact_write",
797
+ "crm_company_read",
798
+ "crm_company_write",
799
+ "crm_deal_read",
800
+ "crm_deal_write",
801
+ "crm_pipeline_read"
802
+ ],
803
+ "categories": [
804
+ "crm"
805
+ ],
806
+ "auth": {
807
+ "name": null,
808
+ "emails": [],
809
+ "user_id": null
810
+ },
811
+ "is_paused": false,
812
+ "environment": "Sandbox",
813
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
814
+ "last_unhealthy_at": null,
815
+ "last_unhealthy_code": null,
816
+ "created_at": "2026-06-02T09:00:00.000Z",
817
+ "updated_at": "2026-08-01T09:00:00.000Z"
818
+ }
819
+ },
820
+ {
821
+ "action": "upsert",
822
+ "packageId": "unified",
823
+ "namespace": "connections",
824
+ "rowId": "68c800000000000000000209",
825
+ "value": {
826
+ "id": "68c800000000000000000209",
827
+ "workspace_id": "68c8000000000000000000a1",
828
+ "integration_type": "hubspot",
829
+ "integration_name": "HubSpot",
830
+ "external_xref": "acct-sandbox-omni",
831
+ "permissions": [
832
+ "crm_contact_read",
833
+ "crm_contact_write",
834
+ "crm_company_read",
835
+ "crm_company_write",
836
+ "crm_deal_read",
837
+ "crm_deal_write",
838
+ "crm_pipeline_read",
839
+ "messaging_channel_read",
840
+ "messaging_message_read",
841
+ "messaging_message_write"
842
+ ],
843
+ "categories": [
844
+ "crm",
845
+ "messaging"
846
+ ],
847
+ "auth": {
848
+ "name": "Maya Lindqvist",
849
+ "emails": [
850
+ "maya.lindqvist@brightline.example.com"
851
+ ],
852
+ "user_id": "u-maya"
853
+ },
854
+ "is_paused": false,
855
+ "environment": "Sandbox",
856
+ "last_healthy_at": "2026-09-15T09:00:00.000Z",
857
+ "last_unhealthy_at": null,
858
+ "last_unhealthy_code": null,
859
+ "created_at": "2026-06-02T09:00:00.000Z",
860
+ "updated_at": "2026-08-02T09:00:00.000Z"
861
+ }
862
+ },
863
+ {
864
+ "action": "upsert",
865
+ "packageId": "unified",
866
+ "namespace": "pipelines",
867
+ "rowId": "68c800000000000000000201/68c800000000000000000301",
868
+ "value": {
869
+ "connection_id": "68c800000000000000000201",
870
+ "id": "68c800000000000000000301",
871
+ "created_at": "2026-06-02T09:00:00.000Z",
872
+ "updated_at": "2026-06-02T09:00:00.000Z",
873
+ "name": "Sales Pipeline",
874
+ "is_active": true,
875
+ "deal_probability": null,
876
+ "display_order": 0,
877
+ "stages": [
878
+ {
879
+ "id": "68c800000000000000000311",
880
+ "created_at": "2026-06-02T09:00:00.000Z",
881
+ "updated_at": "2026-06-02T09:00:00.000Z",
882
+ "name": "Qualification",
883
+ "active": true,
884
+ "deal_probability": 10,
885
+ "is_closed": false,
886
+ "display_order": 0
887
+ },
888
+ {
889
+ "id": "68c800000000000000000312",
890
+ "created_at": "2026-06-02T09:00:00.000Z",
891
+ "updated_at": "2026-06-02T09:00:00.000Z",
892
+ "name": "Proposal",
893
+ "active": true,
894
+ "deal_probability": 40,
895
+ "is_closed": false,
896
+ "display_order": 1
897
+ },
898
+ {
899
+ "id": "68c800000000000000000313",
900
+ "created_at": "2026-06-02T09:00:00.000Z",
901
+ "updated_at": "2026-06-02T09:00:00.000Z",
902
+ "name": "Negotiation",
903
+ "active": true,
904
+ "deal_probability": 70,
905
+ "is_closed": false,
906
+ "display_order": 2
907
+ },
908
+ {
909
+ "id": "68c800000000000000000314",
910
+ "created_at": "2026-06-02T09:00:00.000Z",
911
+ "updated_at": "2026-06-02T09:00:00.000Z",
912
+ "name": "Closed Won",
913
+ "active": true,
914
+ "deal_probability": 100,
915
+ "is_closed": true,
916
+ "display_order": 3
917
+ },
918
+ {
919
+ "id": "68c800000000000000000315",
920
+ "created_at": "2026-06-02T09:00:00.000Z",
921
+ "updated_at": "2026-06-02T09:00:00.000Z",
922
+ "name": "Closed Lost",
923
+ "active": true,
924
+ "deal_probability": 0,
925
+ "is_closed": true,
926
+ "display_order": 4
927
+ }
928
+ ]
929
+ }
930
+ },
931
+ {
932
+ "action": "upsert",
933
+ "packageId": "unified",
934
+ "namespace": "pipelines",
935
+ "rowId": "68c800000000000000000201/68c800000000000000000302",
936
+ "value": {
937
+ "connection_id": "68c800000000000000000201",
938
+ "id": "68c800000000000000000302",
939
+ "created_at": "2026-06-02T09:00:00.000Z",
940
+ "updated_at": "2026-07-01T09:00:00.000Z",
941
+ "name": "Renewals",
942
+ "is_active": false,
943
+ "deal_probability": 50,
944
+ "display_order": 1,
945
+ "stages": [
946
+ {
947
+ "id": "68c800000000000000000321",
948
+ "created_at": "2026-06-02T09:00:00.000Z",
949
+ "updated_at": "2026-06-02T09:00:00.000Z",
950
+ "name": "Upcoming",
951
+ "active": true,
952
+ "deal_probability": 50,
953
+ "is_closed": false,
954
+ "display_order": 0
955
+ },
956
+ {
957
+ "id": "68c800000000000000000322",
958
+ "created_at": "2026-06-02T09:00:00.000Z",
959
+ "updated_at": "2026-06-02T09:00:00.000Z",
960
+ "name": "Renewed",
961
+ "active": true,
962
+ "deal_probability": 100,
963
+ "is_closed": true,
964
+ "display_order": 1
965
+ },
966
+ {
967
+ "id": "68c800000000000000000323",
968
+ "created_at": "2026-06-02T09:00:00.000Z",
969
+ "updated_at": "2026-06-02T09:00:00.000Z",
970
+ "name": "Churned",
971
+ "active": true,
972
+ "deal_probability": 0,
973
+ "is_closed": true,
974
+ "display_order": 2
975
+ }
976
+ ]
977
+ }
978
+ },
979
+ {
980
+ "action": "upsert",
981
+ "packageId": "unified",
982
+ "namespace": "companies",
983
+ "rowId": "68c800000000000000000201/68c800000000000000000401",
984
+ "value": {
985
+ "connection_id": "68c800000000000000000201",
986
+ "id": "68c800000000000000000401",
987
+ "created_at": "2026-06-03T09:00:00.000Z",
988
+ "updated_at": "2026-09-12T09:00:00.000Z",
989
+ "name": "Northwind Traders",
990
+ "description": null,
991
+ "industry": "Wholesale",
992
+ "timezone": null,
993
+ "employees": 480,
994
+ "is_active": true,
995
+ "tags": [],
996
+ "websites": [
997
+ "https://northwind.example.org"
998
+ ],
999
+ "domains": [
1000
+ "northwind.example.org"
1001
+ ],
1002
+ "emails": [],
1003
+ "telephones": [],
1004
+ "address": {
1005
+ "address1": "12 Harbour Way",
1006
+ "address2": null,
1007
+ "city": "Bristol",
1008
+ "region": "England",
1009
+ "region_code": "ENG",
1010
+ "postal_code": "BS1 4DJ",
1011
+ "country": "United Kingdom",
1012
+ "country_code": "GB"
1013
+ },
1014
+ "link_urls": [],
1015
+ "contact_ids": [
1016
+ "68c800000000000000000501",
1017
+ "68c800000000000000000502"
1018
+ ],
1019
+ "deal_ids": [
1020
+ "68c800000000000000000601",
1021
+ "68c800000000000000000602"
1022
+ ],
1023
+ "user_id": null,
1024
+ "metadata": [],
1025
+ "raw": {}
1026
+ }
1027
+ },
1028
+ {
1029
+ "action": "upsert",
1030
+ "packageId": "unified",
1031
+ "namespace": "companies",
1032
+ "rowId": "68c800000000000000000201/68c800000000000000000402",
1033
+ "value": {
1034
+ "connection_id": "68c800000000000000000201",
1035
+ "id": "68c800000000000000000402",
1036
+ "created_at": "2026-06-10T09:00:00.000Z",
1037
+ "updated_at": "2026-09-05T09:00:00.000Z",
1038
+ "name": "Contoso Robotics",
1039
+ "description": null,
1040
+ "industry": "Manufacturing",
1041
+ "timezone": null,
1042
+ "employees": 120,
1043
+ "is_active": true,
1044
+ "tags": [],
1045
+ "websites": [],
1046
+ "domains": [
1047
+ "contoso-robotics.example.org"
1048
+ ],
1049
+ "emails": [],
1050
+ "telephones": [],
1051
+ "address": null,
1052
+ "link_urls": [],
1053
+ "contact_ids": [
1054
+ "68c800000000000000000503"
1055
+ ],
1056
+ "deal_ids": [
1057
+ "68c800000000000000000603"
1058
+ ],
1059
+ "user_id": "u-maya",
1060
+ "metadata": [],
1061
+ "raw": {}
1062
+ }
1063
+ },
1064
+ {
1065
+ "action": "upsert",
1066
+ "packageId": "unified",
1067
+ "namespace": "companies",
1068
+ "rowId": "68c800000000000000000201/68c800000000000000000403",
1069
+ "value": {
1070
+ "connection_id": "68c800000000000000000201",
1071
+ "id": "68c800000000000000000403",
1072
+ "created_at": "2026-06-15T09:00:00.000Z",
1073
+ "updated_at": "2026-08-20T09:00:00.000Z",
1074
+ "name": "Fabrikam Studio",
1075
+ "description": null,
1076
+ "industry": "Design",
1077
+ "timezone": null,
1078
+ "employees": 35,
1079
+ "is_active": true,
1080
+ "tags": [
1081
+ "agency",
1082
+ "emea"
1083
+ ],
1084
+ "websites": [],
1085
+ "domains": [],
1086
+ "emails": [],
1087
+ "telephones": [],
1088
+ "address": null,
1089
+ "link_urls": [],
1090
+ "contact_ids": [
1091
+ "68c800000000000000000504"
1092
+ ],
1093
+ "deal_ids": [
1094
+ "68c800000000000000000604"
1095
+ ],
1096
+ "user_id": null,
1097
+ "metadata": [],
1098
+ "raw": {}
1099
+ }
1100
+ },
1101
+ {
1102
+ "action": "upsert",
1103
+ "packageId": "unified",
1104
+ "namespace": "companies",
1105
+ "rowId": "68c800000000000000000201/68c800000000000000000404",
1106
+ "value": {
1107
+ "connection_id": "68c800000000000000000201",
1108
+ "id": "68c800000000000000000404",
1109
+ "created_at": "2026-06-20T09:00:00.000Z",
1110
+ "updated_at": "2026-07-01T09:00:00.000Z",
1111
+ "name": "Tailspin Freight",
1112
+ "description": null,
1113
+ "industry": "Logistics",
1114
+ "timezone": null,
1115
+ "employees": 900,
1116
+ "is_active": false,
1117
+ "tags": [],
1118
+ "websites": [],
1119
+ "domains": [],
1120
+ "emails": [
1121
+ {
1122
+ "email": "ops@tailspin.example.org",
1123
+ "type": "WORK"
1124
+ }
1125
+ ],
1126
+ "telephones": [],
1127
+ "address": null,
1128
+ "link_urls": [],
1129
+ "contact_ids": [],
1130
+ "deal_ids": [
1131
+ "68c800000000000000000605"
1132
+ ],
1133
+ "user_id": null,
1134
+ "metadata": [],
1135
+ "raw": {}
1136
+ }
1137
+ },
1138
+ {
1139
+ "action": "upsert",
1140
+ "packageId": "unified",
1141
+ "namespace": "companies",
1142
+ "rowId": "68c800000000000000000201/68c800000000000000000405",
1143
+ "value": {
1144
+ "connection_id": "68c800000000000000000201",
1145
+ "id": "68c800000000000000000405",
1146
+ "created_at": "2026-07-02T09:00:00.000Z",
1147
+ "updated_at": "2026-09-14T09:00:00.000Z",
1148
+ "name": "山田物産",
1149
+ "description": null,
1150
+ "industry": "貿易",
1151
+ "timezone": "Asia/Tokyo",
1152
+ "employees": 60,
1153
+ "is_active": true,
1154
+ "tags": [],
1155
+ "websites": [],
1156
+ "domains": [],
1157
+ "emails": [],
1158
+ "telephones": [],
1159
+ "address": {
1160
+ "address1": "千代田区丸の内1-1-1",
1161
+ "address2": null,
1162
+ "city": "東京",
1163
+ "region": "東京都",
1164
+ "region_code": "13",
1165
+ "postal_code": "100-0005",
1166
+ "country": "日本",
1167
+ "country_code": "JP"
1168
+ },
1169
+ "link_urls": [],
1170
+ "contact_ids": [
1171
+ "68c800000000000000000507"
1172
+ ],
1173
+ "deal_ids": [],
1174
+ "user_id": null,
1175
+ "metadata": [],
1176
+ "raw": {}
1177
+ }
1178
+ },
1179
+ {
1180
+ "action": "upsert",
1181
+ "packageId": "unified",
1182
+ "namespace": "contacts",
1183
+ "rowId": "68c800000000000000000201/68c800000000000000000501",
1184
+ "value": {
1185
+ "connection_id": "68c800000000000000000201",
1186
+ "id": "68c800000000000000000501",
1187
+ "created_at": "2026-06-03T09:00:00.000Z",
1188
+ "updated_at": "2026-09-12T09:00:00.000Z",
1189
+ "name": "Elena Marsh",
1190
+ "first_name": "Elena",
1191
+ "last_name": "Marsh",
1192
+ "title": "Head of Procurement",
1193
+ "company": "Northwind Traders",
1194
+ "department": null,
1195
+ "image_url": null,
1196
+ "user_id": null,
1197
+ "emails": [
1198
+ {
1199
+ "email": "elena.marsh@northwind.example.org",
1200
+ "type": "WORK"
1201
+ },
1202
+ {
1203
+ "email": "elena@example.org",
1204
+ "type": "HOME"
1205
+ }
1206
+ ],
1207
+ "telephones": [
1208
+ {
1209
+ "telephone": "+44 117 496 0100",
1210
+ "type": "MOBILE"
1211
+ }
1212
+ ],
1213
+ "address": {
1214
+ "address1": "12 Harbour Way",
1215
+ "address2": "Floor 3",
1216
+ "city": "Bristol",
1217
+ "region": "England",
1218
+ "region_code": "ENG",
1219
+ "postal_code": "BS1 4DJ",
1220
+ "country": "United Kingdom",
1221
+ "country_code": "GB"
1222
+ },
1223
+ "company_ids": [
1224
+ "68c800000000000000000401"
1225
+ ],
1226
+ "deal_ids": [
1227
+ "68c800000000000000000601",
1228
+ "68c800000000000000000602"
1229
+ ],
1230
+ "link_urls": [],
1231
+ "metadata": [],
1232
+ "raw": {
1233
+ "hs_object_id": "501"
1234
+ }
1235
+ }
1236
+ },
1237
+ {
1238
+ "action": "upsert",
1239
+ "packageId": "unified",
1240
+ "namespace": "contacts",
1241
+ "rowId": "68c800000000000000000201/68c800000000000000000502",
1242
+ "value": {
1243
+ "connection_id": "68c800000000000000000201",
1244
+ "id": "68c800000000000000000502",
1245
+ "created_at": "2026-06-04T09:00:00.000Z",
1246
+ "updated_at": "2026-09-10T09:00:00.000Z",
1247
+ "name": "Tomás Achebe",
1248
+ "first_name": "Tomás",
1249
+ "last_name": "Achebe",
1250
+ "title": "Operations Director",
1251
+ "company": "Northwind Traders",
1252
+ "department": null,
1253
+ "image_url": null,
1254
+ "user_id": "u-maya",
1255
+ "emails": [
1256
+ {
1257
+ "email": "tomas.achebe@northwind.example.org",
1258
+ "type": "WORK"
1259
+ }
1260
+ ],
1261
+ "telephones": [],
1262
+ "address": null,
1263
+ "company_ids": [
1264
+ "68c800000000000000000401"
1265
+ ],
1266
+ "deal_ids": [
1267
+ "68c800000000000000000601"
1268
+ ],
1269
+ "link_urls": [],
1270
+ "metadata": [],
1271
+ "raw": {}
1272
+ }
1273
+ },
1274
+ {
1275
+ "action": "upsert",
1276
+ "packageId": "unified",
1277
+ "namespace": "contacts",
1278
+ "rowId": "68c800000000000000000201/68c800000000000000000503",
1279
+ "value": {
1280
+ "connection_id": "68c800000000000000000201",
1281
+ "id": "68c800000000000000000503",
1282
+ "created_at": "2026-06-11T09:00:00.000Z",
1283
+ "updated_at": "2026-09-05T09:00:00.000Z",
1284
+ "name": "Priya Raman",
1285
+ "first_name": "Priya",
1286
+ "last_name": "Raman",
1287
+ "title": "CTO",
1288
+ "company": "Contoso Robotics",
1289
+ "department": null,
1290
+ "image_url": null,
1291
+ "user_id": null,
1292
+ "emails": [
1293
+ {
1294
+ "email": "priya.raman@contoso-robotics.example.org",
1295
+ "type": "WORK"
1296
+ }
1297
+ ],
1298
+ "telephones": [],
1299
+ "address": null,
1300
+ "company_ids": [
1301
+ "68c800000000000000000402"
1302
+ ],
1303
+ "deal_ids": [
1304
+ "68c800000000000000000603"
1305
+ ],
1306
+ "link_urls": [],
1307
+ "metadata": [],
1308
+ "raw": {}
1309
+ }
1310
+ },
1311
+ {
1312
+ "action": "upsert",
1313
+ "packageId": "unified",
1314
+ "namespace": "contacts",
1315
+ "rowId": "68c800000000000000000201/68c800000000000000000504",
1316
+ "value": {
1317
+ "connection_id": "68c800000000000000000201",
1318
+ "id": "68c800000000000000000504",
1319
+ "created_at": "2026-06-16T09:00:00.000Z",
1320
+ "updated_at": "2026-08-20T09:00:00.000Z",
1321
+ "name": "Jonas Weber",
1322
+ "first_name": "Jonas",
1323
+ "last_name": "Weber",
1324
+ "title": null,
1325
+ "company": "Fabrikam Studio",
1326
+ "department": null,
1327
+ "image_url": null,
1328
+ "user_id": null,
1329
+ "emails": [],
1330
+ "telephones": [],
1331
+ "address": null,
1332
+ "company_ids": [
1333
+ "68c800000000000000000403"
1334
+ ],
1335
+ "deal_ids": [],
1336
+ "link_urls": [],
1337
+ "metadata": [],
1338
+ "raw": {}
1339
+ }
1340
+ },
1341
+ {
1342
+ "action": "upsert",
1343
+ "packageId": "unified",
1344
+ "namespace": "contacts",
1345
+ "rowId": "68c800000000000000000201/68c800000000000000000505",
1346
+ "value": {
1347
+ "connection_id": "68c800000000000000000201",
1348
+ "id": "68c800000000000000000505",
1349
+ "created_at": "2026-07-01T09:00:00.000Z",
1350
+ "updated_at": "2026-07-01T09:00:00.000Z",
1351
+ "name": "Ravi Iyer",
1352
+ "first_name": "Ravi",
1353
+ "last_name": "Iyer",
1354
+ "title": null,
1355
+ "company": null,
1356
+ "department": null,
1357
+ "image_url": null,
1358
+ "user_id": null,
1359
+ "emails": [
1360
+ {
1361
+ "email": "ravi.iyer@example.org",
1362
+ "type": "OTHER"
1363
+ }
1364
+ ],
1365
+ "telephones": [],
1366
+ "address": null,
1367
+ "company_ids": [],
1368
+ "deal_ids": [],
1369
+ "link_urls": [],
1370
+ "metadata": [],
1371
+ "raw": {}
1372
+ }
1373
+ },
1374
+ {
1375
+ "action": "upsert",
1376
+ "packageId": "unified",
1377
+ "namespace": "contacts",
1378
+ "rowId": "68c800000000000000000201/68c800000000000000000506",
1379
+ "value": {
1380
+ "connection_id": "68c800000000000000000201",
1381
+ "id": "68c800000000000000000506",
1382
+ "created_at": "2026-07-08T09:00:00.000Z",
1383
+ "updated_at": "2026-09-01T09:00:00.000Z",
1384
+ "name": "Ana Sofía Núñez",
1385
+ "first_name": "Ana Sofía",
1386
+ "last_name": "Núñez",
1387
+ "title": null,
1388
+ "company": null,
1389
+ "department": "Finance",
1390
+ "image_url": null,
1391
+ "user_id": null,
1392
+ "emails": [
1393
+ {
1394
+ "email": "ana.nunez@example.org",
1395
+ "type": "WORK"
1396
+ }
1397
+ ],
1398
+ "telephones": [],
1399
+ "address": null,
1400
+ "company_ids": [],
1401
+ "deal_ids": [],
1402
+ "link_urls": [],
1403
+ "metadata": [
1404
+ {
1405
+ "id": "lead_source",
1406
+ "slug": "lead_source",
1407
+ "namespace": null,
1408
+ "format": "SINGLE_SELECT",
1409
+ "value": "Webinar",
1410
+ "extra_data": null
1411
+ },
1412
+ {
1413
+ "id": "lifetime_value",
1414
+ "slug": "lifetime_value",
1415
+ "namespace": null,
1416
+ "format": "NUMBER",
1417
+ "value": 12500,
1418
+ "extra_data": null
1419
+ }
1420
+ ],
1421
+ "raw": {}
1422
+ }
1423
+ },
1424
+ {
1425
+ "action": "upsert",
1426
+ "packageId": "unified",
1427
+ "namespace": "contacts",
1428
+ "rowId": "68c800000000000000000201/68c800000000000000000507",
1429
+ "value": {
1430
+ "connection_id": "68c800000000000000000201",
1431
+ "id": "68c800000000000000000507",
1432
+ "created_at": "2026-07-09T09:00:00.000Z",
1433
+ "updated_at": "2026-09-14T09:00:00.000Z",
1434
+ "name": "李伟 Li Wei",
1435
+ "first_name": "Li",
1436
+ "last_name": "Wei",
1437
+ "title": "採購経理",
1438
+ "company": "山田物産",
1439
+ "department": null,
1440
+ "image_url": null,
1441
+ "user_id": null,
1442
+ "emails": [
1443
+ {
1444
+ "email": "li.wei@yamada.example.org",
1445
+ "type": "WORK"
1446
+ }
1447
+ ],
1448
+ "telephones": [],
1449
+ "address": null,
1450
+ "company_ids": [
1451
+ "68c800000000000000000405"
1452
+ ],
1453
+ "deal_ids": [],
1454
+ "link_urls": [],
1455
+ "metadata": [],
1456
+ "raw": {}
1457
+ }
1458
+ },
1459
+ {
1460
+ "action": "upsert",
1461
+ "packageId": "unified",
1462
+ "namespace": "contacts",
1463
+ "rowId": "68c800000000000000000201/68c800000000000000000508",
1464
+ "value": {
1465
+ "connection_id": "68c800000000000000000201",
1466
+ "id": "68c800000000000000000508",
1467
+ "created_at": "2026-08-01T09:00:00.000Z",
1468
+ "updated_at": "2026-09-15T09:00:00.000Z",
1469
+ "name": "Sam Okafor",
1470
+ "first_name": "Sam",
1471
+ "last_name": "Okafor",
1472
+ "title": "Founder",
1473
+ "company": null,
1474
+ "department": null,
1475
+ "image_url": "https://images.example.org/avatars/sam.png",
1476
+ "user_id": null,
1477
+ "emails": [
1478
+ {
1479
+ "email": "sam@okafor.example.org",
1480
+ "type": "WORK"
1481
+ }
1482
+ ],
1483
+ "telephones": [
1484
+ {
1485
+ "telephone": "+1 415 555 0142",
1486
+ "type": "WORK"
1487
+ }
1488
+ ],
1489
+ "address": null,
1490
+ "company_ids": [],
1491
+ "deal_ids": [],
1492
+ "link_urls": [
1493
+ "https://social.example.org/samokafor"
1494
+ ],
1495
+ "metadata": [],
1496
+ "raw": {}
1497
+ }
1498
+ },
1499
+ {
1500
+ "action": "upsert",
1501
+ "packageId": "unified",
1502
+ "namespace": "contacts",
1503
+ "rowId": "68c800000000000000000202/68c800000000000000000509",
1504
+ "value": {
1505
+ "connection_id": "68c800000000000000000202",
1506
+ "id": "68c800000000000000000509",
1507
+ "created_at": "2026-06-20T09:00:00.000Z",
1508
+ "updated_at": "2026-08-15T09:00:00.000Z",
1509
+ "name": "Dana Cole",
1510
+ "first_name": "Dana",
1511
+ "last_name": "Cole",
1512
+ "title": null,
1513
+ "company": null,
1514
+ "department": null,
1515
+ "image_url": null,
1516
+ "user_id": null,
1517
+ "emails": [
1518
+ {
1519
+ "email": "dana.cole@example.org",
1520
+ "type": "WORK"
1521
+ }
1522
+ ],
1523
+ "telephones": [],
1524
+ "address": null,
1525
+ "company_ids": [],
1526
+ "deal_ids": [],
1527
+ "link_urls": [],
1528
+ "metadata": [],
1529
+ "raw": {}
1530
+ }
1531
+ },
1532
+ {
1533
+ "action": "upsert",
1534
+ "packageId": "unified",
1535
+ "namespace": "contacts",
1536
+ "rowId": "68c800000000000000000208/68c800000000000000000510",
1537
+ "value": {
1538
+ "connection_id": "68c800000000000000000208",
1539
+ "id": "68c800000000000000000510",
1540
+ "created_at": "2026-08-01T09:00:00.000Z",
1541
+ "updated_at": "2026-08-01T09:00:00.000Z",
1542
+ "name": "Sandbox Contact",
1543
+ "first_name": "Sandbox",
1544
+ "last_name": "Contact",
1545
+ "title": null,
1546
+ "company": null,
1547
+ "department": null,
1548
+ "image_url": null,
1549
+ "user_id": null,
1550
+ "emails": [],
1551
+ "telephones": [],
1552
+ "address": null,
1553
+ "company_ids": [],
1554
+ "deal_ids": [],
1555
+ "link_urls": [],
1556
+ "metadata": [],
1557
+ "raw": {}
1558
+ }
1559
+ },
1560
+ {
1561
+ "action": "upsert",
1562
+ "packageId": "unified",
1563
+ "namespace": "deals",
1564
+ "rowId": "68c800000000000000000201/68c800000000000000000601",
1565
+ "value": {
1566
+ "connection_id": "68c800000000000000000201",
1567
+ "id": "68c800000000000000000601",
1568
+ "created_at": "2026-06-05T09:00:00.000Z",
1569
+ "updated_at": "2026-09-12T09:00:00.000Z",
1570
+ "name": "Northwind Q4 expansion",
1571
+ "description": null,
1572
+ "source": null,
1573
+ "currency": "USD",
1574
+ "amount": 85000,
1575
+ "probability": 40,
1576
+ "closed_at": null,
1577
+ "closing_at": "2026-11-30T09:00:00.000Z",
1578
+ "lost_reason": null,
1579
+ "won_reason": null,
1580
+ "tags": [],
1581
+ "pipelines": [
1582
+ {
1583
+ "id": "68c800000000000000000301",
1584
+ "name": "Sales Pipeline",
1585
+ "type": null
1586
+ }
1587
+ ],
1588
+ "stages": [
1589
+ {
1590
+ "id": "68c800000000000000000312",
1591
+ "name": "Proposal",
1592
+ "type": null
1593
+ }
1594
+ ],
1595
+ "contact_ids": [
1596
+ "68c800000000000000000501",
1597
+ "68c800000000000000000502"
1598
+ ],
1599
+ "company_ids": [
1600
+ "68c800000000000000000401"
1601
+ ],
1602
+ "user_id": "u-maya",
1603
+ "metadata": [],
1604
+ "raw": {}
1605
+ }
1606
+ },
1607
+ {
1608
+ "action": "upsert",
1609
+ "packageId": "unified",
1610
+ "namespace": "deals",
1611
+ "rowId": "68c800000000000000000201/68c800000000000000000602",
1612
+ "value": {
1613
+ "connection_id": "68c800000000000000000201",
1614
+ "id": "68c800000000000000000602",
1615
+ "created_at": "2026-07-01T09:00:00.000Z",
1616
+ "updated_at": "2026-09-02T09:00:00.000Z",
1617
+ "name": "Northwind renewal 2027",
1618
+ "description": null,
1619
+ "source": null,
1620
+ "currency": "USD",
1621
+ "amount": 42000,
1622
+ "probability": 50,
1623
+ "closed_at": null,
1624
+ "closing_at": null,
1625
+ "lost_reason": null,
1626
+ "won_reason": null,
1627
+ "tags": [],
1628
+ "pipelines": [
1629
+ {
1630
+ "id": "68c800000000000000000302",
1631
+ "name": "Renewals",
1632
+ "type": null
1633
+ }
1634
+ ],
1635
+ "stages": [
1636
+ {
1637
+ "id": "68c800000000000000000321",
1638
+ "name": "Upcoming",
1639
+ "type": null
1640
+ }
1641
+ ],
1642
+ "contact_ids": [
1643
+ "68c800000000000000000501"
1644
+ ],
1645
+ "company_ids": [
1646
+ "68c800000000000000000401"
1647
+ ],
1648
+ "user_id": null,
1649
+ "metadata": [],
1650
+ "raw": {}
1651
+ }
1652
+ },
1653
+ {
1654
+ "action": "upsert",
1655
+ "packageId": "unified",
1656
+ "namespace": "deals",
1657
+ "rowId": "68c800000000000000000201/68c800000000000000000603",
1658
+ "value": {
1659
+ "connection_id": "68c800000000000000000201",
1660
+ "id": "68c800000000000000000603",
1661
+ "created_at": "2026-06-12T09:00:00.000Z",
1662
+ "updated_at": "2026-09-05T09:00:00.000Z",
1663
+ "name": "Contoso pilot",
1664
+ "description": null,
1665
+ "source": null,
1666
+ "currency": "EUR",
1667
+ "amount": 12500,
1668
+ "probability": 80,
1669
+ "closed_at": null,
1670
+ "closing_at": null,
1671
+ "lost_reason": null,
1672
+ "won_reason": null,
1673
+ "tags": [
1674
+ "pilot"
1675
+ ],
1676
+ "pipelines": [
1677
+ {
1678
+ "id": "68c800000000000000000301",
1679
+ "name": "Sales Pipeline",
1680
+ "type": null
1681
+ }
1682
+ ],
1683
+ "stages": [
1684
+ {
1685
+ "id": "68c800000000000000000313",
1686
+ "name": "Negotiation",
1687
+ "type": null
1688
+ }
1689
+ ],
1690
+ "contact_ids": [
1691
+ "68c800000000000000000503"
1692
+ ],
1693
+ "company_ids": [
1694
+ "68c800000000000000000402"
1695
+ ],
1696
+ "user_id": null,
1697
+ "metadata": [],
1698
+ "raw": {}
1699
+ }
1700
+ },
1701
+ {
1702
+ "action": "upsert",
1703
+ "packageId": "unified",
1704
+ "namespace": "deals",
1705
+ "rowId": "68c800000000000000000201/68c800000000000000000604",
1706
+ "value": {
1707
+ "connection_id": "68c800000000000000000201",
1708
+ "id": "68c800000000000000000604",
1709
+ "created_at": "2026-06-18T09:00:00.000Z",
1710
+ "updated_at": "2026-08-20T09:00:00.000Z",
1711
+ "name": "Fabrikam rebrand",
1712
+ "description": null,
1713
+ "source": null,
1714
+ "currency": "USD",
1715
+ "amount": 9000,
1716
+ "probability": 0,
1717
+ "closed_at": "2026-08-20T09:00:00.000Z",
1718
+ "closing_at": null,
1719
+ "lost_reason": "Budget",
1720
+ "won_reason": null,
1721
+ "tags": [],
1722
+ "pipelines": [
1723
+ {
1724
+ "id": "68c800000000000000000301",
1725
+ "name": "Sales Pipeline",
1726
+ "type": null
1727
+ }
1728
+ ],
1729
+ "stages": [
1730
+ {
1731
+ "id": "68c800000000000000000315",
1732
+ "name": "Closed Lost",
1733
+ "type": null
1734
+ }
1735
+ ],
1736
+ "contact_ids": [],
1737
+ "company_ids": [
1738
+ "68c800000000000000000403"
1739
+ ],
1740
+ "user_id": null,
1741
+ "metadata": [],
1742
+ "raw": {}
1743
+ }
1744
+ },
1745
+ {
1746
+ "action": "upsert",
1747
+ "packageId": "unified",
1748
+ "namespace": "deals",
1749
+ "rowId": "68c800000000000000000201/68c800000000000000000605",
1750
+ "value": {
1751
+ "connection_id": "68c800000000000000000201",
1752
+ "id": "68c800000000000000000605",
1753
+ "created_at": "2026-06-21T09:00:00.000Z",
1754
+ "updated_at": "2026-07-01T09:00:00.000Z",
1755
+ "name": "Tailspin logistics",
1756
+ "description": null,
1757
+ "source": null,
1758
+ "currency": "USD",
1759
+ "amount": 150000,
1760
+ "probability": 100,
1761
+ "closed_at": "2026-07-01T09:00:00.000Z",
1762
+ "closing_at": null,
1763
+ "lost_reason": null,
1764
+ "won_reason": "Pricing",
1765
+ "tags": [],
1766
+ "pipelines": [
1767
+ {
1768
+ "id": "68c800000000000000000301",
1769
+ "name": "Sales Pipeline",
1770
+ "type": null
1771
+ }
1772
+ ],
1773
+ "stages": [
1774
+ {
1775
+ "id": "68c800000000000000000314",
1776
+ "name": "Closed Won",
1777
+ "type": null
1778
+ }
1779
+ ],
1780
+ "contact_ids": [],
1781
+ "company_ids": [
1782
+ "68c800000000000000000404"
1783
+ ],
1784
+ "user_id": null,
1785
+ "metadata": [],
1786
+ "raw": {}
1787
+ }
1788
+ },
1789
+ {
1790
+ "action": "upsert",
1791
+ "packageId": "unified",
1792
+ "namespace": "deals",
1793
+ "rowId": "68c800000000000000000201/68c800000000000000000606",
1794
+ "value": {
1795
+ "connection_id": "68c800000000000000000201",
1796
+ "id": "68c800000000000000000606",
1797
+ "created_at": "2026-09-15T09:00:00.000Z",
1798
+ "updated_at": "2026-09-15T09:00:00.000Z",
1799
+ "name": "Unnamed inbound",
1800
+ "description": null,
1801
+ "source": "web-form",
1802
+ "currency": null,
1803
+ "amount": 0,
1804
+ "probability": 10,
1805
+ "closed_at": null,
1806
+ "closing_at": null,
1807
+ "lost_reason": null,
1808
+ "won_reason": null,
1809
+ "tags": [],
1810
+ "pipelines": [
1811
+ {
1812
+ "id": "68c800000000000000000301",
1813
+ "name": "Sales Pipeline",
1814
+ "type": null
1815
+ }
1816
+ ],
1817
+ "stages": [
1818
+ {
1819
+ "id": "68c800000000000000000311",
1820
+ "name": "Qualification",
1821
+ "type": null
1822
+ }
1823
+ ],
1824
+ "contact_ids": [],
1825
+ "company_ids": [],
1826
+ "user_id": null,
1827
+ "metadata": [],
1828
+ "raw": {}
1829
+ }
1830
+ },
1831
+ {
1832
+ "action": "upsert",
1833
+ "packageId": "unified",
1834
+ "namespace": "channels",
1835
+ "rowId": "68c800000000000000000203/68c800000000000000000701",
1836
+ "value": {
1837
+ "connection_id": "68c800000000000000000203",
1838
+ "id": "68c800000000000000000701",
1839
+ "created_at": "2026-06-02T09:00:00.000Z",
1840
+ "updated_at": "2026-06-02T09:00:00.000Z",
1841
+ "name": "general",
1842
+ "description": "Company-wide announcements",
1843
+ "parent_id": null,
1844
+ "has_subchannels": false,
1845
+ "members": [
1846
+ {
1847
+ "user_id": "u-maya",
1848
+ "email": "maya.lindqvist@brightline.example.com",
1849
+ "name": "Maya Lindqvist",
1850
+ "image_url": null
1851
+ },
1852
+ {
1853
+ "user_id": "u-opsbot",
1854
+ "email": null,
1855
+ "name": "Ops Bot",
1856
+ "image_url": null
1857
+ },
1858
+ {
1859
+ "user_id": "u-jun",
1860
+ "email": "jun.park@brightline.example.com",
1861
+ "name": "Jun Park",
1862
+ "image_url": null
1863
+ },
1864
+ {
1865
+ "user_id": "u-rosa",
1866
+ "email": "rosa.feld@brightline.example.com",
1867
+ "name": "Rosa Feld",
1868
+ "image_url": null
1869
+ }
1870
+ ],
1871
+ "is_active": true,
1872
+ "is_private": false,
1873
+ "web_url": "https://chat.example.org/archives/general",
1874
+ "alias": null
1875
+ }
1876
+ },
1877
+ {
1878
+ "action": "upsert",
1879
+ "packageId": "unified",
1880
+ "namespace": "channels",
1881
+ "rowId": "68c800000000000000000203/68c800000000000000000702",
1882
+ "value": {
1883
+ "connection_id": "68c800000000000000000203",
1884
+ "id": "68c800000000000000000702",
1885
+ "created_at": "2026-06-02T09:00:00.000Z",
1886
+ "updated_at": "2026-06-02T09:00:00.000Z",
1887
+ "name": "sales",
1888
+ "description": "Pipeline chatter",
1889
+ "parent_id": null,
1890
+ "has_subchannels": false,
1891
+ "members": [
1892
+ {
1893
+ "user_id": "u-maya",
1894
+ "email": "maya.lindqvist@brightline.example.com",
1895
+ "name": "Maya Lindqvist",
1896
+ "image_url": null
1897
+ },
1898
+ {
1899
+ "user_id": "u-jun",
1900
+ "email": "jun.park@brightline.example.com",
1901
+ "name": "Jun Park",
1902
+ "image_url": null
1903
+ },
1904
+ {
1905
+ "user_id": "u-rosa",
1906
+ "email": "rosa.feld@brightline.example.com",
1907
+ "name": "Rosa Feld",
1908
+ "image_url": null
1909
+ }
1910
+ ],
1911
+ "is_active": true,
1912
+ "is_private": false,
1913
+ "web_url": null,
1914
+ "alias": null
1915
+ }
1916
+ },
1917
+ {
1918
+ "action": "upsert",
1919
+ "packageId": "unified",
1920
+ "namespace": "channels",
1921
+ "rowId": "68c800000000000000000203/68c800000000000000000703",
1922
+ "value": {
1923
+ "connection_id": "68c800000000000000000203",
1924
+ "id": "68c800000000000000000703",
1925
+ "created_at": "2026-06-05T09:00:00.000Z",
1926
+ "updated_at": "2026-06-05T09:00:00.000Z",
1927
+ "name": "exec-private",
1928
+ "description": null,
1929
+ "parent_id": null,
1930
+ "has_subchannels": false,
1931
+ "members": [
1932
+ {
1933
+ "user_id": "u-maya",
1934
+ "email": "maya.lindqvist@brightline.example.com",
1935
+ "name": "Maya Lindqvist",
1936
+ "image_url": null
1937
+ },
1938
+ {
1939
+ "user_id": "u-rosa",
1940
+ "email": "rosa.feld@brightline.example.com",
1941
+ "name": "Rosa Feld",
1942
+ "image_url": null
1943
+ }
1944
+ ],
1945
+ "is_active": true,
1946
+ "is_private": true,
1947
+ "web_url": null,
1948
+ "alias": null
1949
+ }
1950
+ },
1951
+ {
1952
+ "action": "upsert",
1953
+ "packageId": "unified",
1954
+ "namespace": "channels",
1955
+ "rowId": "68c800000000000000000203/68c800000000000000000704",
1956
+ "value": {
1957
+ "connection_id": "68c800000000000000000203",
1958
+ "id": "68c800000000000000000704",
1959
+ "created_at": "2026-07-10T09:00:00.000Z",
1960
+ "updated_at": "2026-07-10T09:00:00.000Z",
1961
+ "name": "sales-emea",
1962
+ "description": null,
1963
+ "parent_id": "68c800000000000000000702",
1964
+ "has_subchannels": false,
1965
+ "members": [
1966
+ {
1967
+ "user_id": "u-jun",
1968
+ "email": "jun.park@brightline.example.com",
1969
+ "name": "Jun Park",
1970
+ "image_url": null
1971
+ }
1972
+ ],
1973
+ "is_active": true,
1974
+ "is_private": false,
1975
+ "web_url": null,
1976
+ "alias": null
1977
+ }
1978
+ },
1979
+ {
1980
+ "action": "upsert",
1981
+ "packageId": "unified",
1982
+ "namespace": "channels",
1983
+ "rowId": "68c800000000000000000204/68c800000000000000000711",
1984
+ "value": {
1985
+ "connection_id": "68c800000000000000000204",
1986
+ "id": "68c800000000000000000711",
1987
+ "created_at": "2026-06-02T09:00:00.000Z",
1988
+ "updated_at": "2026-06-02T09:00:00.000Z",
1989
+ "name": "INBOX",
1990
+ "description": null,
1991
+ "parent_id": null,
1992
+ "has_subchannels": false,
1993
+ "members": [
1994
+ {
1995
+ "user_id": "u-maya",
1996
+ "email": "maya.lindqvist@brightline.example.com",
1997
+ "name": "Maya Lindqvist",
1998
+ "image_url": null
1999
+ }
2000
+ ],
2001
+ "is_active": true,
2002
+ "is_private": false,
2003
+ "web_url": null,
2004
+ "alias": "INBOX"
2005
+ }
2006
+ },
2007
+ {
2008
+ "action": "upsert",
2009
+ "packageId": "unified",
2010
+ "namespace": "channels",
2011
+ "rowId": "68c800000000000000000204/68c800000000000000000712",
2012
+ "value": {
2013
+ "connection_id": "68c800000000000000000204",
2014
+ "id": "68c800000000000000000712",
2015
+ "created_at": "2026-06-02T09:00:00.000Z",
2016
+ "updated_at": "2026-06-02T09:00:00.000Z",
2017
+ "name": "SENT",
2018
+ "description": null,
2019
+ "parent_id": null,
2020
+ "has_subchannels": false,
2021
+ "members": [
2022
+ {
2023
+ "user_id": "u-maya",
2024
+ "email": "maya.lindqvist@brightline.example.com",
2025
+ "name": "Maya Lindqvist",
2026
+ "image_url": null
2027
+ }
2028
+ ],
2029
+ "is_active": true,
2030
+ "is_private": false,
2031
+ "web_url": null,
2032
+ "alias": "SENT"
2033
+ }
2034
+ },
2035
+ {
2036
+ "action": "upsert",
2037
+ "packageId": "unified",
2038
+ "namespace": "channels",
2039
+ "rowId": "68c800000000000000000204/68c800000000000000000713",
2040
+ "value": {
2041
+ "connection_id": "68c800000000000000000204",
2042
+ "id": "68c800000000000000000713",
2043
+ "created_at": "2026-06-02T09:00:00.000Z",
2044
+ "updated_at": "2026-06-02T09:00:00.000Z",
2045
+ "name": "DRAFT",
2046
+ "description": null,
2047
+ "parent_id": null,
2048
+ "has_subchannels": false,
2049
+ "members": [
2050
+ {
2051
+ "user_id": "u-maya",
2052
+ "email": "maya.lindqvist@brightline.example.com",
2053
+ "name": "Maya Lindqvist",
2054
+ "image_url": null
2055
+ }
2056
+ ],
2057
+ "is_active": true,
2058
+ "is_private": false,
2059
+ "web_url": null,
2060
+ "alias": "DRAFT"
2061
+ }
2062
+ },
2063
+ {
2064
+ "action": "upsert",
2065
+ "packageId": "unified",
2066
+ "namespace": "messages",
2067
+ "rowId": "68c800000000000000000203/68c800000000000000000801",
2068
+ "value": {
2069
+ "connection_id": "68c800000000000000000203",
2070
+ "id": "68c800000000000000000801",
2071
+ "created_at": "2026-09-01T08:30:00.000Z",
2072
+ "updated_at": "2026-09-01T08:30:00.000Z",
2073
+ "channels": [
2074
+ {
2075
+ "id": "68c800000000000000000701",
2076
+ "name": "general"
2077
+ }
2078
+ ],
2079
+ "parent_id": null,
2080
+ "message_thread_identifier": "thread-0801",
2081
+ "author_member": {
2082
+ "user_id": "u-maya",
2083
+ "email": "maya.lindqvist@brightline.example.com",
2084
+ "name": "Maya Lindqvist",
2085
+ "image_url": null
2086
+ },
2087
+ "destination_members": [],
2088
+ "hidden_members": [],
2089
+ "mentioned_members": [],
2090
+ "reactions": [
2091
+ {
2092
+ "reaction": "tada",
2093
+ "member": {
2094
+ "user_id": "u-jun",
2095
+ "email": "jun.park@brightline.example.com",
2096
+ "name": "Jun Park",
2097
+ "image_url": null
2098
+ }
2099
+ },
2100
+ {
2101
+ "reaction": "thumbsup",
2102
+ "member": {
2103
+ "user_id": "u-rosa",
2104
+ "email": "rosa.feld@brightline.example.com",
2105
+ "name": "Rosa Feld",
2106
+ "image_url": null
2107
+ }
2108
+ }
2109
+ ],
2110
+ "subject": null,
2111
+ "message": "Welcome to the new quarter, team. Pipeline review is Thursday.",
2112
+ "message_html": null,
2113
+ "message_markdown": null,
2114
+ "attachments": [],
2115
+ "web_url": null,
2116
+ "reference": null,
2117
+ "has_children": true,
2118
+ "is_unread": false,
2119
+ "buttons": [],
2120
+ "raw": {}
2121
+ }
2122
+ },
2123
+ {
2124
+ "action": "upsert",
2125
+ "packageId": "unified",
2126
+ "namespace": "messages",
2127
+ "rowId": "68c800000000000000000203/68c800000000000000000802",
2128
+ "value": {
2129
+ "connection_id": "68c800000000000000000203",
2130
+ "id": "68c800000000000000000802",
2131
+ "created_at": "2026-09-01T08:45:00.000Z",
2132
+ "updated_at": "2026-09-01T08:45:00.000Z",
2133
+ "channels": [
2134
+ {
2135
+ "id": "68c800000000000000000701",
2136
+ "name": "general"
2137
+ }
2138
+ ],
2139
+ "parent_id": "68c800000000000000000801",
2140
+ "message_thread_identifier": "thread-0801",
2141
+ "author_member": {
2142
+ "user_id": "u-jun",
2143
+ "email": "jun.park@brightline.example.com",
2144
+ "name": "Jun Park",
2145
+ "image_url": null
2146
+ },
2147
+ "destination_members": [],
2148
+ "hidden_members": [],
2149
+ "mentioned_members": [],
2150
+ "reactions": [],
2151
+ "subject": null,
2152
+ "message": "Thanks! I will bring the EMEA numbers.",
2153
+ "message_html": null,
2154
+ "message_markdown": null,
2155
+ "attachments": [],
2156
+ "web_url": null,
2157
+ "reference": null,
2158
+ "has_children": false,
2159
+ "is_unread": false,
2160
+ "buttons": [],
2161
+ "raw": {}
2162
+ }
2163
+ },
2164
+ {
2165
+ "action": "upsert",
2166
+ "packageId": "unified",
2167
+ "namespace": "messages",
2168
+ "rowId": "68c800000000000000000203/68c800000000000000000803",
2169
+ "value": {
2170
+ "connection_id": "68c800000000000000000203",
2171
+ "id": "68c800000000000000000803",
2172
+ "created_at": "2026-09-01T09:10:00.000Z",
2173
+ "updated_at": "2026-09-01T09:10:00.000Z",
2174
+ "channels": [
2175
+ {
2176
+ "id": "68c800000000000000000701",
2177
+ "name": "general"
2178
+ }
2179
+ ],
2180
+ "parent_id": "68c800000000000000000801",
2181
+ "message_thread_identifier": "thread-0801",
2182
+ "author_member": {
2183
+ "user_id": "u-rosa",
2184
+ "email": "rosa.feld@brightline.example.com",
2185
+ "name": "Rosa Feld",
2186
+ "image_url": null
2187
+ },
2188
+ "destination_members": [],
2189
+ "hidden_members": [],
2190
+ "mentioned_members": [
2191
+ {
2192
+ "user_id": "u-maya",
2193
+ "email": "maya.lindqvist@brightline.example.com",
2194
+ "name": "Maya Lindqvist",
2195
+ "image_url": null
2196
+ }
2197
+ ],
2198
+ "reactions": [],
2199
+ "subject": null,
2200
+ "message": "@Maya can we also cover the renewal forecast?",
2201
+ "message_html": null,
2202
+ "message_markdown": null,
2203
+ "attachments": [],
2204
+ "web_url": null,
2205
+ "reference": null,
2206
+ "has_children": false,
2207
+ "is_unread": false,
2208
+ "buttons": [],
2209
+ "raw": {}
2210
+ }
2211
+ },
2212
+ {
2213
+ "action": "upsert",
2214
+ "packageId": "unified",
2215
+ "namespace": "messages",
2216
+ "rowId": "68c800000000000000000203/68c800000000000000000804",
2217
+ "value": {
2218
+ "connection_id": "68c800000000000000000203",
2219
+ "id": "68c800000000000000000804",
2220
+ "created_at": "2026-09-01T09:20:00.000Z",
2221
+ "updated_at": "2026-09-01T09:20:00.000Z",
2222
+ "channels": [
2223
+ {
2224
+ "id": "68c800000000000000000701",
2225
+ "name": "general"
2226
+ }
2227
+ ],
2228
+ "parent_id": "68c800000000000000000801",
2229
+ "message_thread_identifier": "thread-0801",
2230
+ "author_member": {
2231
+ "user_id": "u-maya",
2232
+ "email": "maya.lindqvist@brightline.example.com",
2233
+ "name": "Maya Lindqvist",
2234
+ "image_url": null
2235
+ },
2236
+ "destination_members": [],
2237
+ "hidden_members": [],
2238
+ "mentioned_members": [],
2239
+ "reactions": [],
2240
+ "subject": null,
2241
+ "message": "Yes, adding it to the agenda.",
2242
+ "message_html": null,
2243
+ "message_markdown": null,
2244
+ "attachments": [],
2245
+ "web_url": null,
2246
+ "reference": null,
2247
+ "has_children": false,
2248
+ "is_unread": false,
2249
+ "buttons": [],
2250
+ "raw": {}
2251
+ }
2252
+ },
2253
+ {
2254
+ "action": "upsert",
2255
+ "packageId": "unified",
2256
+ "namespace": "messages",
2257
+ "rowId": "68c800000000000000000203/68c800000000000000000805",
2258
+ "value": {
2259
+ "connection_id": "68c800000000000000000203",
2260
+ "id": "68c800000000000000000805",
2261
+ "created_at": "2026-09-03T06:00:00.000Z",
2262
+ "updated_at": "2026-09-03T06:00:00.000Z",
2263
+ "channels": [
2264
+ {
2265
+ "id": "68c800000000000000000701",
2266
+ "name": "general"
2267
+ }
2268
+ ],
2269
+ "parent_id": null,
2270
+ "message_thread_identifier": null,
2271
+ "author_member": {
2272
+ "user_id": "u-opsbot",
2273
+ "email": null,
2274
+ "name": "Ops Bot",
2275
+ "image_url": null
2276
+ },
2277
+ "destination_members": [],
2278
+ "hidden_members": [],
2279
+ "mentioned_members": [],
2280
+ "reactions": [],
2281
+ "subject": null,
2282
+ "message": "Deploy of crm-sync 2.4.1 finished without errors.",
2283
+ "message_html": null,
2284
+ "message_markdown": null,
2285
+ "attachments": [],
2286
+ "web_url": null,
2287
+ "reference": null,
2288
+ "has_children": false,
2289
+ "is_unread": false,
2290
+ "buttons": [],
2291
+ "raw": {}
2292
+ }
2293
+ },
2294
+ {
2295
+ "action": "upsert",
2296
+ "packageId": "unified",
2297
+ "namespace": "messages",
2298
+ "rowId": "68c800000000000000000203/68c800000000000000000806",
2299
+ "value": {
2300
+ "connection_id": "68c800000000000000000203",
2301
+ "id": "68c800000000000000000806",
2302
+ "created_at": "2026-09-08T10:00:00.000Z",
2303
+ "updated_at": "2026-09-08T10:00:00.000Z",
2304
+ "channels": [
2305
+ {
2306
+ "id": "68c800000000000000000701",
2307
+ "name": "general"
2308
+ }
2309
+ ],
2310
+ "parent_id": null,
2311
+ "message_thread_identifier": null,
2312
+ "author_member": {
2313
+ "user_id": "u-jun",
2314
+ "email": "jun.park@brightline.example.com",
2315
+ "name": "Jun Park",
2316
+ "image_url": null
2317
+ },
2318
+ "destination_members": [],
2319
+ "hidden_members": [],
2320
+ "mentioned_members": [],
2321
+ "reactions": [],
2322
+ "subject": null,
2323
+ "message": "Reminder: expense reports are due Friday.",
2324
+ "message_html": null,
2325
+ "message_markdown": null,
2326
+ "attachments": [],
2327
+ "web_url": null,
2328
+ "reference": null,
2329
+ "has_children": false,
2330
+ "is_unread": true,
2331
+ "buttons": [],
2332
+ "raw": {}
2333
+ }
2334
+ },
2335
+ {
2336
+ "action": "upsert",
2337
+ "packageId": "unified",
2338
+ "namespace": "messages",
2339
+ "rowId": "68c800000000000000000203/68c800000000000000000807",
2340
+ "value": {
2341
+ "connection_id": "68c800000000000000000203",
2342
+ "id": "68c800000000000000000807",
2343
+ "created_at": "2026-09-10T11:15:00.000Z",
2344
+ "updated_at": "2026-09-10T11:15:00.000Z",
2345
+ "channels": [
2346
+ {
2347
+ "id": "68c800000000000000000701",
2348
+ "name": "general"
2349
+ }
2350
+ ],
2351
+ "parent_id": null,
2352
+ "message_thread_identifier": null,
2353
+ "author_member": {
2354
+ "user_id": "u-rosa",
2355
+ "email": "rosa.feld@brightline.example.com",
2356
+ "name": "Rosa Feld",
2357
+ "image_url": null
2358
+ },
2359
+ "destination_members": [],
2360
+ "hidden_members": [],
2361
+ "mentioned_members": [],
2362
+ "reactions": [],
2363
+ "subject": null,
2364
+ "message": "Sharing the updated onboarding deck.",
2365
+ "message_html": null,
2366
+ "message_markdown": null,
2367
+ "attachments": [
2368
+ {
2369
+ "filename": "onboarding-deck.pdf",
2370
+ "content_type": "application/pdf",
2371
+ "download_url": "https://files.example.org/onboarding-deck.pdf",
2372
+ "content_identifier": "att-0807",
2373
+ "message_id": null,
2374
+ "size": 482113
2375
+ }
2376
+ ],
2377
+ "web_url": null,
2378
+ "reference": null,
2379
+ "has_children": false,
2380
+ "is_unread": false,
2381
+ "buttons": [],
2382
+ "raw": {}
2383
+ }
2384
+ },
2385
+ {
2386
+ "action": "upsert",
2387
+ "packageId": "unified",
2388
+ "namespace": "messages",
2389
+ "rowId": "68c800000000000000000203/68c800000000000000000808",
2390
+ "value": {
2391
+ "connection_id": "68c800000000000000000203",
2392
+ "id": "68c800000000000000000808",
2393
+ "created_at": "2026-09-12T14:00:00.000Z",
2394
+ "updated_at": "2026-09-12T14:00:00.000Z",
2395
+ "channels": [
2396
+ {
2397
+ "id": "68c800000000000000000701",
2398
+ "name": "general"
2399
+ }
2400
+ ],
2401
+ "parent_id": null,
2402
+ "message_thread_identifier": null,
2403
+ "author_member": {
2404
+ "user_id": "u-maya",
2405
+ "email": "maya.lindqvist@brightline.example.com",
2406
+ "name": "Maya Lindqvist",
2407
+ "image_url": null
2408
+ },
2409
+ "destination_members": [],
2410
+ "hidden_members": [],
2411
+ "mentioned_members": [],
2412
+ "reactions": [],
2413
+ "subject": null,
2414
+ "message": "Long-form notes from the offsite:\nFocus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. Focus on renewals, pilot conversions and partner-sourced pipeline. ",
2415
+ "message_html": null,
2416
+ "message_markdown": null,
2417
+ "attachments": [],
2418
+ "web_url": null,
2419
+ "reference": null,
2420
+ "has_children": false,
2421
+ "is_unread": false,
2422
+ "buttons": [],
2423
+ "raw": {}
2424
+ }
2425
+ },
2426
+ {
2427
+ "action": "upsert",
2428
+ "packageId": "unified",
2429
+ "namespace": "messages",
2430
+ "rowId": "68c800000000000000000203/68c800000000000000000809",
2431
+ "value": {
2432
+ "connection_id": "68c800000000000000000203",
2433
+ "id": "68c800000000000000000809",
2434
+ "created_at": "2026-09-14T02:30:00.000Z",
2435
+ "updated_at": "2026-09-14T02:30:00.000Z",
2436
+ "channels": [
2437
+ {
2438
+ "id": "68c800000000000000000701",
2439
+ "name": "general"
2440
+ }
2441
+ ],
2442
+ "parent_id": null,
2443
+ "message_thread_identifier": null,
2444
+ "author_member": {
2445
+ "user_id": "u-jun",
2446
+ "email": "jun.park@brightline.example.com",
2447
+ "name": "Jun Park",
2448
+ "image_url": null
2449
+ },
2450
+ "destination_members": [],
2451
+ "hidden_members": [],
2452
+ "mentioned_members": [],
2453
+ "reactions": [],
2454
+ "subject": null,
2455
+ "message": "東京オフィスから挨拶 🎉 新しい四半期も頑張りましょう!山田物産との商談が進んでいます。",
2456
+ "message_html": null,
2457
+ "message_markdown": null,
2458
+ "attachments": [],
2459
+ "web_url": null,
2460
+ "reference": null,
2461
+ "has_children": false,
2462
+ "is_unread": true,
2463
+ "buttons": [],
2464
+ "raw": {}
2465
+ }
2466
+ },
2467
+ {
2468
+ "action": "upsert",
2469
+ "packageId": "unified",
2470
+ "namespace": "messages",
2471
+ "rowId": "68c800000000000000000203/68c80000000000000000080a",
2472
+ "value": {
2473
+ "connection_id": "68c800000000000000000203",
2474
+ "id": "68c80000000000000000080a",
2475
+ "created_at": "2026-09-02T09:00:00.000Z",
2476
+ "updated_at": "2026-09-02T09:00:00.000Z",
2477
+ "channels": [
2478
+ {
2479
+ "id": "68c800000000000000000702",
2480
+ "name": "sales"
2481
+ }
2482
+ ],
2483
+ "parent_id": null,
2484
+ "message_thread_identifier": null,
2485
+ "author_member": {
2486
+ "user_id": "u-maya",
2487
+ "email": "maya.lindqvist@brightline.example.com",
2488
+ "name": "Maya Lindqvist",
2489
+ "image_url": null
2490
+ },
2491
+ "destination_members": [],
2492
+ "hidden_members": [],
2493
+ "mentioned_members": [],
2494
+ "reactions": [],
2495
+ "subject": null,
2496
+ "message": "Northwind Q4 expansion moved to Proposal.",
2497
+ "message_html": null,
2498
+ "message_markdown": null,
2499
+ "attachments": [],
2500
+ "web_url": null,
2501
+ "reference": null,
2502
+ "has_children": false,
2503
+ "is_unread": false,
2504
+ "buttons": [],
2505
+ "raw": {}
2506
+ }
2507
+ },
2508
+ {
2509
+ "action": "upsert",
2510
+ "packageId": "unified",
2511
+ "namespace": "messages",
2512
+ "rowId": "68c800000000000000000203/68c80000000000000000080b",
2513
+ "value": {
2514
+ "connection_id": "68c800000000000000000203",
2515
+ "id": "68c80000000000000000080b",
2516
+ "created_at": "2026-09-05T09:30:00.000Z",
2517
+ "updated_at": "2026-09-05T09:30:00.000Z",
2518
+ "channels": [
2519
+ {
2520
+ "id": "68c800000000000000000702",
2521
+ "name": "sales"
2522
+ }
2523
+ ],
2524
+ "parent_id": null,
2525
+ "message_thread_identifier": null,
2526
+ "author_member": {
2527
+ "user_id": "u-jun",
2528
+ "email": "jun.park@brightline.example.com",
2529
+ "name": "Jun Park",
2530
+ "image_url": null
2531
+ },
2532
+ "destination_members": [],
2533
+ "hidden_members": [],
2534
+ "mentioned_members": [],
2535
+ "reactions": [],
2536
+ "subject": null,
2537
+ "message": "Contoso pilot is at Negotiation, decision expected next week.",
2538
+ "message_html": null,
2539
+ "message_markdown": null,
2540
+ "attachments": [],
2541
+ "web_url": null,
2542
+ "reference": null,
2543
+ "has_children": false,
2544
+ "is_unread": false,
2545
+ "buttons": [],
2546
+ "raw": {}
2547
+ }
2548
+ },
2549
+ {
2550
+ "action": "upsert",
2551
+ "packageId": "unified",
2552
+ "namespace": "messages",
2553
+ "rowId": "68c800000000000000000203/68c80000000000000000080c",
2554
+ "value": {
2555
+ "connection_id": "68c800000000000000000203",
2556
+ "id": "68c80000000000000000080c",
2557
+ "created_at": "2026-09-06T12:00:00.000Z",
2558
+ "updated_at": "2026-09-06T12:00:00.000Z",
2559
+ "channels": [
2560
+ {
2561
+ "id": "68c800000000000000000702",
2562
+ "name": "sales"
2563
+ }
2564
+ ],
2565
+ "parent_id": null,
2566
+ "message_thread_identifier": null,
2567
+ "author_member": {
2568
+ "user_id": "u-rosa",
2569
+ "email": "rosa.feld@brightline.example.com",
2570
+ "name": "Rosa Feld",
2571
+ "image_url": null
2572
+ },
2573
+ "destination_members": [],
2574
+ "hidden_members": [],
2575
+ "mentioned_members": [],
2576
+ "reactions": [],
2577
+ "subject": null,
2578
+ "message": "Fabrikam rebrand closed lost (budget).",
2579
+ "message_html": null,
2580
+ "message_markdown": null,
2581
+ "attachments": [],
2582
+ "web_url": null,
2583
+ "reference": null,
2584
+ "has_children": false,
2585
+ "is_unread": false,
2586
+ "buttons": [],
2587
+ "raw": {}
2588
+ }
2589
+ },
2590
+ {
2591
+ "action": "upsert",
2592
+ "packageId": "unified",
2593
+ "namespace": "messages",
2594
+ "rowId": "68c800000000000000000203/68c80000000000000000080d",
2595
+ "value": {
2596
+ "connection_id": "68c800000000000000000203",
2597
+ "id": "68c80000000000000000080d",
2598
+ "created_at": "2026-09-07T07:00:00.000Z",
2599
+ "updated_at": "2026-09-07T07:00:00.000Z",
2600
+ "channels": [
2601
+ {
2602
+ "id": "68c800000000000000000702",
2603
+ "name": "sales"
2604
+ }
2605
+ ],
2606
+ "parent_id": null,
2607
+ "message_thread_identifier": null,
2608
+ "author_member": {
2609
+ "user_id": "u-opsbot",
2610
+ "email": null,
2611
+ "name": "Ops Bot",
2612
+ "image_url": null
2613
+ },
2614
+ "destination_members": [],
2615
+ "hidden_members": [],
2616
+ "mentioned_members": [],
2617
+ "reactions": [],
2618
+ "subject": null,
2619
+ "message": "Weekly digest: 6 open deals, 2 closed this quarter.",
2620
+ "message_html": null,
2621
+ "message_markdown": null,
2622
+ "attachments": [],
2623
+ "web_url": null,
2624
+ "reference": null,
2625
+ "has_children": false,
2626
+ "is_unread": false,
2627
+ "buttons": [
2628
+ {
2629
+ "id": "open-dashboard",
2630
+ "text": "Open dashboard",
2631
+ "icon": null
2632
+ },
2633
+ {
2634
+ "id": "snooze",
2635
+ "text": "Snooze",
2636
+ "icon": "clock"
2637
+ }
2638
+ ],
2639
+ "raw": {}
2640
+ }
2641
+ },
2642
+ {
2643
+ "action": "upsert",
2644
+ "packageId": "unified",
2645
+ "namespace": "messages",
2646
+ "rowId": "68c800000000000000000203/68c80000000000000000080e",
2647
+ "value": {
2648
+ "connection_id": "68c800000000000000000203",
2649
+ "id": "68c80000000000000000080e",
2650
+ "created_at": "2026-09-13T16:45:00.000Z",
2651
+ "updated_at": "2026-09-13T16:45:00.000Z",
2652
+ "channels": [
2653
+ {
2654
+ "id": "68c800000000000000000702",
2655
+ "name": "sales"
2656
+ }
2657
+ ],
2658
+ "parent_id": null,
2659
+ "message_thread_identifier": null,
2660
+ "author_member": {
2661
+ "user_id": "u-maya",
2662
+ "email": "maya.lindqvist@brightline.example.com",
2663
+ "name": "Maya Lindqvist",
2664
+ "image_url": null
2665
+ },
2666
+ "destination_members": [],
2667
+ "hidden_members": [],
2668
+ "mentioned_members": [],
2669
+ "reactions": [],
2670
+ "subject": null,
2671
+ "message": "Please update close dates before the forecast call.",
2672
+ "message_html": null,
2673
+ "message_markdown": null,
2674
+ "attachments": [],
2675
+ "web_url": null,
2676
+ "reference": null,
2677
+ "has_children": false,
2678
+ "is_unread": false,
2679
+ "buttons": [],
2680
+ "raw": {}
2681
+ }
2682
+ },
2683
+ {
2684
+ "action": "upsert",
2685
+ "packageId": "unified",
2686
+ "namespace": "messages",
2687
+ "rowId": "68c800000000000000000203/68c80000000000000000080f",
2688
+ "value": {
2689
+ "connection_id": "68c800000000000000000203",
2690
+ "id": "68c80000000000000000080f",
2691
+ "created_at": "2026-09-04T18:00:00.000Z",
2692
+ "updated_at": "2026-09-04T18:00:00.000Z",
2693
+ "channels": [
2694
+ {
2695
+ "id": "68c800000000000000000703",
2696
+ "name": "exec-private"
2697
+ }
2698
+ ],
2699
+ "parent_id": null,
2700
+ "message_thread_identifier": null,
2701
+ "author_member": {
2702
+ "user_id": "u-rosa",
2703
+ "email": "rosa.feld@brightline.example.com",
2704
+ "name": "Rosa Feld",
2705
+ "image_url": null
2706
+ },
2707
+ "destination_members": [],
2708
+ "hidden_members": [],
2709
+ "mentioned_members": [],
2710
+ "reactions": [],
2711
+ "subject": null,
2712
+ "message": "Board pre-read draft attached tomorrow.",
2713
+ "message_html": null,
2714
+ "message_markdown": null,
2715
+ "attachments": [],
2716
+ "web_url": null,
2717
+ "reference": null,
2718
+ "has_children": false,
2719
+ "is_unread": false,
2720
+ "buttons": [],
2721
+ "raw": {}
2722
+ }
2723
+ },
2724
+ {
2725
+ "action": "upsert",
2726
+ "packageId": "unified",
2727
+ "namespace": "messages",
2728
+ "rowId": "68c800000000000000000203/68c800000000000000000810",
2729
+ "value": {
2730
+ "connection_id": "68c800000000000000000203",
2731
+ "id": "68c800000000000000000810",
2732
+ "created_at": "2026-09-11T08:00:00.000Z",
2733
+ "updated_at": "2026-09-11T08:00:00.000Z",
2734
+ "channels": [
2735
+ {
2736
+ "id": "68c800000000000000000703",
2737
+ "name": "exec-private"
2738
+ }
2739
+ ],
2740
+ "parent_id": null,
2741
+ "message_thread_identifier": null,
2742
+ "author_member": {
2743
+ "user_id": "u-maya",
2744
+ "email": "maya.lindqvist@brightline.example.com",
2745
+ "name": "Maya Lindqvist",
2746
+ "image_url": null
2747
+ },
2748
+ "destination_members": [],
2749
+ "hidden_members": [],
2750
+ "mentioned_members": [],
2751
+ "reactions": [],
2752
+ "subject": null,
2753
+ "message": "Thanks, will review before Monday.",
2754
+ "message_html": null,
2755
+ "message_markdown": null,
2756
+ "attachments": [],
2757
+ "web_url": null,
2758
+ "reference": null,
2759
+ "has_children": false,
2760
+ "is_unread": false,
2761
+ "buttons": [],
2762
+ "raw": {}
2763
+ }
2764
+ },
2765
+ {
2766
+ "action": "upsert",
2767
+ "packageId": "unified",
2768
+ "namespace": "messages",
2769
+ "rowId": "68c800000000000000000204/68c800000000000000000811",
2770
+ "value": {
2771
+ "connection_id": "68c800000000000000000204",
2772
+ "id": "68c800000000000000000811",
2773
+ "created_at": "2026-09-09T10:05:00.000Z",
2774
+ "updated_at": "2026-09-09T10:05:00.000Z",
2775
+ "channels": [
2776
+ {
2777
+ "id": "68c800000000000000000711",
2778
+ "name": "INBOX"
2779
+ }
2780
+ ],
2781
+ "parent_id": null,
2782
+ "message_thread_identifier": null,
2783
+ "author_member": {
2784
+ "user_id": null,
2785
+ "email": "elena.marsh@northwind.example.org",
2786
+ "name": "Elena Marsh",
2787
+ "image_url": null
2788
+ },
2789
+ "destination_members": [
2790
+ {
2791
+ "user_id": "u-maya",
2792
+ "email": "maya.lindqvist@brightline.example.com",
2793
+ "name": "Maya Lindqvist",
2794
+ "image_url": null
2795
+ }
2796
+ ],
2797
+ "hidden_members": [],
2798
+ "mentioned_members": [],
2799
+ "reactions": [],
2800
+ "subject": "Revised Q4 proposal",
2801
+ "message": "Hi Maya, can you send the revised proposal for Q4?",
2802
+ "message_html": "<p>Hi Maya, can you send the revised proposal for Q4?</p>",
2803
+ "message_markdown": null,
2804
+ "attachments": [],
2805
+ "web_url": null,
2806
+ "reference": null,
2807
+ "has_children": false,
2808
+ "is_unread": true,
2809
+ "buttons": [],
2810
+ "raw": {}
2811
+ }
2812
+ },
2813
+ {
2814
+ "action": "upsert",
2815
+ "packageId": "unified",
2816
+ "namespace": "messages",
2817
+ "rowId": "68c800000000000000000204/68c800000000000000000812",
2818
+ "value": {
2819
+ "connection_id": "68c800000000000000000204",
2820
+ "id": "68c800000000000000000812",
2821
+ "created_at": "2026-09-11T15:20:00.000Z",
2822
+ "updated_at": "2026-09-11T15:20:00.000Z",
2823
+ "channels": [
2824
+ {
2825
+ "id": "68c800000000000000000711",
2826
+ "name": "INBOX"
2827
+ }
2828
+ ],
2829
+ "parent_id": null,
2830
+ "message_thread_identifier": null,
2831
+ "author_member": {
2832
+ "user_id": null,
2833
+ "email": "priya.raman@contoso-robotics.example.org",
2834
+ "name": "Priya Raman",
2835
+ "image_url": null
2836
+ },
2837
+ "destination_members": [
2838
+ {
2839
+ "user_id": "u-maya",
2840
+ "email": "maya.lindqvist@brightline.example.com",
2841
+ "name": "Maya Lindqvist",
2842
+ "image_url": null
2843
+ }
2844
+ ],
2845
+ "hidden_members": [],
2846
+ "mentioned_members": [],
2847
+ "reactions": [],
2848
+ "subject": "Pilot kickoff",
2849
+ "message": "Pilot kickoff notes attached.",
2850
+ "message_html": "<p>Pilot kickoff notes attached.</p>",
2851
+ "message_markdown": null,
2852
+ "attachments": [],
2853
+ "web_url": null,
2854
+ "reference": null,
2855
+ "has_children": false,
2856
+ "is_unread": false,
2857
+ "buttons": [],
2858
+ "raw": {}
2859
+ }
2860
+ },
2861
+ {
2862
+ "action": "upsert",
2863
+ "packageId": "unified",
2864
+ "namespace": "messages",
2865
+ "rowId": "68c800000000000000000204/68c800000000000000000813",
2866
+ "value": {
2867
+ "connection_id": "68c800000000000000000204",
2868
+ "id": "68c800000000000000000813",
2869
+ "created_at": "2026-09-10T09:40:00.000Z",
2870
+ "updated_at": "2026-09-10T09:40:00.000Z",
2871
+ "channels": [
2872
+ {
2873
+ "id": "68c800000000000000000712",
2874
+ "name": "SENT"
2875
+ }
2876
+ ],
2877
+ "parent_id": null,
2878
+ "message_thread_identifier": null,
2879
+ "author_member": {
2880
+ "user_id": "u-maya",
2881
+ "email": "maya.lindqvist@brightline.example.com",
2882
+ "name": "Maya Lindqvist",
2883
+ "image_url": null
2884
+ },
2885
+ "destination_members": [
2886
+ {
2887
+ "user_id": null,
2888
+ "email": "elena.marsh@northwind.example.org",
2889
+ "name": "Elena Marsh",
2890
+ "image_url": null
2891
+ }
2892
+ ],
2893
+ "hidden_members": [],
2894
+ "mentioned_members": [],
2895
+ "reactions": [],
2896
+ "subject": "Re: Revised Q4 proposal",
2897
+ "message": "Elena, the revised proposal is attached. Best, Maya",
2898
+ "message_html": null,
2899
+ "message_markdown": null,
2900
+ "attachments": [],
2901
+ "web_url": null,
2902
+ "reference": null,
2903
+ "has_children": false,
2904
+ "is_unread": false,
2905
+ "buttons": [],
2906
+ "raw": {}
2907
+ }
2908
+ },
2909
+ {
2910
+ "action": "upsert",
2911
+ "packageId": "unified",
2912
+ "namespace": "messages",
2913
+ "rowId": "68c800000000000000000204/68c800000000000000000814",
2914
+ "value": {
2915
+ "connection_id": "68c800000000000000000204",
2916
+ "id": "68c800000000000000000814",
2917
+ "created_at": "2026-09-15T17:00:00.000Z",
2918
+ "updated_at": "2026-09-15T17:00:00.000Z",
2919
+ "channels": [
2920
+ {
2921
+ "id": "68c800000000000000000713",
2922
+ "name": "DRAFT"
2923
+ }
2924
+ ],
2925
+ "parent_id": null,
2926
+ "message_thread_identifier": null,
2927
+ "author_member": {
2928
+ "user_id": "u-maya",
2929
+ "email": "maya.lindqvist@brightline.example.com",
2930
+ "name": "Maya Lindqvist",
2931
+ "image_url": null
2932
+ },
2933
+ "destination_members": [
2934
+ {
2935
+ "user_id": null,
2936
+ "email": "elena.marsh@northwind.example.org",
2937
+ "name": "Elena Marsh",
2938
+ "image_url": null
2939
+ }
2940
+ ],
2941
+ "hidden_members": [],
2942
+ "mentioned_members": [],
2943
+ "reactions": [],
2944
+ "subject": "Renewal terms 2027",
2945
+ "message": "Draft: renewal terms for 2027",
2946
+ "message_html": null,
2947
+ "message_markdown": null,
2948
+ "attachments": [],
2949
+ "web_url": null,
2950
+ "reference": null,
2951
+ "has_children": false,
2952
+ "is_unread": false,
2953
+ "buttons": [],
2954
+ "raw": {}
2955
+ }
2956
+ }
2957
+ ]
2958
+ }