@firedrill-tools/trolley 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 (78) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +219 -0
  3. package/firedrill/agent.target.json +16 -0
  4. package/firedrill/baseline.scenario.json +2109 -0
  5. package/firedrill/conformance.suite.json +19 -0
  6. package/firedrill/partner-outage.scenario.json +11 -0
  7. package/firedrill/processing-response-lost.scenario.json +11 -0
  8. package/firedrill/rate-limited.scenario.json +11 -0
  9. package/firedrill/tight-limits.scenario.json +16 -0
  10. package/firedrill/tools/trolley/app/assets/ATTRIBUTION.md +35 -0
  11. package/firedrill/tools/trolley/app/assets/cropped-Site-Icon-512x512-px-1-192x192.png +0 -0
  12. package/firedrill/tools/trolley/app/assets/fonts/OFL.txt +93 -0
  13. package/firedrill/tools/trolley/app/assets/full-logo.svg +1 -0
  14. package/firedrill/tools/trolley/app/assets/logo-black.svg +18 -0
  15. package/firedrill/tools/trolley/app/site/app.js +139 -0
  16. package/firedrill/tools/trolley/app/site/assets/fonts/inter-latin.woff2 +0 -0
  17. package/firedrill/tools/trolley/app/site/assets/trolley-icon.png +0 -0
  18. package/firedrill/tools/trolley/app/site/assets/trolley-logo.svg +1 -0
  19. package/firedrill/tools/trolley/app/site/base.css +99 -0
  20. package/firedrill/tools/trolley/app/site/batch-actions.js +139 -0
  21. package/firedrill/tools/trolley/app/site/components.css +149 -0
  22. package/firedrill/tools/trolley/app/site/icons.js +50 -0
  23. package/firedrill/tools/trolley/app/site/index.html +53 -0
  24. package/firedrill/tools/trolley/app/site/list.js +87 -0
  25. package/firedrill/tools/trolley/app/site/ui.js +181 -0
  26. package/firedrill/tools/trolley/app/site/view-balances.js +30 -0
  27. package/firedrill/tools/trolley/app/site/view-batch.js +86 -0
  28. package/firedrill/tools/trolley/app/site/view-batches.js +78 -0
  29. package/firedrill/tools/trolley/app/site/view-dashboard.js +79 -0
  30. package/firedrill/tools/trolley/app/site/view-methods.js +80 -0
  31. package/firedrill/tools/trolley/app/site/view-recipient.js +124 -0
  32. package/firedrill/tools/trolley/app/site/view-recipients.js +115 -0
  33. package/firedrill/tools/trolley/behavior.mjs +78 -0
  34. package/firedrill/tools/trolley/lib/access.mjs +21 -0
  35. package/firedrill/tools/trolley/lib/ids.mjs +28 -0
  36. package/firedrill/tools/trolley/lib/money.mjs +55 -0
  37. package/firedrill/tools/trolley/lib/paging.mjs +65 -0
  38. package/firedrill/tools/trolley/lib/pricing.mjs +88 -0
  39. package/firedrill/tools/trolley/lib/records.mjs +87 -0
  40. package/firedrill/tools/trolley/lib/serialize.mjs +152 -0
  41. package/firedrill/tools/trolley/lib/store.mjs +61 -0
  42. package/firedrill/tools/trolley/lib/time.mjs +60 -0
  43. package/firedrill/tools/trolley/lib/validate.mjs +111 -0
  44. package/firedrill/tools/trolley/lib/wire.mjs +145 -0
  45. package/firedrill/tools/trolley/ops/accounts-write.mjs +117 -0
  46. package/firedrill/tools/trolley/ops/accounts.mjs +129 -0
  47. package/firedrill/tools/trolley/ops/balances.mjs +23 -0
  48. package/firedrill/tools/trolley/ops/batches.mjs +139 -0
  49. package/firedrill/tools/trolley/ops/payment-build.mjs +79 -0
  50. package/firedrill/tools/trolley/ops/payments.mjs +112 -0
  51. package/firedrill/tools/trolley/ops/processing.mjs +104 -0
  52. package/firedrill/tools/trolley/ops/recipients-list.mjs +58 -0
  53. package/firedrill/tools/trolley/ops/recipients.mjs +127 -0
  54. package/firedrill/tools/trolley/trolley.tool.json +10095 -0
  55. package/firedrill/trolley-accounts.drill.json +205 -0
  56. package/firedrill/trolley-batch-lifecycle.drill.json +522 -0
  57. package/firedrill/trolley-denied.drill.json +74 -0
  58. package/firedrill/trolley-fresh-install.drill.json +68 -0
  59. package/firedrill/trolley-invalid-key.drill.json +743 -0
  60. package/firedrill/trolley-partner-outage.drill.json +97 -0
  61. package/firedrill/trolley-processing-rules.drill.json +138 -0
  62. package/firedrill/trolley-rate-limited.drill.json +118 -0
  63. package/firedrill/trolley-read-only.drill.json +468 -0
  64. package/firedrill/trolley-recipients.drill.json +183 -0
  65. package/firedrill/trolley-response-lost.drill.json +127 -0
  66. package/firedrill/trolley-tight-limits.drill.json +348 -0
  67. package/firedrill/world.json +2539 -0
  68. package/firedrill.json +5 -0
  69. package/package.json +64 -0
  70. package/starter.json +2108 -0
  71. package/test/conformance.mjs +12 -0
  72. package/test/flow-access.mjs +54 -0
  73. package/test/flow-accounts.mjs +63 -0
  74. package/test/flow-batches.mjs +107 -0
  75. package/test/flow-faults.mjs +58 -0
  76. package/test/flow-processing.mjs +41 -0
  77. package/test/flow-recipients.mjs +93 -0
  78. package/test/harness.mjs +87 -0
