@firedrill-tools/resend 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 (65) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +198 -0
  3. package/firedrill/agent.target.json +16 -0
  4. package/firedrill/baseline.scenario.json +1687 -0
  5. package/firedrill/conformance.suite.json +19 -0
  6. package/firedrill/contacts-outage.scenario.json +11 -0
  7. package/firedrill/quota-exhausted.scenario.json +17 -0
  8. package/firedrill/rate-limited.scenario.json +11 -0
  9. package/firedrill/resend-audience.drill.json +407 -0
  10. package/firedrill/resend-contacts-outage.drill.json +63 -0
  11. package/firedrill/resend-denied.drill.json +68 -0
  12. package/firedrill/resend-domains-and-keys.drill.json +307 -0
  13. package/firedrill/resend-email-flow.drill.json +286 -0
  14. package/firedrill/resend-fresh-install.drill.json +73 -0
  15. package/firedrill/resend-invalid-key.drill.json +803 -0
  16. package/firedrill/resend-large-page.drill.json +53 -0
  17. package/firedrill/resend-quota-exhausted.drill.json +82 -0
  18. package/firedrill/resend-rate-limited.drill.json +81 -0
  19. package/firedrill/resend-restricted-key.drill.json +441 -0
  20. package/firedrill/resend-tight-limits.drill.json +163 -0
  21. package/firedrill/tight-limits.scenario.json +16 -0
  22. package/firedrill/tools/resend/app/assets/ATTRIBUTION.md +30 -0
  23. package/firedrill/tools/resend/app/assets/fonts/Inter-OFL.txt +93 -0
  24. package/firedrill/tools/resend/app/assets/fonts/JetBrainsMono-OFL.txt +93 -0
  25. package/firedrill/tools/resend/app/assets/fonts/inter-latin-wght-normal.woff2 +0 -0
  26. package/firedrill/tools/resend/app/assets/fonts/jetbrains-mono-latin-400-normal.woff2 +0 -0
  27. package/firedrill/tools/resend/app/assets/resend-icon-white.svg +3 -0
  28. package/firedrill/tools/resend/app/assets/resend-wordmark-white.svg +3 -0
  29. package/firedrill/tools/resend/app/assets/resend.svg +3 -0
  30. package/firedrill/tools/resend/app/site/app.js +90 -0
  31. package/firedrill/tools/resend/app/site/assets/fonts/inter-latin-wght-normal.woff2 +0 -0
  32. package/firedrill/tools/resend/app/site/assets/fonts/jetbrains-mono-latin-400-normal.woff2 +0 -0
  33. package/firedrill/tools/resend/app/site/assets/resend-icon-white.svg +3 -0
  34. package/firedrill/tools/resend/app/site/assets/resend-wordmark-white.svg +3 -0
  35. package/firedrill/tools/resend/app/site/assets/resend.svg +3 -0
  36. package/firedrill/tools/resend/app/site/contact-panel.js +86 -0
  37. package/firedrill/tools/resend/app/site/icons.js +70 -0
  38. package/firedrill/tools/resend/app/site/index.html +56 -0
  39. package/firedrill/tools/resend/app/site/list.js +41 -0
  40. package/firedrill/tools/resend/app/site/styles.css +67 -0
  41. package/firedrill/tools/resend/app/site/ui.js +259 -0
  42. package/firedrill/tools/resend/app/site/view-audience.js +160 -0
  43. package/firedrill/tools/resend/app/site/view-domains.js +106 -0
  44. package/firedrill/tools/resend/app/site/view-email-detail.js +126 -0
  45. package/firedrill/tools/resend/app/site/view-emails.js +83 -0
  46. package/firedrill/tools/resend/app/site/view-keys.js +91 -0
  47. package/firedrill/tools/resend/app/site/views.css +141 -0
  48. package/firedrill/tools/resend/behavior.mjs +114 -0
  49. package/firedrill/tools/resend/lib/check.mjs +75 -0
  50. package/firedrill/tools/resend/lib/core.mjs +112 -0
  51. package/firedrill/tools/resend/lib/json-depth.mjs +45 -0
  52. package/firedrill/tools/resend/lib/page.mjs +66 -0
  53. package/firedrill/tools/resend/lib/time.mjs +60 -0
  54. package/firedrill/tools/resend/lib/wire.mjs +98 -0
  55. package/firedrill/tools/resend/ops/contacts.mjs +199 -0
  56. package/firedrill/tools/resend/ops/domains.mjs +125 -0
  57. package/firedrill/tools/resend/ops/email-model.mjs +100 -0
  58. package/firedrill/tools/resend/ops/emails.mjs +139 -0
  59. package/firedrill/tools/resend/ops/keys-segments.mjs +97 -0
  60. package/firedrill/tools/resend/resend.tool.json +4804 -0
  61. package/firedrill/world.json +2148 -0
  62. package/firedrill.json +5 -0
  63. package/package.json +62 -0
  64. package/starter.json +1686 -0
  65. package/test/conformance.mjs +480 -0
