@firedrill-tools/salesforce 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 (41) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +156 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/api-limit-exceeded.scenario.json +11 -0
  5. package/firedrill/baseline.scenario.json +2213 -0
  6. package/firedrill/conformance.suite.json +23 -0
  7. package/firedrill/row-locked.scenario.json +11 -0
  8. package/firedrill/salesforce-api-limit-exceeded.drill.json +336 -0
  9. package/firedrill/salesforce-collections-composite.drill.json +277 -0
  10. package/firedrill/salesforce-denied.drill.json +74 -0
  11. package/firedrill/salesforce-fresh-install.drill.json +86 -0
  12. package/firedrill/salesforce-inactive-user.drill.json +43 -0
  13. package/firedrill/salesforce-invalid-session.drill.json +336 -0
  14. package/firedrill/salesforce-large-responses.drill.json +138 -0
  15. package/firedrill/salesforce-mcp-aliases.drill.json +156 -0
  16. package/firedrill/salesforce-profile-permissions.drill.json +241 -0
  17. package/firedrill/salesforce-read-only.drill.json +154 -0
  18. package/firedrill/salesforce-rest-flow.drill.json +714 -0
  19. package/firedrill/salesforce-row-locked.drill.json +227 -0
  20. package/firedrill/salesforce-sharing.drill.json +201 -0
  21. package/firedrill/salesforce-soql.drill.json +139 -0
  22. package/firedrill/salesforce-tight-limits.drill.json +336 -0
  23. package/firedrill/salesforce-write-committed-lost.drill.json +176 -0
  24. package/firedrill/tight-limits.scenario.json +41 -0
  25. package/firedrill/tools/salesforce/behavior.mjs +637 -0
  26. package/firedrill/tools/salesforce/lib/bytes.mjs +56 -0
  27. package/firedrill/tools/salesforce/lib/ids.mjs +68 -0
  28. package/firedrill/tools/salesforce/lib/match.mjs +352 -0
  29. package/firedrill/tools/salesforce/lib/records.mjs +506 -0
  30. package/firedrill/tools/salesforce/lib/schema.mjs +429 -0
  31. package/firedrill/tools/salesforce/lib/search.mjs +92 -0
  32. package/firedrill/tools/salesforce/lib/soql.mjs +1119 -0
  33. package/firedrill/tools/salesforce/lib/state.mjs +378 -0
  34. package/firedrill/tools/salesforce/lib/wire.mjs +109 -0
  35. package/firedrill/tools/salesforce/salesforce.tool.json +3939 -0
  36. package/firedrill/world.json +2705 -0
  37. package/firedrill/write-committed-lost.scenario.json +11 -0
  38. package/firedrill.json +5 -0
  39. package/package.json +64 -0
  40. package/starter.json +2212 -0
  41. package/test/conformance.mjs +1122 -0