@@ -0,0 +1,2109 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "baseline",
4
+ "title": "Larkspur Creator Studio sandbox merchant as seeded by starter.json (no faults)",
5
+ "state": [
6
+ {
7
+ "action": "upsert",
8
+ "packageId": "trolley",
9
+ "namespace": "meta",
10
+ "rowId": "merchant",
11
+ "value": {
12
+ "id": "M-4Lk9Qx2Rb7Tn3Vw8Yz1Ca6",
13
+ "name": "Larkspur Creator Studio",
14
+ "country": "US",
15
+ "defaultCurrency": "USD",
16
+ "sandbox": true
17
+ }
18
+ },
19
+ {
20
+ "action": "upsert",
21
+ "packageId": "trolley",
22
+ "namespace": "meta",
23
+ "rowId": "counters",
24
+ "value": {
25
+ "next": 1000
26
+ }
27
+ },
28
+ {
29
+ "action": "upsert",
30
+ "packageId": "trolley",
31
+ "namespace": "meta",
32
+ "rowId": "fx",
33
+ "value": {
34
+ "base": "USD",
35
+ "rates": {
36
+ "USD": "1.000000",
37
+ "CAD": "1.352000",
38
+ "EUR": "0.912000",
39
+ "GBP": "0.781000",
40
+ "AUD": "1.498000",
41
+ "MXN": "17.240000"
42
+ },
43
+ "asOf": "2026-09-15T13:00:00.000Z"
44
+ }
45
+ },
46
+ {
47
+ "action": "upsert",
48
+ "packageId": "trolley",
49
+ "namespace": "meta",
50
+ "rowId": "fees",
51
+ "value": {
52
+ "currency": "USD",
53
+ "fixed": {
54
+ "bank-transfer": "1.00",
55
+ "paypal": "1.00",
56
+ "check": "2.50",
57
+ "venmo": "0.75"
58
+ },
59
+ "minimums": {
60
+ "bank-transfer": "5.00",
61
+ "paypal": "1.00",
62
+ "check": "20.00",
63
+ "venmo": "1.00"
64
+ }
65
+ }
66
+ },
67
+ {
68
+ "action": "upsert",
69
+ "packageId": "trolley",
70
+ "namespace": "balances",
71
+ "rowId": "paymentrails:USD",
72
+ "value": {
73
+ "type": "paymentrails",
74
+ "currency": "USD",
75
+ "amount": "18420.55",
76
+ "pendingAmount": "0.00",
77
+ "accountNumber": "BL-7QX2M9KD4R",
78
+ "primary": true,
79
+ "display": true
80
+ }
81
+ },
82
+ {
83
+ "action": "upsert",
84
+ "packageId": "trolley",
85
+ "namespace": "balances",
86
+ "rowId": "paymentrails:CAD",
87
+ "value": {
88
+ "type": "paymentrails",
89
+ "currency": "CAD",
90
+ "amount": "2150.00",
91
+ "pendingAmount": "0.00",
92
+ "accountNumber": "BL-3HT8V1NC6W",
93
+ "primary": false,
94
+ "display": true
95
+ }
96
+ },
97
+ {
98
+ "action": "upsert",
99
+ "packageId": "trolley",
100
+ "namespace": "balances",
101
+ "rowId": "paypal:USD",
102
+ "value": {
103
+ "type": "paypal",
104
+ "currency": "USD",
105
+ "amount": "640.00",
106
+ "pendingAmount": "0.00",
107
+ "accountNumber": "BL-5PL4Z7YB2E",
108
+ "primary": false,
109
+ "display": true
110
+ }
111
+ },
112
+ {
113
+ "action": "upsert",
114
+ "packageId": "trolley",
115
+ "namespace": "recipients",
116
+ "rowId": "R-0000000000000000000001",
117
+ "value": {
118
+ "id": "R-0000000000000000000001",
119
+ "referenceId": "CR-1001",
120
+ "email": "maya.castellanos@example.com",
121
+ "type": "individual",
122
+ "firstName": "Maya",
123
+ "lastName": "Castellanos",
124
+ "name": "Maya Castellanos",
125
+ "status": "active",
126
+ "complianceStatus": "verified",
127
+ "holdStatus": "none",
128
+ "dob": "1991-04-12",
129
+ "phone": "503-555-0101",
130
+ "language": "en",
131
+ "tags": [
132
+ "illustrator",
133
+ "q3"
134
+ ],
135
+ "address": {
136
+ "street1": "1450 Juniper St",
137
+ "street2": null,
138
+ "city": "Portland",
139
+ "region": "OR",
140
+ "postalCode": "97214",
141
+ "country": "US",
142
+ "phone": "503-555-0101"
143
+ },
144
+ "createdAt": "2026-03-02T16:20:00.000Z",
145
+ "updatedAt": "2026-08-30T10:05:00.000Z"
146
+ }
147
+ },
148
+ {
149
+ "action": "upsert",
150
+ "packageId": "trolley",
151
+ "namespace": "recipients",
152
+ "rowId": "R-0000000000000000000002",
153
+ "value": {
154
+ "id": "R-0000000000000000000002",
155
+ "referenceId": "CR-1002",
156
+ "email": "billing@quarrylane.example.com",
157
+ "type": "business",
158
+ "firstName": null,
159
+ "lastName": null,
160
+ "name": "Quarry Lane Films LLC",
161
+ "status": "active",
162
+ "complianceStatus": "verified",
163
+ "holdStatus": "none",
164
+ "dob": null,
165
+ "phone": null,
166
+ "language": "en",
167
+ "tags": [
168
+ "studio"
169
+ ],
170
+ "address": {
171
+ "street1": "88 Harbor Way",
172
+ "street2": "Suite 4",
173
+ "city": "Oakland",
174
+ "region": "CA",
175
+ "postalCode": "94607",
176
+ "country": "US",
177
+ "phone": "510-555-0102"
178
+ },
179
+ "createdAt": "2026-03-09T18:00:00.000Z",
180
+ "updatedAt": "2026-07-21T09:40:00.000Z"
181
+ }
182
+ },
183
+ {
184
+ "action": "upsert",
185
+ "packageId": "trolley",
186
+ "namespace": "recipients",
187
+ "rowId": "R-0000000000000000000003",
188
+ "value": {
189
+ "id": "R-0000000000000000000003",
190
+ "referenceId": "CR-1003",
191
+ "email": "etienne.tremblay@example.com",
192
+ "type": "individual",
193
+ "firstName": "Étienne",
194
+ "lastName": "Tremblay",
195
+ "name": "Étienne Tremblay",
196
+ "status": "active",
197
+ "complianceStatus": "verified",
198
+ "holdStatus": "none",
199
+ "dob": null,
200
+ "phone": null,
201
+ "language": "fr",
202
+ "tags": [
203
+ "editor"
204
+ ],
205
+ "address": {
206
+ "street1": "410 Rue Saint-Paul",
207
+ "street2": null,
208
+ "city": "Montréal",
209
+ "region": "QC",
210
+ "postalCode": "H2Y 1H4",
211
+ "country": "CA",
212
+ "phone": "514-555-0103"
213
+ },
214
+ "createdAt": "2026-03-15T14:10:00.000Z",
215
+ "updatedAt": "2026-07-02T15:30:00.000Z"
216
+ }
217
+ },
218
+ {
219
+ "action": "upsert",
220
+ "packageId": "trolley",
221
+ "namespace": "recipients",
222
+ "rowId": "R-0000000000000000000004",
223
+ "value": {
224
+ "id": "R-0000000000000000000004",
225
+ "referenceId": "CR-1004",
226
+ "email": "zoe.oconnell@example.com",
227
+ "type": "individual",
228
+ "firstName": "Zoë",
229
+ "lastName": "O'Connell",
230
+ "name": "Zoë O'Connell",
231
+ "status": "active",
232
+ "complianceStatus": "verified",
233
+ "holdStatus": "none",
234
+ "dob": null,
235
+ "phone": null,
236
+ "language": "en",
237
+ "tags": [
238
+ "editor",
239
+ "uk"
240
+ ],
241
+ "address": {
242
+ "street1": "12 Wharf Rd",
243
+ "street2": null,
244
+ "city": "London",
245
+ "region": null,
246
+ "postalCode": "N1 7GR",
247
+ "country": "GB",
248
+ "phone": null
249
+ },
250
+ "createdAt": "2026-04-01T11:00:00.000Z",
251
+ "updatedAt": "2026-06-11T08:15:00.000Z"
252
+ }
253
+ },
254
+ {
255
+ "action": "upsert",
256
+ "packageId": "trolley",
257
+ "namespace": "recipients",
258
+ "rowId": "R-0000000000000000000005",
259
+ "value": {
260
+ "id": "R-0000000000000000000005",
261
+ "referenceId": null,
262
+ "email": "lukasz.wisniewski@example.com",
263
+ "type": "individual",
264
+ "firstName": "Łukasz",
265
+ "lastName": "Wiśniewski",
266
+ "name": "Łukasz Wiśniewski",
267
+ "status": "active",
268
+ "complianceStatus": "verified",
269
+ "holdStatus": "none",
270
+ "dob": null,
271
+ "phone": null,
272
+ "language": "de",
273
+ "tags": [
274
+ "colorist"
275
+ ],
276
+ "address": {
277
+ "street1": "Friedrichstraße 20",
278
+ "street2": null,
279
+ "city": "Berlin",
280
+ "region": "BE",
281
+ "postalCode": "10117",
282
+ "country": "DE",
283
+ "phone": null
284
+ },
285
+ "createdAt": "2026-04-08T09:30:00.000Z",
286
+ "updatedAt": "2026-04-08T09:45:00.000Z"
287
+ }
288
+ },
289
+ {
290
+ "action": "upsert",
291
+ "packageId": "trolley",
292
+ "namespace": "recipients",
293
+ "rowId": "R-0000000000000000000006",
294
+ "value": {
295
+ "id": "R-0000000000000000000006",
296
+ "referenceId": "CR-1006",
297
+ "email": "priya.raman@example.com",
298
+ "type": "individual",
299
+ "firstName": "Priya",
300
+ "lastName": "Raman",
301
+ "name": "Priya Raman",
302
+ "status": "active",
303
+ "complianceStatus": "verified",
304
+ "holdStatus": "none",
305
+ "dob": null,
306
+ "phone": null,
307
+ "language": "en",
308
+ "tags": [
309
+ "editor",
310
+ "video",
311
+ "priority"
312
+ ],
313
+ "address": {
314
+ "street1": "77 Elm Ave",
315
+ "street2": null,
316
+ "city": "Austin",
317
+ "region": "TX",
318
+ "postalCode": "78701",
319
+ "country": "US",
320
+ "phone": "512-555-0106"
321
+ },
322
+ "createdAt": "2026-04-20T17:25:00.000Z",
323
+ "updatedAt": "2026-08-01T12:00:00.000Z"
324
+ }
325
+ },
326
+ {
327
+ "action": "upsert",
328
+ "packageId": "trolley",
329
+ "namespace": "recipients",
330
+ "rowId": "R-0000000000000000000007",
331
+ "value": {
332
+ "id": "R-0000000000000000000007",
333
+ "referenceId": "CR-1007",
334
+ "email": "jordan.blake@example.com",
335
+ "type": "individual",
336
+ "firstName": "Jordan",
337
+ "lastName": "Blake",
338
+ "name": "Jordan Blake",
339
+ "status": "active",
340
+ "complianceStatus": "verified",
341
+ "holdStatus": "none",
342
+ "dob": null,
343
+ "phone": null,
344
+ "language": "en",
345
+ "tags": [
346
+ "animator"
347
+ ],
348
+ "address": {
349
+ "street1": "5 Birch Ln",
350
+ "street2": null,
351
+ "city": "Denver",
352
+ "region": "CO",
353
+ "postalCode": "80205",
354
+ "country": "US",
355
+ "phone": "303-555-0107"
356
+ },
357
+ "createdAt": "2026-05-04T13:00:00.000Z",
358
+ "updatedAt": "2026-05-04T13:20:00.000Z"
359
+ }
360
+ },
361
+ {
362
+ "action": "upsert",
363
+ "packageId": "trolley",
364
+ "namespace": "recipients",
365
+ "rowId": "R-0000000000000000000008",
366
+ "value": {
367
+ "id": "R-0000000000000000000008",
368
+ "referenceId": "CR-1008",
369
+ "email": "pagos@estudionopal.example.com",
370
+ "type": "business",
371
+ "firstName": null,
372
+ "lastName": null,
373
+ "name": "Estudio Nopal S.A. de C.V.",
374
+ "status": "active",
375
+ "complianceStatus": "verified",
376
+ "holdStatus": "none",
377
+ "dob": null,
378
+ "phone": null,
379
+ "language": "es",
380
+ "tags": [
381
+ "studio",
382
+ "mx"
383
+ ],
384
+ "address": {
385
+ "street1": "Av. Reforma 222",
386
+ "street2": null,
387
+ "city": "Ciudad de México",
388
+ "region": "CDMX",
389
+ "postalCode": "06600",
390
+ "country": "MX",
391
+ "phone": null
392
+ },
393
+ "createdAt": "2026-05-12T20:00:00.000Z",
394
+ "updatedAt": "2026-06-02T19:10:00.000Z"
395
+ }
396
+ },
397
+ {
398
+ "action": "upsert",
399
+ "packageId": "trolley",
400
+ "namespace": "recipients",
401
+ "rowId": "R-0000000000000000000009",
402
+ "value": {
403
+ "id": "R-0000000000000000000009",
404
+ "referenceId": "CR-1009",
405
+ "email": "sam.okafor@example.com",
406
+ "type": "individual",
407
+ "firstName": "Sam",
408
+ "lastName": "Okafor",
409
+ "name": "Sam Okafor",
410
+ "status": "incomplete",
411
+ "complianceStatus": "pending",
412
+ "holdStatus": "none",
413
+ "dob": null,
414
+ "phone": null,
415
+ "language": "en",
416
+ "tags": [],
417
+ "address": {
418
+ "street1": null,
419
+ "street2": null,
420
+ "city": null,
421
+ "region": null,
422
+ "postalCode": null,
423
+ "country": null,
424
+ "phone": null
425
+ },
426
+ "createdAt": "2026-09-10T10:00:00.000Z",
427
+ "updatedAt": "2026-09-10T10:00:00.000Z"
428
+ }
429
+ },
430
+ {
431
+ "action": "upsert",
432
+ "packageId": "trolley",
433
+ "namespace": "recipients",
434
+ "rowId": "R-000000000000000000000A",
435
+ "value": {
436
+ "id": "R-000000000000000000000A",
437
+ "referenceId": "CR-1010",
438
+ "email": "harper.lin@example.com",
439
+ "type": "individual",
440
+ "firstName": "Harper",
441
+ "lastName": "Lin",
442
+ "name": "Harper Lin",
443
+ "status": "incomplete",
444
+ "complianceStatus": "pending",
445
+ "holdStatus": "none",
446
+ "dob": null,
447
+ "phone": null,
448
+ "language": "en",
449
+ "tags": [],
450
+ "address": {
451
+ "street1": "300 Pine St",
452
+ "street2": null,
453
+ "city": "Seattle",
454
+ "region": "WA",
455
+ "postalCode": "98101",
456
+ "country": "US",
457
+ "phone": null
458
+ },
459
+ "createdAt": "2026-09-12T15:45:00.000Z",
460
+ "updatedAt": "2026-09-12T15:50:00.000Z"
461
+ }
462
+ },
463
+ {
464
+ "action": "upsert",
465
+ "packageId": "trolley",
466
+ "namespace": "recipients",
467
+ "rowId": "R-000000000000000000000B",
468
+ "value": {
469
+ "id": "R-000000000000000000000B",
470
+ "referenceId": "CR-0990",
471
+ "email": "jordan.blake@example.com",
472
+ "type": "individual",
473
+ "firstName": "Jordan",
474
+ "lastName": "Blake",
475
+ "name": "Jordan Blake",
476
+ "status": "archived",
477
+ "complianceStatus": "verified",
478
+ "holdStatus": "none",
479
+ "dob": null,
480
+ "phone": null,
481
+ "language": "en",
482
+ "tags": [],
483
+ "address": {
484
+ "street1": "19 Alder Ct",
485
+ "street2": null,
486
+ "city": "Boulder",
487
+ "region": "CO",
488
+ "postalCode": "80302",
489
+ "country": "US",
490
+ "phone": null
491
+ },
492
+ "createdAt": "2026-02-10T09:00:00.000Z",
493
+ "updatedAt": "2026-05-04T12:55:00.000Z"
494
+ }
495
+ },
496
+ {
497
+ "action": "upsert",
498
+ "packageId": "trolley",
499
+ "namespace": "recipients",
500
+ "rowId": "R-000000000000000000000C",
501
+ "value": {
502
+ "id": "R-000000000000000000000C",
503
+ "referenceId": "CR-1012",
504
+ "email": "nadia.petrov@example.com",
505
+ "type": "individual",
506
+ "firstName": "Nadia",
507
+ "lastName": "Petrov",
508
+ "name": "Nadia Petrov",
509
+ "status": "suspended",
510
+ "complianceStatus": "verified",
511
+ "holdStatus": "suspended",
512
+ "dob": null,
513
+ "phone": null,
514
+ "language": "en",
515
+ "tags": [],
516
+ "address": {
517
+ "street1": "61 Cedar Blvd",
518
+ "street2": null,
519
+ "city": "Chicago",
520
+ "region": "IL",
521
+ "postalCode": "60614",
522
+ "country": "US",
523
+ "phone": null
524
+ },
525
+ "createdAt": "2026-05-20T16:00:00.000Z",
526
+ "updatedAt": "2026-08-19T11:00:00.000Z"
527
+ }
528
+ },
529
+ {
530
+ "action": "upsert",
531
+ "packageId": "trolley",
532
+ "namespace": "recipients",
533
+ "rowId": "R-000000000000000000000D",
534
+ "value": {
535
+ "id": "R-000000000000000000000D",
536
+ "referenceId": "CR-1013",
537
+ "email": "victor.hale@example.com",
538
+ "type": "individual",
539
+ "firstName": "Victor",
540
+ "lastName": "Hale",
541
+ "name": "Victor Hale",
542
+ "status": "blocked",
543
+ "complianceStatus": "blocked",
544
+ "holdStatus": "none",
545
+ "dob": null,
546
+ "phone": null,
547
+ "language": "en",
548
+ "tags": [],
549
+ "address": {
550
+ "street1": "9 Summit Rd",
551
+ "street2": null,
552
+ "city": "Phoenix",
553
+ "region": "AZ",
554
+ "postalCode": "85004",
555
+ "country": "US",
556
+ "phone": null
557
+ },
558
+ "createdAt": "2026-06-03T10:30:00.000Z",
559
+ "updatedAt": "2026-08-22T14:00:00.000Z"
560
+ }
561
+ },
562
+ {
563
+ "action": "upsert",
564
+ "packageId": "trolley",
565
+ "namespace": "recipients",
566
+ "rowId": "R-000000000000000000000E",
567
+ "value": {
568
+ "id": "R-000000000000000000000E",
569
+ "referenceId": "CR-1014",
570
+ "email": "ines.duarte@example.com",
571
+ "type": "individual",
572
+ "firstName": "Inês",
573
+ "lastName": "Duarte",
574
+ "name": "Inês Duarte",
575
+ "status": "disabled",
576
+ "complianceStatus": "verified",
577
+ "holdStatus": "disabled",
578
+ "dob": null,
579
+ "phone": null,
580
+ "language": "en",
581
+ "tags": [],
582
+ "address": {
583
+ "street1": "240 Bay St",
584
+ "street2": null,
585
+ "city": "Miami",
586
+ "region": "FL",
587
+ "postalCode": "33131",
588
+ "country": "US",
589
+ "phone": null
590
+ },
591
+ "createdAt": "2026-06-18T12:00:00.000Z",
592
+ "updatedAt": "2026-09-15T09:30:00.000Z"
593
+ }
594
+ },
595
+ {
596
+ "action": "upsert",
597
+ "packageId": "trolley",
598
+ "namespace": "recipient_accounts",
599
+ "rowId": "R-0000000000000000000001:A-000000000000000000001d",
600
+ "value": {
601
+ "id": "A-000000000000000000001d",
602
+ "recipientId": "R-0000000000000000000001",
603
+ "type": "bank-transfer",
604
+ "primary": true,
605
+ "status": "primary",
606
+ "currency": "USD",
607
+ "country": "US",
608
+ "accountHolderName": "Maya Castellanos",
609
+ "accountNumLast4": "2847",
610
+ "ibanLast4": null,
611
+ "bankId": null,
612
+ "branchId": "000123456",
613
+ "swiftBic": null,
614
+ "bankName": "Firedrill Test Bank US",
615
+ "emailAddress": null,
616
+ "phoneNumber": null,
617
+ "mailing": null,
618
+ "disabledAt": null,
619
+ "createdAt": "2026-03-02T16:30:00.000Z",
620
+ "updatedAt": "2026-03-02T16:30:00.000Z"
621
+ }
622
+ },
623
+ {
624
+ "action": "upsert",
625
+ "packageId": "trolley",
626
+ "namespace": "recipient_accounts",
627
+ "rowId": "R-0000000000000000000002:A-000000000000000000001e",
628
+ "value": {
629
+ "id": "A-000000000000000000001e",
630
+ "recipientId": "R-0000000000000000000002",
631
+ "type": "check",
632
+ "primary": true,
633
+ "status": "primary",
634
+ "currency": "USD",
635
+ "country": "US",
636
+ "accountHolderName": null,
637
+ "accountNumLast4": null,
638
+ "ibanLast4": null,
639
+ "bankId": null,
640
+ "branchId": null,
641
+ "swiftBic": null,
642
+ "bankName": null,
643
+ "emailAddress": null,
644
+ "phoneNumber": null,
645
+ "mailing": {
646
+ "name": "Quarry Lane Films LLC",
647
+ "street1": "88 Harbor Way",
648
+ "street2": "Suite 4",
649
+ "city": "Oakland",
650
+ "region": "CA",
651
+ "postal": "94607",
652
+ "country": "US"
653
+ },
654
+ "disabledAt": null,
655
+ "createdAt": "2026-03-09T18:10:00.000Z",
656
+ "updatedAt": "2026-03-09T18:10:00.000Z"
657
+ }
658
+ },
659
+ {
660
+ "action": "upsert",
661
+ "packageId": "trolley",
662
+ "namespace": "recipient_accounts",
663
+ "rowId": "R-0000000000000000000003:A-000000000000000000001f",
664
+ "value": {
665
+ "id": "A-000000000000000000001f",
666
+ "recipientId": "R-0000000000000000000003",
667
+ "type": "bank-transfer",
668
+ "primary": true,
669
+ "status": "primary",
670
+ "currency": "CAD",
671
+ "country": "CA",
672
+ "accountHolderName": "Etienne Tremblay",
673
+ "accountNumLast4": "5521",
674
+ "ibanLast4": null,
675
+ "bankId": "001",
676
+ "branchId": "00011",
677
+ "swiftBic": null,
678
+ "bankName": "Firedrill Test Bank CA",
679
+ "emailAddress": null,
680
+ "phoneNumber": null,
681
+ "mailing": null,
682
+ "disabledAt": null,
683
+ "createdAt": "2026-07-02T15:25:00.000Z",
684
+ "updatedAt": "2026-07-02T15:30:00.000Z"
685
+ }
686
+ },
687
+ {
688
+ "action": "upsert",
689
+ "packageId": "trolley",
690
+ "namespace": "recipient_accounts",
691
+ "rowId": "R-0000000000000000000003:A-000000000000000000001g",
692
+ "value": {
693
+ "id": "A-000000000000000000001g",
694
+ "recipientId": "R-0000000000000000000003",
695
+ "type": "paypal",
696
+ "primary": false,
697
+ "status": "active",
698
+ "currency": "USD",
699
+ "country": "CA",
700
+ "accountHolderName": null,
701
+ "accountNumLast4": null,
702
+ "ibanLast4": null,
703
+ "bankId": null,
704
+ "branchId": null,
705
+ "swiftBic": null,
706
+ "bankName": null,
707
+ "emailAddress": "etienne.payouts@example.com",
708
+ "phoneNumber": null,
709
+ "mailing": null,
710
+ "disabledAt": null,
711
+ "createdAt": "2026-05-01T10:00:00.000Z",
712
+ "updatedAt": "2026-05-01T10:00:00.000Z"
713
+ }
714
+ },
715
+ {
716
+ "action": "upsert",
717
+ "packageId": "trolley",
718
+ "namespace": "recipient_accounts",
719
+ "rowId": "R-0000000000000000000003:A-000000000000000000001h",
720
+ "value": {
721
+ "id": "A-000000000000000000001h",
722
+ "recipientId": "R-0000000000000000000003",
723
+ "type": "bank-transfer",
724
+ "primary": false,
725
+ "status": "disabled",
726
+ "currency": "CAD",
727
+ "country": "CA",
728
+ "accountHolderName": "Etienne Tremblay",
729
+ "accountNumLast4": "0093",
730
+ "ibanLast4": null,
731
+ "bankId": "002",
732
+ "branchId": "00042",
733
+ "swiftBic": null,
734
+ "bankName": "Firedrill Test Bank CA",
735
+ "emailAddress": null,
736
+ "phoneNumber": null,
737
+ "mailing": null,
738
+ "disabledAt": "2026-07-02T15:30:00.000Z",
739
+ "createdAt": "2026-03-15T14:20:00.000Z",
740
+ "updatedAt": "2026-07-02T15:30:00.000Z"
741
+ }
742
+ },
743
+ {
744
+ "action": "upsert",
745
+ "packageId": "trolley",
746
+ "namespace": "recipient_accounts",
747
+ "rowId": "R-0000000000000000000004:A-000000000000000000001i",
748
+ "value": {
749
+ "id": "A-000000000000000000001i",
750
+ "recipientId": "R-0000000000000000000004",
751
+ "type": "bank-transfer",
752
+ "primary": true,
753
+ "status": "primary",
754
+ "currency": "GBP",
755
+ "country": "GB",
756
+ "accountHolderName": "Zoe O'Connell",
757
+ "accountNumLast4": "1180",
758
+ "ibanLast4": null,
759
+ "bankId": null,
760
+ "branchId": "000404",
761
+ "swiftBic": null,
762
+ "bankName": "Firedrill Test Bank GB",
763
+ "emailAddress": null,
764
+ "phoneNumber": null,
765
+ "mailing": null,
766
+ "disabledAt": null,
767
+ "createdAt": "2026-04-01T11:10:00.000Z",
768
+ "updatedAt": "2026-04-01T11:10:00.000Z"
769
+ }
770
+ },
771
+ {
772
+ "action": "upsert",
773
+ "packageId": "trolley",
774
+ "namespace": "recipient_accounts",
775
+ "rowId": "R-0000000000000000000005:A-000000000000000000001j",
776
+ "value": {
777
+ "id": "A-000000000000000000001j",
778
+ "recipientId": "R-0000000000000000000005",
779
+ "type": "bank-transfer",
780
+ "primary": true,
781
+ "status": "primary",
782
+ "currency": "EUR",
783
+ "country": "DE",
784
+ "accountHolderName": "Lukasz Wisniewski",
785
+ "accountNumLast4": null,
786
+ "ibanLast4": "3000",
787
+ "bankId": null,
788
+ "branchId": null,
789
+ "swiftBic": "FDTBDEFFXXX",
790
+ "bankName": "Firedrill Test Bank DE",
791
+ "emailAddress": null,
792
+ "phoneNumber": null,
793
+ "mailing": null,
794
+ "disabledAt": null,
795
+ "createdAt": "2026-04-08T09:45:00.000Z",
796
+ "updatedAt": "2026-04-08T09:45:00.000Z"
797
+ }
798
+ },
799
+ {
800
+ "action": "upsert",
801
+ "packageId": "trolley",
802
+ "namespace": "recipient_accounts",
803
+ "rowId": "R-0000000000000000000006:A-000000000000000000001k",
804
+ "value": {
805
+ "id": "A-000000000000000000001k",
806
+ "recipientId": "R-0000000000000000000006",
807
+ "type": "paypal",
808
+ "primary": true,
809
+ "status": "primary",
810
+ "currency": "USD",
811
+ "country": "US",
812
+ "accountHolderName": null,
813
+ "accountNumLast4": null,
814
+ "ibanLast4": null,
815
+ "bankId": null,
816
+ "branchId": null,
817
+ "swiftBic": null,
818
+ "bankName": null,
819
+ "emailAddress": "priya.raman.payouts@example.com",
820
+ "phoneNumber": null,
821
+ "mailing": null,
822
+ "disabledAt": null,
823
+ "createdAt": "2026-04-20T17:40:00.000Z",
824
+ "updatedAt": "2026-04-20T17:40:00.000Z"
825
+ }
826
+ },
827
+ {
828
+ "action": "upsert",
829
+ "packageId": "trolley",
830
+ "namespace": "recipient_accounts",
831
+ "rowId": "R-0000000000000000000007:A-000000000000000000001l",
832
+ "value": {
833
+ "id": "A-000000000000000000001l",
834
+ "recipientId": "R-0000000000000000000007",
835
+ "type": "venmo",
836
+ "primary": true,
837
+ "status": "primary",
838
+ "currency": "USD",
839
+ "country": "US",
840
+ "accountHolderName": null,
841
+ "accountNumLast4": null,
842
+ "ibanLast4": null,
843
+ "bankId": null,
844
+ "branchId": null,
845
+ "swiftBic": null,
846
+ "bankName": null,
847
+ "emailAddress": null,
848
+ "phoneNumber": "3035550107",
849
+ "mailing": null,
850
+ "disabledAt": null,
851
+ "createdAt": "2026-05-04T13:20:00.000Z",
852
+ "updatedAt": "2026-05-04T13:20:00.000Z"
853
+ }
854
+ },
855
+ {
856
+ "action": "upsert",
857
+ "packageId": "trolley",
858
+ "namespace": "recipient_accounts",
859
+ "rowId": "R-0000000000000000000008:A-000000000000000000001m",
860
+ "value": {
861
+ "id": "A-000000000000000000001m",
862
+ "recipientId": "R-0000000000000000000008",
863
+ "type": "bank-transfer",
864
+ "primary": true,
865
+ "status": "primary",
866
+ "currency": "MXN",
867
+ "country": "MX",
868
+ "accountHolderName": "Estudio Nopal S.A. de C.V.",
869
+ "accountNumLast4": "4410",
870
+ "ibanLast4": null,
871
+ "bankId": null,
872
+ "branchId": null,
873
+ "swiftBic": null,
874
+ "bankName": "Firedrill Test Bank MX",
875
+ "emailAddress": null,
876
+ "phoneNumber": null,
877
+ "mailing": null,
878
+ "disabledAt": null,
879
+ "createdAt": "2026-05-12T20:15:00.000Z",
880
+ "updatedAt": "2026-06-02T19:10:00.000Z"
881
+ }
882
+ },
883
+ {
884
+ "action": "upsert",
885
+ "packageId": "trolley",
886
+ "namespace": "recipient_accounts",
887
+ "rowId": "R-000000000000000000000C:A-000000000000000000001n",
888
+ "value": {
889
+ "id": "A-000000000000000000001n",
890
+ "recipientId": "R-000000000000000000000C",
891
+ "type": "bank-transfer",
892
+ "primary": true,
893
+ "status": "primary",
894
+ "currency": "USD",
895
+ "country": "US",
896
+ "accountHolderName": "Nadia Petrov",
897
+ "accountNumLast4": "7731",
898
+ "ibanLast4": null,
899
+ "bankId": null,
900
+ "branchId": "000654321",
901
+ "swiftBic": null,
902
+ "bankName": "Firedrill Test Bank US",
903
+ "emailAddress": null,
904
+ "phoneNumber": null,
905
+ "mailing": null,
906
+ "disabledAt": null,
907
+ "createdAt": "2026-05-20T16:10:00.000Z",
908
+ "updatedAt": "2026-05-20T16:10:00.000Z"
909
+ }
910
+ },
911
+ {
912
+ "action": "upsert",
913
+ "packageId": "trolley",
914
+ "namespace": "recipient_accounts",
915
+ "rowId": "R-000000000000000000000D:A-000000000000000000001o",
916
+ "value": {
917
+ "id": "A-000000000000000000001o",
918
+ "recipientId": "R-000000000000000000000D",
919
+ "type": "paypal",
920
+ "primary": true,
921
+ "status": "primary",
922
+ "currency": "USD",
923
+ "country": "US",
924
+ "accountHolderName": null,
925
+ "accountNumLast4": null,
926
+ "ibanLast4": null,
927
+ "bankId": null,
928
+ "branchId": null,
929
+ "swiftBic": null,
930
+ "bankName": null,
931
+ "emailAddress": "victor.hale.payouts@example.com",
932
+ "phoneNumber": null,
933
+ "mailing": null,
934
+ "disabledAt": null,
935
+ "createdAt": "2026-06-03T10:40:00.000Z",
936
+ "updatedAt": "2026-06-03T10:40:00.000Z"
937
+ }
938
+ },
939
+ {
940
+ "action": "upsert",
941
+ "packageId": "trolley",
942
+ "namespace": "recipient_accounts",
943
+ "rowId": "R-000000000000000000000E:A-000000000000000000001p",
944
+ "value": {
945
+ "id": "A-000000000000000000001p",
946
+ "recipientId": "R-000000000000000000000E",
947
+ "type": "bank-transfer",
948
+ "primary": true,
949
+ "status": "primary",
950
+ "currency": "USD",
951
+ "country": "US",
952
+ "accountHolderName": "Ines Duarte",
953
+ "accountNumLast4": "6604",
954
+ "ibanLast4": null,
955
+ "bankId": null,
956
+ "branchId": "000777888",
957
+ "swiftBic": null,
958
+ "bankName": "Firedrill Test Bank US",
959
+ "emailAddress": null,
960
+ "phoneNumber": null,
961
+ "mailing": null,
962
+ "disabledAt": null,
963
+ "createdAt": "2026-06-18T12:10:00.000Z",
964
+ "updatedAt": "2026-06-18T12:10:00.000Z"
965
+ }
966
+ },
967
+ {
968
+ "action": "upsert",
969
+ "packageId": "trolley",
970
+ "namespace": "batches",
971
+ "rowId": "B-000000000000000000003F",
972
+ "value": {
973
+ "id": "B-000000000000000000003F",
974
+ "status": "open",
975
+ "currency": "USD",
976
+ "description": "September week 3 creators",
977
+ "tags": [
978
+ "weekly"
979
+ ],
980
+ "quoteExpiredAt": null,
981
+ "sentAt": null,
982
+ "completedAt": null,
983
+ "createdAt": "2026-09-15T09:10:00.000Z",
984
+ "updatedAt": "2026-09-15T09:40:00.000Z"
985
+ }
986
+ },
987
+ {
988
+ "action": "upsert",
989
+ "packageId": "trolley",
990
+ "namespace": "batches",
991
+ "rowId": "B-000000000000000000003G",
992
+ "value": {
993
+ "id": "B-000000000000000000003G",
994
+ "status": "open",
995
+ "currency": "USD",
996
+ "description": "EU and UK editors",
997
+ "tags": [
998
+ "editors",
999
+ "fx"
1000
+ ],
1001
+ "quoteExpiredAt": "2026-09-15T12:30:00.000Z",
1002
+ "sentAt": null,
1003
+ "completedAt": null,
1004
+ "createdAt": "2026-09-15T10:45:00.000Z",
1005
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1006
+ }
1007
+ },
1008
+ {
1009
+ "action": "upsert",
1010
+ "packageId": "trolley",
1011
+ "namespace": "batches",
1012
+ "rowId": "B-000000000000000000003H",
1013
+ "value": {
1014
+ "id": "B-000000000000000000003H",
1015
+ "status": "open",
1016
+ "currency": "USD",
1017
+ "description": "Q3 studio retainers",
1018
+ "tags": [
1019
+ "retainer"
1020
+ ],
1021
+ "quoteExpiredAt": null,
1022
+ "sentAt": null,
1023
+ "completedAt": null,
1024
+ "createdAt": "2026-09-14T15:00:00.000Z",
1025
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1026
+ }
1027
+ },
1028
+ {
1029
+ "action": "upsert",
1030
+ "packageId": "trolley",
1031
+ "namespace": "batches",
1032
+ "rowId": "B-000000000000000000003I",
1033
+ "value": {
1034
+ "id": "B-000000000000000000003I",
1035
+ "status": "open",
1036
+ "currency": "USD",
1037
+ "description": "Mixed status payout",
1038
+ "tags": [],
1039
+ "quoteExpiredAt": null,
1040
+ "sentAt": null,
1041
+ "completedAt": null,
1042
+ "createdAt": "2026-09-14T16:00:00.000Z",
1043
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1044
+ }
1045
+ },
1046
+ {
1047
+ "action": "upsert",
1048
+ "packageId": "trolley",
1049
+ "namespace": "batches",
1050
+ "rowId": "B-000000000000000000003J",
1051
+ "value": {
1052
+ "id": "B-000000000000000000003J",
1053
+ "status": "open",
1054
+ "currency": "USD",
1055
+ "description": "Check below minimum",
1056
+ "tags": [],
1057
+ "quoteExpiredAt": null,
1058
+ "sentAt": null,
1059
+ "completedAt": null,
1060
+ "createdAt": "2026-09-15T08:00:00.000Z",
1061
+ "updatedAt": "2026-09-15T08:02:00.000Z"
1062
+ }
1063
+ },
1064
+ {
1065
+ "action": "upsert",
1066
+ "packageId": "trolley",
1067
+ "namespace": "batches",
1068
+ "rowId": "B-000000000000000000003K",
1069
+ "value": {
1070
+ "id": "B-000000000000000000003K",
1071
+ "status": "open",
1072
+ "currency": "USD",
1073
+ "description": "Draft – October",
1074
+ "tags": [
1075
+ "draft"
1076
+ ],
1077
+ "quoteExpiredAt": null,
1078
+ "sentAt": null,
1079
+ "completedAt": null,
1080
+ "createdAt": "2026-09-15T13:30:00.000Z",
1081
+ "updatedAt": "2026-09-15T13:30:00.000Z"
1082
+ }
1083
+ },
1084
+ {
1085
+ "action": "upsert",
1086
+ "packageId": "trolley",
1087
+ "namespace": "batches",
1088
+ "rowId": "B-000000000000000000003L",
1089
+ "value": {
1090
+ "id": "B-000000000000000000003L",
1091
+ "status": "complete",
1092
+ "currency": "USD",
1093
+ "description": "August week 1",
1094
+ "tags": [
1095
+ "weekly"
1096
+ ],
1097
+ "quoteExpiredAt": null,
1098
+ "sentAt": "2026-08-07T15:00:00.000Z",
1099
+ "completedAt": "2026-08-07T15:00:00.000Z",
1100
+ "createdAt": "2026-08-06T10:00:00.000Z",
1101
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1102
+ }
1103
+ },
1104
+ {
1105
+ "action": "upsert",
1106
+ "packageId": "trolley",
1107
+ "namespace": "batches",
1108
+ "rowId": "B-000000000000000000003M",
1109
+ "value": {
1110
+ "id": "B-000000000000000000003M",
1111
+ "status": "complete",
1112
+ "currency": "USD",
1113
+ "description": "August week 2",
1114
+ "tags": [
1115
+ "weekly"
1116
+ ],
1117
+ "quoteExpiredAt": "2026-08-14T16:30:00.000Z",
1118
+ "sentAt": "2026-08-14T15:05:00.000Z",
1119
+ "completedAt": "2026-08-14T15:05:00.000Z",
1120
+ "createdAt": "2026-08-13T10:00:00.000Z",
1121
+ "updatedAt": "2026-08-14T15:05:00.000Z"
1122
+ }
1123
+ },
1124
+ {
1125
+ "action": "upsert",
1126
+ "packageId": "trolley",
1127
+ "namespace": "batches",
1128
+ "rowId": "B-000000000000000000003N",
1129
+ "value": {
1130
+ "id": "B-000000000000000000003N",
1131
+ "status": "complete",
1132
+ "currency": "USD",
1133
+ "description": "August week 3",
1134
+ "tags": [
1135
+ "weekly",
1136
+ "fx"
1137
+ ],
1138
+ "quoteExpiredAt": "2026-08-21T16:30:00.000Z",
1139
+ "sentAt": "2026-08-21T15:10:00.000Z",
1140
+ "completedAt": "2026-08-21T15:10:00.000Z",
1141
+ "createdAt": "2026-08-20T10:00:00.000Z",
1142
+ "updatedAt": "2026-08-21T15:10:00.000Z"
1143
+ }
1144
+ },
1145
+ {
1146
+ "action": "upsert",
1147
+ "packageId": "trolley",
1148
+ "namespace": "batches",
1149
+ "rowId": "B-000000000000000000003O",
1150
+ "value": {
1151
+ "id": "B-000000000000000000003O",
1152
+ "status": "complete",
1153
+ "currency": "USD",
1154
+ "description": "August retainers",
1155
+ "tags": [
1156
+ "retainer",
1157
+ "fx"
1158
+ ],
1159
+ "quoteExpiredAt": "2026-08-28T16:00:00.000Z",
1160
+ "sentAt": "2026-08-28T14:45:00.000Z",
1161
+ "completedAt": "2026-08-28T14:45:00.000Z",
1162
+ "createdAt": "2026-08-27T09:00:00.000Z",
1163
+ "updatedAt": "2026-08-28T14:45:00.000Z"
1164
+ }
1165
+ },
1166
+ {
1167
+ "action": "upsert",
1168
+ "packageId": "trolley",
1169
+ "namespace": "batches",
1170
+ "rowId": "B-000000000000000000003P",
1171
+ "value": {
1172
+ "id": "B-000000000000000000003P",
1173
+ "status": "failed",
1174
+ "currency": "USD",
1175
+ "description": "Late August correction",
1176
+ "tags": [],
1177
+ "quoteExpiredAt": null,
1178
+ "sentAt": "2026-08-29T11:00:00.000Z",
1179
+ "completedAt": "2026-08-29T11:00:00.000Z",
1180
+ "createdAt": "2026-08-29T10:30:00.000Z",
1181
+ "updatedAt": "2026-08-29T11:00:00.000Z"
1182
+ }
1183
+ },
1184
+ {
1185
+ "action": "upsert",
1186
+ "packageId": "trolley",
1187
+ "namespace": "payments",
1188
+ "rowId": "B-000000000000000000003F:P-000000000000000000004r",
1189
+ "value": {
1190
+ "id": "P-000000000000000000004r",
1191
+ "batchId": "B-000000000000000000003F",
1192
+ "recipientId": "R-0000000000000000000001",
1193
+ "accountId": "A-000000000000000000001d",
1194
+ "status": "pending",
1195
+ "amountSide": "source",
1196
+ "sourceAmount": "500.00",
1197
+ "sourceCurrency": "USD",
1198
+ "targetAmount": "499.00",
1199
+ "targetCurrency": "USD",
1200
+ "exchangeRate": "1.000000",
1201
+ "fees": "1.00",
1202
+ "recipientFees": "1.00",
1203
+ "merchantFees": "0.00",
1204
+ "coverFees": false,
1205
+ "payoutMethod": "bank-transfer",
1206
+ "memo": "Cover illustrations, issue 14",
1207
+ "externalId": "INV-2026-0911",
1208
+ "category": null,
1209
+ "tags": [],
1210
+ "failureMessage": null,
1211
+ "initiatedAt": null,
1212
+ "processedAt": null,
1213
+ "createdAt": "2026-09-15T09:10:00.000Z",
1214
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1215
+ }
1216
+ },
1217
+ {
1218
+ "action": "upsert",
1219
+ "packageId": "trolley",
1220
+ "namespace": "payments",
1221
+ "rowId": "B-000000000000000000003F:P-000000000000000000004s",
1222
+ "value": {
1223
+ "id": "P-000000000000000000004s",
1224
+ "batchId": "B-000000000000000000003F",
1225
+ "recipientId": "R-0000000000000000000006",
1226
+ "accountId": "A-000000000000000000001k",
1227
+ "status": "pending",
1228
+ "amountSide": "source",
1229
+ "sourceAmount": "440.00",
1230
+ "sourceCurrency": "USD",
1231
+ "targetAmount": "440.00",
1232
+ "targetCurrency": "USD",
1233
+ "exchangeRate": "1.000000",
1234
+ "fees": "1.00",
1235
+ "recipientFees": "0.00",
1236
+ "merchantFees": "1.00",
1237
+ "coverFees": true,
1238
+ "payoutMethod": "paypal",
1239
+ "memo": "Trailer edit",
1240
+ "externalId": "INV-2026-0912",
1241
+ "category": null,
1242
+ "tags": [],
1243
+ "failureMessage": null,
1244
+ "initiatedAt": null,
1245
+ "processedAt": null,
1246
+ "createdAt": "2026-09-15T09:10:00.000Z",
1247
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1248
+ }
1249
+ },
1250
+ {
1251
+ "action": "upsert",
1252
+ "packageId": "trolley",
1253
+ "namespace": "payments",
1254
+ "rowId": "B-000000000000000000003F:P-000000000000000000004t",
1255
+ "value": {
1256
+ "id": "P-000000000000000000004t",
1257
+ "batchId": "B-000000000000000000003F",
1258
+ "recipientId": "R-0000000000000000000007",
1259
+ "accountId": "A-000000000000000000001l",
1260
+ "status": "pending",
1261
+ "amountSide": "source",
1262
+ "sourceAmount": "300.00",
1263
+ "sourceCurrency": "USD",
1264
+ "targetAmount": "299.25",
1265
+ "targetCurrency": "USD",
1266
+ "exchangeRate": "1.000000",
1267
+ "fees": "0.75",
1268
+ "recipientFees": "0.75",
1269
+ "merchantFees": "0.00",
1270
+ "coverFees": false,
1271
+ "payoutMethod": "venmo",
1272
+ "memo": "Title sequence royalties",
1273
+ "externalId": null,
1274
+ "category": "royalties",
1275
+ "tags": [],
1276
+ "failureMessage": null,
1277
+ "initiatedAt": null,
1278
+ "processedAt": null,
1279
+ "createdAt": "2026-09-15T09:10:00.000Z",
1280
+ "updatedAt": "2026-09-15T09:40:00.000Z"
1281
+ }
1282
+ },
1283
+ {
1284
+ "action": "upsert",
1285
+ "packageId": "trolley",
1286
+ "namespace": "payments",
1287
+ "rowId": "B-000000000000000000003G:P-000000000000000000004u",
1288
+ "value": {
1289
+ "id": "P-000000000000000000004u",
1290
+ "batchId": "B-000000000000000000003G",
1291
+ "recipientId": "R-0000000000000000000004",
1292
+ "accountId": "A-000000000000000000001i",
1293
+ "status": "pending",
1294
+ "amountSide": "source",
1295
+ "sourceAmount": "800.00",
1296
+ "sourceCurrency": "USD",
1297
+ "targetAmount": "624.02",
1298
+ "targetCurrency": "GBP",
1299
+ "exchangeRate": "0.781000",
1300
+ "fees": "1.00",
1301
+ "recipientFees": "1.00",
1302
+ "merchantFees": "0.00",
1303
+ "coverFees": false,
1304
+ "payoutMethod": "bank-transfer",
1305
+ "memo": "Documentary rough cut",
1306
+ "externalId": null,
1307
+ "category": null,
1308
+ "tags": [],
1309
+ "failureMessage": null,
1310
+ "initiatedAt": null,
1311
+ "processedAt": null,
1312
+ "createdAt": "2026-09-15T10:45:00.000Z",
1313
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1314
+ }
1315
+ },
1316
+ {
1317
+ "action": "upsert",
1318
+ "packageId": "trolley",
1319
+ "namespace": "payments",
1320
+ "rowId": "B-000000000000000000003G:P-000000000000000000004v",
1321
+ "value": {
1322
+ "id": "P-000000000000000000004v",
1323
+ "batchId": "B-000000000000000000003G",
1324
+ "recipientId": "R-0000000000000000000005",
1325
+ "accountId": "A-000000000000000000001j",
1326
+ "status": "pending",
1327
+ "amountSide": "source",
1328
+ "sourceAmount": "650.00",
1329
+ "sourceCurrency": "USD",
1330
+ "targetAmount": "591.89",
1331
+ "targetCurrency": "EUR",
1332
+ "exchangeRate": "0.912000",
1333
+ "fees": "1.00",
1334
+ "recipientFees": "1.00",
1335
+ "merchantFees": "0.00",
1336
+ "coverFees": false,
1337
+ "payoutMethod": "bank-transfer",
1338
+ "memo": "Color grade, episode 3",
1339
+ "externalId": null,
1340
+ "category": null,
1341
+ "tags": [],
1342
+ "failureMessage": null,
1343
+ "initiatedAt": null,
1344
+ "processedAt": null,
1345
+ "createdAt": "2026-09-15T10:45:00.000Z",
1346
+ "updatedAt": "2026-09-15T11:00:00.000Z"
1347
+ }
1348
+ },
1349
+ {
1350
+ "action": "upsert",
1351
+ "packageId": "trolley",
1352
+ "namespace": "payments",
1353
+ "rowId": "B-000000000000000000003H:P-000000000000000000004w",
1354
+ "value": {
1355
+ "id": "P-000000000000000000004w",
1356
+ "batchId": "B-000000000000000000003H",
1357
+ "recipientId": "R-0000000000000000000001",
1358
+ "accountId": "A-000000000000000000001d",
1359
+ "status": "pending",
1360
+ "amountSide": "source",
1361
+ "sourceAmount": "12000.00",
1362
+ "sourceCurrency": "USD",
1363
+ "targetAmount": "11999.00",
1364
+ "targetCurrency": "USD",
1365
+ "exchangeRate": "1.000000",
1366
+ "fees": "1.00",
1367
+ "recipientFees": "1.00",
1368
+ "merchantFees": "0.00",
1369
+ "coverFees": false,
1370
+ "payoutMethod": "bank-transfer",
1371
+ "memo": "Q3 retainer",
1372
+ "externalId": null,
1373
+ "category": null,
1374
+ "tags": [],
1375
+ "failureMessage": null,
1376
+ "initiatedAt": null,
1377
+ "processedAt": null,
1378
+ "createdAt": "2026-09-14T15:00:00.000Z",
1379
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1380
+ }
1381
+ },
1382
+ {
1383
+ "action": "upsert",
1384
+ "packageId": "trolley",
1385
+ "namespace": "payments",
1386
+ "rowId": "B-000000000000000000003H:P-000000000000000000004x",
1387
+ "value": {
1388
+ "id": "P-000000000000000000004x",
1389
+ "batchId": "B-000000000000000000003H",
1390
+ "recipientId": "R-0000000000000000000002",
1391
+ "accountId": "A-000000000000000000001e",
1392
+ "status": "pending",
1393
+ "amountSide": "source",
1394
+ "sourceAmount": "12000.00",
1395
+ "sourceCurrency": "USD",
1396
+ "targetAmount": "11997.50",
1397
+ "targetCurrency": "USD",
1398
+ "exchangeRate": "1.000000",
1399
+ "fees": "2.50",
1400
+ "recipientFees": "2.50",
1401
+ "merchantFees": "0.00",
1402
+ "coverFees": false,
1403
+ "payoutMethod": "check",
1404
+ "memo": "Q3 studio retainer",
1405
+ "externalId": null,
1406
+ "category": null,
1407
+ "tags": [],
1408
+ "failureMessage": null,
1409
+ "initiatedAt": null,
1410
+ "processedAt": null,
1411
+ "createdAt": "2026-09-14T15:00:00.000Z",
1412
+ "updatedAt": "2026-09-14T15:20:00.000Z"
1413
+ }
1414
+ },
1415
+ {
1416
+ "action": "upsert",
1417
+ "packageId": "trolley",
1418
+ "namespace": "payments",
1419
+ "rowId": "B-000000000000000000003I:P-000000000000000000004y",
1420
+ "value": {
1421
+ "id": "P-000000000000000000004y",
1422
+ "batchId": "B-000000000000000000003I",
1423
+ "recipientId": "R-0000000000000000000001",
1424
+ "accountId": "A-000000000000000000001d",
1425
+ "status": "pending",
1426
+ "amountSide": "source",
1427
+ "sourceAmount": "150.00",
1428
+ "sourceCurrency": "USD",
1429
+ "targetAmount": "149.00",
1430
+ "targetCurrency": "USD",
1431
+ "exchangeRate": "1.000000",
1432
+ "fees": "1.00",
1433
+ "recipientFees": "1.00",
1434
+ "merchantFees": "0.00",
1435
+ "coverFees": false,
1436
+ "payoutMethod": "bank-transfer",
1437
+ "memo": "Storyboard revisions",
1438
+ "externalId": null,
1439
+ "category": null,
1440
+ "tags": [],
1441
+ "failureMessage": null,
1442
+ "initiatedAt": null,
1443
+ "processedAt": null,
1444
+ "createdAt": "2026-09-14T16:00:00.000Z",
1445
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1446
+ }
1447
+ },
1448
+ {
1449
+ "action": "upsert",
1450
+ "packageId": "trolley",
1451
+ "namespace": "payments",
1452
+ "rowId": "B-000000000000000000003I:P-000000000000000000004z",
1453
+ "value": {
1454
+ "id": "P-000000000000000000004z",
1455
+ "batchId": "B-000000000000000000003I",
1456
+ "recipientId": "R-000000000000000000000E",
1457
+ "accountId": "A-000000000000000000001p",
1458
+ "status": "pending",
1459
+ "amountSide": "source",
1460
+ "sourceAmount": "200.00",
1461
+ "sourceCurrency": "USD",
1462
+ "targetAmount": "199.00",
1463
+ "targetCurrency": "USD",
1464
+ "exchangeRate": "1.000000",
1465
+ "fees": "1.00",
1466
+ "recipientFees": "1.00",
1467
+ "merchantFees": "0.00",
1468
+ "coverFees": false,
1469
+ "payoutMethod": "bank-transfer",
1470
+ "memo": "Sound design",
1471
+ "externalId": null,
1472
+ "category": null,
1473
+ "tags": [],
1474
+ "failureMessage": null,
1475
+ "initiatedAt": null,
1476
+ "processedAt": null,
1477
+ "createdAt": "2026-09-14T16:00:00.000Z",
1478
+ "updatedAt": "2026-09-14T16:05:00.000Z"
1479
+ }
1480
+ },
1481
+ {
1482
+ "action": "upsert",
1483
+ "packageId": "trolley",
1484
+ "namespace": "payments",
1485
+ "rowId": "B-000000000000000000003J:P-0000000000000000000050",
1486
+ "value": {
1487
+ "id": "P-0000000000000000000050",
1488
+ "batchId": "B-000000000000000000003J",
1489
+ "recipientId": "R-0000000000000000000002",
1490
+ "accountId": "A-000000000000000000001e",
1491
+ "status": "pending",
1492
+ "amountSide": "source",
1493
+ "sourceAmount": "12.00",
1494
+ "sourceCurrency": "USD",
1495
+ "targetAmount": "9.50",
1496
+ "targetCurrency": "USD",
1497
+ "exchangeRate": "1.000000",
1498
+ "fees": "2.50",
1499
+ "recipientFees": "2.50",
1500
+ "merchantFees": "0.00",
1501
+ "coverFees": false,
1502
+ "payoutMethod": "check",
1503
+ "memo": "Stock footage licence",
1504
+ "externalId": null,
1505
+ "category": null,
1506
+ "tags": [],
1507
+ "failureMessage": null,
1508
+ "initiatedAt": null,
1509
+ "processedAt": null,
1510
+ "createdAt": "2026-09-15T08:00:00.000Z",
1511
+ "updatedAt": "2026-09-15T08:02:00.000Z"
1512
+ }
1513
+ },
1514
+ {
1515
+ "action": "upsert",
1516
+ "packageId": "trolley",
1517
+ "namespace": "payments",
1518
+ "rowId": "B-000000000000000000003L:P-0000000000000000000051",
1519
+ "value": {
1520
+ "id": "P-0000000000000000000051",
1521
+ "batchId": "B-000000000000000000003L",
1522
+ "recipientId": "R-0000000000000000000001",
1523
+ "accountId": "A-000000000000000000001d",
1524
+ "status": "processed",
1525
+ "amountSide": "source",
1526
+ "sourceAmount": "320.00",
1527
+ "sourceCurrency": "USD",
1528
+ "targetAmount": "319.00",
1529
+ "targetCurrency": "USD",
1530
+ "exchangeRate": "1.000000",
1531
+ "fees": "1.00",
1532
+ "recipientFees": "1.00",
1533
+ "merchantFees": "0.00",
1534
+ "coverFees": false,
1535
+ "payoutMethod": "bank-transfer",
1536
+ "memo": "Poster art",
1537
+ "externalId": null,
1538
+ "category": null,
1539
+ "tags": [],
1540
+ "failureMessage": null,
1541
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
1542
+ "processedAt": "2026-08-07T15:00:00.000Z",
1543
+ "createdAt": "2026-08-06T10:00:00.000Z",
1544
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1545
+ }
1546
+ },
1547
+ {
1548
+ "action": "upsert",
1549
+ "packageId": "trolley",
1550
+ "namespace": "payments",
1551
+ "rowId": "B-000000000000000000003L:P-0000000000000000000052",
1552
+ "value": {
1553
+ "id": "P-0000000000000000000052",
1554
+ "batchId": "B-000000000000000000003L",
1555
+ "recipientId": "R-0000000000000000000006",
1556
+ "accountId": "A-000000000000000000001k",
1557
+ "status": "processed",
1558
+ "amountSide": "source",
1559
+ "sourceAmount": "180.00",
1560
+ "sourceCurrency": "USD",
1561
+ "targetAmount": "179.00",
1562
+ "targetCurrency": "USD",
1563
+ "exchangeRate": "1.000000",
1564
+ "fees": "1.00",
1565
+ "recipientFees": "1.00",
1566
+ "merchantFees": "0.00",
1567
+ "coverFees": false,
1568
+ "payoutMethod": "paypal",
1569
+ "memo": "Social cutdowns",
1570
+ "externalId": null,
1571
+ "category": null,
1572
+ "tags": [],
1573
+ "failureMessage": null,
1574
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
1575
+ "processedAt": "2026-08-07T15:00:00.000Z",
1576
+ "createdAt": "2026-08-06T10:00:00.000Z",
1577
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1578
+ }
1579
+ },
1580
+ {
1581
+ "action": "upsert",
1582
+ "packageId": "trolley",
1583
+ "namespace": "payments",
1584
+ "rowId": "B-000000000000000000003L:P-0000000000000000000053",
1585
+ "value": {
1586
+ "id": "P-0000000000000000000053",
1587
+ "batchId": "B-000000000000000000003L",
1588
+ "recipientId": "R-0000000000000000000008",
1589
+ "accountId": "A-000000000000000000001m",
1590
+ "status": "processed",
1591
+ "amountSide": "source",
1592
+ "sourceAmount": "500.00",
1593
+ "sourceCurrency": "USD",
1594
+ "targetAmount": "8602.76",
1595
+ "targetCurrency": "MXN",
1596
+ "exchangeRate": "17.240000",
1597
+ "fees": "1.00",
1598
+ "recipientFees": "1.00",
1599
+ "merchantFees": "0.00",
1600
+ "coverFees": false,
1601
+ "payoutMethod": "bank-transfer",
1602
+ "memo": "Motion graphics package",
1603
+ "externalId": null,
1604
+ "category": null,
1605
+ "tags": [],
1606
+ "failureMessage": null,
1607
+ "initiatedAt": "2026-08-07T15:00:00.000Z",
1608
+ "processedAt": "2026-08-07T15:00:00.000Z",
1609
+ "createdAt": "2026-08-06T10:00:00.000Z",
1610
+ "updatedAt": "2026-08-07T15:00:00.000Z"
1611
+ }
1612
+ },
1613
+ {
1614
+ "action": "upsert",
1615
+ "packageId": "trolley",
1616
+ "namespace": "payments",
1617
+ "rowId": "B-000000000000000000003M:P-0000000000000000000054",
1618
+ "value": {
1619
+ "id": "P-0000000000000000000054",
1620
+ "batchId": "B-000000000000000000003M",
1621
+ "recipientId": "R-0000000000000000000003",
1622
+ "accountId": "A-000000000000000000001f",
1623
+ "status": "processed",
1624
+ "amountSide": "source",
1625
+ "sourceAmount": "400.00",
1626
+ "sourceCurrency": "USD",
1627
+ "targetAmount": "539.45",
1628
+ "targetCurrency": "CAD",
1629
+ "exchangeRate": "1.352000",
1630
+ "fees": "1.00",
1631
+ "recipientFees": "1.00",
1632
+ "merchantFees": "0.00",
1633
+ "coverFees": false,
1634
+ "payoutMethod": "bank-transfer",
1635
+ "memo": "French subtitles",
1636
+ "externalId": null,
1637
+ "category": null,
1638
+ "tags": [],
1639
+ "failureMessage": null,
1640
+ "initiatedAt": "2026-08-14T15:05:00.000Z",
1641
+ "processedAt": "2026-08-14T15:05:00.000Z",
1642
+ "createdAt": "2026-08-13T10:00:00.000Z",
1643
+ "updatedAt": "2026-08-14T15:05:00.000Z"
1644
+ }
1645
+ },
1646
+ {
1647
+ "action": "upsert",
1648
+ "packageId": "trolley",
1649
+ "namespace": "payments",
1650
+ "rowId": "B-000000000000000000003M:P-0000000000000000000055",
1651
+ "value": {
1652
+ "id": "P-0000000000000000000055",
1653
+ "batchId": "B-000000000000000000003M",
1654
+ "recipientId": "R-0000000000000000000007",
1655
+ "accountId": "A-000000000000000000001l",
1656
+ "status": "processed",
1657
+ "amountSide": "source",
1658
+ "sourceAmount": "90.00",
1659
+ "sourceCurrency": "USD",
1660
+ "targetAmount": "89.25",
1661
+ "targetCurrency": "USD",
1662
+ "exchangeRate": "1.000000",
1663
+ "fees": "0.75",
1664
+ "recipientFees": "0.75",
1665
+ "merchantFees": "0.00",
1666
+ "coverFees": false,
1667
+ "payoutMethod": "venmo",
1668
+ "memo": "Lower thirds",
1669
+ "externalId": null,
1670
+ "category": null,
1671
+ "tags": [],
1672
+ "failureMessage": null,
1673
+ "initiatedAt": "2026-08-14T15:05:00.000Z",
1674
+ "processedAt": "2026-08-14T15:05:00.000Z",
1675
+ "createdAt": "2026-08-13T10:00:00.000Z",
1676
+ "updatedAt": "2026-08-14T15:05:00.000Z"
1677
+ }
1678
+ },
1679
+ {
1680
+ "action": "upsert",
1681
+ "packageId": "trolley",
1682
+ "namespace": "payments",
1683
+ "rowId": "B-000000000000000000003N:P-0000000000000000000056",
1684
+ "value": {
1685
+ "id": "P-0000000000000000000056",
1686
+ "batchId": "B-000000000000000000003N",
1687
+ "recipientId": "R-0000000000000000000004",
1688
+ "accountId": "A-000000000000000000001i",
1689
+ "status": "processed",
1690
+ "amountSide": "source",
1691
+ "sourceAmount": "250.00",
1692
+ "sourceCurrency": "USD",
1693
+ "targetAmount": "194.47",
1694
+ "targetCurrency": "GBP",
1695
+ "exchangeRate": "0.781000",
1696
+ "fees": "1.00",
1697
+ "recipientFees": "1.00",
1698
+ "merchantFees": "0.00",
1699
+ "coverFees": false,
1700
+ "payoutMethod": "bank-transfer",
1701
+ "memo": "Interview edit",
1702
+ "externalId": null,
1703
+ "category": null,
1704
+ "tags": [],
1705
+ "failureMessage": null,
1706
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
1707
+ "processedAt": "2026-08-21T15:10:00.000Z",
1708
+ "createdAt": "2026-08-20T10:00:00.000Z",
1709
+ "updatedAt": "2026-08-21T15:10:00.000Z"
1710
+ }
1711
+ },
1712
+ {
1713
+ "action": "upsert",
1714
+ "packageId": "trolley",
1715
+ "namespace": "payments",
1716
+ "rowId": "B-000000000000000000003N:P-0000000000000000000057",
1717
+ "value": {
1718
+ "id": "P-0000000000000000000057",
1719
+ "batchId": "B-000000000000000000003N",
1720
+ "recipientId": "R-0000000000000000000005",
1721
+ "accountId": "A-000000000000000000001j",
1722
+ "status": "processed",
1723
+ "amountSide": "source",
1724
+ "sourceAmount": "300.00",
1725
+ "sourceCurrency": "USD",
1726
+ "targetAmount": "272.69",
1727
+ "targetCurrency": "EUR",
1728
+ "exchangeRate": "0.912000",
1729
+ "fees": "1.00",
1730
+ "recipientFees": "1.00",
1731
+ "merchantFees": "0.00",
1732
+ "coverFees": false,
1733
+ "payoutMethod": "bank-transfer",
1734
+ "memo": "Color consult",
1735
+ "externalId": null,
1736
+ "category": null,
1737
+ "tags": [],
1738
+ "failureMessage": null,
1739
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
1740
+ "processedAt": "2026-08-21T15:10:00.000Z",
1741
+ "createdAt": "2026-08-20T10:00:00.000Z",
1742
+ "updatedAt": "2026-08-21T15:10:00.000Z"
1743
+ }
1744
+ },
1745
+ {
1746
+ "action": "upsert",
1747
+ "packageId": "trolley",
1748
+ "namespace": "payments",
1749
+ "rowId": "B-000000000000000000003N:P-0000000000000000000058",
1750
+ "value": {
1751
+ "id": "P-0000000000000000000058",
1752
+ "batchId": "B-000000000000000000003N",
1753
+ "recipientId": "R-0000000000000000000007",
1754
+ "accountId": "A-000000000000000000001l",
1755
+ "status": "processed",
1756
+ "amountSide": "source",
1757
+ "sourceAmount": "60.00",
1758
+ "sourceCurrency": "USD",
1759
+ "targetAmount": "59.25",
1760
+ "targetCurrency": "USD",
1761
+ "exchangeRate": "1.000000",
1762
+ "fees": "0.75",
1763
+ "recipientFees": "0.75",
1764
+ "merchantFees": "0.00",
1765
+ "coverFees": false,
1766
+ "payoutMethod": "venmo",
1767
+ "memo": "GIF loops",
1768
+ "externalId": null,
1769
+ "category": null,
1770
+ "tags": [],
1771
+ "failureMessage": null,
1772
+ "initiatedAt": "2026-08-21T15:10:00.000Z",
1773
+ "processedAt": "2026-08-21T15:10:00.000Z",
1774
+ "createdAt": "2026-08-20T10:00:00.000Z",
1775
+ "updatedAt": "2026-08-21T15:10:00.000Z"
1776
+ }
1777
+ },
1778
+ {
1779
+ "action": "upsert",
1780
+ "packageId": "trolley",
1781
+ "namespace": "payments",
1782
+ "rowId": "B-000000000000000000003O:P-0000000000000000000059",
1783
+ "value": {
1784
+ "id": "P-0000000000000000000059",
1785
+ "batchId": "B-000000000000000000003O",
1786
+ "recipientId": "R-0000000000000000000002",
1787
+ "accountId": "A-000000000000000000001e",
1788
+ "status": "processed",
1789
+ "amountSide": "source",
1790
+ "sourceAmount": "1500.00",
1791
+ "sourceCurrency": "USD",
1792
+ "targetAmount": "1497.50",
1793
+ "targetCurrency": "USD",
1794
+ "exchangeRate": "1.000000",
1795
+ "fees": "2.50",
1796
+ "recipientFees": "2.50",
1797
+ "merchantFees": "0.00",
1798
+ "coverFees": false,
1799
+ "payoutMethod": "check",
1800
+ "memo": "August retainer",
1801
+ "externalId": null,
1802
+ "category": null,
1803
+ "tags": [],
1804
+ "failureMessage": null,
1805
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
1806
+ "processedAt": "2026-08-28T14:45:00.000Z",
1807
+ "createdAt": "2026-08-27T09:00:00.000Z",
1808
+ "updatedAt": "2026-08-28T14:45:00.000Z"
1809
+ }
1810
+ },
1811
+ {
1812
+ "action": "upsert",
1813
+ "packageId": "trolley",
1814
+ "namespace": "payments",
1815
+ "rowId": "B-000000000000000000003O:P-000000000000000000005A",
1816
+ "value": {
1817
+ "id": "P-000000000000000000005A",
1818
+ "batchId": "B-000000000000000000003O",
1819
+ "recipientId": "R-0000000000000000000008",
1820
+ "accountId": "A-000000000000000000001m",
1821
+ "status": "processed",
1822
+ "amountSide": "source",
1823
+ "sourceAmount": "900.00",
1824
+ "sourceCurrency": "USD",
1825
+ "targetAmount": "15498.76",
1826
+ "targetCurrency": "MXN",
1827
+ "exchangeRate": "17.240000",
1828
+ "fees": "1.00",
1829
+ "recipientFees": "1.00",
1830
+ "merchantFees": "0.00",
1831
+ "coverFees": false,
1832
+ "payoutMethod": "bank-transfer",
1833
+ "memo": "Animation retainer",
1834
+ "externalId": null,
1835
+ "category": "services",
1836
+ "tags": [],
1837
+ "failureMessage": null,
1838
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
1839
+ "processedAt": "2026-08-28T14:45:00.000Z",
1840
+ "createdAt": "2026-08-27T09:00:00.000Z",
1841
+ "updatedAt": "2026-08-28T14:45:00.000Z"
1842
+ }
1843
+ },
1844
+ {
1845
+ "action": "upsert",
1846
+ "packageId": "trolley",
1847
+ "namespace": "payments",
1848
+ "rowId": "B-000000000000000000003O:P-000000000000000000005B",
1849
+ "value": {
1850
+ "id": "P-000000000000000000005B",
1851
+ "batchId": "B-000000000000000000003O",
1852
+ "recipientId": "R-0000000000000000000001",
1853
+ "accountId": "A-000000000000000000001d",
1854
+ "status": "processed",
1855
+ "amountSide": "source",
1856
+ "sourceAmount": "75.00",
1857
+ "sourceCurrency": "USD",
1858
+ "targetAmount": "74.00",
1859
+ "targetCurrency": "USD",
1860
+ "exchangeRate": "1.000000",
1861
+ "fees": "1.00",
1862
+ "recipientFees": "1.00",
1863
+ "merchantFees": "0.00",
1864
+ "coverFees": false,
1865
+ "payoutMethod": "bank-transfer",
1866
+ "memo": "Icon set",
1867
+ "externalId": null,
1868
+ "category": null,
1869
+ "tags": [],
1870
+ "failureMessage": null,
1871
+ "initiatedAt": "2026-08-28T14:45:00.000Z",
1872
+ "processedAt": "2026-08-28T14:45:00.000Z",
1873
+ "createdAt": "2026-08-27T09:00:00.000Z",
1874
+ "updatedAt": "2026-08-28T14:45:00.000Z"
1875
+ }
1876
+ },
1877
+ {
1878
+ "action": "upsert",
1879
+ "packageId": "trolley",
1880
+ "namespace": "payments",
1881
+ "rowId": "B-000000000000000000003P:P-000000000000000000005C",
1882
+ "value": {
1883
+ "id": "P-000000000000000000005C",
1884
+ "batchId": "B-000000000000000000003P",
1885
+ "recipientId": "R-0000000000000000000003",
1886
+ "accountId": "A-000000000000000000001h",
1887
+ "status": "failed",
1888
+ "amountSide": "source",
1889
+ "sourceAmount": "120.00",
1890
+ "sourceCurrency": "USD",
1891
+ "targetAmount": "160.89",
1892
+ "targetCurrency": "CAD",
1893
+ "exchangeRate": "1.352000",
1894
+ "fees": "1.00",
1895
+ "recipientFees": "1.00",
1896
+ "merchantFees": "0.00",
1897
+ "coverFees": false,
1898
+ "payoutMethod": "bank-transfer",
1899
+ "memo": "Subtitle fixes",
1900
+ "externalId": null,
1901
+ "category": null,
1902
+ "tags": [],
1903
+ "failureMessage": "Recipient has no primary payout method",
1904
+ "initiatedAt": "2026-08-29T11:00:00.000Z",
1905
+ "processedAt": null,
1906
+ "createdAt": "2026-08-29T10:30:00.000Z",
1907
+ "updatedAt": "2026-08-29T11:00:00.000Z"
1908
+ }
1909
+ },
1910
+ {
1911
+ "action": "upsert",
1912
+ "packageId": "trolley",
1913
+ "namespace": "payment_index",
1914
+ "rowId": "P-000000000000000000004r",
1915
+ "value": {
1916
+ "batchId": "B-000000000000000000003F"
1917
+ }
1918
+ },
1919
+ {
1920
+ "action": "upsert",
1921
+ "packageId": "trolley",
1922
+ "namespace": "payment_index",
1923
+ "rowId": "P-000000000000000000004s",
1924
+ "value": {
1925
+ "batchId": "B-000000000000000000003F"
1926
+ }
1927
+ },
1928
+ {
1929
+ "action": "upsert",
1930
+ "packageId": "trolley",
1931
+ "namespace": "payment_index",
1932
+ "rowId": "P-000000000000000000004t",
1933
+ "value": {
1934
+ "batchId": "B-000000000000000000003F"
1935
+ }
1936
+ },
1937
+ {
1938
+ "action": "upsert",
1939
+ "packageId": "trolley",
1940
+ "namespace": "payment_index",
1941
+ "rowId": "P-000000000000000000004u",
1942
+ "value": {
1943
+ "batchId": "B-000000000000000000003G"
1944
+ }
1945
+ },
1946
+ {
1947
+ "action": "upsert",
1948
+ "packageId": "trolley",
1949
+ "namespace": "payment_index",
1950
+ "rowId": "P-000000000000000000004v",
1951
+ "value": {
1952
+ "batchId": "B-000000000000000000003G"
1953
+ }
1954
+ },
1955
+ {
1956
+ "action": "upsert",
1957
+ "packageId": "trolley",
1958
+ "namespace": "payment_index",
1959
+ "rowId": "P-000000000000000000004w",
1960
+ "value": {
1961
+ "batchId": "B-000000000000000000003H"
1962
+ }
1963
+ },
1964
+ {
1965
+ "action": "upsert",
1966
+ "packageId": "trolley",
1967
+ "namespace": "payment_index",
1968
+ "rowId": "P-000000000000000000004x",
1969
+ "value": {
1970
+ "batchId": "B-000000000000000000003H"
1971
+ }
1972
+ },
1973
+ {
1974
+ "action": "upsert",
1975
+ "packageId": "trolley",
1976
+ "namespace": "payment_index",
1977
+ "rowId": "P-000000000000000000004y",
1978
+ "value": {
1979
+ "batchId": "B-000000000000000000003I"
1980
+ }
1981
+ },
1982
+ {
1983
+ "action": "upsert",
1984
+ "packageId": "trolley",
1985
+ "namespace": "payment_index",
1986
+ "rowId": "P-000000000000000000004z",
1987
+ "value": {
1988
+ "batchId": "B-000000000000000000003I"
1989
+ }
1990
+ },
1991
+ {
1992
+ "action": "upsert",
1993
+ "packageId": "trolley",
1994
+ "namespace": "payment_index",
1995
+ "rowId": "P-0000000000000000000050",
1996
+ "value": {
1997
+ "batchId": "B-000000000000000000003J"
1998
+ }
1999
+ },
2000
+ {
2001
+ "action": "upsert",
2002
+ "packageId": "trolley",
2003
+ "namespace": "payment_index",
2004
+ "rowId": "P-0000000000000000000051",
2005
+ "value": {
2006
+ "batchId": "B-000000000000000000003L"
2007
+ }
2008
+ },
2009
+ {
2010
+ "action": "upsert",
2011
+ "packageId": "trolley",
2012
+ "namespace": "payment_index",
2013
+ "rowId": "P-0000000000000000000052",
2014
+ "value": {
2015
+ "batchId": "B-000000000000000000003L"
2016
+ }
2017
+ },
2018
+ {
2019
+ "action": "upsert",
2020
+ "packageId": "trolley",
2021
+ "namespace": "payment_index",
2022
+ "rowId": "P-0000000000000000000053",
2023
+ "value": {
2024
+ "batchId": "B-000000000000000000003L"
2025
+ }
2026
+ },
2027
+ {
2028
+ "action": "upsert",
2029
+ "packageId": "trolley",
2030
+ "namespace": "payment_index",
2031
+ "rowId": "P-0000000000000000000054",
2032
+ "value": {
2033
+ "batchId": "B-000000000000000000003M"
2034
+ }
2035
+ },
2036
+ {
2037
+ "action": "upsert",
2038
+ "packageId": "trolley",
2039
+ "namespace": "payment_index",
2040
+ "rowId": "P-0000000000000000000055",
2041
+ "value": {
2042
+ "batchId": "B-000000000000000000003M"
2043
+ }
2044
+ },
2045
+ {
2046
+ "action": "upsert",
2047
+ "packageId": "trolley",
2048
+ "namespace": "payment_index",
2049
+ "rowId": "P-0000000000000000000056",
2050
+ "value": {
2051
+ "batchId": "B-000000000000000000003N"
2052
+ }
2053
+ },
2054
+ {
2055
+ "action": "upsert",
2056
+ "packageId": "trolley",
2057
+ "namespace": "payment_index",
2058
+ "rowId": "P-0000000000000000000057",
2059
+ "value": {
2060
+ "batchId": "B-000000000000000000003N"
2061
+ }
2062
+ },
2063
+ {
2064
+ "action": "upsert",
2065
+ "packageId": "trolley",
2066
+ "namespace": "payment_index",
2067
+ "rowId": "P-0000000000000000000058",
2068
+ "value": {
2069
+ "batchId": "B-000000000000000000003N"
2070
+ }
2071
+ },
2072
+ {
2073
+ "action": "upsert",
2074
+ "packageId": "trolley",
2075
+ "namespace": "payment_index",
2076
+ "rowId": "P-0000000000000000000059",
2077
+ "value": {
2078
+ "batchId": "B-000000000000000000003O"
2079
+ }
2080
+ },
2081
+ {
2082
+ "action": "upsert",
2083
+ "packageId": "trolley",
2084
+ "namespace": "payment_index",
2085
+ "rowId": "P-000000000000000000005A",
2086
+ "value": {
2087
+ "batchId": "B-000000000000000000003O"
2088
+ }
2089
+ },
2090
+ {
2091
+ "action": "upsert",
2092
+ "packageId": "trolley",
2093
+ "namespace": "payment_index",
2094
+ "rowId": "P-000000000000000000005B",
2095
+ "value": {
2096
+ "batchId": "B-000000000000000000003O"
2097
+ }
2098
+ },
2099
+ {
2100
+ "action": "upsert",
2101
+ "packageId": "trolley",
2102
+ "namespace": "payment_index",
2103
+ "rowId": "P-000000000000000000005C",
2104
+ "value": {
2105
+ "batchId": "B-000000000000000000003P"
2106
+ }
2107
+ }
2108
+ ]
2109
+ }