package/starter.json ADDED
@@ -0,0 +1,1686 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "virtualTimeUs": 1789480800000000,
4
+ "state": [
5
+ {
6
+ "action": "upsert",
7
+ "packageId": "resend",
8
+ "namespace": "meta",
9
+ "rowId": "team",
10
+ "value": {
11
+ "name": "Northwind Labs",
12
+ "defaultApiKeyId": "fffffffc-0000-4000-8000-000300000003",
13
+ "dailyQuota": 100,
14
+ "plan": "free"
15
+ }
16
+ },
17
+ {
18
+ "action": "upsert",
19
+ "packageId": "resend",
20
+ "namespace": "meta",
21
+ "rowId": "usage",
22
+ "value": {
23
+ "day": "2026-09-15",
24
+ "sent": 7
25
+ }
26
+ },
27
+ {
28
+ "action": "upsert",
29
+ "packageId": "resend",
30
+ "namespace": "meta",
31
+ "rowId": "counters",
32
+ "value": {
33
+ "emails": 23,
34
+ "domains": 4,
35
+ "apiKeys": 3,
36
+ "segments": 3,
37
+ "contacts": 14
38
+ }
39
+ },
40
+ {
41
+ "action": "upsert",
42
+ "packageId": "resend",
43
+ "namespace": "meta",
44
+ "rowId": "limits",
45
+ "value": {
46
+ "maxScanRows": 5000
47
+ }
48
+ },
49
+ {
50
+ "action": "upsert",
51
+ "packageId": "resend",
52
+ "namespace": "domains",
53
+ "rowId": "fffffffe-0000-4000-8000-000200000001",
54
+ "value": {
55
+ "id": "fffffffe-0000-4000-8000-000200000001",
56
+ "name": "legacy.northwind.invalid",
57
+ "region": "us-east-1",
58
+ "status": "failed",
59
+ "openTracking": false,
60
+ "clickTracking": false,
61
+ "tls": "opportunistic",
62
+ "customReturnPath": "send",
63
+ "capabilities": {
64
+ "sending": "enabled",
65
+ "receiving": "disabled"
66
+ },
67
+ "records": [
68
+ {
69
+ "record": "SPF",
70
+ "name": "send.legacy.northwind.invalid",
71
+ "type": "MX",
72
+ "ttl": "Auto",
73
+ "status": "failed",
74
+ "value": "feedback-smtp.us-east-1.amazonses.com",
75
+ "priority": 10
76
+ },
77
+ {
78
+ "record": "SPF",
79
+ "name": "send.legacy.northwind.invalid",
80
+ "type": "TXT",
81
+ "ttl": "Auto",
82
+ "status": "failed",
83
+ "value": "\"v=spf1 include:amazonses.com ~all\"",
84
+ "priority": null
85
+ },
86
+ {
87
+ "record": "DKIM",
88
+ "name": "resend._domainkey.legacy.northwind.invalid",
89
+ "type": "TXT",
90
+ "ttl": "Auto",
91
+ "status": "failed",
92
+ "value": "p=/fOIlEskXWFEizFkS0Y/z4qSQZmY205PxlOxMIT7V4ypWSY2cywgy0ohlzq1BMjaSb/Kk8pCCKO+5ia5Vg5whgWfr9eC9U9VkBfTrgv5fMbDMiNs++xxB81Og3D/oMIAlXvMj0mgt+X4QSvPYMaiQIDtFhXsE0CaWdw1K3M3qgDcDyBihKyDQDB8b7cJPMsl4TgOhrj+YygxnCEla46U/vw7",
93
+ "priority": null
94
+ }
95
+ ],
96
+ "createdAtUs": 1772200800000000
97
+ }
98
+ },
99
+ {
100
+ "action": "upsert",
101
+ "packageId": "resend",
102
+ "namespace": "domain-names",
103
+ "rowId": "legacy.northwind.invalid",
104
+ "value": {
105
+ "domainId": "fffffffe-0000-4000-8000-000200000001"
106
+ }
107
+ },
108
+ {
109
+ "action": "upsert",
110
+ "packageId": "resend",
111
+ "namespace": "domains",
112
+ "rowId": "fffffffd-0000-4000-8000-000200000002",
113
+ "value": {
114
+ "id": "fffffffd-0000-4000-8000-000200000002",
115
+ "name": "mail.northwind.test",
116
+ "region": "us-east-1",
117
+ "status": "verified",
118
+ "openTracking": false,
119
+ "clickTracking": false,
120
+ "tls": "opportunistic",
121
+ "customReturnPath": "send",
122
+ "capabilities": {
123
+ "sending": "enabled",
124
+ "receiving": "disabled"
125
+ },
126
+ "records": [
127
+ {
128
+ "record": "SPF",
129
+ "name": "send.mail.northwind.test",
130
+ "type": "MX",
131
+ "ttl": "Auto",
132
+ "status": "verified",
133
+ "value": "feedback-smtp.us-east-1.amazonses.com",
134
+ "priority": 10
135
+ },
136
+ {
137
+ "record": "SPF",
138
+ "name": "send.mail.northwind.test",
139
+ "type": "TXT",
140
+ "ttl": "Auto",
141
+ "status": "verified",
142
+ "value": "\"v=spf1 include:amazonses.com ~all\"",
143
+ "priority": null
144
+ },
145
+ {
146
+ "record": "DKIM",
147
+ "name": "resend._domainkey.mail.northwind.test",
148
+ "type": "TXT",
149
+ "ttl": "Auto",
150
+ "status": "verified",
151
+ "value": "p=gFQWKUHgJ5BWpPp010s26C2YEWzVeLOqW+0T2MRLKORPgjfbClor9yY7djbGuXdJ7oJ/RzMm8UR4HnGyAHVQxRrNnhzntTbYQCNccL2xdKCRfbc5tZxlUhtQgP83c/JWWMBpYTQsvwiam/iwKb+qnhgDJt048boFLGmmDLbXwGyTeTZXYN6frRCmj7dpLn2kww6TfzVxhMz8FW/uVvmDexU5",
152
+ "priority": null
153
+ }
154
+ ],
155
+ "createdAtUs": 1781704800000000
156
+ }
157
+ },
158
+ {
159
+ "action": "upsert",
160
+ "packageId": "resend",
161
+ "namespace": "domain-names",
162
+ "rowId": "mail.northwind.test",
163
+ "value": {
164
+ "domainId": "fffffffd-0000-4000-8000-000200000002"
165
+ }
166
+ },
167
+ {
168
+ "action": "upsert",
169
+ "packageId": "resend",
170
+ "namespace": "domains",
171
+ "rowId": "fffffffc-0000-4000-8000-000200000003",
172
+ "value": {
173
+ "id": "fffffffc-0000-4000-8000-000200000003",
174
+ "name": "updates.northwind.test",
175
+ "region": "eu-west-1",
176
+ "status": "verified",
177
+ "openTracking": false,
178
+ "clickTracking": true,
179
+ "tls": "opportunistic",
180
+ "customReturnPath": "send",
181
+ "capabilities": {
182
+ "sending": "enabled",
183
+ "receiving": "disabled"
184
+ },
185
+ "records": [
186
+ {
187
+ "record": "SPF",
188
+ "name": "send.updates.northwind.test",
189
+ "type": "MX",
190
+ "ttl": "Auto",
191
+ "status": "verified",
192
+ "value": "feedback-smtp.eu-west-1.amazonses.com",
193
+ "priority": 10
194
+ },
195
+ {
196
+ "record": "SPF",
197
+ "name": "send.updates.northwind.test",
198
+ "type": "TXT",
199
+ "ttl": "Auto",
200
+ "status": "verified",
201
+ "value": "\"v=spf1 include:amazonses.com ~all\"",
202
+ "priority": null
203
+ },
204
+ {
205
+ "record": "DKIM",
206
+ "name": "resend._domainkey.updates.northwind.test",
207
+ "type": "TXT",
208
+ "ttl": "Auto",
209
+ "status": "verified",
210
+ "value": "p=s51KLi0zGK/wqL/8DCjVcKW1DBDYCBX8ln9b6OjyLUz9lTa3UoEdkucrgDPdVBJvPF2cZqBhBNX6RLkiV9UWbCSSt0LSYxrSoSeNp2QAm3smsyf9HDU/CG5prW43MQ+kyQ2uoyOP7RwD3KJIo5FYa6PwYoUMvgAnr+/+Xe8NBbkQzSjD6flhheVn1qhRCgzaUc3/36b82VJNeKuu711aZyMO",
211
+ "priority": null
212
+ }
213
+ ],
214
+ "createdAtUs": 1784296800000000
215
+ }
216
+ },
217
+ {
218
+ "action": "upsert",
219
+ "packageId": "resend",
220
+ "namespace": "domain-names",
221
+ "rowId": "updates.northwind.test",
222
+ "value": {
223
+ "domainId": "fffffffc-0000-4000-8000-000200000003"
224
+ }
225
+ },
226
+ {
227
+ "action": "upsert",
228
+ "packageId": "resend",
229
+ "namespace": "domains",
230
+ "rowId": "fffffffb-0000-4000-8000-000200000004",
231
+ "value": {
232
+ "id": "fffffffb-0000-4000-8000-000200000004",
233
+ "name": "billing.northwind.test",
234
+ "region": "us-east-1",
235
+ "status": "not_started",
236
+ "openTracking": false,
237
+ "clickTracking": false,
238
+ "tls": "opportunistic",
239
+ "customReturnPath": "send",
240
+ "capabilities": {
241
+ "sending": "enabled",
242
+ "receiving": "enabled"
243
+ },
244
+ "records": [
245
+ {
246
+ "record": "SPF",
247
+ "name": "send.billing.northwind.test",
248
+ "type": "MX",
249
+ "ttl": "Auto",
250
+ "status": "not_started",
251
+ "value": "feedback-smtp.us-east-1.amazonses.com",
252
+ "priority": 10
253
+ },
254
+ {
255
+ "record": "SPF",
256
+ "name": "send.billing.northwind.test",
257
+ "type": "TXT",
258
+ "ttl": "Auto",
259
+ "status": "not_started",
260
+ "value": "\"v=spf1 include:amazonses.com ~all\"",
261
+ "priority": null
262
+ },
263
+ {
264
+ "record": "DKIM",
265
+ "name": "resend._domainkey.billing.northwind.test",
266
+ "type": "TXT",
267
+ "ttl": "Auto",
268
+ "status": "not_started",
269
+ "value": "p=DcdGGQV9uqgwGGpbb/d66yoIs72DA1ylA+Jq5wnQ3o4RGBnqxZiXFKSTOxmcXpJsuQm/dAqTwWAi1tWp2jWkAStOfXHkfNPiLSyEwAcGa05jUJ0Ysc6hsK35gsXdWhFJYDu5zw+pzBhUkVD3RGPNHxyUSyXG9lsgWlbenPR79/51jRBGmgTqSJcfzoIfVZCnD33zKfT+2tCFS9vEsqH3OR2a",
270
+ "priority": null
271
+ },
272
+ {
273
+ "record": "Receiving",
274
+ "name": "billing.northwind.test",
275
+ "type": "MX",
276
+ "ttl": "Auto",
277
+ "status": "not_started",
278
+ "value": "inbound-smtp.us-east-1.amazonaws.com",
279
+ "priority": 10
280
+ }
281
+ ],
282
+ "createdAtUs": 1789308000000000
283
+ }
284
+ },
285
+ {
286
+ "action": "upsert",
287
+ "packageId": "resend",
288
+ "namespace": "domain-names",
289
+ "rowId": "billing.northwind.test",
290
+ "value": {
291
+ "domainId": "fffffffb-0000-4000-8000-000200000004"
292
+ }
293
+ },
294
+ {
295
+ "action": "upsert",
296
+ "packageId": "resend",
297
+ "namespace": "api-keys",
298
+ "rowId": "fffffffe-0000-4000-8000-000300000001",
299
+ "value": {
300
+ "id": "fffffffe-0000-4000-8000-000300000001",
301
+ "name": "Staging CI",
302
+ "permission": "full_access",
303
+ "domainId": null,
304
+ "tokenPreview": "re_Hk29Qa",
305
+ "createdAtUs": 1779112800000000,
306
+ "lastUsedAtUs": null
307
+ }
308
+ },
309
+ {
310
+ "action": "upsert",
311
+ "packageId": "resend",
312
+ "namespace": "api-keys",
313
+ "rowId": "fffffffd-0000-4000-8000-000300000002",
314
+ "value": {
315
+ "id": "fffffffd-0000-4000-8000-000300000002",
316
+ "name": "Marketing sender",
317
+ "permission": "sending_access",
318
+ "domainId": "fffffffc-0000-4000-8000-000200000003",
319
+ "tokenPreview": "re_M4rkT7",
320
+ "createdAtUs": 1786024800000000,
321
+ "lastUsedAtUs": 1789394400000000
322
+ }
323
+ },
324
+ {
325
+ "action": "upsert",
326
+ "packageId": "resend",
327
+ "namespace": "api-keys",
328
+ "rowId": "fffffffc-0000-4000-8000-000300000003",
329
+ "value": {
330
+ "id": "fffffffc-0000-4000-8000-000300000003",
331
+ "name": "Production",
332
+ "permission": "full_access",
333
+ "domainId": null,
334
+ "tokenPreview": "re_Pr0dX9",
335
+ "createdAtUs": 1786888800000000,
336
+ "lastUsedAtUs": 1789480200000000
337
+ }
338
+ },
339
+ {
340
+ "action": "upsert",
341
+ "packageId": "resend",
342
+ "namespace": "emails",
343
+ "rowId": "fffffffe-0000-4000-8000-000100000001",
344
+ "value": {
345
+ "id": "fffffffe-0000-4000-8000-000100000001",
346
+ "from": "Northwind Labs <hello@mail.northwind.test>",
347
+ "to": [
348
+ "mara.quinn@example.com"
349
+ ],
350
+ "cc": [],
351
+ "bcc": [],
352
+ "replyTo": [],
353
+ "subject": "Welcome to Northwind Labs",
354
+ "html": "<p>Thanks for signing up.</p>",
355
+ "text": null,
356
+ "headers": {},
357
+ "tags": [
358
+ {
359
+ "name": "category",
360
+ "value": "welcome"
361
+ }
362
+ ],
363
+ "createdAtUs": 1788616800000000,
364
+ "scheduledAtUs": null,
365
+ "status": "delivered",
366
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
367
+ "batchId": null
368
+ }
369
+ },
370
+ {
371
+ "action": "upsert",
372
+ "packageId": "resend",
373
+ "namespace": "emails",
374
+ "rowId": "fffffffd-0000-4000-8000-000100000002",
375
+ "value": {
376
+ "id": "fffffffd-0000-4000-8000-000100000002",
377
+ "from": "Billing <invoices@billing.northwind.test>",
378
+ "to": [
379
+ "accounts@example.com"
380
+ ],
381
+ "cc": [],
382
+ "bcc": [],
383
+ "replyTo": [],
384
+ "subject": "Invoice NW-1042",
385
+ "html": null,
386
+ "text": "Your invoice is attached in the portal.",
387
+ "headers": {},
388
+ "tags": [],
389
+ "createdAtUs": 1788703200000000,
390
+ "scheduledAtUs": null,
391
+ "status": "delivered",
392
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
393
+ "batchId": null
394
+ }
395
+ },
396
+ {
397
+ "action": "upsert",
398
+ "packageId": "resend",
399
+ "namespace": "emails",
400
+ "rowId": "fffffffc-0000-4000-8000-000100000003",
401
+ "value": {
402
+ "id": "fffffffc-0000-4000-8000-000100000003",
403
+ "from": "Northwind Labs <hello@mail.northwind.test>",
404
+ "to": [
405
+ "theo.brandt@example.com"
406
+ ],
407
+ "cc": [
408
+ "ops@example.com"
409
+ ],
410
+ "bcc": [],
411
+ "replyTo": [],
412
+ "subject": "Your workspace is ready",
413
+ "html": "<p>Log in to get started.</p>",
414
+ "text": null,
415
+ "headers": {},
416
+ "tags": [],
417
+ "createdAtUs": 1788710400000000,
418
+ "scheduledAtUs": null,
419
+ "status": "delivered",
420
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
421
+ "batchId": null
422
+ }
423
+ },
424
+ {
425
+ "action": "upsert",
426
+ "packageId": "resend",
427
+ "namespace": "emails",
428
+ "rowId": "fffffffb-0000-4000-8000-000100000004",
429
+ "value": {
430
+ "id": "fffffffb-0000-4000-8000-000100000004",
431
+ "from": "Northwind Labs <hello@mail.northwind.test>",
432
+ "to": [
433
+ "zoe.lukasiewicz@example.com"
434
+ ],
435
+ "cc": [],
436
+ "bcc": [],
437
+ "replyTo": [],
438
+ "subject": "Rechnung für September ✓",
439
+ "html": null,
440
+ "text": "Vielen Dank für Ihre Zahlung.",
441
+ "headers": {},
442
+ "tags": [],
443
+ "createdAtUs": 1788789600000000,
444
+ "scheduledAtUs": null,
445
+ "status": "delivered",
446
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
447
+ "batchId": null
448
+ }
449
+ },
450
+ {
451
+ "action": "upsert",
452
+ "packageId": "resend",
453
+ "namespace": "emails",
454
+ "rowId": "fffffffa-0000-4000-8000-000100000005",
455
+ "value": {
456
+ "id": "fffffffa-0000-4000-8000-000100000005",
457
+ "from": "Northwind Updates <news@updates.northwind.test>",
458
+ "to": [
459
+ "beta01@example.com",
460
+ "beta02@example.com",
461
+ "beta03@example.com",
462
+ "beta04@example.com",
463
+ "beta05@example.com",
464
+ "beta06@example.com",
465
+ "beta07@example.com",
466
+ "beta08@example.com",
467
+ "beta09@example.com",
468
+ "beta10@example.com",
469
+ "beta11@example.com",
470
+ "beta12@example.com",
471
+ "beta13@example.com",
472
+ "beta14@example.com",
473
+ "beta15@example.com",
474
+ "beta16@example.com",
475
+ "beta17@example.com",
476
+ "beta18@example.com",
477
+ "beta19@example.com",
478
+ "beta20@example.com",
479
+ "beta21@example.com",
480
+ "beta22@example.com",
481
+ "beta23@example.com",
482
+ "beta24@example.com",
483
+ "beta25@example.com",
484
+ "beta26@example.com",
485
+ "beta27@example.com",
486
+ "beta28@example.com",
487
+ "beta29@example.com",
488
+ "beta30@example.com",
489
+ "beta31@example.com",
490
+ "beta32@example.com",
491
+ "beta33@example.com",
492
+ "beta34@example.com",
493
+ "beta35@example.com",
494
+ "beta36@example.com",
495
+ "beta37@example.com",
496
+ "beta38@example.com",
497
+ "beta39@example.com",
498
+ "beta40@example.com",
499
+ "beta41@example.com",
500
+ "beta42@example.com",
501
+ "beta43@example.com",
502
+ "beta44@example.com",
503
+ "beta45@example.com",
504
+ "beta46@example.com",
505
+ "beta47@example.com",
506
+ "beta48@example.com",
507
+ "beta49@example.com",
508
+ "beta50@example.com"
509
+ ],
510
+ "cc": [],
511
+ "bcc": [],
512
+ "replyTo": [],
513
+ "subject": "Beta programme: week 3 notes",
514
+ "html": "<p>Here is what shipped this week.</p>",
515
+ "text": null,
516
+ "headers": {},
517
+ "tags": [
518
+ {
519
+ "name": "category",
520
+ "value": "newsletter"
521
+ }
522
+ ],
523
+ "createdAtUs": 1788876000000000,
524
+ "scheduledAtUs": null,
525
+ "status": "delivered",
526
+ "apiKeyId": "fffffffd-0000-4000-8000-000300000002",
527
+ "batchId": null
528
+ }
529
+ },
530
+ {
531
+ "action": "upsert",
532
+ "packageId": "resend",
533
+ "namespace": "emails",
534
+ "rowId": "fffffff9-0000-4000-8000-000100000006",
535
+ "value": {
536
+ "id": "fffffff9-0000-4000-8000-000100000006",
537
+ "from": "Northwind Labs <hello@mail.northwind.test>",
538
+ "to": [
539
+ "former.user@nowhere.invalid"
540
+ ],
541
+ "cc": [],
542
+ "bcc": [],
543
+ "replyTo": [],
544
+ "subject": "Password reset requested",
545
+ "html": null,
546
+ "text": "Use the link in the app to reset.",
547
+ "headers": {},
548
+ "tags": [],
549
+ "createdAtUs": 1788962400000000,
550
+ "scheduledAtUs": null,
551
+ "status": "bounced",
552
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
553
+ "batchId": null
554
+ }
555
+ },
556
+ {
557
+ "action": "upsert",
558
+ "packageId": "resend",
559
+ "namespace": "emails",
560
+ "rowId": "fffffff8-0000-4000-8000-000100000007",
561
+ "value": {
562
+ "id": "fffffff8-0000-4000-8000-000100000007",
563
+ "from": "Northwind Labs <hello@mail.northwind.test>",
564
+ "to": [
565
+ "priya.nair@example.com"
566
+ ],
567
+ "cc": [],
568
+ "bcc": [
569
+ "audit@example.com"
570
+ ],
571
+ "replyTo": [
572
+ "support@example.com"
573
+ ],
574
+ "subject": "Support ticket #5521 updated",
575
+ "html": "<p>An agent replied to your ticket.</p>",
576
+ "text": null,
577
+ "headers": {},
578
+ "tags": [],
579
+ "createdAtUs": 1788966000000000,
580
+ "scheduledAtUs": null,
581
+ "status": "delivered",
582
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
583
+ "batchId": null
584
+ }
585
+ },
586
+ {
587
+ "action": "upsert",
588
+ "packageId": "resend",
589
+ "namespace": "emails",
590
+ "rowId": "fffffff7-0000-4000-8000-000100000008",
591
+ "value": {
592
+ "id": "fffffff7-0000-4000-8000-000100000008",
593
+ "from": "Northwind Updates <news@updates.northwind.test>",
594
+ "to": [
595
+ "ivo.petrov@example.com"
596
+ ],
597
+ "cc": [],
598
+ "bcc": [],
599
+ "replyTo": [],
600
+ "subject": "Scheduled maintenance notice",
601
+ "html": null,
602
+ "text": "Maintenance window on Saturday.",
603
+ "headers": {},
604
+ "tags": [],
605
+ "createdAtUs": 1789048800000000,
606
+ "scheduledAtUs": 1789135200000000,
607
+ "status": "canceled",
608
+ "apiKeyId": "fffffffd-0000-4000-8000-000300000002",
609
+ "batchId": null
610
+ }
611
+ },
612
+ {
613
+ "action": "upsert",
614
+ "packageId": "resend",
615
+ "namespace": "emails",
616
+ "rowId": "fffffff6-0000-4000-8000-000100000009",
617
+ "value": {
618
+ "id": "fffffff6-0000-4000-8000-000100000009",
619
+ "from": "Northwind Labs <hello@mail.northwind.test>",
620
+ "to": [
621
+ "lena.hart@example.com"
622
+ ],
623
+ "cc": [],
624
+ "bcc": [],
625
+ "replyTo": [],
626
+ "subject": "Order NW-7781 confirmed",
627
+ "html": "<p>We received your order.</p>",
628
+ "text": null,
629
+ "headers": {},
630
+ "tags": [],
631
+ "createdAtUs": 1789052400000000,
632
+ "scheduledAtUs": null,
633
+ "status": "delivered",
634
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
635
+ "batchId": "fffffffe-0000-4000-8000-000600000001"
636
+ }
637
+ },
638
+ {
639
+ "action": "upsert",
640
+ "packageId": "resend",
641
+ "namespace": "emails",
642
+ "rowId": "fffffff5-0000-4000-8000-000100000010",
643
+ "value": {
644
+ "id": "fffffff5-0000-4000-8000-000100000010",
645
+ "from": "Northwind Labs <hello@mail.northwind.test>",
646
+ "to": [
647
+ "omar.haddad@example.com"
648
+ ],
649
+ "cc": [],
650
+ "bcc": [],
651
+ "replyTo": [],
652
+ "subject": "Order NW-7782 confirmed",
653
+ "html": "<p>We received your order.</p>",
654
+ "text": null,
655
+ "headers": {},
656
+ "tags": [],
657
+ "createdAtUs": 1789052400000000,
658
+ "scheduledAtUs": null,
659
+ "status": "delivered",
660
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
661
+ "batchId": "fffffffe-0000-4000-8000-000600000001"
662
+ }
663
+ },
664
+ {
665
+ "action": "upsert",
666
+ "packageId": "resend",
667
+ "namespace": "emails",
668
+ "rowId": "fffffff4-0000-4000-8000-000100000011",
669
+ "value": {
670
+ "id": "fffffff4-0000-4000-8000-000100000011",
671
+ "from": "Northwind Labs <hello@mail.northwind.test>",
672
+ "to": [
673
+ "sofia.reyes@example.com"
674
+ ],
675
+ "cc": [],
676
+ "bcc": [],
677
+ "replyTo": [],
678
+ "subject": "Order NW-7783 confirmed",
679
+ "html": "<p>We received your order.</p>",
680
+ "text": null,
681
+ "headers": {},
682
+ "tags": [],
683
+ "createdAtUs": 1789052400000000,
684
+ "scheduledAtUs": null,
685
+ "status": "delivered",
686
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
687
+ "batchId": "fffffffe-0000-4000-8000-000600000001"
688
+ }
689
+ },
690
+ {
691
+ "action": "upsert",
692
+ "packageId": "resend",
693
+ "namespace": "emails",
694
+ "rowId": "fffffff3-0000-4000-8000-000100000012",
695
+ "value": {
696
+ "id": "fffffff3-0000-4000-8000-000100000012",
697
+ "from": "Northwind Labs <hello@mail.northwind.test>",
698
+ "to": [
699
+ "mara.quinn@example.com"
700
+ ],
701
+ "cc": [],
702
+ "bcc": [],
703
+ "replyTo": [],
704
+ "subject": "Your weekly usage summary",
705
+ "html": "<p>You sent 412 emails this week.</p>",
706
+ "text": null,
707
+ "headers": {},
708
+ "tags": [
709
+ {
710
+ "name": "category",
711
+ "value": "digest"
712
+ }
713
+ ],
714
+ "createdAtUs": 1789135200000000,
715
+ "scheduledAtUs": null,
716
+ "status": "delivered",
717
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
718
+ "batchId": null
719
+ }
720
+ },
721
+ {
722
+ "action": "upsert",
723
+ "packageId": "resend",
724
+ "namespace": "emails",
725
+ "rowId": "fffffff2-0000-4000-8000-000100000013",
726
+ "value": {
727
+ "id": "fffffff2-0000-4000-8000-000100000013",
728
+ "from": "Northwind Labs <hello@mail.northwind.test>",
729
+ "to": [
730
+ "no.mailbox@nowhere.invalid"
731
+ ],
732
+ "cc": [
733
+ "theo.brandt@example.com"
734
+ ],
735
+ "bcc": [],
736
+ "replyTo": [],
737
+ "subject": "Trial ending soon",
738
+ "html": null,
739
+ "text": "Your trial ends in 3 days.",
740
+ "headers": {},
741
+ "tags": [],
742
+ "createdAtUs": 1789221600000000,
743
+ "scheduledAtUs": null,
744
+ "status": "bounced",
745
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
746
+ "batchId": null
747
+ }
748
+ },
749
+ {
750
+ "action": "upsert",
751
+ "packageId": "resend",
752
+ "namespace": "emails",
753
+ "rowId": "fffffff1-0000-4000-8000-000100000014",
754
+ "value": {
755
+ "id": "fffffff1-0000-4000-8000-000100000014",
756
+ "from": "Northwind Updates <news@updates.northwind.test>",
757
+ "to": [
758
+ "newsletter@example.com"
759
+ ],
760
+ "cc": [],
761
+ "bcc": [],
762
+ "replyTo": [],
763
+ "subject": "September product update",
764
+ "html": "<p>New dashboard filters are live.</p>",
765
+ "text": null,
766
+ "headers": {},
767
+ "tags": [],
768
+ "createdAtUs": 1789308000000000,
769
+ "scheduledAtUs": 1789912800000000,
770
+ "status": "canceled",
771
+ "apiKeyId": "fffffffd-0000-4000-8000-000300000002",
772
+ "batchId": null
773
+ }
774
+ },
775
+ {
776
+ "action": "upsert",
777
+ "packageId": "resend",
778
+ "namespace": "emails",
779
+ "rowId": "fffffff0-0000-4000-8000-000100000015",
780
+ "value": {
781
+ "id": "fffffff0-0000-4000-8000-000100000015",
782
+ "from": "Northwind Labs <hello@mail.northwind.test>",
783
+ "to": [
784
+ "theo.brandt@example.com"
785
+ ],
786
+ "cc": [],
787
+ "bcc": [],
788
+ "replyTo": [],
789
+ "subject": "New sign-in from Firefox on Linux",
790
+ "html": null,
791
+ "text": "If this was not you, reset your password.",
792
+ "headers": {},
793
+ "tags": [],
794
+ "createdAtUs": 1789394400000000,
795
+ "scheduledAtUs": null,
796
+ "status": "delivered",
797
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
798
+ "batchId": null
799
+ }
800
+ },
801
+ {
802
+ "action": "upsert",
803
+ "packageId": "resend",
804
+ "namespace": "emails",
805
+ "rowId": "ffffffef-0000-4000-8000-000100000016",
806
+ "value": {
807
+ "id": "ffffffef-0000-4000-8000-000100000016",
808
+ "from": "Northwind Labs <hello@mail.northwind.test>",
809
+ "to": [
810
+ "priya.nair@example.com"
811
+ ],
812
+ "cc": [],
813
+ "bcc": [],
814
+ "replyTo": [],
815
+ "subject": "Support ticket #5521 resolved",
816
+ "html": "<p>We marked your ticket as resolved.</p>",
817
+ "text": null,
818
+ "headers": {},
819
+ "tags": [],
820
+ "createdAtUs": 1789408800000000,
821
+ "scheduledAtUs": null,
822
+ "status": "delivered",
823
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
824
+ "batchId": null
825
+ }
826
+ },
827
+ {
828
+ "action": "upsert",
829
+ "packageId": "resend",
830
+ "namespace": "emails",
831
+ "rowId": "ffffffee-0000-4000-8000-000100000017",
832
+ "value": {
833
+ "id": "ffffffee-0000-4000-8000-000100000017",
834
+ "from": "Northwind Labs <hello@mail.northwind.test>",
835
+ "to": [
836
+ "omar.haddad@example.com"
837
+ ],
838
+ "cc": [],
839
+ "bcc": [],
840
+ "replyTo": [],
841
+ "subject": "Receipt for your payment",
842
+ "html": "<p>Payment received: 49.00 EUR.</p>",
843
+ "text": null,
844
+ "headers": {},
845
+ "tags": [],
846
+ "createdAtUs": 1789459200000000,
847
+ "scheduledAtUs": null,
848
+ "status": "delivered",
849
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
850
+ "batchId": null
851
+ }
852
+ },
853
+ {
854
+ "action": "upsert",
855
+ "packageId": "resend",
856
+ "namespace": "emails",
857
+ "rowId": "ffffffed-0000-4000-8000-000100000018",
858
+ "value": {
859
+ "id": "ffffffed-0000-4000-8000-000100000018",
860
+ "from": "Northwind Updates <news@updates.northwind.test>",
861
+ "to": [
862
+ "beta-list@example.com"
863
+ ],
864
+ "cc": [],
865
+ "bcc": [],
866
+ "replyTo": [],
867
+ "subject": "Webinar starts in 30 minutes",
868
+ "html": null,
869
+ "text": "Join from the event page.",
870
+ "headers": {},
871
+ "tags": [],
872
+ "createdAtUs": 1789466400000000,
873
+ "scheduledAtUs": 1789479000000000,
874
+ "status": "scheduled",
875
+ "apiKeyId": "fffffffd-0000-4000-8000-000300000002",
876
+ "batchId": null
877
+ }
878
+ },
879
+ {
880
+ "action": "upsert",
881
+ "packageId": "resend",
882
+ "namespace": "emails",
883
+ "rowId": "ffffffec-0000-4000-8000-000100000019",
884
+ "value": {
885
+ "id": "ffffffec-0000-4000-8000-000100000019",
886
+ "from": "Northwind Labs <hello@mail.northwind.test>",
887
+ "to": [
888
+ "lena.hart@example.com"
889
+ ],
890
+ "cc": [],
891
+ "bcc": [],
892
+ "replyTo": [],
893
+ "subject": "Your export is ready",
894
+ "html": "<p>Download it from Settings.</p>",
895
+ "text": null,
896
+ "headers": {},
897
+ "tags": [],
898
+ "createdAtUs": 1789470000000000,
899
+ "scheduledAtUs": null,
900
+ "status": "delivered",
901
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
902
+ "batchId": null
903
+ }
904
+ },
905
+ {
906
+ "action": "upsert",
907
+ "packageId": "resend",
908
+ "namespace": "emails",
909
+ "rowId": "ffffffeb-0000-4000-8000-000100000020",
910
+ "value": {
911
+ "id": "ffffffeb-0000-4000-8000-000100000020",
912
+ "from": "Northwind Updates <news@updates.northwind.test>",
913
+ "to": [
914
+ "newsletter@example.com"
915
+ ],
916
+ "cc": [],
917
+ "bcc": [],
918
+ "replyTo": [],
919
+ "subject": "October roadmap preview",
920
+ "html": "<p>A look at what is coming.</p>",
921
+ "text": null,
922
+ "headers": {},
923
+ "tags": [],
924
+ "createdAtUs": 1789473600000000,
925
+ "scheduledAtUs": 1791986400000000,
926
+ "status": "scheduled",
927
+ "apiKeyId": "fffffffd-0000-4000-8000-000300000002",
928
+ "batchId": null
929
+ }
930
+ },
931
+ {
932
+ "action": "upsert",
933
+ "packageId": "resend",
934
+ "namespace": "emails",
935
+ "rowId": "ffffffea-0000-4000-8000-000100000021",
936
+ "value": {
937
+ "id": "ffffffea-0000-4000-8000-000100000021",
938
+ "from": "Northwind Labs <hello@mail.northwind.test>",
939
+ "to": [
940
+ "sofia.reyes@example.com"
941
+ ],
942
+ "cc": [],
943
+ "bcc": [],
944
+ "replyTo": [],
945
+ "subject": "Reminder: renew your plan",
946
+ "html": null,
947
+ "text": "Your plan renews tomorrow.",
948
+ "headers": {},
949
+ "tags": [],
950
+ "createdAtUs": 1789475400000000,
951
+ "scheduledAtUs": 1789567200000000,
952
+ "status": "scheduled",
953
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
954
+ "batchId": null
955
+ }
956
+ },
957
+ {
958
+ "action": "upsert",
959
+ "packageId": "resend",
960
+ "namespace": "emails",
961
+ "rowId": "ffffffe9-0000-4000-8000-000100000022",
962
+ "value": {
963
+ "id": "ffffffe9-0000-4000-8000-000100000022",
964
+ "from": "Northwind Labs <hello@mail.northwind.test>",
965
+ "to": [
966
+ "ivo.petrov@example.com"
967
+ ],
968
+ "cc": [],
969
+ "bcc": [],
970
+ "replyTo": [],
971
+ "subject": "Security digest",
972
+ "html": "<p>No unusual activity this week.</p>",
973
+ "text": null,
974
+ "headers": {},
975
+ "tags": [],
976
+ "createdAtUs": 1789478400000000,
977
+ "scheduledAtUs": null,
978
+ "status": "delivered",
979
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
980
+ "batchId": null
981
+ }
982
+ },
983
+ {
984
+ "action": "upsert",
985
+ "packageId": "resend",
986
+ "namespace": "emails",
987
+ "rowId": "ffffffe8-0000-4000-8000-000100000023",
988
+ "value": {
989
+ "id": "ffffffe8-0000-4000-8000-000100000023",
990
+ "from": "Northwind Labs <hello@mail.northwind.test>",
991
+ "to": [
992
+ "mara.quinn@example.com"
993
+ ],
994
+ "cc": [],
995
+ "bcc": [],
996
+ "replyTo": [],
997
+ "subject": "Team invite from Northwind Labs",
998
+ "html": "<p>You were invited to join a team.</p>",
999
+ "text": null,
1000
+ "headers": {},
1001
+ "tags": [],
1002
+ "createdAtUs": 1789479900000000,
1003
+ "scheduledAtUs": 1789482000000000,
1004
+ "status": "scheduled",
1005
+ "apiKeyId": "fffffffc-0000-4000-8000-000300000003",
1006
+ "batchId": null
1007
+ }
1008
+ },
1009
+ {
1010
+ "action": "upsert",
1011
+ "packageId": "resend",
1012
+ "namespace": "segments",
1013
+ "rowId": "fffffffe-0000-4000-8000-000400000001",
1014
+ "value": {
1015
+ "id": "fffffffe-0000-4000-8000-000400000001",
1016
+ "name": "Newsletter",
1017
+ "createdAtUs": 1782568800000000
1018
+ }
1019
+ },
1020
+ {
1021
+ "action": "upsert",
1022
+ "packageId": "resend",
1023
+ "namespace": "segments",
1024
+ "rowId": "fffffffd-0000-4000-8000-000400000002",
1025
+ "value": {
1026
+ "id": "fffffffd-0000-4000-8000-000400000002",
1027
+ "name": "Beta testers",
1028
+ "createdAtUs": 1785160800000000
1029
+ }
1030
+ },
1031
+ {
1032
+ "action": "upsert",
1033
+ "packageId": "resend",
1034
+ "namespace": "segments",
1035
+ "rowId": "fffffffc-0000-4000-8000-000400000003",
1036
+ "value": {
1037
+ "id": "fffffffc-0000-4000-8000-000400000003",
1038
+ "name": "Empty segment",
1039
+ "createdAtUs": 1789221600000000
1040
+ }
1041
+ },
1042
+ {
1043
+ "action": "upsert",
1044
+ "packageId": "resend",
1045
+ "namespace": "contacts",
1046
+ "rowId": "fffffffe-0000-4000-8000-000500000001",
1047
+ "value": {
1048
+ "id": "fffffffe-0000-4000-8000-000500000001",
1049
+ "email": "mara.quinn@example.com",
1050
+ "firstName": "Mara",
1051
+ "lastName": "Quinn",
1052
+ "unsubscribed": false,
1053
+ "properties": {
1054
+ "company_name": "Quinn & Co",
1055
+ "seats": 12
1056
+ },
1057
+ "createdAtUs": 1783432800000000
1058
+ }
1059
+ },
1060
+ {
1061
+ "action": "upsert",
1062
+ "packageId": "resend",
1063
+ "namespace": "contact-emails",
1064
+ "rowId": "mara.quinn@example.com",
1065
+ "value": {
1066
+ "contactId": "fffffffe-0000-4000-8000-000500000001"
1067
+ }
1068
+ },
1069
+ {
1070
+ "action": "upsert",
1071
+ "packageId": "resend",
1072
+ "namespace": "segment-members",
1073
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffffe-0000-4000-8000-000500000001",
1074
+ "value": {
1075
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1076
+ "contactId": "fffffffe-0000-4000-8000-000500000001",
1077
+ "addedAtUs": 1783519200000000
1078
+ }
1079
+ },
1080
+ {
1081
+ "action": "upsert",
1082
+ "packageId": "resend",
1083
+ "namespace": "contact-segments",
1084
+ "rowId": "fffffffe-0000-4000-8000-000500000001/fffffffe-0000-4000-8000-000400000001",
1085
+ "value": {
1086
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1087
+ "contactId": "fffffffe-0000-4000-8000-000500000001"
1088
+ }
1089
+ },
1090
+ {
1091
+ "action": "upsert",
1092
+ "packageId": "resend",
1093
+ "namespace": "segment-members",
1094
+ "rowId": "fffffffd-0000-4000-8000-000400000002/fffffffe-0000-4000-8000-000500000001",
1095
+ "value": {
1096
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1097
+ "contactId": "fffffffe-0000-4000-8000-000500000001",
1098
+ "addedAtUs": 1783519200000000
1099
+ }
1100
+ },
1101
+ {
1102
+ "action": "upsert",
1103
+ "packageId": "resend",
1104
+ "namespace": "contact-segments",
1105
+ "rowId": "fffffffe-0000-4000-8000-000500000001/fffffffd-0000-4000-8000-000400000002",
1106
+ "value": {
1107
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1108
+ "contactId": "fffffffe-0000-4000-8000-000500000001"
1109
+ }
1110
+ },
1111
+ {
1112
+ "action": "upsert",
1113
+ "packageId": "resend",
1114
+ "namespace": "contacts",
1115
+ "rowId": "fffffffd-0000-4000-8000-000500000002",
1116
+ "value": {
1117
+ "id": "fffffffd-0000-4000-8000-000500000002",
1118
+ "email": "theo.brandt@example.com",
1119
+ "firstName": "Theo",
1120
+ "lastName": "Brandt",
1121
+ "unsubscribed": false,
1122
+ "properties": {},
1123
+ "createdAtUs": 1783778400000000
1124
+ }
1125
+ },
1126
+ {
1127
+ "action": "upsert",
1128
+ "packageId": "resend",
1129
+ "namespace": "contact-emails",
1130
+ "rowId": "theo.brandt@example.com",
1131
+ "value": {
1132
+ "contactId": "fffffffd-0000-4000-8000-000500000002"
1133
+ }
1134
+ },
1135
+ {
1136
+ "action": "upsert",
1137
+ "packageId": "resend",
1138
+ "namespace": "segment-members",
1139
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffffd-0000-4000-8000-000500000002",
1140
+ "value": {
1141
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1142
+ "contactId": "fffffffd-0000-4000-8000-000500000002",
1143
+ "addedAtUs": 1783864800000000
1144
+ }
1145
+ },
1146
+ {
1147
+ "action": "upsert",
1148
+ "packageId": "resend",
1149
+ "namespace": "contact-segments",
1150
+ "rowId": "fffffffd-0000-4000-8000-000500000002/fffffffe-0000-4000-8000-000400000001",
1151
+ "value": {
1152
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1153
+ "contactId": "fffffffd-0000-4000-8000-000500000002"
1154
+ }
1155
+ },
1156
+ {
1157
+ "action": "upsert",
1158
+ "packageId": "resend",
1159
+ "namespace": "contacts",
1160
+ "rowId": "fffffffc-0000-4000-8000-000500000003",
1161
+ "value": {
1162
+ "id": "fffffffc-0000-4000-8000-000500000003",
1163
+ "email": "zoe.lukasiewicz@example.com",
1164
+ "firstName": "Zoë",
1165
+ "lastName": "Łukasiewicz",
1166
+ "unsubscribed": false,
1167
+ "properties": {
1168
+ "company_name": "Kraków Analytics"
1169
+ },
1170
+ "createdAtUs": 1784124000000000
1171
+ }
1172
+ },
1173
+ {
1174
+ "action": "upsert",
1175
+ "packageId": "resend",
1176
+ "namespace": "contact-emails",
1177
+ "rowId": "zoe.lukasiewicz@example.com",
1178
+ "value": {
1179
+ "contactId": "fffffffc-0000-4000-8000-000500000003"
1180
+ }
1181
+ },
1182
+ {
1183
+ "action": "upsert",
1184
+ "packageId": "resend",
1185
+ "namespace": "segment-members",
1186
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffffc-0000-4000-8000-000500000003",
1187
+ "value": {
1188
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1189
+ "contactId": "fffffffc-0000-4000-8000-000500000003",
1190
+ "addedAtUs": 1784210400000000
1191
+ }
1192
+ },
1193
+ {
1194
+ "action": "upsert",
1195
+ "packageId": "resend",
1196
+ "namespace": "contact-segments",
1197
+ "rowId": "fffffffc-0000-4000-8000-000500000003/fffffffe-0000-4000-8000-000400000001",
1198
+ "value": {
1199
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1200
+ "contactId": "fffffffc-0000-4000-8000-000500000003"
1201
+ }
1202
+ },
1203
+ {
1204
+ "action": "upsert",
1205
+ "packageId": "resend",
1206
+ "namespace": "contacts",
1207
+ "rowId": "fffffffb-0000-4000-8000-000500000004",
1208
+ "value": {
1209
+ "id": "fffffffb-0000-4000-8000-000500000004",
1210
+ "email": "priya.nair@example.com",
1211
+ "firstName": "Priya",
1212
+ "lastName": "Nair",
1213
+ "unsubscribed": false,
1214
+ "properties": {
1215
+ "seats": 3,
1216
+ "plan_note": null
1217
+ },
1218
+ "createdAtUs": 1784469600000000
1219
+ }
1220
+ },
1221
+ {
1222
+ "action": "upsert",
1223
+ "packageId": "resend",
1224
+ "namespace": "contact-emails",
1225
+ "rowId": "priya.nair@example.com",
1226
+ "value": {
1227
+ "contactId": "fffffffb-0000-4000-8000-000500000004"
1228
+ }
1229
+ },
1230
+ {
1231
+ "action": "upsert",
1232
+ "packageId": "resend",
1233
+ "namespace": "segment-members",
1234
+ "rowId": "fffffffd-0000-4000-8000-000400000002/fffffffb-0000-4000-8000-000500000004",
1235
+ "value": {
1236
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1237
+ "contactId": "fffffffb-0000-4000-8000-000500000004",
1238
+ "addedAtUs": 1784556000000000
1239
+ }
1240
+ },
1241
+ {
1242
+ "action": "upsert",
1243
+ "packageId": "resend",
1244
+ "namespace": "contact-segments",
1245
+ "rowId": "fffffffb-0000-4000-8000-000500000004/fffffffd-0000-4000-8000-000400000002",
1246
+ "value": {
1247
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1248
+ "contactId": "fffffffb-0000-4000-8000-000500000004"
1249
+ }
1250
+ },
1251
+ {
1252
+ "action": "upsert",
1253
+ "packageId": "resend",
1254
+ "namespace": "contacts",
1255
+ "rowId": "fffffffa-0000-4000-8000-000500000005",
1256
+ "value": {
1257
+ "id": "fffffffa-0000-4000-8000-000500000005",
1258
+ "email": "ivo.petrov@example.com",
1259
+ "firstName": "Ivo",
1260
+ "lastName": "Petrov",
1261
+ "unsubscribed": true,
1262
+ "properties": {},
1263
+ "createdAtUs": 1784815200000000
1264
+ }
1265
+ },
1266
+ {
1267
+ "action": "upsert",
1268
+ "packageId": "resend",
1269
+ "namespace": "contact-emails",
1270
+ "rowId": "ivo.petrov@example.com",
1271
+ "value": {
1272
+ "contactId": "fffffffa-0000-4000-8000-000500000005"
1273
+ }
1274
+ },
1275
+ {
1276
+ "action": "upsert",
1277
+ "packageId": "resend",
1278
+ "namespace": "segment-members",
1279
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffffa-0000-4000-8000-000500000005",
1280
+ "value": {
1281
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1282
+ "contactId": "fffffffa-0000-4000-8000-000500000005",
1283
+ "addedAtUs": 1784901600000000
1284
+ }
1285
+ },
1286
+ {
1287
+ "action": "upsert",
1288
+ "packageId": "resend",
1289
+ "namespace": "contact-segments",
1290
+ "rowId": "fffffffa-0000-4000-8000-000500000005/fffffffe-0000-4000-8000-000400000001",
1291
+ "value": {
1292
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1293
+ "contactId": "fffffffa-0000-4000-8000-000500000005"
1294
+ }
1295
+ },
1296
+ {
1297
+ "action": "upsert",
1298
+ "packageId": "resend",
1299
+ "namespace": "contacts",
1300
+ "rowId": "fffffff9-0000-4000-8000-000500000006",
1301
+ "value": {
1302
+ "id": "fffffff9-0000-4000-8000-000500000006",
1303
+ "email": "lena.hart@example.com",
1304
+ "firstName": "Lena",
1305
+ "lastName": null,
1306
+ "unsubscribed": false,
1307
+ "properties": {},
1308
+ "createdAtUs": 1785160800000000
1309
+ }
1310
+ },
1311
+ {
1312
+ "action": "upsert",
1313
+ "packageId": "resend",
1314
+ "namespace": "contact-emails",
1315
+ "rowId": "lena.hart@example.com",
1316
+ "value": {
1317
+ "contactId": "fffffff9-0000-4000-8000-000500000006"
1318
+ }
1319
+ },
1320
+ {
1321
+ "action": "upsert",
1322
+ "packageId": "resend",
1323
+ "namespace": "segment-members",
1324
+ "rowId": "fffffffd-0000-4000-8000-000400000002/fffffff9-0000-4000-8000-000500000006",
1325
+ "value": {
1326
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1327
+ "contactId": "fffffff9-0000-4000-8000-000500000006",
1328
+ "addedAtUs": 1785247200000000
1329
+ }
1330
+ },
1331
+ {
1332
+ "action": "upsert",
1333
+ "packageId": "resend",
1334
+ "namespace": "contact-segments",
1335
+ "rowId": "fffffff9-0000-4000-8000-000500000006/fffffffd-0000-4000-8000-000400000002",
1336
+ "value": {
1337
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1338
+ "contactId": "fffffff9-0000-4000-8000-000500000006"
1339
+ }
1340
+ },
1341
+ {
1342
+ "action": "upsert",
1343
+ "packageId": "resend",
1344
+ "namespace": "contacts",
1345
+ "rowId": "fffffff8-0000-4000-8000-000500000007",
1346
+ "value": {
1347
+ "id": "fffffff8-0000-4000-8000-000500000007",
1348
+ "email": "omar.haddad@example.com",
1349
+ "firstName": "Omar",
1350
+ "lastName": "Haddad",
1351
+ "unsubscribed": false,
1352
+ "properties": {
1353
+ "company_name": "Haddad Logistics",
1354
+ "seats": 40
1355
+ },
1356
+ "createdAtUs": 1785506400000000
1357
+ }
1358
+ },
1359
+ {
1360
+ "action": "upsert",
1361
+ "packageId": "resend",
1362
+ "namespace": "contact-emails",
1363
+ "rowId": "omar.haddad@example.com",
1364
+ "value": {
1365
+ "contactId": "fffffff8-0000-4000-8000-000500000007"
1366
+ }
1367
+ },
1368
+ {
1369
+ "action": "upsert",
1370
+ "packageId": "resend",
1371
+ "namespace": "segment-members",
1372
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffff8-0000-4000-8000-000500000007",
1373
+ "value": {
1374
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1375
+ "contactId": "fffffff8-0000-4000-8000-000500000007",
1376
+ "addedAtUs": 1785592800000000
1377
+ }
1378
+ },
1379
+ {
1380
+ "action": "upsert",
1381
+ "packageId": "resend",
1382
+ "namespace": "contact-segments",
1383
+ "rowId": "fffffff8-0000-4000-8000-000500000007/fffffffe-0000-4000-8000-000400000001",
1384
+ "value": {
1385
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1386
+ "contactId": "fffffff8-0000-4000-8000-000500000007"
1387
+ }
1388
+ },
1389
+ {
1390
+ "action": "upsert",
1391
+ "packageId": "resend",
1392
+ "namespace": "contacts",
1393
+ "rowId": "fffffff7-0000-4000-8000-000500000008",
1394
+ "value": {
1395
+ "id": "fffffff7-0000-4000-8000-000500000008",
1396
+ "email": "sofia.reyes@example.com",
1397
+ "firstName": null,
1398
+ "lastName": null,
1399
+ "unsubscribed": false,
1400
+ "properties": {},
1401
+ "createdAtUs": 1785852000000000
1402
+ }
1403
+ },
1404
+ {
1405
+ "action": "upsert",
1406
+ "packageId": "resend",
1407
+ "namespace": "contact-emails",
1408
+ "rowId": "sofia.reyes@example.com",
1409
+ "value": {
1410
+ "contactId": "fffffff7-0000-4000-8000-000500000008"
1411
+ }
1412
+ },
1413
+ {
1414
+ "action": "upsert",
1415
+ "packageId": "resend",
1416
+ "namespace": "segment-members",
1417
+ "rowId": "fffffffd-0000-4000-8000-000400000002/fffffff7-0000-4000-8000-000500000008",
1418
+ "value": {
1419
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1420
+ "contactId": "fffffff7-0000-4000-8000-000500000008",
1421
+ "addedAtUs": 1785938400000000
1422
+ }
1423
+ },
1424
+ {
1425
+ "action": "upsert",
1426
+ "packageId": "resend",
1427
+ "namespace": "contact-segments",
1428
+ "rowId": "fffffff7-0000-4000-8000-000500000008/fffffffd-0000-4000-8000-000400000002",
1429
+ "value": {
1430
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1431
+ "contactId": "fffffff7-0000-4000-8000-000500000008"
1432
+ }
1433
+ },
1434
+ {
1435
+ "action": "upsert",
1436
+ "packageId": "resend",
1437
+ "namespace": "contacts",
1438
+ "rowId": "fffffff6-0000-4000-8000-000500000009",
1439
+ "value": {
1440
+ "id": "fffffff6-0000-4000-8000-000500000009",
1441
+ "email": "accounts@example.com",
1442
+ "firstName": null,
1443
+ "lastName": null,
1444
+ "unsubscribed": false,
1445
+ "properties": {
1446
+ "company_name": "Example Accounts"
1447
+ },
1448
+ "createdAtUs": 1786197600000000
1449
+ }
1450
+ },
1451
+ {
1452
+ "action": "upsert",
1453
+ "packageId": "resend",
1454
+ "namespace": "contact-emails",
1455
+ "rowId": "accounts@example.com",
1456
+ "value": {
1457
+ "contactId": "fffffff6-0000-4000-8000-000500000009"
1458
+ }
1459
+ },
1460
+ {
1461
+ "action": "upsert",
1462
+ "packageId": "resend",
1463
+ "namespace": "contacts",
1464
+ "rowId": "fffffff5-0000-4000-8000-000500000010",
1465
+ "value": {
1466
+ "id": "fffffff5-0000-4000-8000-000500000010",
1467
+ "email": "newsletter@example.com",
1468
+ "firstName": "News",
1469
+ "lastName": "Desk",
1470
+ "unsubscribed": true,
1471
+ "properties": {},
1472
+ "createdAtUs": 1786543200000000
1473
+ }
1474
+ },
1475
+ {
1476
+ "action": "upsert",
1477
+ "packageId": "resend",
1478
+ "namespace": "contact-emails",
1479
+ "rowId": "newsletter@example.com",
1480
+ "value": {
1481
+ "contactId": "fffffff5-0000-4000-8000-000500000010"
1482
+ }
1483
+ },
1484
+ {
1485
+ "action": "upsert",
1486
+ "packageId": "resend",
1487
+ "namespace": "segment-members",
1488
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffff5-0000-4000-8000-000500000010",
1489
+ "value": {
1490
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1491
+ "contactId": "fffffff5-0000-4000-8000-000500000010",
1492
+ "addedAtUs": 1786629600000000
1493
+ }
1494
+ },
1495
+ {
1496
+ "action": "upsert",
1497
+ "packageId": "resend",
1498
+ "namespace": "contact-segments",
1499
+ "rowId": "fffffff5-0000-4000-8000-000500000010/fffffffe-0000-4000-8000-000400000001",
1500
+ "value": {
1501
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1502
+ "contactId": "fffffff5-0000-4000-8000-000500000010"
1503
+ }
1504
+ },
1505
+ {
1506
+ "action": "upsert",
1507
+ "packageId": "resend",
1508
+ "namespace": "contacts",
1509
+ "rowId": "fffffff4-0000-4000-8000-000500000011",
1510
+ "value": {
1511
+ "id": "fffffff4-0000-4000-8000-000500000011",
1512
+ "email": "hana.sato@example.com",
1513
+ "firstName": "Hana",
1514
+ "lastName": "Sato",
1515
+ "unsubscribed": false,
1516
+ "properties": {},
1517
+ "createdAtUs": 1786888800000000
1518
+ }
1519
+ },
1520
+ {
1521
+ "action": "upsert",
1522
+ "packageId": "resend",
1523
+ "namespace": "contact-emails",
1524
+ "rowId": "hana.sato@example.com",
1525
+ "value": {
1526
+ "contactId": "fffffff4-0000-4000-8000-000500000011"
1527
+ }
1528
+ },
1529
+ {
1530
+ "action": "upsert",
1531
+ "packageId": "resend",
1532
+ "namespace": "segment-members",
1533
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffff4-0000-4000-8000-000500000011",
1534
+ "value": {
1535
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1536
+ "contactId": "fffffff4-0000-4000-8000-000500000011",
1537
+ "addedAtUs": 1786975200000000
1538
+ }
1539
+ },
1540
+ {
1541
+ "action": "upsert",
1542
+ "packageId": "resend",
1543
+ "namespace": "contact-segments",
1544
+ "rowId": "fffffff4-0000-4000-8000-000500000011/fffffffe-0000-4000-8000-000400000001",
1545
+ "value": {
1546
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1547
+ "contactId": "fffffff4-0000-4000-8000-000500000011"
1548
+ }
1549
+ },
1550
+ {
1551
+ "action": "upsert",
1552
+ "packageId": "resend",
1553
+ "namespace": "contacts",
1554
+ "rowId": "fffffff3-0000-4000-8000-000500000012",
1555
+ "value": {
1556
+ "id": "fffffff3-0000-4000-8000-000500000012",
1557
+ "email": "felix.moreau@example.com",
1558
+ "firstName": "Félix",
1559
+ "lastName": "Moreau",
1560
+ "unsubscribed": false,
1561
+ "properties": {},
1562
+ "createdAtUs": 1787234400000000
1563
+ }
1564
+ },
1565
+ {
1566
+ "action": "upsert",
1567
+ "packageId": "resend",
1568
+ "namespace": "contact-emails",
1569
+ "rowId": "felix.moreau@example.com",
1570
+ "value": {
1571
+ "contactId": "fffffff3-0000-4000-8000-000500000012"
1572
+ }
1573
+ },
1574
+ {
1575
+ "action": "upsert",
1576
+ "packageId": "resend",
1577
+ "namespace": "segment-members",
1578
+ "rowId": "fffffffd-0000-4000-8000-000400000002/fffffff3-0000-4000-8000-000500000012",
1579
+ "value": {
1580
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1581
+ "contactId": "fffffff3-0000-4000-8000-000500000012",
1582
+ "addedAtUs": 1787320800000000
1583
+ }
1584
+ },
1585
+ {
1586
+ "action": "upsert",
1587
+ "packageId": "resend",
1588
+ "namespace": "contact-segments",
1589
+ "rowId": "fffffff3-0000-4000-8000-000500000012/fffffffd-0000-4000-8000-000400000002",
1590
+ "value": {
1591
+ "segmentId": "fffffffd-0000-4000-8000-000400000002",
1592
+ "contactId": "fffffff3-0000-4000-8000-000500000012"
1593
+ }
1594
+ },
1595
+ {
1596
+ "action": "upsert",
1597
+ "packageId": "resend",
1598
+ "namespace": "contacts",
1599
+ "rowId": "fffffff2-0000-4000-8000-000500000013",
1600
+ "value": {
1601
+ "id": "fffffff2-0000-4000-8000-000500000013",
1602
+ "email": "ada.okafor@example.com",
1603
+ "firstName": "Ada",
1604
+ "lastName": "Okafor",
1605
+ "unsubscribed": true,
1606
+ "properties": {},
1607
+ "createdAtUs": 1787580000000000
1608
+ }
1609
+ },
1610
+ {
1611
+ "action": "upsert",
1612
+ "packageId": "resend",
1613
+ "namespace": "contact-emails",
1614
+ "rowId": "ada.okafor@example.com",
1615
+ "value": {
1616
+ "contactId": "fffffff2-0000-4000-8000-000500000013"
1617
+ }
1618
+ },
1619
+ {
1620
+ "action": "upsert",
1621
+ "packageId": "resend",
1622
+ "namespace": "segment-members",
1623
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffff2-0000-4000-8000-000500000013",
1624
+ "value": {
1625
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1626
+ "contactId": "fffffff2-0000-4000-8000-000500000013",
1627
+ "addedAtUs": 1787666400000000
1628
+ }
1629
+ },
1630
+ {
1631
+ "action": "upsert",
1632
+ "packageId": "resend",
1633
+ "namespace": "contact-segments",
1634
+ "rowId": "fffffff2-0000-4000-8000-000500000013/fffffffe-0000-4000-8000-000400000001",
1635
+ "value": {
1636
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1637
+ "contactId": "fffffff2-0000-4000-8000-000500000013"
1638
+ }
1639
+ },
1640
+ {
1641
+ "action": "upsert",
1642
+ "packageId": "resend",
1643
+ "namespace": "contacts",
1644
+ "rowId": "fffffff1-0000-4000-8000-000500000014",
1645
+ "value": {
1646
+ "id": "fffffff1-0000-4000-8000-000500000014",
1647
+ "email": "jon.berg@example.com",
1648
+ "firstName": "Jon",
1649
+ "lastName": "Berg",
1650
+ "unsubscribed": false,
1651
+ "properties": {},
1652
+ "createdAtUs": 1787925600000000
1653
+ }
1654
+ },
1655
+ {
1656
+ "action": "upsert",
1657
+ "packageId": "resend",
1658
+ "namespace": "contact-emails",
1659
+ "rowId": "jon.berg@example.com",
1660
+ "value": {
1661
+ "contactId": "fffffff1-0000-4000-8000-000500000014"
1662
+ }
1663
+ },
1664
+ {
1665
+ "action": "upsert",
1666
+ "packageId": "resend",
1667
+ "namespace": "segment-members",
1668
+ "rowId": "fffffffe-0000-4000-8000-000400000001/fffffff1-0000-4000-8000-000500000014",
1669
+ "value": {
1670
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1671
+ "contactId": "fffffff1-0000-4000-8000-000500000014",
1672
+ "addedAtUs": 1788012000000000
1673
+ }
1674
+ },
1675
+ {
1676
+ "action": "upsert",
1677
+ "packageId": "resend",
1678
+ "namespace": "contact-segments",
1679
+ "rowId": "fffffff1-0000-4000-8000-000500000014/fffffffe-0000-4000-8000-000400000001",
1680
+ "value": {
1681
+ "segmentId": "fffffffe-0000-4000-8000-000400000001",
1682
+ "contactId": "fffffff1-0000-4000-8000-000500000014"
1683
+ }
1684
+ }
1685
+ ]
1686
+ }