package/starter.json ADDED
@@ -0,0 +1,2212 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "virtualTimeUs": 1789376400000000,
4
+ "state": [
5
+ {
6
+ "action": "upsert",
7
+ "packageId": "salesforce",
8
+ "namespace": "meta",
9
+ "rowId": "counters",
10
+ "value": {
11
+ "nextRecordNumber": 1001
12
+ }
13
+ },
14
+ {
15
+ "action": "upsert",
16
+ "packageId": "salesforce",
17
+ "namespace": "org",
18
+ "rowId": "org",
19
+ "value": {
20
+ "organizationId": "00DFd0000000001MAA",
21
+ "name": "Brightwater Instruments",
22
+ "instanceUrl": "https://brightwater.example.my.salesforce.test",
23
+ "myDomain": "brightwater",
24
+ "timeZoneSidKey": "Europe/Amsterdam",
25
+ "defaultCurrencyIsoCode": "EUR",
26
+ "defaultLocaleSidKey": "en_GB",
27
+ "orgWideDefaults": {
28
+ "Account": "ReadOnly",
29
+ "Contact": "ControlledByParent",
30
+ "Lead": "ReadWrite",
31
+ "Opportunity": "Private",
32
+ "Task": "Private"
33
+ },
34
+ "dailyApiRequests": {
35
+ "max": 15000,
36
+ "used": 138
37
+ },
38
+ "dataStorageMB": {
39
+ "max": 200,
40
+ "used": 3
41
+ },
42
+ "defaultUserId": "005Fd0000000001IAA",
43
+ "limits": {
44
+ "maxRowsPerNamespace": 10000
45
+ }
46
+ }
47
+ },
48
+ {
49
+ "action": "upsert",
50
+ "packageId": "salesforce",
51
+ "namespace": "custom-fields",
52
+ "rowId": "Account",
53
+ "value": {
54
+ "sobjectType": "Account",
55
+ "fields": [
56
+ {
57
+ "name": "External_Id__c",
58
+ "label": "External Id",
59
+ "type": "text",
60
+ "length": 255,
61
+ "precision": null,
62
+ "scale": null,
63
+ "picklistValues": [],
64
+ "externalId": true,
65
+ "unique": true,
66
+ "required": false,
67
+ "defaultValue": null
68
+ },
69
+ {
70
+ "name": "Customer_Tier__c",
71
+ "label": "Customer Tier",
72
+ "type": "picklist",
73
+ "length": 255,
74
+ "precision": null,
75
+ "scale": null,
76
+ "picklistValues": [
77
+ {
78
+ "label": "Free",
79
+ "value": "Free",
80
+ "default": false
81
+ },
82
+ {
83
+ "label": "Team",
84
+ "value": "Team",
85
+ "default": false
86
+ },
87
+ {
88
+ "label": "Enterprise",
89
+ "value": "Enterprise",
90
+ "default": false
91
+ }
92
+ ],
93
+ "externalId": false,
94
+ "unique": false,
95
+ "required": false,
96
+ "defaultValue": null
97
+ }
98
+ ]
99
+ }
100
+ },
101
+ {
102
+ "action": "upsert",
103
+ "packageId": "salesforce",
104
+ "namespace": "custom-fields",
105
+ "rowId": "Contact",
106
+ "value": {
107
+ "sobjectType": "Contact",
108
+ "fields": [
109
+ {
110
+ "name": "External_Id__c",
111
+ "label": "External Id",
112
+ "type": "text",
113
+ "length": 255,
114
+ "precision": null,
115
+ "scale": null,
116
+ "picklistValues": [],
117
+ "externalId": true,
118
+ "unique": true,
119
+ "required": false,
120
+ "defaultValue": null
121
+ }
122
+ ]
123
+ }
124
+ },
125
+ {
126
+ "action": "upsert",
127
+ "packageId": "salesforce",
128
+ "namespace": "custom-fields",
129
+ "rowId": "Opportunity",
130
+ "value": {
131
+ "sobjectType": "Opportunity",
132
+ "fields": [
133
+ {
134
+ "name": "ARR__c",
135
+ "label": "ARR",
136
+ "type": "currency",
137
+ "length": null,
138
+ "precision": 16,
139
+ "scale": 2,
140
+ "picklistValues": [],
141
+ "externalId": false,
142
+ "unique": false,
143
+ "required": false,
144
+ "defaultValue": null
145
+ }
146
+ ]
147
+ }
148
+ },
149
+ {
150
+ "action": "upsert",
151
+ "packageId": "salesforce",
152
+ "namespace": "profiles",
153
+ "rowId": "00eFd0000000001IAA",
154
+ "value": {
155
+ "Id": "00eFd0000000001IAA",
156
+ "Name": "System Administrator",
157
+ "UserLicense": "Salesforce",
158
+ "objectPermissions": {
159
+ "Account": {
160
+ "create": true,
161
+ "read": true,
162
+ "edit": true,
163
+ "delete": true,
164
+ "viewAll": true,
165
+ "modifyAll": true
166
+ },
167
+ "Contact": {
168
+ "create": true,
169
+ "read": true,
170
+ "edit": true,
171
+ "delete": true,
172
+ "viewAll": true,
173
+ "modifyAll": true
174
+ },
175
+ "Lead": {
176
+ "create": true,
177
+ "read": true,
178
+ "edit": true,
179
+ "delete": true,
180
+ "viewAll": true,
181
+ "modifyAll": true
182
+ },
183
+ "Opportunity": {
184
+ "create": true,
185
+ "read": true,
186
+ "edit": true,
187
+ "delete": true,
188
+ "viewAll": true,
189
+ "modifyAll": true
190
+ },
191
+ "Task": {
192
+ "create": true,
193
+ "read": true,
194
+ "edit": true,
195
+ "delete": true,
196
+ "viewAll": true,
197
+ "modifyAll": true
198
+ }
199
+ },
200
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
201
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
202
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
203
+ }
204
+ },
205
+ {
206
+ "action": "upsert",
207
+ "packageId": "salesforce",
208
+ "namespace": "profiles",
209
+ "rowId": "00eFd0000000002IAA",
210
+ "value": {
211
+ "Id": "00eFd0000000002IAA",
212
+ "Name": "Standard User",
213
+ "UserLicense": "Salesforce",
214
+ "objectPermissions": {
215
+ "Account": {
216
+ "create": true,
217
+ "read": true,
218
+ "edit": true,
219
+ "delete": true,
220
+ "viewAll": false,
221
+ "modifyAll": false
222
+ },
223
+ "Contact": {
224
+ "create": true,
225
+ "read": true,
226
+ "edit": true,
227
+ "delete": true,
228
+ "viewAll": false,
229
+ "modifyAll": false
230
+ },
231
+ "Lead": {
232
+ "create": true,
233
+ "read": true,
234
+ "edit": true,
235
+ "delete": true,
236
+ "viewAll": false,
237
+ "modifyAll": false
238
+ },
239
+ "Opportunity": {
240
+ "create": true,
241
+ "read": true,
242
+ "edit": true,
243
+ "delete": true,
244
+ "viewAll": false,
245
+ "modifyAll": false
246
+ },
247
+ "Task": {
248
+ "create": true,
249
+ "read": true,
250
+ "edit": true,
251
+ "delete": true,
252
+ "viewAll": false,
253
+ "modifyAll": false
254
+ }
255
+ },
256
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
257
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
258
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
259
+ }
260
+ },
261
+ {
262
+ "action": "upsert",
263
+ "packageId": "salesforce",
264
+ "namespace": "profiles",
265
+ "rowId": "00eFd0000000003IAA",
266
+ "value": {
267
+ "Id": "00eFd0000000003IAA",
268
+ "Name": "Read Only",
269
+ "UserLicense": "Salesforce",
270
+ "objectPermissions": {
271
+ "Account": {
272
+ "create": false,
273
+ "read": true,
274
+ "edit": false,
275
+ "delete": false,
276
+ "viewAll": false,
277
+ "modifyAll": false
278
+ },
279
+ "Contact": {
280
+ "create": false,
281
+ "read": true,
282
+ "edit": false,
283
+ "delete": false,
284
+ "viewAll": false,
285
+ "modifyAll": false
286
+ },
287
+ "Lead": {
288
+ "create": false,
289
+ "read": true,
290
+ "edit": false,
291
+ "delete": false,
292
+ "viewAll": false,
293
+ "modifyAll": false
294
+ },
295
+ "Opportunity": {
296
+ "create": false,
297
+ "read": true,
298
+ "edit": false,
299
+ "delete": false,
300
+ "viewAll": false,
301
+ "modifyAll": false
302
+ },
303
+ "Task": {
304
+ "create": false,
305
+ "read": true,
306
+ "edit": false,
307
+ "delete": false,
308
+ "viewAll": false,
309
+ "modifyAll": false
310
+ }
311
+ },
312
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
313
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
314
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
315
+ }
316
+ },
317
+ {
318
+ "action": "upsert",
319
+ "packageId": "salesforce",
320
+ "namespace": "profiles",
321
+ "rowId": "00eFd0000000004IAA",
322
+ "value": {
323
+ "Id": "00eFd0000000004IAA",
324
+ "Name": "Sales Development Rep",
325
+ "UserLicense": "Salesforce",
326
+ "objectPermissions": {
327
+ "Account": {
328
+ "create": false,
329
+ "read": true,
330
+ "edit": false,
331
+ "delete": false,
332
+ "viewAll": false,
333
+ "modifyAll": false
334
+ },
335
+ "Contact": {
336
+ "create": true,
337
+ "read": true,
338
+ "edit": true,
339
+ "delete": false,
340
+ "viewAll": false,
341
+ "modifyAll": false
342
+ },
343
+ "Lead": {
344
+ "create": true,
345
+ "read": true,
346
+ "edit": true,
347
+ "delete": true,
348
+ "viewAll": false,
349
+ "modifyAll": false
350
+ },
351
+ "Opportunity": {
352
+ "create": false,
353
+ "read": false,
354
+ "edit": false,
355
+ "delete": false,
356
+ "viewAll": false,
357
+ "modifyAll": false
358
+ },
359
+ "Task": {
360
+ "create": true,
361
+ "read": true,
362
+ "edit": true,
363
+ "delete": true,
364
+ "viewAll": false,
365
+ "modifyAll": false
366
+ }
367
+ },
368
+ "CreatedDate": "2026-05-02T10:30:00.000+0000",
369
+ "LastModifiedDate": "2026-05-02T10:30:00.000+0000",
370
+ "SystemModstamp": "2026-05-02T10:30:00.000+0000"
371
+ }
372
+ },
373
+ {
374
+ "action": "upsert",
375
+ "packageId": "salesforce",
376
+ "namespace": "users",
377
+ "rowId": "005Fd0000000001IAA",
378
+ "value": {
379
+ "Id": "005Fd0000000001IAA",
380
+ "Username": "maren.solberg@brightwater.example.com",
381
+ "Email": "maren.solberg@brightwater.example.com",
382
+ "FirstName": "Maren",
383
+ "LastName": "Solberg",
384
+ "Name": "Maren Solberg",
385
+ "Alias": "msolb",
386
+ "Title": "VP Revenue Operations",
387
+ "IsActive": true,
388
+ "ProfileId": "00eFd0000000001IAA",
389
+ "UserType": "Standard",
390
+ "TimeZoneSidKey": "Europe/Amsterdam",
391
+ "LocaleSidKey": "en_GB",
392
+ "LanguageLocaleKey": "en_US",
393
+ "EmailEncodingKey": "UTF-8",
394
+ "CreatedDate": "2026-05-01T08:05:00.000+0000",
395
+ "LastModifiedDate": "2026-08-12T14:20:00.000+0000",
396
+ "SystemModstamp": "2026-08-12T14:20:00.000+0000"
397
+ }
398
+ },
399
+ {
400
+ "action": "upsert",
401
+ "packageId": "salesforce",
402
+ "namespace": "users",
403
+ "rowId": "005Fd0000000002IAA",
404
+ "value": {
405
+ "Id": "005Fd0000000002IAA",
406
+ "Username": "diego.alvarez@brightwater.example.com",
407
+ "Email": "diego.alvarez@brightwater.example.com",
408
+ "FirstName": "Diego",
409
+ "LastName": "Álvarez",
410
+ "Name": "Diego Álvarez",
411
+ "Alias": "dalva",
412
+ "Title": "Account Executive",
413
+ "IsActive": true,
414
+ "ProfileId": "00eFd0000000002IAA",
415
+ "UserType": "Standard",
416
+ "TimeZoneSidKey": "Europe/Amsterdam",
417
+ "LocaleSidKey": "en_GB",
418
+ "LanguageLocaleKey": "en_US",
419
+ "EmailEncodingKey": "UTF-8",
420
+ "CreatedDate": "2026-05-01T08:10:00.000+0000",
421
+ "LastModifiedDate": "2026-05-01T08:10:00.000+0000",
422
+ "SystemModstamp": "2026-05-01T08:10:00.000+0000"
423
+ }
424
+ },
425
+ {
426
+ "action": "upsert",
427
+ "packageId": "salesforce",
428
+ "namespace": "users",
429
+ "rowId": "005Fd0000000003IAA",
430
+ "value": {
431
+ "Id": "005Fd0000000003IAA",
432
+ "Username": "aiko.tanaka@brightwater.example.com",
433
+ "Email": "aiko.tanaka@brightwater.example.com",
434
+ "FirstName": "Aiko",
435
+ "LastName": "Tanaka",
436
+ "Name": "Aiko Tanaka",
437
+ "Alias": "atana",
438
+ "Title": "Account Executive",
439
+ "IsActive": true,
440
+ "ProfileId": "00eFd0000000002IAA",
441
+ "UserType": "Standard",
442
+ "TimeZoneSidKey": "Europe/Amsterdam",
443
+ "LocaleSidKey": "en_GB",
444
+ "LanguageLocaleKey": "en_US",
445
+ "EmailEncodingKey": "UTF-8",
446
+ "CreatedDate": "2026-05-01T08:12:00.000+0000",
447
+ "LastModifiedDate": "2026-05-01T08:12:00.000+0000",
448
+ "SystemModstamp": "2026-05-01T08:12:00.000+0000"
449
+ }
450
+ },
451
+ {
452
+ "action": "upsert",
453
+ "packageId": "salesforce",
454
+ "namespace": "users",
455
+ "rowId": "005Fd0000000004IAA",
456
+ "value": {
457
+ "Id": "005Fd0000000004IAA",
458
+ "Username": "ben.okafor@brightwater.example.com",
459
+ "Email": "ben.okafor@brightwater.example.com",
460
+ "FirstName": "Ben",
461
+ "LastName": "Okafor",
462
+ "Name": "Ben Okafor",
463
+ "Alias": "bokaf",
464
+ "Title": "Sales Development Representative",
465
+ "IsActive": true,
466
+ "ProfileId": "00eFd0000000004IAA",
467
+ "UserType": "Standard",
468
+ "TimeZoneSidKey": "Europe/Amsterdam",
469
+ "LocaleSidKey": "en_GB",
470
+ "LanguageLocaleKey": "en_US",
471
+ "EmailEncodingKey": "UTF-8",
472
+ "CreatedDate": "2026-05-02T10:35:00.000+0000",
473
+ "LastModifiedDate": "2026-05-02T10:35:00.000+0000",
474
+ "SystemModstamp": "2026-05-02T10:35:00.000+0000"
475
+ }
476
+ },
477
+ {
478
+ "action": "upsert",
479
+ "packageId": "salesforce",
480
+ "namespace": "users",
481
+ "rowId": "005Fd0000000005IAA",
482
+ "value": {
483
+ "Id": "005Fd0000000005IAA",
484
+ "Username": "lena.fischer@brightwater.example.com",
485
+ "Email": "lena.fischer@brightwater.example.com",
486
+ "FirstName": "Lena",
487
+ "LastName": "Fischer",
488
+ "Name": "Lena Fischer",
489
+ "Alias": "lfisc",
490
+ "Title": "RevOps Analyst",
491
+ "IsActive": true,
492
+ "ProfileId": "00eFd0000000003IAA",
493
+ "UserType": "Standard",
494
+ "TimeZoneSidKey": "Europe/Amsterdam",
495
+ "LocaleSidKey": "en_GB",
496
+ "LanguageLocaleKey": "en_US",
497
+ "EmailEncodingKey": "UTF-8",
498
+ "CreatedDate": "2026-05-03T09:00:00.000+0000",
499
+ "LastModifiedDate": "2026-05-03T09:00:00.000+0000",
500
+ "SystemModstamp": "2026-05-03T09:00:00.000+0000"
501
+ }
502
+ },
503
+ {
504
+ "action": "upsert",
505
+ "packageId": "salesforce",
506
+ "namespace": "users",
507
+ "rowId": "005Fd0000000006IAA",
508
+ "value": {
509
+ "Id": "005Fd0000000006IAA",
510
+ "Username": "jonas.weber@brightwater.example.com",
511
+ "Email": "jonas.weber@brightwater.example.com",
512
+ "FirstName": "Jonas",
513
+ "LastName": "Weber",
514
+ "Name": "Jonas Weber",
515
+ "Alias": "jwebe",
516
+ "Title": "Account Executive",
517
+ "IsActive": false,
518
+ "ProfileId": "00eFd0000000002IAA",
519
+ "UserType": "Standard",
520
+ "TimeZoneSidKey": "Europe/Amsterdam",
521
+ "LocaleSidKey": "en_GB",
522
+ "LanguageLocaleKey": "en_US",
523
+ "EmailEncodingKey": "UTF-8",
524
+ "CreatedDate": "2026-05-01T08:15:00.000+0000",
525
+ "LastModifiedDate": "2026-08-29T17:00:00.000+0000",
526
+ "SystemModstamp": "2026-08-29T17:00:00.000+0000"
527
+ }
528
+ },
529
+ {
530
+ "action": "upsert",
531
+ "packageId": "salesforce",
532
+ "namespace": "accounts",
533
+ "rowId": "001Fd0000000101IAA",
534
+ "value": {
535
+ "Id": "001Fd0000000101IAA",
536
+ "fields": {
537
+ "Name": "Nordlicht Labs GmbH",
538
+ "Type": "Customer - Direct",
539
+ "Industry": "Biotechnology",
540
+ "Website": "https://nordlicht-labs.example.com",
541
+ "Phone": "+49 30 5550 1100",
542
+ "BillingStreet": "Invalidenstraße 117",
543
+ "BillingCity": "Berlin",
544
+ "BillingState": "Berlin",
545
+ "BillingPostalCode": "10115",
546
+ "BillingCountry": "Germany",
547
+ "AnnualRevenue": 48000000,
548
+ "NumberOfEmployees": 340,
549
+ "Description": "Largest direct customer; spectrometer fleet across four sites.",
550
+ "ParentId": null,
551
+ "OwnerId": "005Fd0000000002IAA",
552
+ "External_Id__c": "BW-ACC-0001",
553
+ "Customer_Tier__c": "Enterprise"
554
+ },
555
+ "IsDeleted": false,
556
+ "DeletedDate": null,
557
+ "CreatedDate": "2026-05-04T10:00:00.000+0000",
558
+ "CreatedById": "005Fd0000000002IAA",
559
+ "LastModifiedDate": "2026-09-02T15:45:00.000+0000",
560
+ "LastModifiedById": "005Fd0000000002IAA",
561
+ "SystemModstamp": "2026-09-02T15:45:00.000+0000"
562
+ }
563
+ },
564
+ {
565
+ "action": "upsert",
566
+ "packageId": "salesforce",
567
+ "namespace": "accounts",
568
+ "rowId": "001Fd0000000102IAA",
569
+ "value": {
570
+ "Id": "001Fd0000000102IAA",
571
+ "fields": {
572
+ "Name": "Helix Diagnostics Ltd",
573
+ "Type": "Customer - Direct",
574
+ "Industry": "Healthcare",
575
+ "Website": "https://helix-dx.example.org",
576
+ "Phone": "+44 1223 555 0200",
577
+ "BillingStreet": "12 Science Park Road",
578
+ "BillingCity": "Cambridge",
579
+ "BillingState": "Cambridgeshire",
580
+ "BillingPostalCode": "CB4 0FX",
581
+ "BillingCountry": "United Kingdom",
582
+ "AnnualRevenue": 9500000,
583
+ "NumberOfEmployees": 120,
584
+ "Description": "Clinical analyzer pilot closed in June; expansion under discussion.",
585
+ "ParentId": null,
586
+ "OwnerId": "005Fd0000000003IAA",
587
+ "External_Id__c": "BW-ACC-0002",
588
+ "Customer_Tier__c": "Team"
589
+ },
590
+ "IsDeleted": false,
591
+ "DeletedDate": null,
592
+ "CreatedDate": "2026-05-06T11:30:00.000+0000",
593
+ "CreatedById": "005Fd0000000003IAA",
594
+ "LastModifiedDate": "2026-08-21T09:10:00.000+0000",
595
+ "LastModifiedById": "005Fd0000000003IAA",
596
+ "SystemModstamp": "2026-08-21T09:10:00.000+0000"
597
+ }
598
+ },
599
+ {
600
+ "action": "upsert",
601
+ "packageId": "salesforce",
602
+ "namespace": "accounts",
603
+ "rowId": "001Fd0000000103IAA",
604
+ "value": {
605
+ "Id": "001Fd0000000103IAA",
606
+ "fields": {
607
+ "Name": "Alder Creek Analytical",
608
+ "Type": "Prospect",
609
+ "Industry": "Consulting",
610
+ "Website": "https://aldercreek.example.com",
611
+ "Phone": "+1 503 555 0103",
612
+ "BillingStreet": null,
613
+ "BillingCity": "Portland",
614
+ "BillingState": "Oregon",
615
+ "BillingPostalCode": "97204",
616
+ "BillingCountry": "United States",
617
+ "AnnualRevenue": null,
618
+ "NumberOfEmployees": 12,
619
+ "Description": null,
620
+ "ParentId": null,
621
+ "OwnerId": "005Fd0000000002IAA",
622
+ "External_Id__c": null,
623
+ "Customer_Tier__c": "Free"
624
+ },
625
+ "IsDeleted": false,
626
+ "DeletedDate": null,
627
+ "CreatedDate": "2026-06-11T16:00:00.000+0000",
628
+ "CreatedById": "005Fd0000000002IAA",
629
+ "LastModifiedDate": "2026-06-11T16:00:00.000+0000",
630
+ "LastModifiedById": "005Fd0000000002IAA",
631
+ "SystemModstamp": "2026-06-11T16:00:00.000+0000"
632
+ }
633
+ },
634
+ {
635
+ "action": "upsert",
636
+ "packageId": "salesforce",
637
+ "namespace": "accounts",
638
+ "rowId": "001Fd0000000104IAA",
639
+ "value": {
640
+ "Id": "001Fd0000000104IAA",
641
+ "fields": {
642
+ "Name": "Vantage Biosciences",
643
+ "Type": "Prospect",
644
+ "Industry": "Biotechnology",
645
+ "Website": "https://vantage-bio.example.org",
646
+ "Phone": "+41 61 555 0104",
647
+ "BillingStreet": null,
648
+ "BillingCity": "Basel",
649
+ "BillingState": null,
650
+ "BillingPostalCode": null,
651
+ "BillingCountry": "Switzerland",
652
+ "AnnualRevenue": 2200000,
653
+ "NumberOfEmployees": 85,
654
+ "Description": null,
655
+ "ParentId": null,
656
+ "OwnerId": "005Fd0000000003IAA",
657
+ "External_Id__c": "BW-ACC-0003",
658
+ "Customer_Tier__c": null
659
+ },
660
+ "IsDeleted": false,
661
+ "DeletedDate": null,
662
+ "CreatedDate": "2026-06-18T13:20:00.000+0000",
663
+ "CreatedById": "005Fd0000000003IAA",
664
+ "LastModifiedDate": "2026-08-20T10:00:00.000+0000",
665
+ "LastModifiedById": "005Fd0000000003IAA",
666
+ "SystemModstamp": "2026-08-20T10:00:00.000+0000"
667
+ }
668
+ },
669
+ {
670
+ "action": "upsert",
671
+ "packageId": "salesforce",
672
+ "namespace": "accounts",
673
+ "rowId": "001Fd0000000105IAA",
674
+ "value": {
675
+ "Id": "001Fd0000000105IAA",
676
+ "fields": {
677
+ "Name": "O'Neill Diagnostics",
678
+ "Type": "Customer - Channel",
679
+ "Industry": "Healthcare",
680
+ "Website": "https://oneill-dx.example.com",
681
+ "Phone": "+353 1 555 0105",
682
+ "BillingStreet": null,
683
+ "BillingCity": "Dublin",
684
+ "BillingState": null,
685
+ "BillingPostalCode": null,
686
+ "BillingCountry": "Ireland",
687
+ "AnnualRevenue": 3100000,
688
+ "NumberOfEmployees": 60,
689
+ "Description": null,
690
+ "ParentId": null,
691
+ "OwnerId": "005Fd0000000002IAA",
692
+ "External_Id__c": null,
693
+ "Customer_Tier__c": "Team"
694
+ },
695
+ "IsDeleted": false,
696
+ "DeletedDate": null,
697
+ "CreatedDate": "2026-06-25T09:45:00.000+0000",
698
+ "CreatedById": "005Fd0000000002IAA",
699
+ "LastModifiedDate": "2026-06-25T09:45:00.000+0000",
700
+ "LastModifiedById": "005Fd0000000002IAA",
701
+ "SystemModstamp": "2026-06-25T09:45:00.000+0000"
702
+ }
703
+ },
704
+ {
705
+ "action": "upsert",
706
+ "packageId": "salesforce",
707
+ "namespace": "accounts",
708
+ "rowId": "001Fd0000000106IAA",
709
+ "value": {
710
+ "Id": "001Fd0000000106IAA",
711
+ "fields": {
712
+ "Name": "Meridian Instruments SA",
713
+ "Type": "Technology Partner",
714
+ "Industry": "Manufacturing",
715
+ "Website": "https://meridian-inst.example.com",
716
+ "Phone": "+33 4 55 01 0106",
717
+ "BillingStreet": "18 rue de la Part-Dieu",
718
+ "BillingCity": "Lyon",
719
+ "BillingState": null,
720
+ "BillingPostalCode": "69003",
721
+ "BillingCountry": "France",
722
+ "AnnualRevenue": 32000000,
723
+ "NumberOfEmployees": 5400,
724
+ "Description": "Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Br",
725
+ "ParentId": null,
726
+ "OwnerId": "005Fd0000000001IAA",
727
+ "External_Id__c": null,
728
+ "Customer_Tier__c": "Enterprise"
729
+ },
730
+ "IsDeleted": false,
731
+ "DeletedDate": null,
732
+ "CreatedDate": "2026-05-12T08:30:00.000+0000",
733
+ "CreatedById": "005Fd0000000001IAA",
734
+ "LastModifiedDate": "2026-09-05T11:00:00.000+0000",
735
+ "LastModifiedById": "005Fd0000000001IAA",
736
+ "SystemModstamp": "2026-09-05T11:00:00.000+0000"
737
+ }
738
+ },
739
+ {
740
+ "action": "upsert",
741
+ "packageId": "salesforce",
742
+ "namespace": "accounts",
743
+ "rowId": "001Fd0000000107IAA",
744
+ "value": {
745
+ "Id": "001Fd0000000107IAA",
746
+ "fields": {
747
+ "Name": "Nordlicht Labs GmbH",
748
+ "Type": "Customer - Direct",
749
+ "Industry": "Biotechnology",
750
+ "Website": "https://nordlicht-labs.example.com/hamburg",
751
+ "Phone": "+49 40 5550 1107",
752
+ "BillingStreet": null,
753
+ "BillingCity": "Hamburg",
754
+ "BillingState": null,
755
+ "BillingPostalCode": null,
756
+ "BillingCountry": "Germany",
757
+ "AnnualRevenue": 1800000,
758
+ "NumberOfEmployees": 45,
759
+ "Description": "Hamburg branch (subsidiary of the Berlin headquarters).",
760
+ "ParentId": "001Fd0000000101IAA",
761
+ "OwnerId": "005Fd0000000002IAA",
762
+ "External_Id__c": null,
763
+ "Customer_Tier__c": "Enterprise"
764
+ },
765
+ "IsDeleted": false,
766
+ "DeletedDate": null,
767
+ "CreatedDate": "2026-07-01T10:15:00.000+0000",
768
+ "CreatedById": "005Fd0000000002IAA",
769
+ "LastModifiedDate": "2026-07-01T10:15:00.000+0000",
770
+ "LastModifiedById": "005Fd0000000002IAA",
771
+ "SystemModstamp": "2026-07-01T10:15:00.000+0000"
772
+ }
773
+ },
774
+ {
775
+ "action": "upsert",
776
+ "packageId": "salesforce",
777
+ "namespace": "accounts",
778
+ "rowId": "001Fd0000000108IAA",
779
+ "value": {
780
+ "Id": "001Fd0000000108IAA",
781
+ "fields": {
782
+ "Name": "Kestrel Environmental",
783
+ "Type": "Prospect",
784
+ "Industry": "Energy",
785
+ "Website": "https://kestrel-env.example.org",
786
+ "Phone": "+44 1224 555 0108",
787
+ "BillingStreet": null,
788
+ "BillingCity": "Aberdeen",
789
+ "BillingState": null,
790
+ "BillingPostalCode": null,
791
+ "BillingCountry": "United Kingdom",
792
+ "AnnualRevenue": 6700000,
793
+ "NumberOfEmployees": 210,
794
+ "Description": null,
795
+ "ParentId": null,
796
+ "OwnerId": "005Fd0000000006IAA",
797
+ "External_Id__c": null,
798
+ "Customer_Tier__c": null
799
+ },
800
+ "IsDeleted": false,
801
+ "DeletedDate": null,
802
+ "CreatedDate": "2026-07-14T14:00:00.000+0000",
803
+ "CreatedById": "005Fd0000000006IAA",
804
+ "LastModifiedDate": "2026-07-14T14:00:00.000+0000",
805
+ "LastModifiedById": "005Fd0000000006IAA",
806
+ "SystemModstamp": "2026-07-14T14:00:00.000+0000"
807
+ }
808
+ },
809
+ {
810
+ "action": "upsert",
811
+ "packageId": "salesforce",
812
+ "namespace": "accounts",
813
+ "rowId": "001Fd0000000109IAA",
814
+ "value": {
815
+ "Id": "001Fd0000000109IAA",
816
+ "fields": {
817
+ "Name": "Tidewater University Research",
818
+ "Type": "Customer - Direct",
819
+ "Industry": "Education",
820
+ "Website": "https://tidewater-univ.example.org",
821
+ "Phone": "+1 757 555 0109",
822
+ "BillingStreet": null,
823
+ "BillingCity": "Norfolk",
824
+ "BillingState": "Virginia",
825
+ "BillingPostalCode": null,
826
+ "BillingCountry": "United States",
827
+ "AnnualRevenue": 12000000,
828
+ "NumberOfEmployees": 1500,
829
+ "Description": null,
830
+ "ParentId": null,
831
+ "OwnerId": "005Fd0000000003IAA",
832
+ "External_Id__c": null,
833
+ "Customer_Tier__c": "Team"
834
+ },
835
+ "IsDeleted": false,
836
+ "DeletedDate": null,
837
+ "CreatedDate": "2026-07-22T09:00:00.000+0000",
838
+ "CreatedById": "005Fd0000000003IAA",
839
+ "LastModifiedDate": "2026-09-08T16:30:00.000+0000",
840
+ "LastModifiedById": "005Fd0000000003IAA",
841
+ "SystemModstamp": "2026-09-08T16:30:00.000+0000"
842
+ }
843
+ },
844
+ {
845
+ "action": "upsert",
846
+ "packageId": "salesforce",
847
+ "namespace": "accounts",
848
+ "rowId": "001Fd0000000110IAA",
849
+ "value": {
850
+ "Id": "001Fd0000000110IAA",
851
+ "fields": {
852
+ "Name": "Brightwater Legacy Distributor",
853
+ "Type": "Channel Partner / Reseller",
854
+ "Industry": "Retail",
855
+ "Website": null,
856
+ "Phone": "+31 20 555 0110",
857
+ "BillingStreet": null,
858
+ "BillingCity": "Amsterdam",
859
+ "BillingState": null,
860
+ "BillingPostalCode": null,
861
+ "BillingCountry": "Netherlands",
862
+ "AnnualRevenue": 400000,
863
+ "NumberOfEmployees": 8,
864
+ "Description": null,
865
+ "ParentId": null,
866
+ "OwnerId": "005Fd0000000002IAA",
867
+ "External_Id__c": null,
868
+ "Customer_Tier__c": null
869
+ },
870
+ "IsDeleted": true,
871
+ "DeletedDate": "2026-08-30T17:30:00.000+0000",
872
+ "CreatedDate": "2026-05-20T12:00:00.000+0000",
873
+ "CreatedById": "005Fd0000000002IAA",
874
+ "LastModifiedDate": "2026-08-30T17:30:00.000+0000",
875
+ "LastModifiedById": "005Fd0000000002IAA",
876
+ "SystemModstamp": "2026-08-30T17:30:00.000+0000"
877
+ }
878
+ },
879
+ {
880
+ "action": "upsert",
881
+ "packageId": "salesforce",
882
+ "namespace": "contacts",
883
+ "rowId": "003Fd0000000201IAA",
884
+ "value": {
885
+ "Id": "003Fd0000000201IAA",
886
+ "fields": {
887
+ "FirstName": "Zoë",
888
+ "LastName": "Müller",
889
+ "Name": "Zoë Müller",
890
+ "Salutation": "Dr.",
891
+ "Email": "Zoe.Mueller@nordlicht-labs.example.com",
892
+ "Phone": "+49 30 5550 1201",
893
+ "MobilePhone": "+49 170 555 1201",
894
+ "Title": "Head of Lab Operations",
895
+ "Department": "Operations",
896
+ "AccountId": "001Fd0000000101IAA",
897
+ "MailingCity": "Berlin",
898
+ "MailingCountry": "Germany",
899
+ "LeadSource": "Web",
900
+ "HasOptedOutOfEmail": false,
901
+ "Description": null,
902
+ "OwnerId": "005Fd0000000002IAA",
903
+ "External_Id__c": "BW-CON-0001"
904
+ },
905
+ "IsDeleted": false,
906
+ "DeletedDate": null,
907
+ "CreatedDate": "2026-05-04T10:20:00.000+0000",
908
+ "CreatedById": "005Fd0000000002IAA",
909
+ "LastModifiedDate": "2026-08-15T13:00:00.000+0000",
910
+ "LastModifiedById": "005Fd0000000002IAA",
911
+ "SystemModstamp": "2026-08-15T13:00:00.000+0000"
912
+ }
913
+ },
914
+ {
915
+ "action": "upsert",
916
+ "packageId": "salesforce",
917
+ "namespace": "contacts",
918
+ "rowId": "003Fd0000000202IAA",
919
+ "value": {
920
+ "Id": "003Fd0000000202IAA",
921
+ "fields": {
922
+ "FirstName": "Søren",
923
+ "LastName": "Kjær",
924
+ "Name": "Søren Kjær",
925
+ "Salutation": "Mr.",
926
+ "Email": "soren.kjaer@nordlicht-labs.example.com",
927
+ "Phone": "+49 30 5550 1202",
928
+ "MobilePhone": null,
929
+ "Title": "Procurement Manager",
930
+ "Department": "Procurement",
931
+ "AccountId": "001Fd0000000101IAA",
932
+ "MailingCity": "Berlin",
933
+ "MailingCountry": "Germany",
934
+ "LeadSource": "Partner Referral",
935
+ "HasOptedOutOfEmail": false,
936
+ "Description": null,
937
+ "OwnerId": "005Fd0000000002IAA",
938
+ "External_Id__c": null
939
+ },
940
+ "IsDeleted": false,
941
+ "DeletedDate": null,
942
+ "CreatedDate": "2026-05-04T10:25:00.000+0000",
943
+ "CreatedById": "005Fd0000000002IAA",
944
+ "LastModifiedDate": "2026-05-04T10:25:00.000+0000",
945
+ "LastModifiedById": "005Fd0000000002IAA",
946
+ "SystemModstamp": "2026-05-04T10:25:00.000+0000"
947
+ }
948
+ },
949
+ {
950
+ "action": "upsert",
951
+ "packageId": "salesforce",
952
+ "namespace": "contacts",
953
+ "rowId": "003Fd0000000203IAA",
954
+ "value": {
955
+ "Id": "003Fd0000000203IAA",
956
+ "fields": {
957
+ "FirstName": "Priya",
958
+ "LastName": "Raman",
959
+ "Name": "Priya Raman",
960
+ "Salutation": "Ms.",
961
+ "Email": "priya.raman@nordlicht-labs.example.com",
962
+ "Phone": "+49 30 5550 1203",
963
+ "MobilePhone": null,
964
+ "Title": "Lab Technician",
965
+ "Department": "Operations",
966
+ "AccountId": "001Fd0000000101IAA",
967
+ "MailingCity": "Berlin",
968
+ "MailingCountry": "Germany",
969
+ "LeadSource": null,
970
+ "HasOptedOutOfEmail": true,
971
+ "Description": null,
972
+ "OwnerId": "005Fd0000000002IAA",
973
+ "External_Id__c": null
974
+ },
975
+ "IsDeleted": false,
976
+ "DeletedDate": null,
977
+ "CreatedDate": "2026-06-02T09:00:00.000+0000",
978
+ "CreatedById": "005Fd0000000002IAA",
979
+ "LastModifiedDate": "2026-06-02T09:00:00.000+0000",
980
+ "LastModifiedById": "005Fd0000000002IAA",
981
+ "SystemModstamp": "2026-06-02T09:00:00.000+0000"
982
+ }
983
+ },
984
+ {
985
+ "action": "upsert",
986
+ "packageId": "salesforce",
987
+ "namespace": "contacts",
988
+ "rowId": "003Fd0000000204IAA",
989
+ "value": {
990
+ "Id": "003Fd0000000204IAA",
991
+ "fields": {
992
+ "FirstName": "Callum",
993
+ "LastName": "Reid",
994
+ "Name": "Callum Reid",
995
+ "Salutation": "Mr.",
996
+ "Email": "callum.reid@helix-dx.example.org",
997
+ "Phone": "+44 1223 555 0204",
998
+ "MobilePhone": null,
999
+ "Title": "Director of Clinical Operations",
1000
+ "Department": "Clinical",
1001
+ "AccountId": "001Fd0000000102IAA",
1002
+ "MailingCity": "Cambridge",
1003
+ "MailingCountry": "United Kingdom",
1004
+ "LeadSource": "Web",
1005
+ "HasOptedOutOfEmail": false,
1006
+ "Description": null,
1007
+ "OwnerId": "005Fd0000000003IAA",
1008
+ "External_Id__c": "BW-CON-0002"
1009
+ },
1010
+ "IsDeleted": false,
1011
+ "DeletedDate": null,
1012
+ "CreatedDate": "2026-05-06T11:40:00.000+0000",
1013
+ "CreatedById": "005Fd0000000003IAA",
1014
+ "LastModifiedDate": "2026-07-05T10:00:00.000+0000",
1015
+ "LastModifiedById": "005Fd0000000003IAA",
1016
+ "SystemModstamp": "2026-07-05T10:00:00.000+0000"
1017
+ }
1018
+ },
1019
+ {
1020
+ "action": "upsert",
1021
+ "packageId": "salesforce",
1022
+ "namespace": "contacts",
1023
+ "rowId": "003Fd0000000205IAA",
1024
+ "value": {
1025
+ "Id": "003Fd0000000205IAA",
1026
+ "fields": {
1027
+ "FirstName": "Amara",
1028
+ "LastName": "Osei",
1029
+ "Name": "Amara Osei",
1030
+ "Salutation": "Dr.",
1031
+ "Email": "amara.osei@helix-dx.example.org",
1032
+ "Phone": "+44 1223 555 0205",
1033
+ "MobilePhone": null,
1034
+ "Title": "Quality Manager",
1035
+ "Department": "Quality",
1036
+ "AccountId": "001Fd0000000102IAA",
1037
+ "MailingCity": "Cambridge",
1038
+ "MailingCountry": "United Kingdom",
1039
+ "LeadSource": "Other",
1040
+ "HasOptedOutOfEmail": false,
1041
+ "Description": null,
1042
+ "OwnerId": "005Fd0000000003IAA",
1043
+ "External_Id__c": null
1044
+ },
1045
+ "IsDeleted": false,
1046
+ "DeletedDate": null,
1047
+ "CreatedDate": "2026-06-30T15:00:00.000+0000",
1048
+ "CreatedById": "005Fd0000000003IAA",
1049
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1050
+ "LastModifiedById": "005Fd0000000003IAA",
1051
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1052
+ }
1053
+ },
1054
+ {
1055
+ "action": "upsert",
1056
+ "packageId": "salesforce",
1057
+ "namespace": "contacts",
1058
+ "rowId": "003Fd0000000206IAA",
1059
+ "value": {
1060
+ "Id": "003Fd0000000206IAA",
1061
+ "fields": {
1062
+ "FirstName": "Tom",
1063
+ "LastName": "Hendriks",
1064
+ "Name": "Tom Hendriks",
1065
+ "Salutation": "Mr.",
1066
+ "Email": null,
1067
+ "Phone": "+31 20 555 0206",
1068
+ "MobilePhone": null,
1069
+ "Title": "Field Engineer",
1070
+ "Department": "Service",
1071
+ "AccountId": "001Fd0000000102IAA",
1072
+ "MailingCity": "Amsterdam",
1073
+ "MailingCountry": "Netherlands",
1074
+ "LeadSource": null,
1075
+ "HasOptedOutOfEmail": false,
1076
+ "Description": null,
1077
+ "OwnerId": "005Fd0000000003IAA",
1078
+ "External_Id__c": null
1079
+ },
1080
+ "IsDeleted": false,
1081
+ "DeletedDate": null,
1082
+ "CreatedDate": "2026-07-08T08:45:00.000+0000",
1083
+ "CreatedById": "005Fd0000000003IAA",
1084
+ "LastModifiedDate": "2026-07-08T08:45:00.000+0000",
1085
+ "LastModifiedById": "005Fd0000000003IAA",
1086
+ "SystemModstamp": "2026-07-08T08:45:00.000+0000"
1087
+ }
1088
+ },
1089
+ {
1090
+ "action": "upsert",
1091
+ "packageId": "salesforce",
1092
+ "namespace": "contacts",
1093
+ "rowId": "003Fd0000000207IAA",
1094
+ "value": {
1095
+ "Id": "003Fd0000000207IAA",
1096
+ "fields": {
1097
+ "FirstName": "Isabel",
1098
+ "LastName": "Moreno",
1099
+ "Name": "Isabel Moreno",
1100
+ "Salutation": "Ms.",
1101
+ "Email": "isabel.moreno@aldercreek.example.com",
1102
+ "Phone": "+1 503 555 0207",
1103
+ "MobilePhone": null,
1104
+ "Title": "Founder",
1105
+ "Department": null,
1106
+ "AccountId": "001Fd0000000103IAA",
1107
+ "MailingCity": "Portland",
1108
+ "MailingCountry": "United States",
1109
+ "LeadSource": "Web",
1110
+ "HasOptedOutOfEmail": false,
1111
+ "Description": null,
1112
+ "OwnerId": "005Fd0000000002IAA",
1113
+ "External_Id__c": null
1114
+ },
1115
+ "IsDeleted": false,
1116
+ "DeletedDate": null,
1117
+ "CreatedDate": "2026-06-11T16:10:00.000+0000",
1118
+ "CreatedById": "005Fd0000000002IAA",
1119
+ "LastModifiedDate": "2026-06-11T16:10:00.000+0000",
1120
+ "LastModifiedById": "005Fd0000000002IAA",
1121
+ "SystemModstamp": "2026-06-11T16:10:00.000+0000"
1122
+ }
1123
+ },
1124
+ {
1125
+ "action": "upsert",
1126
+ "packageId": "salesforce",
1127
+ "namespace": "contacts",
1128
+ "rowId": "003Fd0000000208IAA",
1129
+ "value": {
1130
+ "Id": "003Fd0000000208IAA",
1131
+ "fields": {
1132
+ "FirstName": "Lukas",
1133
+ "LastName": "Brandt",
1134
+ "Name": "Lukas Brandt",
1135
+ "Salutation": "Dr.",
1136
+ "Email": "lukas.brandt@vantage-bio.example.org",
1137
+ "Phone": "+41 61 555 0208",
1138
+ "MobilePhone": null,
1139
+ "Title": "Chief Scientific Officer",
1140
+ "Department": "R&D",
1141
+ "AccountId": "001Fd0000000104IAA",
1142
+ "MailingCity": "Basel",
1143
+ "MailingCountry": "Switzerland",
1144
+ "LeadSource": "Purchased List",
1145
+ "HasOptedOutOfEmail": false,
1146
+ "Description": null,
1147
+ "OwnerId": "005Fd0000000003IAA",
1148
+ "External_Id__c": null
1149
+ },
1150
+ "IsDeleted": false,
1151
+ "DeletedDate": null,
1152
+ "CreatedDate": "2026-06-18T13:30:00.000+0000",
1153
+ "CreatedById": "005Fd0000000003IAA",
1154
+ "LastModifiedDate": "2026-06-18T13:30:00.000+0000",
1155
+ "LastModifiedById": "005Fd0000000003IAA",
1156
+ "SystemModstamp": "2026-06-18T13:30:00.000+0000"
1157
+ }
1158
+ },
1159
+ {
1160
+ "action": "upsert",
1161
+ "packageId": "salesforce",
1162
+ "namespace": "contacts",
1163
+ "rowId": "003Fd0000000209IAA",
1164
+ "value": {
1165
+ "Id": "003Fd0000000209IAA",
1166
+ "fields": {
1167
+ "FirstName": "Niamh",
1168
+ "LastName": "O'Neill",
1169
+ "Name": "Niamh O'Neill",
1170
+ "Salutation": "Ms.",
1171
+ "Email": "niamh.oneill@oneill-dx.example.com",
1172
+ "Phone": "+353 1 555 0209",
1173
+ "MobilePhone": null,
1174
+ "Title": "Chief Executive Officer",
1175
+ "Department": null,
1176
+ "AccountId": "001Fd0000000105IAA",
1177
+ "MailingCity": "Dublin",
1178
+ "MailingCountry": "Ireland",
1179
+ "LeadSource": "Phone Inquiry",
1180
+ "HasOptedOutOfEmail": false,
1181
+ "Description": null,
1182
+ "OwnerId": "005Fd0000000002IAA",
1183
+ "External_Id__c": null
1184
+ },
1185
+ "IsDeleted": false,
1186
+ "DeletedDate": null,
1187
+ "CreatedDate": "2026-06-25T09:50:00.000+0000",
1188
+ "CreatedById": "005Fd0000000002IAA",
1189
+ "LastModifiedDate": "2026-06-25T09:50:00.000+0000",
1190
+ "LastModifiedById": "005Fd0000000002IAA",
1191
+ "SystemModstamp": "2026-06-25T09:50:00.000+0000"
1192
+ }
1193
+ },
1194
+ {
1195
+ "action": "upsert",
1196
+ "packageId": "salesforce",
1197
+ "namespace": "contacts",
1198
+ "rowId": "003Fd0000000210IAA",
1199
+ "value": {
1200
+ "Id": "003Fd0000000210IAA",
1201
+ "fields": {
1202
+ "FirstName": "Grace",
1203
+ "LastName": "Adeyemi",
1204
+ "Name": "Grace Adeyemi",
1205
+ "Salutation": "Mrs.",
1206
+ "Email": "grace.adeyemi@meridian-inst.example.com",
1207
+ "Phone": "+33 4 55 01 0210",
1208
+ "MobilePhone": null,
1209
+ "Title": "Plant Manager",
1210
+ "Department": "Manufacturing",
1211
+ "AccountId": "001Fd0000000106IAA",
1212
+ "MailingCity": "Lyon",
1213
+ "MailingCountry": "France",
1214
+ "LeadSource": null,
1215
+ "HasOptedOutOfEmail": false,
1216
+ "Description": null,
1217
+ "OwnerId": "005Fd0000000001IAA",
1218
+ "External_Id__c": null
1219
+ },
1220
+ "IsDeleted": false,
1221
+ "DeletedDate": null,
1222
+ "CreatedDate": "2026-05-12T08:40:00.000+0000",
1223
+ "CreatedById": "005Fd0000000001IAA",
1224
+ "LastModifiedDate": "2026-09-05T11:05:00.000+0000",
1225
+ "LastModifiedById": "005Fd0000000001IAA",
1226
+ "SystemModstamp": "2026-09-05T11:05:00.000+0000"
1227
+ }
1228
+ },
1229
+ {
1230
+ "action": "upsert",
1231
+ "packageId": "salesforce",
1232
+ "namespace": "contacts",
1233
+ "rowId": "003Fd0000000211IAA",
1234
+ "value": {
1235
+ "Id": "003Fd0000000211IAA",
1236
+ "fields": {
1237
+ "FirstName": "Yuki",
1238
+ "LastName": "Sato",
1239
+ "Name": "Yuki Sato",
1240
+ "Salutation": "Prof.",
1241
+ "Email": "yuki.sato@tidewater-univ.example.org",
1242
+ "Phone": "+1 757 555 0211",
1243
+ "MobilePhone": null,
1244
+ "Title": "Research Director",
1245
+ "Department": "Marine Sciences",
1246
+ "AccountId": "001Fd0000000109IAA",
1247
+ "MailingCity": "Norfolk",
1248
+ "MailingCountry": "United States",
1249
+ "LeadSource": "Web",
1250
+ "HasOptedOutOfEmail": false,
1251
+ "Description": null,
1252
+ "OwnerId": "005Fd0000000003IAA",
1253
+ "External_Id__c": null
1254
+ },
1255
+ "IsDeleted": false,
1256
+ "DeletedDate": null,
1257
+ "CreatedDate": "2026-07-22T09:10:00.000+0000",
1258
+ "CreatedById": "005Fd0000000003IAA",
1259
+ "LastModifiedDate": "2026-07-22T09:10:00.000+0000",
1260
+ "LastModifiedById": "005Fd0000000003IAA",
1261
+ "SystemModstamp": "2026-07-22T09:10:00.000+0000"
1262
+ }
1263
+ },
1264
+ {
1265
+ "action": "upsert",
1266
+ "packageId": "salesforce",
1267
+ "namespace": "contacts",
1268
+ "rowId": "003Fd0000000212IAA",
1269
+ "value": {
1270
+ "Id": "003Fd0000000212IAA",
1271
+ "fields": {
1272
+ "FirstName": "Hannah",
1273
+ "LastName": "Walsh",
1274
+ "Name": "Hannah Walsh",
1275
+ "Salutation": "Ms.",
1276
+ "Email": "hannah.walsh@example.org",
1277
+ "Phone": "+44 20 7946 0212",
1278
+ "MobilePhone": null,
1279
+ "Title": "Independent laboratory consultant",
1280
+ "Department": null,
1281
+ "AccountId": null,
1282
+ "MailingCity": "London",
1283
+ "MailingCountry": "United Kingdom",
1284
+ "LeadSource": "Other",
1285
+ "HasOptedOutOfEmail": false,
1286
+ "Description": "Private contact without an account (visible to the owner only).",
1287
+ "OwnerId": "005Fd0000000003IAA",
1288
+ "External_Id__c": null
1289
+ },
1290
+ "IsDeleted": false,
1291
+ "DeletedDate": null,
1292
+ "CreatedDate": "2026-08-03T10:00:00.000+0000",
1293
+ "CreatedById": "005Fd0000000003IAA",
1294
+ "LastModifiedDate": "2026-08-03T10:00:00.000+0000",
1295
+ "LastModifiedById": "005Fd0000000003IAA",
1296
+ "SystemModstamp": "2026-08-03T10:00:00.000+0000"
1297
+ }
1298
+ },
1299
+ {
1300
+ "action": "upsert",
1301
+ "packageId": "salesforce",
1302
+ "namespace": "contacts",
1303
+ "rowId": "003Fd0000000213IAA",
1304
+ "value": {
1305
+ "Id": "003Fd0000000213IAA",
1306
+ "fields": {
1307
+ "FirstName": "Marco",
1308
+ "LastName": "Bellini",
1309
+ "Name": "Marco Bellini",
1310
+ "Salutation": "Mr.",
1311
+ "Email": "marco.bellini@kestrel-env.example.org",
1312
+ "Phone": "+44 1224 555 0213",
1313
+ "MobilePhone": null,
1314
+ "Title": "Site Lead",
1315
+ "Department": null,
1316
+ "AccountId": "001Fd0000000108IAA",
1317
+ "MailingCity": "Aberdeen",
1318
+ "MailingCountry": "United Kingdom",
1319
+ "LeadSource": null,
1320
+ "HasOptedOutOfEmail": false,
1321
+ "Description": null,
1322
+ "OwnerId": "005Fd0000000006IAA",
1323
+ "External_Id__c": null
1324
+ },
1325
+ "IsDeleted": false,
1326
+ "DeletedDate": null,
1327
+ "CreatedDate": "2026-07-14T14:10:00.000+0000",
1328
+ "CreatedById": "005Fd0000000006IAA",
1329
+ "LastModifiedDate": "2026-07-14T14:10:00.000+0000",
1330
+ "LastModifiedById": "005Fd0000000006IAA",
1331
+ "SystemModstamp": "2026-07-14T14:10:00.000+0000"
1332
+ }
1333
+ },
1334
+ {
1335
+ "action": "upsert",
1336
+ "packageId": "salesforce",
1337
+ "namespace": "contacts",
1338
+ "rowId": "003Fd0000000214IAA",
1339
+ "value": {
1340
+ "Id": "003Fd0000000214IAA",
1341
+ "fields": {
1342
+ "FirstName": "Frank",
1343
+ "LastName": "Delacroix",
1344
+ "Name": "Frank Delacroix",
1345
+ "Salutation": "Mr.",
1346
+ "Email": "frank.delacroix@legacy-dist.example.com",
1347
+ "Phone": "+31 20 555 0214",
1348
+ "MobilePhone": null,
1349
+ "Title": "Owner",
1350
+ "Department": null,
1351
+ "AccountId": "001Fd0000000110IAA",
1352
+ "MailingCity": "Amsterdam",
1353
+ "MailingCountry": "Netherlands",
1354
+ "LeadSource": null,
1355
+ "HasOptedOutOfEmail": false,
1356
+ "Description": null,
1357
+ "OwnerId": "005Fd0000000002IAA",
1358
+ "External_Id__c": null
1359
+ },
1360
+ "IsDeleted": true,
1361
+ "DeletedDate": "2026-08-30T17:30:00.000+0000",
1362
+ "CreatedDate": "2026-05-20T12:05:00.000+0000",
1363
+ "CreatedById": "005Fd0000000002IAA",
1364
+ "LastModifiedDate": "2026-08-30T17:30:00.000+0000",
1365
+ "LastModifiedById": "005Fd0000000002IAA",
1366
+ "SystemModstamp": "2026-08-30T17:30:00.000+0000"
1367
+ }
1368
+ },
1369
+ {
1370
+ "action": "upsert",
1371
+ "packageId": "salesforce",
1372
+ "namespace": "leads",
1373
+ "rowId": "00QFd0000000301MAA",
1374
+ "value": {
1375
+ "Id": "00QFd0000000301MAA",
1376
+ "fields": {
1377
+ "FirstName": "Elin",
1378
+ "LastName": "Vasquez",
1379
+ "Name": "Elin Vasquez",
1380
+ "Company": "Cobalt Peak Medical",
1381
+ "Title": "Lab Director",
1382
+ "Email": "elin.vasquez@cobaltpeak.example.com",
1383
+ "Phone": "+1 720 555 0301",
1384
+ "Website": "https://cobaltpeak.example.com",
1385
+ "Status": "Open - Not Contacted",
1386
+ "LeadSource": "Web",
1387
+ "Industry": "Healthcare",
1388
+ "Rating": "Hot",
1389
+ "NumberOfEmployees": 90,
1390
+ "City": "Denver",
1391
+ "Country": "United States",
1392
+ "Description": null,
1393
+ "IsConverted": false,
1394
+ "ConvertedDate": null,
1395
+ "ConvertedAccountId": null,
1396
+ "ConvertedContactId": null,
1397
+ "ConvertedOpportunityId": null,
1398
+ "OwnerId": "005Fd0000000004IAA"
1399
+ },
1400
+ "IsDeleted": false,
1401
+ "DeletedDate": null,
1402
+ "CreatedDate": "2026-09-10T08:00:00.000+0000",
1403
+ "CreatedById": "005Fd0000000004IAA",
1404
+ "LastModifiedDate": "2026-09-10T08:00:00.000+0000",
1405
+ "LastModifiedById": "005Fd0000000004IAA",
1406
+ "SystemModstamp": "2026-09-10T08:00:00.000+0000"
1407
+ }
1408
+ },
1409
+ {
1410
+ "action": "upsert",
1411
+ "packageId": "salesforce",
1412
+ "namespace": "leads",
1413
+ "rowId": "00QFd0000000302MAA",
1414
+ "value": {
1415
+ "Id": "00QFd0000000302MAA",
1416
+ "fields": {
1417
+ "FirstName": "Rahul",
1418
+ "LastName": "Mehta",
1419
+ "Name": "Rahul Mehta",
1420
+ "Company": "Sundial Genomics",
1421
+ "Title": "Head of Platform",
1422
+ "Email": "rahul.mehta@sundial-genomics.example.org",
1423
+ "Phone": "+91 80 5550 0302",
1424
+ "Website": null,
1425
+ "Status": "Working - Contacted",
1426
+ "LeadSource": "Partner Referral",
1427
+ "Industry": "Biotechnology",
1428
+ "Rating": "Warm",
1429
+ "NumberOfEmployees": 400,
1430
+ "City": "Bengaluru",
1431
+ "Country": "India",
1432
+ "Description": null,
1433
+ "IsConverted": false,
1434
+ "ConvertedDate": null,
1435
+ "ConvertedAccountId": null,
1436
+ "ConvertedContactId": null,
1437
+ "ConvertedOpportunityId": null,
1438
+ "OwnerId": "005Fd0000000002IAA"
1439
+ },
1440
+ "IsDeleted": false,
1441
+ "DeletedDate": null,
1442
+ "CreatedDate": "2026-07-02T09:30:00.000+0000",
1443
+ "CreatedById": "005Fd0000000002IAA",
1444
+ "LastModifiedDate": "2026-08-11T12:00:00.000+0000",
1445
+ "LastModifiedById": "005Fd0000000002IAA",
1446
+ "SystemModstamp": "2026-08-11T12:00:00.000+0000"
1447
+ }
1448
+ },
1449
+ {
1450
+ "action": "upsert",
1451
+ "packageId": "salesforce",
1452
+ "namespace": "leads",
1453
+ "rowId": "00QFd0000000303MAA",
1454
+ "value": {
1455
+ "Id": "00QFd0000000303MAA",
1456
+ "fields": {
1457
+ "FirstName": "Chloé",
1458
+ "LastName": "Dubois",
1459
+ "Name": "Chloé Dubois",
1460
+ "Company": "Atelier Pharma",
1461
+ "Title": "Operations Lead",
1462
+ "Email": null,
1463
+ "Phone": "+33 1 55 50 0303",
1464
+ "Website": null,
1465
+ "Status": "Open - Not Contacted",
1466
+ "LeadSource": "Phone Inquiry",
1467
+ "Industry": "Healthcare",
1468
+ "Rating": "Cold",
1469
+ "NumberOfEmployees": null,
1470
+ "City": "Paris",
1471
+ "Country": "France",
1472
+ "Description": null,
1473
+ "IsConverted": false,
1474
+ "ConvertedDate": null,
1475
+ "ConvertedAccountId": null,
1476
+ "ConvertedContactId": null,
1477
+ "ConvertedOpportunityId": null,
1478
+ "OwnerId": "005Fd0000000004IAA"
1479
+ },
1480
+ "IsDeleted": false,
1481
+ "DeletedDate": null,
1482
+ "CreatedDate": "2026-09-01T10:00:00.000+0000",
1483
+ "CreatedById": "005Fd0000000004IAA",
1484
+ "LastModifiedDate": "2026-09-01T10:00:00.000+0000",
1485
+ "LastModifiedById": "005Fd0000000004IAA",
1486
+ "SystemModstamp": "2026-09-01T10:00:00.000+0000"
1487
+ }
1488
+ },
1489
+ {
1490
+ "action": "upsert",
1491
+ "packageId": "salesforce",
1492
+ "namespace": "leads",
1493
+ "rowId": "00QFd0000000304MAA",
1494
+ "value": {
1495
+ "Id": "00QFd0000000304MAA",
1496
+ "fields": {
1497
+ "FirstName": "Omar",
1498
+ "LastName": "Haddad",
1499
+ "Name": "Omar Haddad",
1500
+ "Company": "Levant Diagnostics",
1501
+ "Title": "Procurement",
1502
+ "Email": "omar.haddad@levant-dx.example.com",
1503
+ "Phone": null,
1504
+ "Website": null,
1505
+ "Status": "Closed - Not Converted",
1506
+ "LeadSource": "Purchased List",
1507
+ "Industry": "Healthcare",
1508
+ "Rating": null,
1509
+ "NumberOfEmployees": null,
1510
+ "City": "Beirut",
1511
+ "Country": "Lebanon",
1512
+ "Description": "Budget frozen until next fiscal year.",
1513
+ "IsConverted": false,
1514
+ "ConvertedDate": null,
1515
+ "ConvertedAccountId": null,
1516
+ "ConvertedContactId": null,
1517
+ "ConvertedOpportunityId": null,
1518
+ "OwnerId": "005Fd0000000003IAA"
1519
+ },
1520
+ "IsDeleted": false,
1521
+ "DeletedDate": null,
1522
+ "CreatedDate": "2026-06-15T11:00:00.000+0000",
1523
+ "CreatedById": "005Fd0000000003IAA",
1524
+ "LastModifiedDate": "2026-07-20T09:00:00.000+0000",
1525
+ "LastModifiedById": "005Fd0000000003IAA",
1526
+ "SystemModstamp": "2026-07-20T09:00:00.000+0000"
1527
+ }
1528
+ },
1529
+ {
1530
+ "action": "upsert",
1531
+ "packageId": "salesforce",
1532
+ "namespace": "leads",
1533
+ "rowId": "00QFd0000000305MAA",
1534
+ "value": {
1535
+ "Id": "00QFd0000000305MAA",
1536
+ "fields": {
1537
+ "FirstName": "Sofia",
1538
+ "LastName": "Rossi",
1539
+ "Name": "Sofia Rossi",
1540
+ "Company": "Rossi Laboratori",
1541
+ "Title": "Managing Director",
1542
+ "Email": "sofia.rossi@rossi-lab.example.com",
1543
+ "Phone": "+39 02 5550 0305",
1544
+ "Website": "https://rossi-lab.example.com",
1545
+ "Status": "Working - Contacted",
1546
+ "LeadSource": "Web",
1547
+ "Industry": "Biotechnology",
1548
+ "Rating": "Hot",
1549
+ "NumberOfEmployees": 35,
1550
+ "City": "Milan",
1551
+ "Country": "Italy",
1552
+ "Description": null,
1553
+ "IsConverted": false,
1554
+ "ConvertedDate": null,
1555
+ "ConvertedAccountId": null,
1556
+ "ConvertedContactId": null,
1557
+ "ConvertedOpportunityId": null,
1558
+ "OwnerId": "005Fd0000000002IAA"
1559
+ },
1560
+ "IsDeleted": false,
1561
+ "DeletedDate": null,
1562
+ "CreatedDate": "2026-08-28T14:15:00.000+0000",
1563
+ "CreatedById": "005Fd0000000002IAA",
1564
+ "LastModifiedDate": "2026-09-09T10:20:00.000+0000",
1565
+ "LastModifiedById": "005Fd0000000002IAA",
1566
+ "SystemModstamp": "2026-09-09T10:20:00.000+0000"
1567
+ }
1568
+ },
1569
+ {
1570
+ "action": "upsert",
1571
+ "packageId": "salesforce",
1572
+ "namespace": "leads",
1573
+ "rowId": "00QFd0000000306MAA",
1574
+ "value": {
1575
+ "Id": "00QFd0000000306MAA",
1576
+ "fields": {
1577
+ "FirstName": "Daniel",
1578
+ "LastName": "Park",
1579
+ "Name": "Daniel Park",
1580
+ "Company": "Halcyon Biotech",
1581
+ "Title": "VP Research",
1582
+ "Email": "daniel.park@halcyon-bio.example.org",
1583
+ "Phone": "+82 2 555 0306",
1584
+ "Website": null,
1585
+ "Status": "Open - Not Contacted",
1586
+ "LeadSource": "Other",
1587
+ "Industry": "Biotechnology",
1588
+ "Rating": "Warm",
1589
+ "NumberOfEmployees": 150,
1590
+ "City": "Seoul",
1591
+ "Country": "South Korea",
1592
+ "Description": null,
1593
+ "IsConverted": false,
1594
+ "ConvertedDate": null,
1595
+ "ConvertedAccountId": null,
1596
+ "ConvertedContactId": null,
1597
+ "ConvertedOpportunityId": null,
1598
+ "OwnerId": "005Fd0000000004IAA"
1599
+ },
1600
+ "IsDeleted": false,
1601
+ "DeletedDate": null,
1602
+ "CreatedDate": "2026-09-12T07:45:00.000+0000",
1603
+ "CreatedById": "005Fd0000000004IAA",
1604
+ "LastModifiedDate": "2026-09-12T07:45:00.000+0000",
1605
+ "LastModifiedById": "005Fd0000000004IAA",
1606
+ "SystemModstamp": "2026-09-12T07:45:00.000+0000"
1607
+ }
1608
+ },
1609
+ {
1610
+ "action": "upsert",
1611
+ "packageId": "salesforce",
1612
+ "namespace": "leads",
1613
+ "rowId": "00QFd0000000307MAA",
1614
+ "value": {
1615
+ "Id": "00QFd0000000307MAA",
1616
+ "fields": {
1617
+ "FirstName": "Ingrid",
1618
+ "LastName": "Nilsen",
1619
+ "Name": "Ingrid Nilsen",
1620
+ "Company": "Fjord Analytics",
1621
+ "Title": "CTO",
1622
+ "Email": "ingrid.nilsen@fjord-analytics.example.org",
1623
+ "Phone": "+47 22 55 50 307",
1624
+ "Website": null,
1625
+ "Status": "Working - Contacted",
1626
+ "LeadSource": "Web",
1627
+ "Industry": "Technology",
1628
+ "Rating": "Cold",
1629
+ "NumberOfEmployees": 20,
1630
+ "City": "Bergen",
1631
+ "Country": "Norway",
1632
+ "Description": null,
1633
+ "IsConverted": false,
1634
+ "ConvertedDate": null,
1635
+ "ConvertedAccountId": null,
1636
+ "ConvertedContactId": null,
1637
+ "ConvertedOpportunityId": null,
1638
+ "OwnerId": "005Fd0000000003IAA"
1639
+ },
1640
+ "IsDeleted": false,
1641
+ "DeletedDate": null,
1642
+ "CreatedDate": "2026-05-20T09:00:00.000+0000",
1643
+ "CreatedById": "005Fd0000000003IAA",
1644
+ "LastModifiedDate": "2026-06-02T11:30:00.000+0000",
1645
+ "LastModifiedById": "005Fd0000000003IAA",
1646
+ "SystemModstamp": "2026-06-02T11:30:00.000+0000"
1647
+ }
1648
+ },
1649
+ {
1650
+ "action": "upsert",
1651
+ "packageId": "salesforce",
1652
+ "namespace": "leads",
1653
+ "rowId": "00QFd0000000308MAA",
1654
+ "value": {
1655
+ "Id": "00QFd0000000308MAA",
1656
+ "fields": {
1657
+ "FirstName": "Mateo",
1658
+ "LastName": "Silva",
1659
+ "Name": "Mateo Silva",
1660
+ "Company": "Helix Diagnostics Ltd",
1661
+ "Title": "Clinical Lead",
1662
+ "Email": "mateo.silva@helix-dx.example.org",
1663
+ "Phone": "+44 1223 555 0308",
1664
+ "Website": null,
1665
+ "Status": "Closed - Converted",
1666
+ "LeadSource": "Web",
1667
+ "Industry": "Healthcare",
1668
+ "Rating": "Hot",
1669
+ "NumberOfEmployees": 120,
1670
+ "City": "Cambridge",
1671
+ "Country": "United Kingdom",
1672
+ "Description": null,
1673
+ "IsConverted": true,
1674
+ "ConvertedDate": "2026-06-30",
1675
+ "ConvertedAccountId": "001Fd0000000102IAA",
1676
+ "ConvertedContactId": "003Fd0000000205IAA",
1677
+ "ConvertedOpportunityId": "006Fd0000000403IAA",
1678
+ "OwnerId": "005Fd0000000003IAA"
1679
+ },
1680
+ "IsDeleted": false,
1681
+ "DeletedDate": null,
1682
+ "CreatedDate": "2026-05-05T13:00:00.000+0000",
1683
+ "CreatedById": "005Fd0000000003IAA",
1684
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1685
+ "LastModifiedById": "005Fd0000000003IAA",
1686
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1687
+ }
1688
+ },
1689
+ {
1690
+ "action": "upsert",
1691
+ "packageId": "salesforce",
1692
+ "namespace": "opportunities",
1693
+ "rowId": "006Fd0000000401IAA",
1694
+ "value": {
1695
+ "Id": "006Fd0000000401IAA",
1696
+ "fields": {
1697
+ "Name": "Nordlicht Labs - Spectrometer Fleet Renewal",
1698
+ "AccountId": "001Fd0000000101IAA",
1699
+ "StageName": "Negotiation/Review",
1700
+ "Amount": 184000,
1701
+ "CloseDate": "2026-09-30",
1702
+ "Probability": 90,
1703
+ "Type": "Existing Customer - Upgrade",
1704
+ "LeadSource": "Web",
1705
+ "NextStep": "Legal review of the frame agreement",
1706
+ "Description": null,
1707
+ "IsClosed": false,
1708
+ "IsWon": false,
1709
+ "ForecastCategory": "Commit",
1710
+ "ForecastCategoryName": "Commit",
1711
+ "OwnerId": "005Fd0000000002IAA",
1712
+ "ARR__c": null
1713
+ },
1714
+ "IsDeleted": false,
1715
+ "DeletedDate": null,
1716
+ "CreatedDate": "2026-06-05T10:00:00.000+0000",
1717
+ "CreatedById": "005Fd0000000002IAA",
1718
+ "LastModifiedDate": "2026-09-02T15:45:00.000+0000",
1719
+ "LastModifiedById": "005Fd0000000002IAA",
1720
+ "SystemModstamp": "2026-09-02T15:45:00.000+0000"
1721
+ }
1722
+ },
1723
+ {
1724
+ "action": "upsert",
1725
+ "packageId": "salesforce",
1726
+ "namespace": "opportunities",
1727
+ "rowId": "006Fd0000000402IAA",
1728
+ "value": {
1729
+ "Id": "006Fd0000000402IAA",
1730
+ "fields": {
1731
+ "Name": "Nordlicht Labs - Service Contract 2027",
1732
+ "AccountId": "001Fd0000000101IAA",
1733
+ "StageName": "Proposal/Price Quote",
1734
+ "Amount": 42000,
1735
+ "CloseDate": "2026-10-15",
1736
+ "Probability": 75,
1737
+ "Type": "Existing Customer - Upgrade",
1738
+ "LeadSource": null,
1739
+ "NextStep": "Send revised quote",
1740
+ "Description": null,
1741
+ "IsClosed": false,
1742
+ "IsWon": false,
1743
+ "ForecastCategory": "BestCase",
1744
+ "ForecastCategoryName": "Best Case",
1745
+ "OwnerId": "005Fd0000000002IAA",
1746
+ "ARR__c": null
1747
+ },
1748
+ "IsDeleted": false,
1749
+ "DeletedDate": null,
1750
+ "CreatedDate": "2026-07-19T11:00:00.000+0000",
1751
+ "CreatedById": "005Fd0000000002IAA",
1752
+ "LastModifiedDate": "2026-08-30T09:15:00.000+0000",
1753
+ "LastModifiedById": "005Fd0000000002IAA",
1754
+ "SystemModstamp": "2026-08-30T09:15:00.000+0000"
1755
+ }
1756
+ },
1757
+ {
1758
+ "action": "upsert",
1759
+ "packageId": "salesforce",
1760
+ "namespace": "opportunities",
1761
+ "rowId": "006Fd0000000403IAA",
1762
+ "value": {
1763
+ "Id": "006Fd0000000403IAA",
1764
+ "fields": {
1765
+ "Name": "Helix Diagnostics - Clinical Analyzer Pilot",
1766
+ "AccountId": "001Fd0000000102IAA",
1767
+ "StageName": "Closed Won",
1768
+ "Amount": 96000,
1769
+ "CloseDate": "2026-06-30",
1770
+ "Probability": 100,
1771
+ "Type": "New Customer",
1772
+ "LeadSource": "Web",
1773
+ "NextStep": null,
1774
+ "Description": null,
1775
+ "IsClosed": true,
1776
+ "IsWon": true,
1777
+ "ForecastCategory": "Closed",
1778
+ "ForecastCategoryName": "Closed",
1779
+ "OwnerId": "005Fd0000000003IAA",
1780
+ "ARR__c": 96000
1781
+ },
1782
+ "IsDeleted": false,
1783
+ "DeletedDate": null,
1784
+ "CreatedDate": "2026-05-06T12:00:00.000+0000",
1785
+ "CreatedById": "005Fd0000000003IAA",
1786
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1787
+ "LastModifiedById": "005Fd0000000003IAA",
1788
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1789
+ }
1790
+ },
1791
+ {
1792
+ "action": "upsert",
1793
+ "packageId": "salesforce",
1794
+ "namespace": "opportunities",
1795
+ "rowId": "006Fd0000000404IAA",
1796
+ "value": {
1797
+ "Id": "006Fd0000000404IAA",
1798
+ "fields": {
1799
+ "Name": "Helix Diagnostics - Expansion Phase 2",
1800
+ "AccountId": "001Fd0000000102IAA",
1801
+ "StageName": "Qualification",
1802
+ "Amount": null,
1803
+ "CloseDate": "2026-11-30",
1804
+ "Probability": 10,
1805
+ "Type": "Existing Customer - Upgrade",
1806
+ "LeadSource": null,
1807
+ "NextStep": "Scope the second analyzer line",
1808
+ "Description": null,
1809
+ "IsClosed": false,
1810
+ "IsWon": false,
1811
+ "ForecastCategory": "Pipeline",
1812
+ "ForecastCategoryName": "Pipeline",
1813
+ "OwnerId": "005Fd0000000003IAA",
1814
+ "ARR__c": null
1815
+ },
1816
+ "IsDeleted": false,
1817
+ "DeletedDate": null,
1818
+ "CreatedDate": "2026-08-21T09:00:00.000+0000",
1819
+ "CreatedById": "005Fd0000000003IAA",
1820
+ "LastModifiedDate": "2026-08-21T09:00:00.000+0000",
1821
+ "LastModifiedById": "005Fd0000000003IAA",
1822
+ "SystemModstamp": "2026-08-21T09:00:00.000+0000"
1823
+ }
1824
+ },
1825
+ {
1826
+ "action": "upsert",
1827
+ "packageId": "salesforce",
1828
+ "namespace": "opportunities",
1829
+ "rowId": "006Fd0000000405IAA",
1830
+ "value": {
1831
+ "Id": "006Fd0000000405IAA",
1832
+ "fields": {
1833
+ "Name": "Alder Creek - Starter Bench Kit",
1834
+ "AccountId": "001Fd0000000103IAA",
1835
+ "StageName": "Prospecting",
1836
+ "Amount": 8500,
1837
+ "CloseDate": "2026-09-25",
1838
+ "Probability": 10,
1839
+ "Type": "New Customer",
1840
+ "LeadSource": null,
1841
+ "NextStep": null,
1842
+ "Description": null,
1843
+ "IsClosed": false,
1844
+ "IsWon": false,
1845
+ "ForecastCategory": "Pipeline",
1846
+ "ForecastCategoryName": "Pipeline",
1847
+ "OwnerId": "005Fd0000000002IAA",
1848
+ "ARR__c": null
1849
+ },
1850
+ "IsDeleted": false,
1851
+ "DeletedDate": null,
1852
+ "CreatedDate": "2026-08-12T16:30:00.000+0000",
1853
+ "CreatedById": "005Fd0000000002IAA",
1854
+ "LastModifiedDate": "2026-08-12T16:30:00.000+0000",
1855
+ "LastModifiedById": "005Fd0000000002IAA",
1856
+ "SystemModstamp": "2026-08-12T16:30:00.000+0000"
1857
+ }
1858
+ },
1859
+ {
1860
+ "action": "upsert",
1861
+ "packageId": "salesforce",
1862
+ "namespace": "opportunities",
1863
+ "rowId": "006Fd0000000406IAA",
1864
+ "value": {
1865
+ "Id": "006Fd0000000406IAA",
1866
+ "fields": {
1867
+ "Name": "Vantage Biosciences - Calibration Suite",
1868
+ "AccountId": "001Fd0000000104IAA",
1869
+ "StageName": "Closed Lost",
1870
+ "Amount": 0,
1871
+ "CloseDate": "2026-08-20",
1872
+ "Probability": 0,
1873
+ "Type": "New Customer",
1874
+ "LeadSource": null,
1875
+ "NextStep": null,
1876
+ "Description": "Lost to an in-house solution.",
1877
+ "IsClosed": true,
1878
+ "IsWon": false,
1879
+ "ForecastCategory": "Omitted",
1880
+ "ForecastCategoryName": "Omitted",
1881
+ "OwnerId": "005Fd0000000003IAA",
1882
+ "ARR__c": null
1883
+ },
1884
+ "IsDeleted": false,
1885
+ "DeletedDate": null,
1886
+ "CreatedDate": "2026-06-20T10:00:00.000+0000",
1887
+ "CreatedById": "005Fd0000000003IAA",
1888
+ "LastModifiedDate": "2026-08-20T10:00:00.000+0000",
1889
+ "LastModifiedById": "005Fd0000000003IAA",
1890
+ "SystemModstamp": "2026-08-20T10:00:00.000+0000"
1891
+ }
1892
+ },
1893
+ {
1894
+ "action": "upsert",
1895
+ "packageId": "salesforce",
1896
+ "namespace": "opportunities",
1897
+ "rowId": "006Fd0000000407IAA",
1898
+ "value": {
1899
+ "Id": "006Fd0000000407IAA",
1900
+ "fields": {
1901
+ "Name": "O'Neill Diagnostics - Reagent Subscription",
1902
+ "AccountId": "001Fd0000000105IAA",
1903
+ "StageName": "Qualification",
1904
+ "Amount": 27500,
1905
+ "CloseDate": "2026-12-10",
1906
+ "Probability": 10,
1907
+ "Type": "Existing Customer - Upgrade",
1908
+ "LeadSource": null,
1909
+ "NextStep": null,
1910
+ "Description": null,
1911
+ "IsClosed": false,
1912
+ "IsWon": false,
1913
+ "ForecastCategory": "Pipeline",
1914
+ "ForecastCategoryName": "Pipeline",
1915
+ "OwnerId": "005Fd0000000002IAA",
1916
+ "ARR__c": null
1917
+ },
1918
+ "IsDeleted": false,
1919
+ "DeletedDate": null,
1920
+ "CreatedDate": "2026-08-05T14:00:00.000+0000",
1921
+ "CreatedById": "005Fd0000000002IAA",
1922
+ "LastModifiedDate": "2026-08-05T14:00:00.000+0000",
1923
+ "LastModifiedById": "005Fd0000000002IAA",
1924
+ "SystemModstamp": "2026-08-05T14:00:00.000+0000"
1925
+ }
1926
+ },
1927
+ {
1928
+ "action": "upsert",
1929
+ "packageId": "salesforce",
1930
+ "namespace": "opportunities",
1931
+ "rowId": "006Fd0000000408IAA",
1932
+ "value": {
1933
+ "Id": "006Fd0000000408IAA",
1934
+ "fields": {
1935
+ "Name": "Meridian Instruments - OEM Partnership",
1936
+ "AccountId": "001Fd0000000106IAA",
1937
+ "StageName": "Proposal/Price Quote",
1938
+ "Amount": 150000,
1939
+ "CloseDate": "2026-12-31",
1940
+ "Probability": 75,
1941
+ "Type": "New Customer",
1942
+ "LeadSource": "Partner Referral",
1943
+ "NextStep": "Draft OEM terms",
1944
+ "Description": null,
1945
+ "IsClosed": false,
1946
+ "IsWon": false,
1947
+ "ForecastCategory": "BestCase",
1948
+ "ForecastCategoryName": "Best Case",
1949
+ "OwnerId": "005Fd0000000001IAA",
1950
+ "ARR__c": null
1951
+ },
1952
+ "IsDeleted": false,
1953
+ "DeletedDate": null,
1954
+ "CreatedDate": "2026-07-30T09:30:00.000+0000",
1955
+ "CreatedById": "005Fd0000000001IAA",
1956
+ "LastModifiedDate": "2026-09-05T11:00:00.000+0000",
1957
+ "LastModifiedById": "005Fd0000000001IAA",
1958
+ "SystemModstamp": "2026-09-05T11:00:00.000+0000"
1959
+ }
1960
+ },
1961
+ {
1962
+ "action": "upsert",
1963
+ "packageId": "salesforce",
1964
+ "namespace": "opportunities",
1965
+ "rowId": "006Fd0000000409IAA",
1966
+ "value": {
1967
+ "Id": "006Fd0000000409IAA",
1968
+ "fields": {
1969
+ "Name": "Kestrel Environmental - Field Sensors",
1970
+ "AccountId": "001Fd0000000108IAA",
1971
+ "StageName": "Prospecting",
1972
+ "Amount": 60000,
1973
+ "CloseDate": "2026-10-31",
1974
+ "Probability": 10,
1975
+ "Type": "New Customer",
1976
+ "LeadSource": null,
1977
+ "NextStep": null,
1978
+ "Description": null,
1979
+ "IsClosed": false,
1980
+ "IsWon": false,
1981
+ "ForecastCategory": "Pipeline",
1982
+ "ForecastCategoryName": "Pipeline",
1983
+ "OwnerId": "005Fd0000000006IAA",
1984
+ "ARR__c": null
1985
+ },
1986
+ "IsDeleted": false,
1987
+ "DeletedDate": null,
1988
+ "CreatedDate": "2026-07-15T10:00:00.000+0000",
1989
+ "CreatedById": "005Fd0000000006IAA",
1990
+ "LastModifiedDate": "2026-07-15T10:00:00.000+0000",
1991
+ "LastModifiedById": "005Fd0000000006IAA",
1992
+ "SystemModstamp": "2026-07-15T10:00:00.000+0000"
1993
+ }
1994
+ },
1995
+ {
1996
+ "action": "upsert",
1997
+ "packageId": "salesforce",
1998
+ "namespace": "tasks",
1999
+ "rowId": "00TFd0000000501MAA",
2000
+ "value": {
2001
+ "Id": "00TFd0000000501MAA",
2002
+ "fields": {
2003
+ "Subject": "Send renewal proposal",
2004
+ "Status": "Not Started",
2005
+ "Priority": "High",
2006
+ "ActivityDate": "2026-09-14",
2007
+ "Description": "Attach the revised frame agreement.",
2008
+ "WhoId": "003Fd0000000201IAA",
2009
+ "WhatId": "006Fd0000000401IAA",
2010
+ "IsClosed": false,
2011
+ "OwnerId": "005Fd0000000002IAA"
2012
+ },
2013
+ "IsDeleted": false,
2014
+ "DeletedDate": null,
2015
+ "CreatedDate": "2026-09-10T09:00:00.000+0000",
2016
+ "CreatedById": "005Fd0000000002IAA",
2017
+ "LastModifiedDate": "2026-09-10T09:00:00.000+0000",
2018
+ "LastModifiedById": "005Fd0000000002IAA",
2019
+ "SystemModstamp": "2026-09-10T09:00:00.000+0000"
2020
+ }
2021
+ },
2022
+ {
2023
+ "action": "upsert",
2024
+ "packageId": "salesforce",
2025
+ "namespace": "tasks",
2026
+ "rowId": "00TFd0000000502MAA",
2027
+ "value": {
2028
+ "Id": "00TFd0000000502MAA",
2029
+ "fields": {
2030
+ "Subject": "Call about pilot results",
2031
+ "Status": "Completed",
2032
+ "Priority": "Normal",
2033
+ "ActivityDate": "2026-07-05",
2034
+ "Description": null,
2035
+ "WhoId": "003Fd0000000204IAA",
2036
+ "WhatId": "006Fd0000000403IAA",
2037
+ "IsClosed": true,
2038
+ "OwnerId": "005Fd0000000003IAA"
2039
+ },
2040
+ "IsDeleted": false,
2041
+ "DeletedDate": null,
2042
+ "CreatedDate": "2026-07-01T08:30:00.000+0000",
2043
+ "CreatedById": "005Fd0000000003IAA",
2044
+ "LastModifiedDate": "2026-07-05T10:00:00.000+0000",
2045
+ "LastModifiedById": "005Fd0000000003IAA",
2046
+ "SystemModstamp": "2026-07-05T10:00:00.000+0000"
2047
+ }
2048
+ },
2049
+ {
2050
+ "action": "upsert",
2051
+ "packageId": "salesforce",
2052
+ "namespace": "tasks",
2053
+ "rowId": "00TFd0000000503MAA",
2054
+ "value": {
2055
+ "Id": "00TFd0000000503MAA",
2056
+ "fields": {
2057
+ "Subject": "Qualify budget",
2058
+ "Status": "In Progress",
2059
+ "Priority": "Normal",
2060
+ "ActivityDate": "2026-09-16",
2061
+ "Description": null,
2062
+ "WhoId": "00QFd0000000301MAA",
2063
+ "WhatId": null,
2064
+ "IsClosed": false,
2065
+ "OwnerId": "005Fd0000000004IAA"
2066
+ },
2067
+ "IsDeleted": false,
2068
+ "DeletedDate": null,
2069
+ "CreatedDate": "2026-09-11T10:00:00.000+0000",
2070
+ "CreatedById": "005Fd0000000004IAA",
2071
+ "LastModifiedDate": "2026-09-11T10:00:00.000+0000",
2072
+ "LastModifiedById": "005Fd0000000004IAA",
2073
+ "SystemModstamp": "2026-09-11T10:00:00.000+0000"
2074
+ }
2075
+ },
2076
+ {
2077
+ "action": "upsert",
2078
+ "packageId": "salesforce",
2079
+ "namespace": "tasks",
2080
+ "rowId": "00TFd0000000504MAA",
2081
+ "value": {
2082
+ "Id": "00TFd0000000504MAA",
2083
+ "fields": {
2084
+ "Subject": "Prepare OEM terms",
2085
+ "Status": "Not Started",
2086
+ "Priority": "Normal",
2087
+ "ActivityDate": "2026-09-20",
2088
+ "Description": null,
2089
+ "WhoId": null,
2090
+ "WhatId": "006Fd0000000408IAA",
2091
+ "IsClosed": false,
2092
+ "OwnerId": "005Fd0000000001IAA"
2093
+ },
2094
+ "IsDeleted": false,
2095
+ "DeletedDate": null,
2096
+ "CreatedDate": "2026-09-05T11:10:00.000+0000",
2097
+ "CreatedById": "005Fd0000000001IAA",
2098
+ "LastModifiedDate": "2026-09-05T11:10:00.000+0000",
2099
+ "LastModifiedById": "005Fd0000000001IAA",
2100
+ "SystemModstamp": "2026-09-05T11:10:00.000+0000"
2101
+ }
2102
+ },
2103
+ {
2104
+ "action": "upsert",
2105
+ "packageId": "salesforce",
2106
+ "namespace": "tasks",
2107
+ "rowId": "00TFd0000000505MAA",
2108
+ "value": {
2109
+ "Id": "00TFd0000000505MAA",
2110
+ "fields": {
2111
+ "Subject": "Schedule site visit",
2112
+ "Status": "Not Started",
2113
+ "Priority": "Low",
2114
+ "ActivityDate": "2026-09-01",
2115
+ "Description": null,
2116
+ "WhoId": "003Fd0000000205IAA",
2117
+ "WhatId": "001Fd0000000102IAA",
2118
+ "IsClosed": false,
2119
+ "OwnerId": "005Fd0000000003IAA"
2120
+ },
2121
+ "IsDeleted": false,
2122
+ "DeletedDate": null,
2123
+ "CreatedDate": "2026-08-21T09:30:00.000+0000",
2124
+ "CreatedById": "005Fd0000000003IAA",
2125
+ "LastModifiedDate": "2026-08-21T09:30:00.000+0000",
2126
+ "LastModifiedById": "005Fd0000000003IAA",
2127
+ "SystemModstamp": "2026-08-21T09:30:00.000+0000"
2128
+ }
2129
+ },
2130
+ {
2131
+ "action": "upsert",
2132
+ "packageId": "salesforce",
2133
+ "namespace": "tasks",
2134
+ "rowId": "00TFd0000000506MAA",
2135
+ "value": {
2136
+ "Id": "00TFd0000000506MAA",
2137
+ "fields": {
2138
+ "Subject": "Follow up on sensor spec",
2139
+ "Status": "Waiting on someone else",
2140
+ "Priority": "Normal",
2141
+ "ActivityDate": "2026-09-18",
2142
+ "Description": null,
2143
+ "WhoId": null,
2144
+ "WhatId": "006Fd0000000409IAA",
2145
+ "IsClosed": false,
2146
+ "OwnerId": "005Fd0000000006IAA"
2147
+ },
2148
+ "IsDeleted": false,
2149
+ "DeletedDate": null,
2150
+ "CreatedDate": "2026-08-25T15:00:00.000+0000",
2151
+ "CreatedById": "005Fd0000000006IAA",
2152
+ "LastModifiedDate": "2026-08-25T15:00:00.000+0000",
2153
+ "LastModifiedById": "005Fd0000000006IAA",
2154
+ "SystemModstamp": "2026-08-25T15:00:00.000+0000"
2155
+ }
2156
+ },
2157
+ {
2158
+ "action": "upsert",
2159
+ "packageId": "salesforce",
2160
+ "namespace": "tasks",
2161
+ "rowId": "00TFd0000000507MAA",
2162
+ "value": {
2163
+ "Id": "00TFd0000000507MAA",
2164
+ "fields": {
2165
+ "Subject": "Intro email",
2166
+ "Status": "Not Started",
2167
+ "Priority": "Normal",
2168
+ "ActivityDate": "2026-09-15",
2169
+ "Description": null,
2170
+ "WhoId": "00QFd0000000306MAA",
2171
+ "WhatId": null,
2172
+ "IsClosed": false,
2173
+ "OwnerId": "005Fd0000000004IAA"
2174
+ },
2175
+ "IsDeleted": false,
2176
+ "DeletedDate": null,
2177
+ "CreatedDate": "2026-09-12T08:00:00.000+0000",
2178
+ "CreatedById": "005Fd0000000004IAA",
2179
+ "LastModifiedDate": "2026-09-12T08:00:00.000+0000",
2180
+ "LastModifiedById": "005Fd0000000004IAA",
2181
+ "SystemModstamp": "2026-09-12T08:00:00.000+0000"
2182
+ }
2183
+ },
2184
+ {
2185
+ "action": "upsert",
2186
+ "packageId": "salesforce",
2187
+ "namespace": "tasks",
2188
+ "rowId": "00TFd0000000508MAA",
2189
+ "value": {
2190
+ "Id": "00TFd0000000508MAA",
2191
+ "fields": {
2192
+ "Subject": "Review quality docs",
2193
+ "Status": "Deferred",
2194
+ "Priority": "Low",
2195
+ "ActivityDate": null,
2196
+ "Description": null,
2197
+ "WhoId": null,
2198
+ "WhatId": null,
2199
+ "IsClosed": false,
2200
+ "OwnerId": "005Fd0000000002IAA"
2201
+ },
2202
+ "IsDeleted": false,
2203
+ "DeletedDate": null,
2204
+ "CreatedDate": "2026-08-01T12:00:00.000+0000",
2205
+ "CreatedById": "005Fd0000000002IAA",
2206
+ "LastModifiedDate": "2026-08-01T12:00:00.000+0000",
2207
+ "LastModifiedById": "005Fd0000000002IAA",
2208
+ "SystemModstamp": "2026-08-01T12:00:00.000+0000"
2209
+ }
2210
+ }
2211
+ ]
2212
+ }