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