@pipedream/salesforce_rest_api 1.2.1 → 1.3.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 (64) hide show
  1. package/README.md +92 -0
  2. package/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +25 -25
  3. package/actions/add-lead-to-campaign/add-lead-to-campaign.mjs +25 -24
  4. package/actions/common/base-create-update.mjs +108 -0
  5. package/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs +11 -3
  6. package/actions/create-account/create-account.mjs +33 -36
  7. package/actions/create-attachment/create-attachment.mjs +36 -50
  8. package/actions/create-campaign/create-campaign.mjs +41 -37
  9. package/actions/create-case/create-case.mjs +41 -37
  10. package/actions/create-casecomment/create-casecomment.mjs +26 -38
  11. package/actions/create-contact/create-contact.mjs +38 -35
  12. package/actions/create-event/create-event.mjs +57 -66
  13. package/actions/create-lead/create-lead.mjs +34 -42
  14. package/actions/create-note/create-note.mjs +24 -43
  15. package/actions/create-opportunity/create-opportunity.mjs +38 -47
  16. package/actions/create-record/create-record.mjs +49 -15
  17. package/actions/create-task/create-task.mjs +50 -42
  18. package/actions/create-user/create-user.mjs +33 -196
  19. package/actions/delete-opportunity/delete-opportunity.mjs +17 -13
  20. package/actions/delete-record/delete-record.mjs +18 -16
  21. package/actions/find-records/find-records.mjs +41 -26
  22. package/actions/insert-blob-data/insert-blob-data.mjs +3 -7
  23. package/actions/post-feed-to-chatter/post-feed-to-chatter.mjs +45 -20
  24. package/actions/search-string/search-string.mjs +22 -20
  25. package/actions/soql-search/soql-search.mjs +13 -8
  26. package/actions/sosl-search/sosl-search.mjs +19 -9
  27. package/actions/update-account/update-account.mjs +54 -41
  28. package/actions/update-contact/update-contact.mjs +59 -40
  29. package/actions/update-opportunity/update-opportunity.mjs +56 -54
  30. package/actions/update-record/update-record.mjs +67 -20
  31. package/common/all-sobjects.mjs +3812 -0
  32. package/common/constants-props.mjs +1539 -0
  33. package/common/props-async-options.mjs +154 -0
  34. package/common/props-utils.mjs +88 -31
  35. package/common/sobjects/account.mjs +349 -22
  36. package/common/sobjects/attachment.mjs +56 -17
  37. package/common/sobjects/campaign.mjs +125 -23
  38. package/common/sobjects/case.mjs +193 -13
  39. package/common/sobjects/caseComment.mjs +28 -4
  40. package/common/sobjects/contact.mjs +207 -43
  41. package/common/sobjects/event.mjs +218 -18
  42. package/common/sobjects/lead.mjs +245 -22
  43. package/common/sobjects/note.mjs +37 -14
  44. package/common/sobjects/opportunity.mjs +148 -22
  45. package/common/sobjects/task.mjs +240 -19
  46. package/common/sobjects/user.mjs +965 -0
  47. package/package.json +2 -2
  48. package/salesforce_rest_api.app.mjs +72 -249
  49. package/sources/common-webhook-methods.mjs +71 -0
  50. package/sources/common.mjs +85 -22
  51. package/sources/new-outbound-message/new-outbound-message.mjs +11 -3
  52. package/sources/new-record-instant/new-record-instant.mjs +95 -7
  53. package/sources/record-deleted-instant/record-deleted-instant.mjs +40 -5
  54. package/sources/record-updated-instant/record-updated-instant.mjs +137 -5
  55. package/actions/common/base.mjs +0 -18
  56. package/actions/find-create-record/find-create-record.mjs +0 -89
  57. package/actions/get-sobject-fields-values/get-sobject-fields-values.mjs +0 -57
  58. package/common/utils.mjs +0 -51
  59. package/sources/common-instant.mjs +0 -146
  60. package/sources/new-record/new-record.mjs +0 -91
  61. package/sources/record-deleted/record-deleted.mjs +0 -51
  62. package/sources/record-updated/record-updated.mjs +0 -94
  63. package/sources/updated-field-on-record/updated-field-on-record.mjs +0 -161
  64. package/sources/updated-field-on-record-instant/updated-field-on-record-instant.mjs +0 -76
@@ -0,0 +1,3812 @@
1
+ // The execution context of additionalProps prevents usage of propDefinitions
2
+ // and of standard async options methods (an arrow function is required)
3
+ // And the execution context of async options prevents any variable "leaking"
4
+ // so the only way is to actually paste these out as plain individual functions,
5
+ // unfortunately, without any references to code outside the function
6
+
7
+ /*
8
+ getRecords: () => this.salesforce.listRecordOptions({ objType: "ObjType",
9
+ nameField: "NameField" })
10
+ */
11
+
12
+ const sobjects = [
13
+ {
14
+ name: "AIInsightAction",
15
+ nameField: "Name",
16
+ getRecords: () =>
17
+ this.salesforce.listRecordOptions({
18
+ objType: "AIInsightAction",
19
+ nameField: "Name",
20
+ }),
21
+ },
22
+ {
23
+ name: "AIInsightFeedback",
24
+ nameField: "Name",
25
+ getRecords: () =>
26
+ this.salesforce.listRecordOptions({
27
+ objType: "AIInsightFeedback",
28
+ nameField: "Name",
29
+ }),
30
+ },
31
+ {
32
+ name: "AIInsightReason",
33
+ nameField: "Name",
34
+ getRecords: () =>
35
+ this.salesforce.listRecordOptions({
36
+ objType: "AIInsightReason",
37
+ nameField: "Name",
38
+ }),
39
+ },
40
+ {
41
+ name: "AIInsightValue",
42
+ nameField: "Name",
43
+ getRecords: () =>
44
+ this.salesforce.listRecordOptions({
45
+ objType: "AIInsightValue",
46
+ nameField: "Name",
47
+ }),
48
+ },
49
+ {
50
+ name: "AIRecordInsight",
51
+ nameField: "Name",
52
+ getRecords: () =>
53
+ this.salesforce.listRecordOptions({
54
+ objType: "AIRecordInsight",
55
+ nameField: "Name",
56
+ }),
57
+ },
58
+ {
59
+ name: "Account",
60
+ nameField: "Name",
61
+ getRecords: () =>
62
+ this.salesforce.listRecordOptions({
63
+ objType: "Account",
64
+ nameField: "Name",
65
+ }),
66
+ },
67
+ {
68
+ name: "AccountCleanInfo",
69
+ nameField: "Name",
70
+ getRecords: () =>
71
+ this.salesforce.listRecordOptions({
72
+ objType: "AccountCleanInfo",
73
+ nameField: "Name",
74
+ }),
75
+ },
76
+ {
77
+ name: "AccountContactRole",
78
+ nameField: "Id",
79
+ getRecords: () =>
80
+ this.salesforce.listRecordOptions({
81
+ objType: "AccountContactRole",
82
+ nameField: "Id",
83
+ }),
84
+ },
85
+ {
86
+ name: "AccountFeed",
87
+ nameField: "Id",
88
+ getRecords: () =>
89
+ this.salesforce.listRecordOptions({
90
+ objType: "AccountFeed",
91
+ nameField: "Id",
92
+ }),
93
+ },
94
+ {
95
+ name: "AccountHistory",
96
+ nameField: "Id",
97
+ getRecords: () =>
98
+ this.salesforce.listRecordOptions({
99
+ objType: "AccountHistory",
100
+ nameField: "Id",
101
+ }),
102
+ },
103
+ {
104
+ name: "AdditionalNumber",
105
+ nameField: "Name",
106
+ getRecords: () =>
107
+ this.salesforce.listRecordOptions({
108
+ objType: "AdditionalNumber",
109
+ nameField: "Name",
110
+ }),
111
+ },
112
+ {
113
+ name: "Address",
114
+ nameField: "Name",
115
+ getRecords: () =>
116
+ this.salesforce.listRecordOptions({
117
+ objType: "Address",
118
+ nameField: "Name",
119
+ }),
120
+ },
121
+ {
122
+ name: "Announcement",
123
+ nameField: "Id",
124
+ getRecords: () =>
125
+ this.salesforce.listRecordOptions({
126
+ objType: "Announcement",
127
+ nameField: "Id",
128
+ }),
129
+ },
130
+ {
131
+ name: "ApexClass",
132
+ nameField: "Name",
133
+ getRecords: () =>
134
+ this.salesforce.listRecordOptions({
135
+ objType: "ApexClass",
136
+ nameField: "Name",
137
+ }),
138
+ },
139
+ {
140
+ name: "ApexComponent",
141
+ nameField: "Name",
142
+ getRecords: () =>
143
+ this.salesforce.listRecordOptions({
144
+ objType: "ApexComponent",
145
+ nameField: "Name",
146
+ }),
147
+ },
148
+ {
149
+ name: "ApexPage",
150
+ nameField: "Name",
151
+ getRecords: () =>
152
+ this.salesforce.listRecordOptions({
153
+ objType: "ApexPage",
154
+ nameField: "Name",
155
+ }),
156
+ },
157
+ {
158
+ name: "ApexTrigger",
159
+ nameField: "Name",
160
+ getRecords: () =>
161
+ this.salesforce.listRecordOptions({
162
+ objType: "ApexTrigger",
163
+ nameField: "Name",
164
+ }),
165
+ },
166
+ {
167
+ name: "ApiAnomalyEventStore",
168
+ nameField: "ApiAnomalyEventNumber",
169
+ getRecords: () =>
170
+ this.salesforce.listRecordOptions({
171
+ objType: "ApiAnomalyEventStore",
172
+ nameField: "ApiAnomalyEventNumber",
173
+ }),
174
+ },
175
+ {
176
+ name: "ApiAnomalyEventStoreFeed",
177
+ nameField: "Id",
178
+ getRecords: () =>
179
+ this.salesforce.listRecordOptions({
180
+ objType: "ApiAnomalyEventStoreFeed",
181
+ nameField: "Id",
182
+ }),
183
+ },
184
+ {
185
+ name: "AppAnalyticsQueryRequest",
186
+ nameField: "Name",
187
+ getRecords: () =>
188
+ this.salesforce.listRecordOptions({
189
+ objType: "AppAnalyticsQueryRequest",
190
+ nameField: "Name",
191
+ }),
192
+ },
193
+ {
194
+ name: "AppUsageAssignment",
195
+ nameField: "Name",
196
+ getRecords: () =>
197
+ this.salesforce.listRecordOptions({
198
+ objType: "AppUsageAssignment",
199
+ nameField: "Name",
200
+ }),
201
+ },
202
+ {
203
+ name: "Asset",
204
+ nameField: "Name",
205
+ getRecords: () =>
206
+ this.salesforce.listRecordOptions({
207
+ objType: "Asset",
208
+ nameField: "Name",
209
+ }),
210
+ },
211
+ {
212
+ name: "AssetAction",
213
+ nameField: "AssetActionNumber",
214
+ getRecords: () =>
215
+ this.salesforce.listRecordOptions({
216
+ objType: "AssetAction",
217
+ nameField: "AssetActionNumber",
218
+ }),
219
+ },
220
+ {
221
+ name: "AssetActionSource",
222
+ nameField: "AssetActionSourceNumber",
223
+ getRecords: () =>
224
+ this.salesforce.listRecordOptions({
225
+ objType: "AssetActionSource",
226
+ nameField: "AssetActionSourceNumber",
227
+ }),
228
+ },
229
+ {
230
+ name: "AssetFeed",
231
+ nameField: "Id",
232
+ getRecords: () =>
233
+ this.salesforce.listRecordOptions({
234
+ objType: "AssetFeed",
235
+ nameField: "Id",
236
+ }),
237
+ },
238
+ {
239
+ name: "AssetHistory",
240
+ nameField: "Id",
241
+ getRecords: () =>
242
+ this.salesforce.listRecordOptions({
243
+ objType: "AssetHistory",
244
+ nameField: "Id",
245
+ }),
246
+ },
247
+ {
248
+ name: "AssetRelationship",
249
+ nameField: "AssetRelationshipNumber",
250
+ getRecords: () =>
251
+ this.salesforce.listRecordOptions({
252
+ objType: "AssetRelationship",
253
+ nameField: "AssetRelationshipNumber",
254
+ }),
255
+ },
256
+ {
257
+ name: "AssetRelationshipFeed",
258
+ nameField: "Id",
259
+ getRecords: () =>
260
+ this.salesforce.listRecordOptions({
261
+ objType: "AssetRelationshipFeed",
262
+ nameField: "Id",
263
+ }),
264
+ },
265
+ {
266
+ name: "AssetRelationshipHistory",
267
+ nameField: "Id",
268
+ getRecords: () =>
269
+ this.salesforce.listRecordOptions({
270
+ objType: "AssetRelationshipHistory",
271
+ nameField: "Id",
272
+ }),
273
+ },
274
+ {
275
+ name: "AssetStatePeriod",
276
+ nameField: "AssetStatePeriodNumber",
277
+ getRecords: () =>
278
+ this.salesforce.listRecordOptions({
279
+ objType: "AssetStatePeriod",
280
+ nameField: "AssetStatePeriodNumber",
281
+ }),
282
+ },
283
+ {
284
+ name: "AssignedResource",
285
+ nameField: "AssignedResourceNumber",
286
+ getRecords: () =>
287
+ this.salesforce.listRecordOptions({
288
+ objType: "AssignedResource",
289
+ nameField: "AssignedResourceNumber",
290
+ }),
291
+ },
292
+ {
293
+ name: "AssignedResourceFeed",
294
+ nameField: "Id",
295
+ getRecords: () =>
296
+ this.salesforce.listRecordOptions({
297
+ objType: "AssignedResourceFeed",
298
+ nameField: "Id",
299
+ }),
300
+ },
301
+ {
302
+ name: "AssociatedLocation",
303
+ nameField: "AssociatedLocationNumber",
304
+ getRecords: () =>
305
+ this.salesforce.listRecordOptions({
306
+ objType: "AssociatedLocation",
307
+ nameField: "AssociatedLocationNumber",
308
+ }),
309
+ },
310
+ {
311
+ name: "AssociatedLocationHistory",
312
+ nameField: "Id",
313
+ getRecords: () =>
314
+ this.salesforce.listRecordOptions({
315
+ objType: "AssociatedLocationHistory",
316
+ nameField: "Id",
317
+ }),
318
+ },
319
+ {
320
+ name: "Attachment",
321
+ nameField: "Name",
322
+ getRecords: () =>
323
+ this.salesforce.listRecordOptions({
324
+ objType: "Attachment",
325
+ nameField: "Name",
326
+ }),
327
+ },
328
+ {
329
+ name: "AuthorizationForm",
330
+ nameField: "Name",
331
+ getRecords: () =>
332
+ this.salesforce.listRecordOptions({
333
+ objType: "AuthorizationForm",
334
+ nameField: "Name",
335
+ }),
336
+ },
337
+ {
338
+ name: "AuthorizationFormConsent",
339
+ nameField: "Name",
340
+ getRecords: () =>
341
+ this.salesforce.listRecordOptions({
342
+ objType: "AuthorizationFormConsent",
343
+ nameField: "Name",
344
+ }),
345
+ },
346
+ {
347
+ name: "AuthorizationFormConsentHistory",
348
+ nameField: "Id",
349
+ getRecords: () =>
350
+ this.salesforce.listRecordOptions({
351
+ objType: "AuthorizationFormConsentHistory",
352
+ nameField: "Id",
353
+ }),
354
+ },
355
+ {
356
+ name: "AuthorizationFormDataUse",
357
+ nameField: "Name",
358
+ getRecords: () =>
359
+ this.salesforce.listRecordOptions({
360
+ objType: "AuthorizationFormDataUse",
361
+ nameField: "Name",
362
+ }),
363
+ },
364
+ {
365
+ name: "AuthorizationFormDataUseHistory",
366
+ nameField: "Id",
367
+ getRecords: () =>
368
+ this.salesforce.listRecordOptions({
369
+ objType: "AuthorizationFormDataUseHistory",
370
+ nameField: "Id",
371
+ }),
372
+ },
373
+ {
374
+ name: "AuthorizationFormHistory",
375
+ nameField: "Id",
376
+ getRecords: () =>
377
+ this.salesforce.listRecordOptions({
378
+ objType: "AuthorizationFormHistory",
379
+ nameField: "Id",
380
+ }),
381
+ },
382
+ {
383
+ name: "AuthorizationFormText",
384
+ nameField: "Name",
385
+ getRecords: () =>
386
+ this.salesforce.listRecordOptions({
387
+ objType: "AuthorizationFormText",
388
+ nameField: "Name",
389
+ }),
390
+ },
391
+ {
392
+ name: "AuthorizationFormTextHistory",
393
+ nameField: "Id",
394
+ getRecords: () =>
395
+ this.salesforce.listRecordOptions({
396
+ objType: "AuthorizationFormTextHistory",
397
+ nameField: "Id",
398
+ }),
399
+ },
400
+ {
401
+ name: "BackgroundOperation",
402
+ nameField: "Name",
403
+ getRecords: () =>
404
+ this.salesforce.listRecordOptions({
405
+ objType: "BackgroundOperation",
406
+ nameField: "Name",
407
+ }),
408
+ },
409
+ {
410
+ name: "BrandTemplate",
411
+ nameField: "Name",
412
+ getRecords: () =>
413
+ this.salesforce.listRecordOptions({
414
+ objType: "BrandTemplate",
415
+ nameField: "Name",
416
+ }),
417
+ },
418
+ {
419
+ name: "BriefcaseAssignment",
420
+ nameField: "Id",
421
+ getRecords: () =>
422
+ this.salesforce.listRecordOptions({
423
+ objType: "BriefcaseAssignment",
424
+ nameField: "Id",
425
+ }),
426
+ },
427
+ {
428
+ name: "BusinessHours",
429
+ nameField: "Name",
430
+ getRecords: () =>
431
+ this.salesforce.listRecordOptions({
432
+ objType: "BusinessHours",
433
+ nameField: "Name",
434
+ }),
435
+ },
436
+ {
437
+ name: "BusinessProcess",
438
+ nameField: "Name",
439
+ getRecords: () =>
440
+ this.salesforce.listRecordOptions({
441
+ objType: "BusinessProcess",
442
+ nameField: "Name",
443
+ }),
444
+ },
445
+ {
446
+ name: "BuyerGroup",
447
+ nameField: "Name",
448
+ getRecords: () =>
449
+ this.salesforce.listRecordOptions({
450
+ objType: "BuyerGroup",
451
+ nameField: "Name",
452
+ }),
453
+ },
454
+ {
455
+ name: "BuyerGroupFeed",
456
+ nameField: "Id",
457
+ getRecords: () =>
458
+ this.salesforce.listRecordOptions({
459
+ objType: "BuyerGroupFeed",
460
+ nameField: "Id",
461
+ }),
462
+ },
463
+ {
464
+ name: "BuyerGroupHistory",
465
+ nameField: "Id",
466
+ getRecords: () =>
467
+ this.salesforce.listRecordOptions({
468
+ objType: "BuyerGroupHistory",
469
+ nameField: "Id",
470
+ }),
471
+ },
472
+ {
473
+ name: "CalendarView",
474
+ nameField: "Name",
475
+ getRecords: () =>
476
+ this.salesforce.listRecordOptions({
477
+ objType: "CalendarView",
478
+ nameField: "Name",
479
+ }),
480
+ },
481
+ {
482
+ name: "CallCenter",
483
+ nameField: "Name",
484
+ getRecords: () =>
485
+ this.salesforce.listRecordOptions({
486
+ objType: "CallCenter",
487
+ nameField: "Name",
488
+ }),
489
+ },
490
+ {
491
+ name: "Campaign",
492
+ nameField: "Name",
493
+ getRecords: () =>
494
+ this.salesforce.listRecordOptions({
495
+ objType: "Campaign",
496
+ nameField: "Name",
497
+ }),
498
+ },
499
+ {
500
+ name: "CampaignFeed",
501
+ nameField: "Id",
502
+ getRecords: () =>
503
+ this.salesforce.listRecordOptions({
504
+ objType: "CampaignFeed",
505
+ nameField: "Id",
506
+ }),
507
+ },
508
+ {
509
+ name: "CampaignHistory",
510
+ nameField: "Id",
511
+ getRecords: () =>
512
+ this.salesforce.listRecordOptions({
513
+ objType: "CampaignHistory",
514
+ nameField: "Id",
515
+ }),
516
+ },
517
+ {
518
+ name: "CampaignMember",
519
+ nameField: "Id",
520
+ getRecords: () =>
521
+ this.salesforce.listRecordOptions({
522
+ objType: "CampaignMember",
523
+ nameField: "Id",
524
+ }),
525
+ },
526
+ {
527
+ name: "CampaignMemberStatus",
528
+ nameField: "Id",
529
+ getRecords: () =>
530
+ this.salesforce.listRecordOptions({
531
+ objType: "CampaignMemberStatus",
532
+ nameField: "Id",
533
+ }),
534
+ },
535
+ {
536
+ name: "CardPaymentMethod",
537
+ nameField: "CardPaymentMethodNumber",
538
+ getRecords: () =>
539
+ this.salesforce.listRecordOptions({
540
+ objType: "CardPaymentMethod",
541
+ nameField: "CardPaymentMethodNumber",
542
+ }),
543
+ },
544
+ {
545
+ name: "CartCheckoutSession",
546
+ nameField: "Name",
547
+ getRecords: () =>
548
+ this.salesforce.listRecordOptions({
549
+ objType: "CartCheckoutSession",
550
+ nameField: "Name",
551
+ }),
552
+ },
553
+ {
554
+ name: "CartDeliveryGroup",
555
+ nameField: "Name",
556
+ getRecords: () =>
557
+ this.salesforce.listRecordOptions({
558
+ objType: "CartDeliveryGroup",
559
+ nameField: "Name",
560
+ }),
561
+ },
562
+ {
563
+ name: "CartDeliveryGroupMethod",
564
+ nameField: "Name",
565
+ getRecords: () =>
566
+ this.salesforce.listRecordOptions({
567
+ objType: "CartDeliveryGroupMethod",
568
+ nameField: "Name",
569
+ }),
570
+ },
571
+ {
572
+ name: "CartItem",
573
+ nameField: "Name",
574
+ getRecords: () =>
575
+ this.salesforce.listRecordOptions({
576
+ objType: "CartItem",
577
+ nameField: "Name",
578
+ }),
579
+ },
580
+ {
581
+ name: "CartRelatedItem",
582
+ nameField: "Name",
583
+ getRecords: () =>
584
+ this.salesforce.listRecordOptions({
585
+ objType: "CartRelatedItem",
586
+ nameField: "Name",
587
+ }),
588
+ },
589
+ {
590
+ name: "CartTax",
591
+ nameField: "Name",
592
+ getRecords: () =>
593
+ this.salesforce.listRecordOptions({
594
+ objType: "CartTax",
595
+ nameField: "Name",
596
+ }),
597
+ },
598
+ {
599
+ name: "CartValidationOutput",
600
+ nameField: "Name",
601
+ getRecords: () =>
602
+ this.salesforce.listRecordOptions({
603
+ objType: "CartValidationOutput",
604
+ nameField: "Name",
605
+ }),
606
+ },
607
+ {
608
+ name: "Case",
609
+ nameField: "CaseNumber",
610
+ getRecords: () =>
611
+ this.salesforce.listRecordOptions({
612
+ objType: "Case",
613
+ nameField: "CaseNumber",
614
+ }),
615
+ },
616
+ {
617
+ name: "CaseComment",
618
+ nameField: "Id",
619
+ getRecords: () =>
620
+ this.salesforce.listRecordOptions({
621
+ objType: "CaseComment",
622
+ nameField: "Id",
623
+ }),
624
+ },
625
+ {
626
+ name: "CaseContactRole",
627
+ nameField: "Id",
628
+ getRecords: () =>
629
+ this.salesforce.listRecordOptions({
630
+ objType: "CaseContactRole",
631
+ nameField: "Id",
632
+ }),
633
+ },
634
+ {
635
+ name: "CaseFeed",
636
+ nameField: "Id",
637
+ getRecords: () =>
638
+ this.salesforce.listRecordOptions({
639
+ objType: "CaseFeed",
640
+ nameField: "Id",
641
+ }),
642
+ },
643
+ {
644
+ name: "CaseHistory",
645
+ nameField: "Id",
646
+ getRecords: () =>
647
+ this.salesforce.listRecordOptions({
648
+ objType: "CaseHistory",
649
+ nameField: "Id",
650
+ }),
651
+ },
652
+ {
653
+ name: "CaseSolution",
654
+ nameField: "Id",
655
+ getRecords: () =>
656
+ this.salesforce.listRecordOptions({
657
+ objType: "CaseSolution",
658
+ nameField: "Id",
659
+ }),
660
+ },
661
+ {
662
+ name: "CaseTeamMember",
663
+ nameField: "Id",
664
+ getRecords: () =>
665
+ this.salesforce.listRecordOptions({
666
+ objType: "CaseTeamMember",
667
+ nameField: "Id",
668
+ }),
669
+ },
670
+ {
671
+ name: "CaseTeamRole",
672
+ nameField: "Name",
673
+ getRecords: () =>
674
+ this.salesforce.listRecordOptions({
675
+ objType: "CaseTeamRole",
676
+ nameField: "Name",
677
+ }),
678
+ },
679
+ {
680
+ name: "CaseTeamTemplate",
681
+ nameField: "Name",
682
+ getRecords: () =>
683
+ this.salesforce.listRecordOptions({
684
+ objType: "CaseTeamTemplate",
685
+ nameField: "Name",
686
+ }),
687
+ },
688
+ {
689
+ name: "CaseTeamTemplateMember",
690
+ nameField: "Id",
691
+ getRecords: () =>
692
+ this.salesforce.listRecordOptions({
693
+ objType: "CaseTeamTemplateMember",
694
+ nameField: "Id",
695
+ }),
696
+ },
697
+ {
698
+ name: "CaseTeamTemplateRecord",
699
+ nameField: "Id",
700
+ getRecords: () =>
701
+ this.salesforce.listRecordOptions({
702
+ objType: "CaseTeamTemplateRecord",
703
+ nameField: "Id",
704
+ }),
705
+ },
706
+ {
707
+ name: "CategoryData",
708
+ nameField: "Id",
709
+ getRecords: () =>
710
+ this.salesforce.listRecordOptions({
711
+ objType: "CategoryData",
712
+ nameField: "Id",
713
+ }),
714
+ },
715
+ {
716
+ name: "CategoryNode",
717
+ nameField: "Id",
718
+ getRecords: () =>
719
+ this.salesforce.listRecordOptions({
720
+ objType: "CategoryNode",
721
+ nameField: "Id",
722
+ }),
723
+ },
724
+ {
725
+ name: "ChatterActivity",
726
+ nameField: "Id",
727
+ getRecords: () =>
728
+ this.salesforce.listRecordOptions({
729
+ objType: "ChatterActivity",
730
+ nameField: "Id",
731
+ }),
732
+ },
733
+ {
734
+ name: "CollaborationGroupFeed",
735
+ nameField: "Id",
736
+ getRecords: () =>
737
+ this.salesforce.listRecordOptions({
738
+ objType: "CollaborationGroupFeed",
739
+ nameField: "Id",
740
+ }),
741
+ },
742
+ {
743
+ name: "CollaborationGroupMember",
744
+ nameField: "Id",
745
+ getRecords: () =>
746
+ this.salesforce.listRecordOptions({
747
+ objType: "CollaborationGroupMember",
748
+ nameField: "Id",
749
+ }),
750
+ },
751
+ {
752
+ name: "CollaborationGroupRecord",
753
+ nameField: "Id",
754
+ getRecords: () =>
755
+ this.salesforce.listRecordOptions({
756
+ objType: "CollaborationGroupRecord",
757
+ nameField: "Id",
758
+ }),
759
+ },
760
+ {
761
+ name: "CommSubscription",
762
+ nameField: "Name",
763
+ getRecords: () =>
764
+ this.salesforce.listRecordOptions({
765
+ objType: "CommSubscription",
766
+ nameField: "Name",
767
+ }),
768
+ },
769
+ {
770
+ name: "CommSubscriptionChannelType",
771
+ nameField: "Name",
772
+ getRecords: () =>
773
+ this.salesforce.listRecordOptions({
774
+ objType: "CommSubscriptionChannelType",
775
+ nameField: "Name",
776
+ }),
777
+ },
778
+ {
779
+ name: "CommSubscriptionChannelTypeFeed",
780
+ nameField: "Id",
781
+ getRecords: () =>
782
+ this.salesforce.listRecordOptions({
783
+ objType: "CommSubscriptionChannelTypeFeed",
784
+ nameField: "Id",
785
+ }),
786
+ },
787
+ {
788
+ name: "CommSubscriptionChannelTypeHistory",
789
+ nameField: "Id",
790
+ getRecords: () =>
791
+ this.salesforce.listRecordOptions({
792
+ objType: "CommSubscriptionChannelTypeHistory",
793
+ nameField: "Id",
794
+ }),
795
+ },
796
+ {
797
+ name: "CommSubscriptionConsent",
798
+ nameField: "Name",
799
+ getRecords: () =>
800
+ this.salesforce.listRecordOptions({
801
+ objType: "CommSubscriptionConsent",
802
+ nameField: "Name",
803
+ }),
804
+ },
805
+ {
806
+ name: "CommSubscriptionConsentFeed",
807
+ nameField: "Id",
808
+ getRecords: () =>
809
+ this.salesforce.listRecordOptions({
810
+ objType: "CommSubscriptionConsentFeed",
811
+ nameField: "Id",
812
+ }),
813
+ },
814
+ {
815
+ name: "CommSubscriptionConsentHistory",
816
+ nameField: "Id",
817
+ getRecords: () =>
818
+ this.salesforce.listRecordOptions({
819
+ objType: "CommSubscriptionConsentHistory",
820
+ nameField: "Id",
821
+ }),
822
+ },
823
+ {
824
+ name: "CommSubscriptionFeed",
825
+ nameField: "Id",
826
+ getRecords: () =>
827
+ this.salesforce.listRecordOptions({
828
+ objType: "CommSubscriptionFeed",
829
+ nameField: "Id",
830
+ }),
831
+ },
832
+ {
833
+ name: "CommSubscriptionHistory",
834
+ nameField: "Id",
835
+ getRecords: () =>
836
+ this.salesforce.listRecordOptions({
837
+ objType: "CommSubscriptionHistory",
838
+ nameField: "Id",
839
+ }),
840
+ },
841
+ {
842
+ name: "CommSubscriptionTiming",
843
+ nameField: "Name",
844
+ getRecords: () =>
845
+ this.salesforce.listRecordOptions({
846
+ objType: "CommSubscriptionTiming",
847
+ nameField: "Name",
848
+ }),
849
+ },
850
+ {
851
+ name: "CommSubscriptionTimingFeed",
852
+ nameField: "Id",
853
+ getRecords: () =>
854
+ this.salesforce.listRecordOptions({
855
+ objType: "CommSubscriptionTimingFeed",
856
+ nameField: "Id",
857
+ }),
858
+ },
859
+ {
860
+ name: "CommSubscriptionTimingHistory",
861
+ nameField: "Id",
862
+ getRecords: () =>
863
+ this.salesforce.listRecordOptions({
864
+ objType: "CommSubscriptionTimingHistory",
865
+ nameField: "Id",
866
+ }),
867
+ },
868
+ {
869
+ name: "ConferenceNumber",
870
+ nameField: "Name",
871
+ getRecords: () =>
872
+ this.salesforce.listRecordOptions({
873
+ objType: "ConferenceNumber",
874
+ nameField: "Name",
875
+ }),
876
+ },
877
+ {
878
+ name: "ConsumptionRate",
879
+ nameField: "Name",
880
+ getRecords: () =>
881
+ this.salesforce.listRecordOptions({
882
+ objType: "ConsumptionRate",
883
+ nameField: "Name",
884
+ }),
885
+ },
886
+ {
887
+ name: "ConsumptionRateHistory",
888
+ nameField: "Id",
889
+ getRecords: () =>
890
+ this.salesforce.listRecordOptions({
891
+ objType: "ConsumptionRateHistory",
892
+ nameField: "Id",
893
+ }),
894
+ },
895
+ {
896
+ name: "ConsumptionSchedule",
897
+ nameField: "Name",
898
+ getRecords: () =>
899
+ this.salesforce.listRecordOptions({
900
+ objType: "ConsumptionSchedule",
901
+ nameField: "Name",
902
+ }),
903
+ },
904
+ {
905
+ name: "ConsumptionScheduleFeed",
906
+ nameField: "Id",
907
+ getRecords: () =>
908
+ this.salesforce.listRecordOptions({
909
+ objType: "ConsumptionScheduleFeed",
910
+ nameField: "Id",
911
+ }),
912
+ },
913
+ {
914
+ name: "ConsumptionScheduleHistory",
915
+ nameField: "Id",
916
+ getRecords: () =>
917
+ this.salesforce.listRecordOptions({
918
+ objType: "ConsumptionScheduleHistory",
919
+ nameField: "Id",
920
+ }),
921
+ },
922
+ {
923
+ name: "Contact",
924
+ nameField: "Name",
925
+ getRecords: () =>
926
+ this.salesforce.listRecordOptions({
927
+ objType: "Contact",
928
+ nameField: "Name",
929
+ }),
930
+ },
931
+ {
932
+ name: "ContactCleanInfo",
933
+ nameField: "Name",
934
+ getRecords: () =>
935
+ this.salesforce.listRecordOptions({
936
+ objType: "ContactCleanInfo",
937
+ nameField: "Name",
938
+ }),
939
+ },
940
+ {
941
+ name: "ContactFeed",
942
+ nameField: "Id",
943
+ getRecords: () =>
944
+ this.salesforce.listRecordOptions({
945
+ objType: "ContactFeed",
946
+ nameField: "Id",
947
+ }),
948
+ },
949
+ {
950
+ name: "ContactHistory",
951
+ nameField: "Id",
952
+ getRecords: () =>
953
+ this.salesforce.listRecordOptions({
954
+ objType: "ContactHistory",
955
+ nameField: "Id",
956
+ }),
957
+ },
958
+ {
959
+ name: "ContactPointAddress",
960
+ nameField: "Name",
961
+ getRecords: () =>
962
+ this.salesforce.listRecordOptions({
963
+ objType: "ContactPointAddress",
964
+ nameField: "Name",
965
+ }),
966
+ },
967
+ {
968
+ name: "ContactPointAddressHistory",
969
+ nameField: "Id",
970
+ getRecords: () =>
971
+ this.salesforce.listRecordOptions({
972
+ objType: "ContactPointAddressHistory",
973
+ nameField: "Id",
974
+ }),
975
+ },
976
+ {
977
+ name: "ContactPointConsent",
978
+ nameField: "Name",
979
+ getRecords: () =>
980
+ this.salesforce.listRecordOptions({
981
+ objType: "ContactPointConsent",
982
+ nameField: "Name",
983
+ }),
984
+ },
985
+ {
986
+ name: "ContactPointConsentHistory",
987
+ nameField: "Id",
988
+ getRecords: () =>
989
+ this.salesforce.listRecordOptions({
990
+ objType: "ContactPointConsentHistory",
991
+ nameField: "Id",
992
+ }),
993
+ },
994
+ {
995
+ name: "ContactPointEmail",
996
+ nameField: "Name",
997
+ getRecords: () =>
998
+ this.salesforce.listRecordOptions({
999
+ objType: "ContactPointEmail",
1000
+ nameField: "Name",
1001
+ }),
1002
+ },
1003
+ {
1004
+ name: "ContactPointEmailHistory",
1005
+ nameField: "Id",
1006
+ getRecords: () =>
1007
+ this.salesforce.listRecordOptions({
1008
+ objType: "ContactPointEmailHistory",
1009
+ nameField: "Id",
1010
+ }),
1011
+ },
1012
+ {
1013
+ name: "ContactPointPhone",
1014
+ nameField: "Name",
1015
+ getRecords: () =>
1016
+ this.salesforce.listRecordOptions({
1017
+ objType: "ContactPointPhone",
1018
+ nameField: "Name",
1019
+ }),
1020
+ },
1021
+ {
1022
+ name: "ContactPointPhoneHistory",
1023
+ nameField: "Id",
1024
+ getRecords: () =>
1025
+ this.salesforce.listRecordOptions({
1026
+ objType: "ContactPointPhoneHistory",
1027
+ nameField: "Id",
1028
+ }),
1029
+ },
1030
+ {
1031
+ name: "ContactPointTypeConsent",
1032
+ nameField: "Name",
1033
+ getRecords: () =>
1034
+ this.salesforce.listRecordOptions({
1035
+ objType: "ContactPointTypeConsent",
1036
+ nameField: "Name",
1037
+ }),
1038
+ },
1039
+ {
1040
+ name: "ContactPointTypeConsentHistory",
1041
+ nameField: "Id",
1042
+ getRecords: () =>
1043
+ this.salesforce.listRecordOptions({
1044
+ objType: "ContactPointTypeConsentHistory",
1045
+ nameField: "Id",
1046
+ }),
1047
+ },
1048
+ {
1049
+ name: "ContactRequest",
1050
+ nameField: "Name",
1051
+ getRecords: () =>
1052
+ this.salesforce.listRecordOptions({
1053
+ objType: "ContactRequest",
1054
+ nameField: "Name",
1055
+ }),
1056
+ },
1057
+ {
1058
+ name: "ContentDocumentFeed",
1059
+ nameField: "Id",
1060
+ getRecords: () =>
1061
+ this.salesforce.listRecordOptions({
1062
+ objType: "ContentDocumentFeed",
1063
+ nameField: "Id",
1064
+ }),
1065
+ },
1066
+ {
1067
+ name: "ContentDocumentHistory",
1068
+ nameField: "Id",
1069
+ getRecords: () =>
1070
+ this.salesforce.listRecordOptions({
1071
+ objType: "ContentDocumentHistory",
1072
+ nameField: "Id",
1073
+ }),
1074
+ },
1075
+ {
1076
+ name: "ContentFolder",
1077
+ nameField: "Name",
1078
+ getRecords: () =>
1079
+ this.salesforce.listRecordOptions({
1080
+ objType: "ContentFolder",
1081
+ nameField: "Name",
1082
+ }),
1083
+ },
1084
+ {
1085
+ name: "ContentVersionHistory",
1086
+ nameField: "Id",
1087
+ getRecords: () =>
1088
+ this.salesforce.listRecordOptions({
1089
+ objType: "ContentVersionHistory",
1090
+ nameField: "Id",
1091
+ }),
1092
+ },
1093
+ {
1094
+ name: "Contract",
1095
+ nameField: "ContractNumber",
1096
+ getRecords: () =>
1097
+ this.salesforce.listRecordOptions({
1098
+ objType: "Contract",
1099
+ nameField: "ContractNumber",
1100
+ }),
1101
+ },
1102
+ {
1103
+ name: "ContractContactRole",
1104
+ nameField: "Id",
1105
+ getRecords: () =>
1106
+ this.salesforce.listRecordOptions({
1107
+ objType: "ContractContactRole",
1108
+ nameField: "Id",
1109
+ }),
1110
+ },
1111
+ {
1112
+ name: "ContractFeed",
1113
+ nameField: "Id",
1114
+ getRecords: () =>
1115
+ this.salesforce.listRecordOptions({
1116
+ objType: "ContractFeed",
1117
+ nameField: "Id",
1118
+ }),
1119
+ },
1120
+ {
1121
+ name: "ContractHistory",
1122
+ nameField: "Id",
1123
+ getRecords: () =>
1124
+ this.salesforce.listRecordOptions({
1125
+ objType: "ContractHistory",
1126
+ nameField: "Id",
1127
+ }),
1128
+ },
1129
+ {
1130
+ name: "ContractLineItem",
1131
+ nameField: "LineItemNumber",
1132
+ getRecords: () =>
1133
+ this.salesforce.listRecordOptions({
1134
+ objType: "ContractLineItem",
1135
+ nameField: "LineItemNumber",
1136
+ }),
1137
+ },
1138
+ {
1139
+ name: "ContractLineItemHistory",
1140
+ nameField: "Id",
1141
+ getRecords: () =>
1142
+ this.salesforce.listRecordOptions({
1143
+ objType: "ContractLineItemHistory",
1144
+ nameField: "Id",
1145
+ }),
1146
+ },
1147
+ {
1148
+ name: "CredentialStuffingEventStore",
1149
+ nameField: "CredentialStuffingEventNumber",
1150
+ getRecords: () =>
1151
+ this.salesforce.listRecordOptions({
1152
+ objType: "CredentialStuffingEventStore",
1153
+ nameField: "CredentialStuffingEventNumber",
1154
+ }),
1155
+ },
1156
+ {
1157
+ name: "CredentialStuffingEventStoreFeed",
1158
+ nameField: "Id",
1159
+ getRecords: () =>
1160
+ this.salesforce.listRecordOptions({
1161
+ objType: "CredentialStuffingEventStoreFeed",
1162
+ nameField: "Id",
1163
+ }),
1164
+ },
1165
+ {
1166
+ name: "CreditMemo",
1167
+ nameField: "DocumentNumber",
1168
+ getRecords: () =>
1169
+ this.salesforce.listRecordOptions({
1170
+ objType: "CreditMemo",
1171
+ nameField: "DocumentNumber",
1172
+ }),
1173
+ },
1174
+ {
1175
+ name: "CreditMemoFeed",
1176
+ nameField: "Id",
1177
+ getRecords: () =>
1178
+ this.salesforce.listRecordOptions({
1179
+ objType: "CreditMemoFeed",
1180
+ nameField: "Id",
1181
+ }),
1182
+ },
1183
+ {
1184
+ name: "CreditMemoHistory",
1185
+ nameField: "Id",
1186
+ getRecords: () =>
1187
+ this.salesforce.listRecordOptions({
1188
+ objType: "CreditMemoHistory",
1189
+ nameField: "Id",
1190
+ }),
1191
+ },
1192
+ {
1193
+ name: "CreditMemoInvApplication",
1194
+ nameField: "CreditMemoInvoiceNumber",
1195
+ getRecords: () =>
1196
+ this.salesforce.listRecordOptions({
1197
+ objType: "CreditMemoInvApplication",
1198
+ nameField: "CreditMemoInvoiceNumber",
1199
+ }),
1200
+ },
1201
+ {
1202
+ name: "CreditMemoInvApplicationFeed",
1203
+ nameField: "Id",
1204
+ getRecords: () =>
1205
+ this.salesforce.listRecordOptions({
1206
+ objType: "CreditMemoInvApplicationFeed",
1207
+ nameField: "Id",
1208
+ }),
1209
+ },
1210
+ {
1211
+ name: "CreditMemoInvApplicationHistory",
1212
+ nameField: "Id",
1213
+ getRecords: () =>
1214
+ this.salesforce.listRecordOptions({
1215
+ objType: "CreditMemoInvApplicationHistory",
1216
+ nameField: "Id",
1217
+ }),
1218
+ },
1219
+ {
1220
+ name: "CreditMemoLine",
1221
+ nameField: "Name",
1222
+ getRecords: () =>
1223
+ this.salesforce.listRecordOptions({
1224
+ objType: "CreditMemoLine",
1225
+ nameField: "Name",
1226
+ }),
1227
+ },
1228
+ {
1229
+ name: "CreditMemoLineFeed",
1230
+ nameField: "Id",
1231
+ getRecords: () =>
1232
+ this.salesforce.listRecordOptions({
1233
+ objType: "CreditMemoLineFeed",
1234
+ nameField: "Id",
1235
+ }),
1236
+ },
1237
+ {
1238
+ name: "CreditMemoLineHistory",
1239
+ nameField: "Id",
1240
+ getRecords: () =>
1241
+ this.salesforce.listRecordOptions({
1242
+ objType: "CreditMemoLineHistory",
1243
+ nameField: "Id",
1244
+ }),
1245
+ },
1246
+ {
1247
+ name: "DandBCompany",
1248
+ nameField: "Name",
1249
+ getRecords: () =>
1250
+ this.salesforce.listRecordOptions({
1251
+ objType: "DandBCompany",
1252
+ nameField: "Name",
1253
+ }),
1254
+ },
1255
+ {
1256
+ name: "DashboardComponentFeed",
1257
+ nameField: "Id",
1258
+ getRecords: () =>
1259
+ this.salesforce.listRecordOptions({
1260
+ objType: "DashboardComponentFeed",
1261
+ nameField: "Id",
1262
+ }),
1263
+ },
1264
+ {
1265
+ name: "DashboardFeed",
1266
+ nameField: "Id",
1267
+ getRecords: () =>
1268
+ this.salesforce.listRecordOptions({
1269
+ objType: "DashboardFeed",
1270
+ nameField: "Id",
1271
+ }),
1272
+ },
1273
+ {
1274
+ name: "DataAssessmentFieldMetric",
1275
+ nameField: "Name",
1276
+ getRecords: () =>
1277
+ this.salesforce.listRecordOptions({
1278
+ objType: "DataAssessmentFieldMetric",
1279
+ nameField: "Name",
1280
+ }),
1281
+ },
1282
+ {
1283
+ name: "DataAssessmentMetric",
1284
+ nameField: "Name",
1285
+ getRecords: () =>
1286
+ this.salesforce.listRecordOptions({
1287
+ objType: "DataAssessmentMetric",
1288
+ nameField: "Name",
1289
+ }),
1290
+ },
1291
+ {
1292
+ name: "DataAssessmentValueMetric",
1293
+ nameField: "Name",
1294
+ getRecords: () =>
1295
+ this.salesforce.listRecordOptions({
1296
+ objType: "DataAssessmentValueMetric",
1297
+ nameField: "Name",
1298
+ }),
1299
+ },
1300
+ {
1301
+ name: "DataKitDeploymentLog",
1302
+ nameField: "Id",
1303
+ getRecords: () =>
1304
+ this.salesforce.listRecordOptions({
1305
+ objType: "DataKitDeploymentLog",
1306
+ nameField: "Id",
1307
+ }),
1308
+ },
1309
+ {
1310
+ name: "DataUseLegalBasis",
1311
+ nameField: "Name",
1312
+ getRecords: () =>
1313
+ this.salesforce.listRecordOptions({
1314
+ objType: "DataUseLegalBasis",
1315
+ nameField: "Name",
1316
+ }),
1317
+ },
1318
+ {
1319
+ name: "DataUseLegalBasisHistory",
1320
+ nameField: "Id",
1321
+ getRecords: () =>
1322
+ this.salesforce.listRecordOptions({
1323
+ objType: "DataUseLegalBasisHistory",
1324
+ nameField: "Id",
1325
+ }),
1326
+ },
1327
+ {
1328
+ name: "DataUsePurpose",
1329
+ nameField: "Name",
1330
+ getRecords: () =>
1331
+ this.salesforce.listRecordOptions({
1332
+ objType: "DataUsePurpose",
1333
+ nameField: "Name",
1334
+ }),
1335
+ },
1336
+ {
1337
+ name: "DataUsePurposeHistory",
1338
+ nameField: "Id",
1339
+ getRecords: () =>
1340
+ this.salesforce.listRecordOptions({
1341
+ objType: "DataUsePurposeHistory",
1342
+ nameField: "Id",
1343
+ }),
1344
+ },
1345
+ {
1346
+ name: "DatacloudOwnedEntity",
1347
+ nameField: "Name",
1348
+ getRecords: () =>
1349
+ this.salesforce.listRecordOptions({
1350
+ objType: "DatacloudOwnedEntity",
1351
+ nameField: "Name",
1352
+ }),
1353
+ },
1354
+ {
1355
+ name: "DatacloudPurchaseUsage",
1356
+ nameField: "Name",
1357
+ getRecords: () =>
1358
+ this.salesforce.listRecordOptions({
1359
+ objType: "DatacloudPurchaseUsage",
1360
+ nameField: "Name",
1361
+ }),
1362
+ },
1363
+ {
1364
+ name: "DigitalWallet",
1365
+ nameField: "DigitalWalletNumber",
1366
+ getRecords: () =>
1367
+ this.salesforce.listRecordOptions({
1368
+ objType: "DigitalWallet",
1369
+ nameField: "DigitalWalletNumber",
1370
+ }),
1371
+ },
1372
+ {
1373
+ name: "Document",
1374
+ nameField: "Name",
1375
+ getRecords: () =>
1376
+ this.salesforce.listRecordOptions({
1377
+ objType: "Document",
1378
+ nameField: "Name",
1379
+ }),
1380
+ },
1381
+ {
1382
+ name: "DuplicateRecordItem",
1383
+ nameField: "Name",
1384
+ getRecords: () =>
1385
+ this.salesforce.listRecordOptions({
1386
+ objType: "DuplicateRecordItem",
1387
+ nameField: "Name",
1388
+ }),
1389
+ },
1390
+ {
1391
+ name: "DuplicateRecordSet",
1392
+ nameField: "Name",
1393
+ getRecords: () =>
1394
+ this.salesforce.listRecordOptions({
1395
+ objType: "DuplicateRecordSet",
1396
+ nameField: "Name",
1397
+ }),
1398
+ },
1399
+ {
1400
+ name: "EmailMessage",
1401
+ nameField: "Id",
1402
+ getRecords: () =>
1403
+ this.salesforce.listRecordOptions({
1404
+ objType: "EmailMessage",
1405
+ nameField: "Id",
1406
+ }),
1407
+ },
1408
+ {
1409
+ name: "EmailMessageRelation",
1410
+ nameField: "Id",
1411
+ getRecords: () =>
1412
+ this.salesforce.listRecordOptions({
1413
+ objType: "EmailMessageRelation",
1414
+ nameField: "Id",
1415
+ }),
1416
+ },
1417
+ {
1418
+ name: "EmailServicesAddress",
1419
+ nameField: "LocalPart",
1420
+ getRecords: () =>
1421
+ this.salesforce.listRecordOptions({
1422
+ objType: "EmailServicesAddress",
1423
+ nameField: "LocalPart",
1424
+ }),
1425
+ },
1426
+ {
1427
+ name: "EmailServicesFunction",
1428
+ nameField: "FunctionName",
1429
+ getRecords: () =>
1430
+ this.salesforce.listRecordOptions({
1431
+ objType: "EmailServicesFunction",
1432
+ nameField: "FunctionName",
1433
+ }),
1434
+ },
1435
+ {
1436
+ name: "EmailTemplate",
1437
+ nameField: "Name",
1438
+ getRecords: () =>
1439
+ this.salesforce.listRecordOptions({
1440
+ objType: "EmailTemplate",
1441
+ nameField: "Name",
1442
+ }),
1443
+ },
1444
+ {
1445
+ name: "EngagementChannelType",
1446
+ nameField: "Name",
1447
+ getRecords: () =>
1448
+ this.salesforce.listRecordOptions({
1449
+ objType: "EngagementChannelType",
1450
+ nameField: "Name",
1451
+ }),
1452
+ },
1453
+ {
1454
+ name: "EngagementChannelTypeFeed",
1455
+ nameField: "Id",
1456
+ getRecords: () =>
1457
+ this.salesforce.listRecordOptions({
1458
+ objType: "EngagementChannelTypeFeed",
1459
+ nameField: "Id",
1460
+ }),
1461
+ },
1462
+ {
1463
+ name: "EngagementChannelTypeHistory",
1464
+ nameField: "Id",
1465
+ getRecords: () =>
1466
+ this.salesforce.listRecordOptions({
1467
+ objType: "EngagementChannelTypeHistory",
1468
+ nameField: "Id",
1469
+ }),
1470
+ },
1471
+ {
1472
+ name: "EnhancedLetterhead",
1473
+ nameField: "Name",
1474
+ getRecords: () =>
1475
+ this.salesforce.listRecordOptions({
1476
+ objType: "EnhancedLetterhead",
1477
+ nameField: "Name",
1478
+ }),
1479
+ },
1480
+ {
1481
+ name: "EnhancedLetterheadFeed",
1482
+ nameField: "Id",
1483
+ getRecords: () =>
1484
+ this.salesforce.listRecordOptions({
1485
+ objType: "EnhancedLetterheadFeed",
1486
+ nameField: "Id",
1487
+ }),
1488
+ },
1489
+ {
1490
+ name: "Entitlement",
1491
+ nameField: "Name",
1492
+ getRecords: () =>
1493
+ this.salesforce.listRecordOptions({
1494
+ objType: "Entitlement",
1495
+ nameField: "Name",
1496
+ }),
1497
+ },
1498
+ {
1499
+ name: "EntitlementContact",
1500
+ nameField: "Name",
1501
+ getRecords: () =>
1502
+ this.salesforce.listRecordOptions({
1503
+ objType: "EntitlementContact",
1504
+ nameField: "Name",
1505
+ }),
1506
+ },
1507
+ {
1508
+ name: "EntitlementFeed",
1509
+ nameField: "Id",
1510
+ getRecords: () =>
1511
+ this.salesforce.listRecordOptions({
1512
+ objType: "EntitlementFeed",
1513
+ nameField: "Id",
1514
+ }),
1515
+ },
1516
+ {
1517
+ name: "EntitlementHistory",
1518
+ nameField: "Id",
1519
+ getRecords: () =>
1520
+ this.salesforce.listRecordOptions({
1521
+ objType: "EntitlementHistory",
1522
+ nameField: "Id",
1523
+ }),
1524
+ },
1525
+ {
1526
+ name: "EntityMilestone",
1527
+ nameField: "Name",
1528
+ getRecords: () =>
1529
+ this.salesforce.listRecordOptions({
1530
+ objType: "EntityMilestone",
1531
+ nameField: "Name",
1532
+ }),
1533
+ },
1534
+ {
1535
+ name: "EntityMilestoneFeed",
1536
+ nameField: "Id",
1537
+ getRecords: () =>
1538
+ this.salesforce.listRecordOptions({
1539
+ objType: "EntityMilestoneFeed",
1540
+ nameField: "Id",
1541
+ }),
1542
+ },
1543
+ {
1544
+ name: "EntityMilestoneHistory",
1545
+ nameField: "Id",
1546
+ getRecords: () =>
1547
+ this.salesforce.listRecordOptions({
1548
+ objType: "EntityMilestoneHistory",
1549
+ nameField: "Id",
1550
+ }),
1551
+ },
1552
+ {
1553
+ name: "EntitySubscription",
1554
+ nameField: "Id",
1555
+ getRecords: () =>
1556
+ this.salesforce.listRecordOptions({
1557
+ objType: "EntitySubscription",
1558
+ nameField: "Id",
1559
+ }),
1560
+ },
1561
+ {
1562
+ name: "Event",
1563
+ nameField: "Subject",
1564
+ getRecords: () =>
1565
+ this.salesforce.listRecordOptions({
1566
+ objType: "Event",
1567
+ nameField: "Subject",
1568
+ }),
1569
+ },
1570
+ {
1571
+ name: "EventFeed",
1572
+ nameField: "Id",
1573
+ getRecords: () =>
1574
+ this.salesforce.listRecordOptions({
1575
+ objType: "EventFeed",
1576
+ nameField: "Id",
1577
+ }),
1578
+ },
1579
+ {
1580
+ name: "EventRelation",
1581
+ nameField: "Id",
1582
+ getRecords: () =>
1583
+ this.salesforce.listRecordOptions({
1584
+ objType: "EventRelation",
1585
+ nameField: "Id",
1586
+ }),
1587
+ },
1588
+ {
1589
+ name: "ExpressionFilter",
1590
+ nameField: "Name",
1591
+ getRecords: () =>
1592
+ this.salesforce.listRecordOptions({
1593
+ objType: "ExpressionFilter",
1594
+ nameField: "Name",
1595
+ }),
1596
+ },
1597
+ {
1598
+ name: "ExpressionFilterCriteria",
1599
+ nameField: "Name",
1600
+ getRecords: () =>
1601
+ this.salesforce.listRecordOptions({
1602
+ objType: "ExpressionFilterCriteria",
1603
+ nameField: "Name",
1604
+ }),
1605
+ },
1606
+ {
1607
+ name: "ExternalEvent",
1608
+ nameField: "Name",
1609
+ getRecords: () =>
1610
+ this.salesforce.listRecordOptions({
1611
+ objType: "ExternalEvent",
1612
+ nameField: "Name",
1613
+ }),
1614
+ },
1615
+ {
1616
+ name: "ExternalEventMapping",
1617
+ nameField: "Name",
1618
+ getRecords: () =>
1619
+ this.salesforce.listRecordOptions({
1620
+ objType: "ExternalEventMapping",
1621
+ nameField: "Name",
1622
+ }),
1623
+ },
1624
+ {
1625
+ name: "FeedComment",
1626
+ nameField: "Id",
1627
+ getRecords: () =>
1628
+ this.salesforce.listRecordOptions({
1629
+ objType: "FeedComment",
1630
+ nameField: "Id",
1631
+ }),
1632
+ },
1633
+ {
1634
+ name: "FeedItem",
1635
+ nameField: "Id",
1636
+ getRecords: () =>
1637
+ this.salesforce.listRecordOptions({
1638
+ objType: "FeedItem",
1639
+ nameField: "Id",
1640
+ }),
1641
+ },
1642
+ {
1643
+ name: "FeedRevision",
1644
+ nameField: "Id",
1645
+ getRecords: () =>
1646
+ this.salesforce.listRecordOptions({
1647
+ objType: "FeedRevision",
1648
+ nameField: "Id",
1649
+ }),
1650
+ },
1651
+ {
1652
+ name: "FileSearchActivity",
1653
+ nameField: "Name",
1654
+ getRecords: () =>
1655
+ this.salesforce.listRecordOptions({
1656
+ objType: "FileSearchActivity",
1657
+ nameField: "Name",
1658
+ }),
1659
+ },
1660
+ {
1661
+ name: "FinanceBalanceSnapshot",
1662
+ nameField: "FinanceBalanceSnapshotNumber",
1663
+ getRecords: () =>
1664
+ this.salesforce.listRecordOptions({
1665
+ objType: "FinanceBalanceSnapshot",
1666
+ nameField: "FinanceBalanceSnapshotNumber",
1667
+ }),
1668
+ },
1669
+ {
1670
+ name: "FinanceTransaction",
1671
+ nameField: "FinanceTransactionNumber",
1672
+ getRecords: () =>
1673
+ this.salesforce.listRecordOptions({
1674
+ objType: "FinanceTransaction",
1675
+ nameField: "FinanceTransactionNumber",
1676
+ }),
1677
+ },
1678
+ {
1679
+ name: "FiscalYearSettings",
1680
+ nameField: "Name",
1681
+ getRecords: () =>
1682
+ this.salesforce.listRecordOptions({
1683
+ objType: "FiscalYearSettings",
1684
+ nameField: "Name",
1685
+ }),
1686
+ },
1687
+ {
1688
+ name: "FlowInterview",
1689
+ nameField: "Name",
1690
+ getRecords: () =>
1691
+ this.salesforce.listRecordOptions({
1692
+ objType: "FlowInterview",
1693
+ nameField: "Name",
1694
+ }),
1695
+ },
1696
+ {
1697
+ name: "FlowInterviewLog",
1698
+ nameField: "Name",
1699
+ getRecords: () =>
1700
+ this.salesforce.listRecordOptions({
1701
+ objType: "FlowInterviewLog",
1702
+ nameField: "Name",
1703
+ }),
1704
+ },
1705
+ {
1706
+ name: "FlowInterviewLogEntry",
1707
+ nameField: "Name",
1708
+ getRecords: () =>
1709
+ this.salesforce.listRecordOptions({
1710
+ objType: "FlowInterviewLogEntry",
1711
+ nameField: "Name",
1712
+ }),
1713
+ },
1714
+ {
1715
+ name: "FlowRecordRelation",
1716
+ nameField: "Name",
1717
+ getRecords: () =>
1718
+ this.salesforce.listRecordOptions({
1719
+ objType: "FlowRecordRelation",
1720
+ nameField: "Name",
1721
+ }),
1722
+ },
1723
+ {
1724
+ name: "FlowStageRelation",
1725
+ nameField: "Name",
1726
+ getRecords: () =>
1727
+ this.salesforce.listRecordOptions({
1728
+ objType: "FlowStageRelation",
1729
+ nameField: "Name",
1730
+ }),
1731
+ },
1732
+ {
1733
+ name: "Folder",
1734
+ nameField: "Name",
1735
+ getRecords: () =>
1736
+ this.salesforce.listRecordOptions({
1737
+ objType: "Folder",
1738
+ nameField: "Name",
1739
+ }),
1740
+ },
1741
+ {
1742
+ name: "FulfillmentOrder",
1743
+ nameField: "FulfillmentOrderNumber",
1744
+ getRecords: () =>
1745
+ this.salesforce.listRecordOptions({
1746
+ objType: "FulfillmentOrder",
1747
+ nameField: "FulfillmentOrderNumber",
1748
+ }),
1749
+ },
1750
+ {
1751
+ name: "FulfillmentOrderFeed",
1752
+ nameField: "Id",
1753
+ getRecords: () =>
1754
+ this.salesforce.listRecordOptions({
1755
+ objType: "FulfillmentOrderFeed",
1756
+ nameField: "Id",
1757
+ }),
1758
+ },
1759
+ {
1760
+ name: "FulfillmentOrderItemAdjustment",
1761
+ nameField: "FulfillmentOrderItemAdjustmentNumber",
1762
+ getRecords: () =>
1763
+ this.salesforce.listRecordOptions({
1764
+ objType: "FulfillmentOrderItemAdjustment",
1765
+ nameField: "FulfillmentOrderItemAdjustmentNumber",
1766
+ }),
1767
+ },
1768
+ {
1769
+ name: "FulfillmentOrderItemAdjustmentFeed",
1770
+ nameField: "Id",
1771
+ getRecords: () =>
1772
+ this.salesforce.listRecordOptions({
1773
+ objType: "FulfillmentOrderItemAdjustmentFeed",
1774
+ nameField: "Id",
1775
+ }),
1776
+ },
1777
+ {
1778
+ name: "FulfillmentOrderItemTax",
1779
+ nameField: "FulfillmentOrderItemTaxNumber",
1780
+ getRecords: () =>
1781
+ this.salesforce.listRecordOptions({
1782
+ objType: "FulfillmentOrderItemTax",
1783
+ nameField: "FulfillmentOrderItemTaxNumber",
1784
+ }),
1785
+ },
1786
+ {
1787
+ name: "FulfillmentOrderItemTaxFeed",
1788
+ nameField: "Id",
1789
+ getRecords: () =>
1790
+ this.salesforce.listRecordOptions({
1791
+ objType: "FulfillmentOrderItemTaxFeed",
1792
+ nameField: "Id",
1793
+ }),
1794
+ },
1795
+ {
1796
+ name: "FulfillmentOrderLineItem",
1797
+ nameField: "FulfillmentOrderLineItemNumber",
1798
+ getRecords: () =>
1799
+ this.salesforce.listRecordOptions({
1800
+ objType: "FulfillmentOrderLineItem",
1801
+ nameField: "FulfillmentOrderLineItemNumber",
1802
+ }),
1803
+ },
1804
+ {
1805
+ name: "FulfillmentOrderLineItemFeed",
1806
+ nameField: "Id",
1807
+ getRecords: () =>
1808
+ this.salesforce.listRecordOptions({
1809
+ objType: "FulfillmentOrderLineItemFeed",
1810
+ nameField: "Id",
1811
+ }),
1812
+ },
1813
+ {
1814
+ name: "Group",
1815
+ nameField: "Name",
1816
+ getRecords: () =>
1817
+ this.salesforce.listRecordOptions({
1818
+ objType: "Group",
1819
+ nameField: "Name",
1820
+ }),
1821
+ },
1822
+ {
1823
+ name: "GroupMember",
1824
+ nameField: "Id",
1825
+ getRecords: () =>
1826
+ this.salesforce.listRecordOptions({
1827
+ objType: "GroupMember",
1828
+ nameField: "Id",
1829
+ }),
1830
+ },
1831
+ {
1832
+ name: "Holiday",
1833
+ nameField: "Name",
1834
+ getRecords: () =>
1835
+ this.salesforce.listRecordOptions({
1836
+ objType: "Holiday",
1837
+ nameField: "Name",
1838
+ }),
1839
+ },
1840
+ {
1841
+ name: "Idea",
1842
+ nameField: "Title",
1843
+ getRecords: () =>
1844
+ this.salesforce.listRecordOptions({
1845
+ objType: "Idea",
1846
+ nameField: "Title",
1847
+ }),
1848
+ },
1849
+ {
1850
+ name: "IdeaComment",
1851
+ nameField: "Id",
1852
+ getRecords: () =>
1853
+ this.salesforce.listRecordOptions({
1854
+ objType: "IdeaComment",
1855
+ nameField: "Id",
1856
+ }),
1857
+ },
1858
+ {
1859
+ name: "Image",
1860
+ nameField: "Name",
1861
+ getRecords: () =>
1862
+ this.salesforce.listRecordOptions({
1863
+ objType: "Image",
1864
+ nameField: "Name",
1865
+ }),
1866
+ },
1867
+ {
1868
+ name: "Individual",
1869
+ nameField: "Name",
1870
+ getRecords: () =>
1871
+ this.salesforce.listRecordOptions({
1872
+ objType: "Individual",
1873
+ nameField: "Name",
1874
+ }),
1875
+ },
1876
+ {
1877
+ name: "IndividualHistory",
1878
+ nameField: "Id",
1879
+ getRecords: () =>
1880
+ this.salesforce.listRecordOptions({
1881
+ objType: "IndividualHistory",
1882
+ nameField: "Id",
1883
+ }),
1884
+ },
1885
+ {
1886
+ name: "InstalledMobileApp",
1887
+ nameField: "Name",
1888
+ getRecords: () =>
1889
+ this.salesforce.listRecordOptions({
1890
+ objType: "InstalledMobileApp",
1891
+ nameField: "Name",
1892
+ }),
1893
+ },
1894
+ {
1895
+ name: "Invoice",
1896
+ nameField: "DocumentNumber",
1897
+ getRecords: () =>
1898
+ this.salesforce.listRecordOptions({
1899
+ objType: "Invoice",
1900
+ nameField: "DocumentNumber",
1901
+ }),
1902
+ },
1903
+ {
1904
+ name: "InvoiceFeed",
1905
+ nameField: "Id",
1906
+ getRecords: () =>
1907
+ this.salesforce.listRecordOptions({
1908
+ objType: "InvoiceFeed",
1909
+ nameField: "Id",
1910
+ }),
1911
+ },
1912
+ {
1913
+ name: "InvoiceHistory",
1914
+ nameField: "Id",
1915
+ getRecords: () =>
1916
+ this.salesforce.listRecordOptions({
1917
+ objType: "InvoiceHistory",
1918
+ nameField: "Id",
1919
+ }),
1920
+ },
1921
+ {
1922
+ name: "InvoiceLine",
1923
+ nameField: "Name",
1924
+ getRecords: () =>
1925
+ this.salesforce.listRecordOptions({
1926
+ objType: "InvoiceLine",
1927
+ nameField: "Name",
1928
+ }),
1929
+ },
1930
+ {
1931
+ name: "InvoiceLineFeed",
1932
+ nameField: "Id",
1933
+ getRecords: () =>
1934
+ this.salesforce.listRecordOptions({
1935
+ objType: "InvoiceLineFeed",
1936
+ nameField: "Id",
1937
+ }),
1938
+ },
1939
+ {
1940
+ name: "InvoiceLineHistory",
1941
+ nameField: "Id",
1942
+ getRecords: () =>
1943
+ this.salesforce.listRecordOptions({
1944
+ objType: "InvoiceLineHistory",
1945
+ nameField: "Id",
1946
+ }),
1947
+ },
1948
+ {
1949
+ name: "Lead",
1950
+ nameField: "Name",
1951
+ getRecords: () =>
1952
+ this.salesforce.listRecordOptions({
1953
+ objType: "Lead",
1954
+ nameField: "Name",
1955
+ }),
1956
+ },
1957
+ {
1958
+ name: "LeadCleanInfo",
1959
+ nameField: "Name",
1960
+ getRecords: () =>
1961
+ this.salesforce.listRecordOptions({
1962
+ objType: "LeadCleanInfo",
1963
+ nameField: "Name",
1964
+ }),
1965
+ },
1966
+ {
1967
+ name: "LeadFeed",
1968
+ nameField: "Id",
1969
+ getRecords: () =>
1970
+ this.salesforce.listRecordOptions({
1971
+ objType: "LeadFeed",
1972
+ nameField: "Id",
1973
+ }),
1974
+ },
1975
+ {
1976
+ name: "LeadHistory",
1977
+ nameField: "Id",
1978
+ getRecords: () =>
1979
+ this.salesforce.listRecordOptions({
1980
+ objType: "LeadHistory",
1981
+ nameField: "Id",
1982
+ }),
1983
+ },
1984
+ {
1985
+ name: "LegalEntity",
1986
+ nameField: "Name",
1987
+ getRecords: () =>
1988
+ this.salesforce.listRecordOptions({
1989
+ objType: "LegalEntity",
1990
+ nameField: "Name",
1991
+ }),
1992
+ },
1993
+ {
1994
+ name: "LegalEntityFeed",
1995
+ nameField: "Id",
1996
+ getRecords: () =>
1997
+ this.salesforce.listRecordOptions({
1998
+ objType: "LegalEntityFeed",
1999
+ nameField: "Id",
2000
+ }),
2001
+ },
2002
+ {
2003
+ name: "LegalEntityHistory",
2004
+ nameField: "Id",
2005
+ getRecords: () =>
2006
+ this.salesforce.listRecordOptions({
2007
+ objType: "LegalEntityHistory",
2008
+ nameField: "Id",
2009
+ }),
2010
+ },
2011
+ {
2012
+ name: "ListEmail",
2013
+ nameField: "Name",
2014
+ getRecords: () =>
2015
+ this.salesforce.listRecordOptions({
2016
+ objType: "ListEmail",
2017
+ nameField: "Name",
2018
+ }),
2019
+ },
2020
+ {
2021
+ name: "ListEmailIndividualRecipient",
2022
+ nameField: "Name",
2023
+ getRecords: () =>
2024
+ this.salesforce.listRecordOptions({
2025
+ objType: "ListEmailIndividualRecipient",
2026
+ nameField: "Name",
2027
+ }),
2028
+ },
2029
+ {
2030
+ name: "ListEmailRecipientSource",
2031
+ nameField: "Name",
2032
+ getRecords: () =>
2033
+ this.salesforce.listRecordOptions({
2034
+ objType: "ListEmailRecipientSource",
2035
+ nameField: "Name",
2036
+ }),
2037
+ },
2038
+ {
2039
+ name: "Location",
2040
+ nameField: "Name",
2041
+ getRecords: () =>
2042
+ this.salesforce.listRecordOptions({
2043
+ objType: "Location",
2044
+ nameField: "Name",
2045
+ }),
2046
+ },
2047
+ {
2048
+ name: "LocationFeed",
2049
+ nameField: "Id",
2050
+ getRecords: () =>
2051
+ this.salesforce.listRecordOptions({
2052
+ objType: "LocationFeed",
2053
+ nameField: "Id",
2054
+ }),
2055
+ },
2056
+ {
2057
+ name: "LocationHistory",
2058
+ nameField: "Id",
2059
+ getRecords: () =>
2060
+ this.salesforce.listRecordOptions({
2061
+ objType: "LocationHistory",
2062
+ nameField: "Id",
2063
+ }),
2064
+ },
2065
+ {
2066
+ name: "Macro",
2067
+ nameField: "Name",
2068
+ getRecords: () =>
2069
+ this.salesforce.listRecordOptions({
2070
+ objType: "Macro",
2071
+ nameField: "Name",
2072
+ }),
2073
+ },
2074
+ {
2075
+ name: "MacroHistory",
2076
+ nameField: "Id",
2077
+ getRecords: () =>
2078
+ this.salesforce.listRecordOptions({
2079
+ objType: "MacroHistory",
2080
+ nameField: "Id",
2081
+ }),
2082
+ },
2083
+ {
2084
+ name: "MacroInstruction",
2085
+ nameField: "Name",
2086
+ getRecords: () =>
2087
+ this.salesforce.listRecordOptions({
2088
+ objType: "MacroInstruction",
2089
+ nameField: "Name",
2090
+ }),
2091
+ },
2092
+ {
2093
+ name: "MacroUsage",
2094
+ nameField: "Name",
2095
+ getRecords: () =>
2096
+ this.salesforce.listRecordOptions({
2097
+ objType: "MacroUsage",
2098
+ nameField: "Name",
2099
+ }),
2100
+ },
2101
+ {
2102
+ name: "MailmergeTemplate",
2103
+ nameField: "Name",
2104
+ getRecords: () =>
2105
+ this.salesforce.listRecordOptions({
2106
+ objType: "MailmergeTemplate",
2107
+ nameField: "Name",
2108
+ }),
2109
+ },
2110
+ {
2111
+ name: "MatchingInformation",
2112
+ nameField: "Name",
2113
+ getRecords: () =>
2114
+ this.salesforce.listRecordOptions({
2115
+ objType: "MatchingInformation",
2116
+ nameField: "Name",
2117
+ }),
2118
+ },
2119
+ {
2120
+ name: "MessagingDeliveryError",
2121
+ nameField: "Name",
2122
+ getRecords: () =>
2123
+ this.salesforce.listRecordOptions({
2124
+ objType: "MessagingDeliveryError",
2125
+ nameField: "Name",
2126
+ }),
2127
+ },
2128
+ {
2129
+ name: "MessagingEndUser",
2130
+ nameField: "Name",
2131
+ getRecords: () =>
2132
+ this.salesforce.listRecordOptions({
2133
+ objType: "MessagingEndUser",
2134
+ nameField: "Name",
2135
+ }),
2136
+ },
2137
+ {
2138
+ name: "MessagingEndUserHistory",
2139
+ nameField: "Id",
2140
+ getRecords: () =>
2141
+ this.salesforce.listRecordOptions({
2142
+ objType: "MessagingEndUserHistory",
2143
+ nameField: "Id",
2144
+ }),
2145
+ },
2146
+ {
2147
+ name: "MessagingSession",
2148
+ nameField: "Name",
2149
+ getRecords: () =>
2150
+ this.salesforce.listRecordOptions({
2151
+ objType: "MessagingSession",
2152
+ nameField: "Name",
2153
+ }),
2154
+ },
2155
+ {
2156
+ name: "MessagingSessionFeed",
2157
+ nameField: "Id",
2158
+ getRecords: () =>
2159
+ this.salesforce.listRecordOptions({
2160
+ objType: "MessagingSessionFeed",
2161
+ nameField: "Id",
2162
+ }),
2163
+ },
2164
+ {
2165
+ name: "MessagingSessionHistory",
2166
+ nameField: "Id",
2167
+ getRecords: () =>
2168
+ this.salesforce.listRecordOptions({
2169
+ objType: "MessagingSessionHistory",
2170
+ nameField: "Id",
2171
+ }),
2172
+ },
2173
+ {
2174
+ name: "MlFeatureValueMetric",
2175
+ nameField: "Name",
2176
+ getRecords: () =>
2177
+ this.salesforce.listRecordOptions({
2178
+ objType: "MlFeatureValueMetric",
2179
+ nameField: "Name",
2180
+ }),
2181
+ },
2182
+ {
2183
+ name: "Note",
2184
+ nameField: "Title",
2185
+ getRecords: () =>
2186
+ this.salesforce.listRecordOptions({
2187
+ objType: "Note",
2188
+ nameField: "Title",
2189
+ }),
2190
+ },
2191
+ {
2192
+ name: "OperatingHours",
2193
+ nameField: "Name",
2194
+ getRecords: () =>
2195
+ this.salesforce.listRecordOptions({
2196
+ objType: "OperatingHours",
2197
+ nameField: "Name",
2198
+ }),
2199
+ },
2200
+ {
2201
+ name: "OperatingHoursFeed",
2202
+ nameField: "Id",
2203
+ getRecords: () =>
2204
+ this.salesforce.listRecordOptions({
2205
+ objType: "OperatingHoursFeed",
2206
+ nameField: "Id",
2207
+ }),
2208
+ },
2209
+ {
2210
+ name: "OperatingHoursHoliday",
2211
+ nameField: "OperatingHoursHolidayNumber",
2212
+ getRecords: () =>
2213
+ this.salesforce.listRecordOptions({
2214
+ objType: "OperatingHoursHoliday",
2215
+ nameField: "OperatingHoursHolidayNumber",
2216
+ }),
2217
+ },
2218
+ {
2219
+ name: "OperatingHoursHolidayFeed",
2220
+ nameField: "Id",
2221
+ getRecords: () =>
2222
+ this.salesforce.listRecordOptions({
2223
+ objType: "OperatingHoursHolidayFeed",
2224
+ nameField: "Id",
2225
+ }),
2226
+ },
2227
+ {
2228
+ name: "Opportunity",
2229
+ nameField: "Name",
2230
+ getRecords: () =>
2231
+ this.salesforce.listRecordOptions({
2232
+ objType: "Opportunity",
2233
+ nameField: "Name",
2234
+ }),
2235
+ },
2236
+ {
2237
+ name: "OpportunityCompetitor",
2238
+ nameField: "Id",
2239
+ getRecords: () =>
2240
+ this.salesforce.listRecordOptions({
2241
+ objType: "OpportunityCompetitor",
2242
+ nameField: "Id",
2243
+ }),
2244
+ },
2245
+ {
2246
+ name: "OpportunityContactRole",
2247
+ nameField: "Id",
2248
+ getRecords: () =>
2249
+ this.salesforce.listRecordOptions({
2250
+ objType: "OpportunityContactRole",
2251
+ nameField: "Id",
2252
+ }),
2253
+ },
2254
+ {
2255
+ name: "OpportunityFeed",
2256
+ nameField: "Id",
2257
+ getRecords: () =>
2258
+ this.salesforce.listRecordOptions({
2259
+ objType: "OpportunityFeed",
2260
+ nameField: "Id",
2261
+ }),
2262
+ },
2263
+ {
2264
+ name: "OpportunityFieldHistory",
2265
+ nameField: "Id",
2266
+ getRecords: () =>
2267
+ this.salesforce.listRecordOptions({
2268
+ objType: "OpportunityFieldHistory",
2269
+ nameField: "Id",
2270
+ }),
2271
+ },
2272
+ {
2273
+ name: "OpportunityHistory",
2274
+ nameField: "Id",
2275
+ getRecords: () =>
2276
+ this.salesforce.listRecordOptions({
2277
+ objType: "OpportunityHistory",
2278
+ nameField: "Id",
2279
+ }),
2280
+ },
2281
+ {
2282
+ name: "OpportunityLineItem",
2283
+ nameField: "Name",
2284
+ getRecords: () =>
2285
+ this.salesforce.listRecordOptions({
2286
+ objType: "OpportunityLineItem",
2287
+ nameField: "Name",
2288
+ }),
2289
+ },
2290
+ {
2291
+ name: "Order",
2292
+ nameField: "OrderNumber",
2293
+ getRecords: () =>
2294
+ this.salesforce.listRecordOptions({
2295
+ objType: "Order",
2296
+ nameField: "OrderNumber",
2297
+ }),
2298
+ },
2299
+ {
2300
+ name: "OrderFeed",
2301
+ nameField: "Id",
2302
+ getRecords: () =>
2303
+ this.salesforce.listRecordOptions({
2304
+ objType: "OrderFeed",
2305
+ nameField: "Id",
2306
+ }),
2307
+ },
2308
+ {
2309
+ name: "OrderHistory",
2310
+ nameField: "Id",
2311
+ getRecords: () =>
2312
+ this.salesforce.listRecordOptions({
2313
+ objType: "OrderHistory",
2314
+ nameField: "Id",
2315
+ }),
2316
+ },
2317
+ {
2318
+ name: "OrderItem",
2319
+ nameField: "OrderItemNumber",
2320
+ getRecords: () =>
2321
+ this.salesforce.listRecordOptions({
2322
+ objType: "OrderItem",
2323
+ nameField: "OrderItemNumber",
2324
+ }),
2325
+ },
2326
+ {
2327
+ name: "OrderItemFeed",
2328
+ nameField: "Id",
2329
+ getRecords: () =>
2330
+ this.salesforce.listRecordOptions({
2331
+ objType: "OrderItemFeed",
2332
+ nameField: "Id",
2333
+ }),
2334
+ },
2335
+ {
2336
+ name: "OrderItemHistory",
2337
+ nameField: "Id",
2338
+ getRecords: () =>
2339
+ this.salesforce.listRecordOptions({
2340
+ objType: "OrderItemHistory",
2341
+ nameField: "Id",
2342
+ }),
2343
+ },
2344
+ {
2345
+ name: "OrgDeleteRequest",
2346
+ nameField: "Name",
2347
+ getRecords: () =>
2348
+ this.salesforce.listRecordOptions({
2349
+ objType: "OrgDeleteRequest",
2350
+ nameField: "Name",
2351
+ }),
2352
+ },
2353
+ {
2354
+ name: "OrgWideEmailAddress",
2355
+ nameField: "Id",
2356
+ getRecords: () =>
2357
+ this.salesforce.listRecordOptions({
2358
+ objType: "OrgWideEmailAddress",
2359
+ nameField: "Id",
2360
+ }),
2361
+ },
2362
+ {
2363
+ name: "Organization",
2364
+ nameField: "Name",
2365
+ getRecords: () =>
2366
+ this.salesforce.listRecordOptions({
2367
+ objType: "Organization",
2368
+ nameField: "Name",
2369
+ }),
2370
+ },
2371
+ {
2372
+ name: "Partner",
2373
+ nameField: "Id",
2374
+ getRecords: () =>
2375
+ this.salesforce.listRecordOptions({
2376
+ objType: "Partner",
2377
+ nameField: "Id",
2378
+ }),
2379
+ },
2380
+ {
2381
+ name: "PartyConsent",
2382
+ nameField: "Name",
2383
+ getRecords: () =>
2384
+ this.salesforce.listRecordOptions({
2385
+ objType: "PartyConsent",
2386
+ nameField: "Name",
2387
+ }),
2388
+ },
2389
+ {
2390
+ name: "PartyConsentFeed",
2391
+ nameField: "Id",
2392
+ getRecords: () =>
2393
+ this.salesforce.listRecordOptions({
2394
+ objType: "PartyConsentFeed",
2395
+ nameField: "Id",
2396
+ }),
2397
+ },
2398
+ {
2399
+ name: "PartyConsentHistory",
2400
+ nameField: "Id",
2401
+ getRecords: () =>
2402
+ this.salesforce.listRecordOptions({
2403
+ objType: "PartyConsentHistory",
2404
+ nameField: "Id",
2405
+ }),
2406
+ },
2407
+ {
2408
+ name: "Payment",
2409
+ nameField: "PaymentNumber",
2410
+ getRecords: () =>
2411
+ this.salesforce.listRecordOptions({
2412
+ objType: "Payment",
2413
+ nameField: "PaymentNumber",
2414
+ }),
2415
+ },
2416
+ {
2417
+ name: "PaymentAuthorization",
2418
+ nameField: "PaymentAuthorizationNumber",
2419
+ getRecords: () =>
2420
+ this.salesforce.listRecordOptions({
2421
+ objType: "PaymentAuthorization",
2422
+ nameField: "PaymentAuthorizationNumber",
2423
+ }),
2424
+ },
2425
+ {
2426
+ name: "PaymentGateway",
2427
+ nameField: "PaymentGatewayName",
2428
+ getRecords: () =>
2429
+ this.salesforce.listRecordOptions({
2430
+ objType: "PaymentGateway",
2431
+ nameField: "PaymentGatewayName",
2432
+ }),
2433
+ },
2434
+ {
2435
+ name: "PaymentGatewayLog",
2436
+ nameField: "PaymentGatewayLogNumber",
2437
+ getRecords: () =>
2438
+ this.salesforce.listRecordOptions({
2439
+ objType: "PaymentGatewayLog",
2440
+ nameField: "PaymentGatewayLogNumber",
2441
+ }),
2442
+ },
2443
+ {
2444
+ name: "PaymentGroup",
2445
+ nameField: "PaymentGroupNumber",
2446
+ getRecords: () =>
2447
+ this.salesforce.listRecordOptions({
2448
+ objType: "PaymentGroup",
2449
+ nameField: "PaymentGroupNumber",
2450
+ }),
2451
+ },
2452
+ {
2453
+ name: "PaymentLineInvoice",
2454
+ nameField: "PaymentLineInvoiceNumber",
2455
+ getRecords: () =>
2456
+ this.salesforce.listRecordOptions({
2457
+ objType: "PaymentLineInvoice",
2458
+ nameField: "PaymentLineInvoiceNumber",
2459
+ }),
2460
+ },
2461
+ {
2462
+ name: "Period",
2463
+ nameField: "Id",
2464
+ getRecords: () =>
2465
+ this.salesforce.listRecordOptions({
2466
+ objType: "Period",
2467
+ nameField: "Id",
2468
+ }),
2469
+ },
2470
+ {
2471
+ name: "Pricebook2",
2472
+ nameField: "Name",
2473
+ getRecords: () =>
2474
+ this.salesforce.listRecordOptions({
2475
+ objType: "Pricebook2",
2476
+ nameField: "Name",
2477
+ }),
2478
+ },
2479
+ {
2480
+ name: "Pricebook2History",
2481
+ nameField: "Id",
2482
+ getRecords: () =>
2483
+ this.salesforce.listRecordOptions({
2484
+ objType: "Pricebook2History",
2485
+ nameField: "Id",
2486
+ }),
2487
+ },
2488
+ {
2489
+ name: "PricebookEntry",
2490
+ nameField: "Name",
2491
+ getRecords: () =>
2492
+ this.salesforce.listRecordOptions({
2493
+ objType: "PricebookEntry",
2494
+ nameField: "Name",
2495
+ }),
2496
+ },
2497
+ {
2498
+ name: "PricebookEntryHistory",
2499
+ nameField: "Id",
2500
+ getRecords: () =>
2501
+ this.salesforce.listRecordOptions({
2502
+ objType: "PricebookEntryHistory",
2503
+ nameField: "Id",
2504
+ }),
2505
+ },
2506
+ {
2507
+ name: "ProcessException",
2508
+ nameField: "ProcessExceptionNumber",
2509
+ getRecords: () =>
2510
+ this.salesforce.listRecordOptions({
2511
+ objType: "ProcessException",
2512
+ nameField: "ProcessExceptionNumber",
2513
+ }),
2514
+ },
2515
+ {
2516
+ name: "ProcessInstanceNode",
2517
+ nameField: "Id",
2518
+ getRecords: () =>
2519
+ this.salesforce.listRecordOptions({
2520
+ objType: "ProcessInstanceNode",
2521
+ nameField: "Id",
2522
+ }),
2523
+ },
2524
+ {
2525
+ name: "Product2",
2526
+ nameField: "Name",
2527
+ getRecords: () =>
2528
+ this.salesforce.listRecordOptions({
2529
+ objType: "Product2",
2530
+ nameField: "Name",
2531
+ }),
2532
+ },
2533
+ {
2534
+ name: "Product2Feed",
2535
+ nameField: "Id",
2536
+ getRecords: () =>
2537
+ this.salesforce.listRecordOptions({
2538
+ objType: "Product2Feed",
2539
+ nameField: "Id",
2540
+ }),
2541
+ },
2542
+ {
2543
+ name: "Product2History",
2544
+ nameField: "Id",
2545
+ getRecords: () =>
2546
+ this.salesforce.listRecordOptions({
2547
+ objType: "Product2History",
2548
+ nameField: "Id",
2549
+ }),
2550
+ },
2551
+ {
2552
+ name: "ProductAttribute",
2553
+ nameField: "Name",
2554
+ getRecords: () =>
2555
+ this.salesforce.listRecordOptions({
2556
+ objType: "ProductAttribute",
2557
+ nameField: "Name",
2558
+ }),
2559
+ },
2560
+ {
2561
+ name: "ProductAttributeSetProduct",
2562
+ nameField: "Name",
2563
+ getRecords: () =>
2564
+ this.salesforce.listRecordOptions({
2565
+ objType: "ProductAttributeSetProduct",
2566
+ nameField: "Name",
2567
+ }),
2568
+ },
2569
+ {
2570
+ name: "ProductCatalog",
2571
+ nameField: "Name",
2572
+ getRecords: () =>
2573
+ this.salesforce.listRecordOptions({
2574
+ objType: "ProductCatalog",
2575
+ nameField: "Name",
2576
+ }),
2577
+ },
2578
+ {
2579
+ name: "ProductCatalogFeed",
2580
+ nameField: "Id",
2581
+ getRecords: () =>
2582
+ this.salesforce.listRecordOptions({
2583
+ objType: "ProductCatalogFeed",
2584
+ nameField: "Id",
2585
+ }),
2586
+ },
2587
+ {
2588
+ name: "ProductCatalogHistory",
2589
+ nameField: "Id",
2590
+ getRecords: () =>
2591
+ this.salesforce.listRecordOptions({
2592
+ objType: "ProductCatalogHistory",
2593
+ nameField: "Id",
2594
+ }),
2595
+ },
2596
+ {
2597
+ name: "ProductCategory",
2598
+ nameField: "Name",
2599
+ getRecords: () =>
2600
+ this.salesforce.listRecordOptions({
2601
+ objType: "ProductCategory",
2602
+ nameField: "Name",
2603
+ }),
2604
+ },
2605
+ {
2606
+ name: "ProductCategoryFeed",
2607
+ nameField: "Id",
2608
+ getRecords: () =>
2609
+ this.salesforce.listRecordOptions({
2610
+ objType: "ProductCategoryFeed",
2611
+ nameField: "Id",
2612
+ }),
2613
+ },
2614
+ {
2615
+ name: "ProductCategoryHistory",
2616
+ nameField: "Id",
2617
+ getRecords: () =>
2618
+ this.salesforce.listRecordOptions({
2619
+ objType: "ProductCategoryHistory",
2620
+ nameField: "Id",
2621
+ }),
2622
+ },
2623
+ {
2624
+ name: "ProductCategoryProduct",
2625
+ nameField: "Name",
2626
+ getRecords: () =>
2627
+ this.salesforce.listRecordOptions({
2628
+ objType: "ProductCategoryProduct",
2629
+ nameField: "Name",
2630
+ }),
2631
+ },
2632
+ {
2633
+ name: "ProductCategoryProductHistory",
2634
+ nameField: "Id",
2635
+ getRecords: () =>
2636
+ this.salesforce.listRecordOptions({
2637
+ objType: "ProductCategoryProductHistory",
2638
+ nameField: "Id",
2639
+ }),
2640
+ },
2641
+ {
2642
+ name: "ProductConsumptionSchedule",
2643
+ nameField: "Id",
2644
+ getRecords: () =>
2645
+ this.salesforce.listRecordOptions({
2646
+ objType: "ProductConsumptionSchedule",
2647
+ nameField: "Id",
2648
+ }),
2649
+ },
2650
+ {
2651
+ name: "Profile",
2652
+ nameField: "Name",
2653
+ getRecords: () =>
2654
+ this.salesforce.listRecordOptions({
2655
+ objType: "Profile",
2656
+ nameField: "Name",
2657
+ }),
2658
+ },
2659
+ {
2660
+ name: "Promotion",
2661
+ nameField: "Name",
2662
+ getRecords: () =>
2663
+ this.salesforce.listRecordOptions({
2664
+ objType: "Promotion",
2665
+ nameField: "Name",
2666
+ }),
2667
+ },
2668
+ {
2669
+ name: "PromotionFeed",
2670
+ nameField: "Id",
2671
+ getRecords: () =>
2672
+ this.salesforce.listRecordOptions({
2673
+ objType: "PromotionFeed",
2674
+ nameField: "Id",
2675
+ }),
2676
+ },
2677
+ {
2678
+ name: "PromotionHistory",
2679
+ nameField: "Id",
2680
+ getRecords: () =>
2681
+ this.salesforce.listRecordOptions({
2682
+ objType: "PromotionHistory",
2683
+ nameField: "Id",
2684
+ }),
2685
+ },
2686
+ {
2687
+ name: "PromptAction",
2688
+ nameField: "Name",
2689
+ getRecords: () =>
2690
+ this.salesforce.listRecordOptions({
2691
+ objType: "PromptAction",
2692
+ nameField: "Name",
2693
+ }),
2694
+ },
2695
+ {
2696
+ name: "QueueSobject",
2697
+ nameField: "Id",
2698
+ getRecords: () =>
2699
+ this.salesforce.listRecordOptions({
2700
+ objType: "QueueSobject",
2701
+ nameField: "Id",
2702
+ }),
2703
+ },
2704
+ {
2705
+ name: "QuickText",
2706
+ nameField: "Name",
2707
+ getRecords: () =>
2708
+ this.salesforce.listRecordOptions({
2709
+ objType: "QuickText",
2710
+ nameField: "Name",
2711
+ }),
2712
+ },
2713
+ {
2714
+ name: "QuickTextHistory",
2715
+ nameField: "Id",
2716
+ getRecords: () =>
2717
+ this.salesforce.listRecordOptions({
2718
+ objType: "QuickTextHistory",
2719
+ nameField: "Id",
2720
+ }),
2721
+ },
2722
+ {
2723
+ name: "QuickTextUsage",
2724
+ nameField: "Name",
2725
+ getRecords: () =>
2726
+ this.salesforce.listRecordOptions({
2727
+ objType: "QuickTextUsage",
2728
+ nameField: "Name",
2729
+ }),
2730
+ },
2731
+ {
2732
+ name: "QuoteTemplateRichTextData",
2733
+ nameField: "Name",
2734
+ getRecords: () =>
2735
+ this.salesforce.listRecordOptions({
2736
+ objType: "QuoteTemplateRichTextData",
2737
+ nameField: "Name",
2738
+ }),
2739
+ },
2740
+ {
2741
+ name: "Recommendation",
2742
+ nameField: "Name",
2743
+ getRecords: () =>
2744
+ this.salesforce.listRecordOptions({
2745
+ objType: "Recommendation",
2746
+ nameField: "Name",
2747
+ }),
2748
+ },
2749
+ {
2750
+ name: "RecordAction",
2751
+ nameField: "Id",
2752
+ getRecords: () =>
2753
+ this.salesforce.listRecordOptions({
2754
+ objType: "RecordAction",
2755
+ nameField: "Id",
2756
+ }),
2757
+ },
2758
+ {
2759
+ name: "RecordType",
2760
+ nameField: "Name",
2761
+ getRecords: () =>
2762
+ this.salesforce.listRecordOptions({
2763
+ objType: "RecordType",
2764
+ nameField: "Name",
2765
+ }),
2766
+ },
2767
+ {
2768
+ name: "Refund",
2769
+ nameField: "RefundNumber",
2770
+ getRecords: () =>
2771
+ this.salesforce.listRecordOptions({
2772
+ objType: "Refund",
2773
+ nameField: "RefundNumber",
2774
+ }),
2775
+ },
2776
+ {
2777
+ name: "RefundLinePayment",
2778
+ nameField: "RefundLinePaymentNumber",
2779
+ getRecords: () =>
2780
+ this.salesforce.listRecordOptions({
2781
+ objType: "RefundLinePayment",
2782
+ nameField: "RefundLinePaymentNumber",
2783
+ }),
2784
+ },
2785
+ {
2786
+ name: "ReportAnomalyEventStore",
2787
+ nameField: "ReportAnomalyEventNumber",
2788
+ getRecords: () =>
2789
+ this.salesforce.listRecordOptions({
2790
+ objType: "ReportAnomalyEventStore",
2791
+ nameField: "ReportAnomalyEventNumber",
2792
+ }),
2793
+ },
2794
+ {
2795
+ name: "ReportAnomalyEventStoreFeed",
2796
+ nameField: "Id",
2797
+ getRecords: () =>
2798
+ this.salesforce.listRecordOptions({
2799
+ objType: "ReportAnomalyEventStoreFeed",
2800
+ nameField: "Id",
2801
+ }),
2802
+ },
2803
+ {
2804
+ name: "ReportFeed",
2805
+ nameField: "Id",
2806
+ getRecords: () =>
2807
+ this.salesforce.listRecordOptions({
2808
+ objType: "ReportFeed",
2809
+ nameField: "Id",
2810
+ }),
2811
+ },
2812
+ {
2813
+ name: "ResourceAbsence",
2814
+ nameField: "AbsenceNumber",
2815
+ getRecords: () =>
2816
+ this.salesforce.listRecordOptions({
2817
+ objType: "ResourceAbsence",
2818
+ nameField: "AbsenceNumber",
2819
+ }),
2820
+ },
2821
+ {
2822
+ name: "ResourceAbsenceFeed",
2823
+ nameField: "Id",
2824
+ getRecords: () =>
2825
+ this.salesforce.listRecordOptions({
2826
+ objType: "ResourceAbsenceFeed",
2827
+ nameField: "Id",
2828
+ }),
2829
+ },
2830
+ {
2831
+ name: "ResourceAbsenceHistory",
2832
+ nameField: "Id",
2833
+ getRecords: () =>
2834
+ this.salesforce.listRecordOptions({
2835
+ objType: "ResourceAbsenceHistory",
2836
+ nameField: "Id",
2837
+ }),
2838
+ },
2839
+ {
2840
+ name: "ResourcePreference",
2841
+ nameField: "ResourcePreferenceNumber",
2842
+ getRecords: () =>
2843
+ this.salesforce.listRecordOptions({
2844
+ objType: "ResourcePreference",
2845
+ nameField: "ResourcePreferenceNumber",
2846
+ }),
2847
+ },
2848
+ {
2849
+ name: "ResourcePreferenceFeed",
2850
+ nameField: "Id",
2851
+ getRecords: () =>
2852
+ this.salesforce.listRecordOptions({
2853
+ objType: "ResourcePreferenceFeed",
2854
+ nameField: "Id",
2855
+ }),
2856
+ },
2857
+ {
2858
+ name: "ResourcePreferenceHistory",
2859
+ nameField: "Id",
2860
+ getRecords: () =>
2861
+ this.salesforce.listRecordOptions({
2862
+ objType: "ResourcePreferenceHistory",
2863
+ nameField: "Id",
2864
+ }),
2865
+ },
2866
+ {
2867
+ name: "ReturnOrder",
2868
+ nameField: "ReturnOrderNumber",
2869
+ getRecords: () =>
2870
+ this.salesforce.listRecordOptions({
2871
+ objType: "ReturnOrder",
2872
+ nameField: "ReturnOrderNumber",
2873
+ }),
2874
+ },
2875
+ {
2876
+ name: "ReturnOrderFeed",
2877
+ nameField: "Id",
2878
+ getRecords: () =>
2879
+ this.salesforce.listRecordOptions({
2880
+ objType: "ReturnOrderFeed",
2881
+ nameField: "Id",
2882
+ }),
2883
+ },
2884
+ {
2885
+ name: "ReturnOrderHistory",
2886
+ nameField: "Id",
2887
+ getRecords: () =>
2888
+ this.salesforce.listRecordOptions({
2889
+ objType: "ReturnOrderHistory",
2890
+ nameField: "Id",
2891
+ }),
2892
+ },
2893
+ {
2894
+ name: "ReturnOrderItemAdjustment",
2895
+ nameField: "ReturnOrderItemAdjustmentNumber",
2896
+ getRecords: () =>
2897
+ this.salesforce.listRecordOptions({
2898
+ objType: "ReturnOrderItemAdjustment",
2899
+ nameField: "ReturnOrderItemAdjustmentNumber",
2900
+ }),
2901
+ },
2902
+ {
2903
+ name: "ReturnOrderItemTax",
2904
+ nameField: "ReturnOrderItemTaxNumber",
2905
+ getRecords: () =>
2906
+ this.salesforce.listRecordOptions({
2907
+ objType: "ReturnOrderItemTax",
2908
+ nameField: "ReturnOrderItemTaxNumber",
2909
+ }),
2910
+ },
2911
+ {
2912
+ name: "ReturnOrderLineItem",
2913
+ nameField: "ReturnOrderLineItemNumber",
2914
+ getRecords: () =>
2915
+ this.salesforce.listRecordOptions({
2916
+ objType: "ReturnOrderLineItem",
2917
+ nameField: "ReturnOrderLineItemNumber",
2918
+ }),
2919
+ },
2920
+ {
2921
+ name: "ReturnOrderLineItemFeed",
2922
+ nameField: "Id",
2923
+ getRecords: () =>
2924
+ this.salesforce.listRecordOptions({
2925
+ objType: "ReturnOrderLineItemFeed",
2926
+ nameField: "Id",
2927
+ }),
2928
+ },
2929
+ {
2930
+ name: "ReturnOrderLineItemHistory",
2931
+ nameField: "Id",
2932
+ getRecords: () =>
2933
+ this.salesforce.listRecordOptions({
2934
+ objType: "ReturnOrderLineItemHistory",
2935
+ nameField: "Id",
2936
+ }),
2937
+ },
2938
+ {
2939
+ name: "Scontrol",
2940
+ nameField: "DeveloperName",
2941
+ getRecords: () =>
2942
+ this.salesforce.listRecordOptions({
2943
+ objType: "Scontrol",
2944
+ nameField: "DeveloperName",
2945
+ }),
2946
+ },
2947
+ {
2948
+ name: "SearchPromotionRule",
2949
+ nameField: "Id",
2950
+ getRecords: () =>
2951
+ this.salesforce.listRecordOptions({
2952
+ objType: "SearchPromotionRule",
2953
+ nameField: "Id",
2954
+ }),
2955
+ },
2956
+ {
2957
+ name: "ServiceAppointment",
2958
+ nameField: "AppointmentNumber",
2959
+ getRecords: () =>
2960
+ this.salesforce.listRecordOptions({
2961
+ objType: "ServiceAppointment",
2962
+ nameField: "AppointmentNumber",
2963
+ }),
2964
+ },
2965
+ {
2966
+ name: "ServiceAppointmentFeed",
2967
+ nameField: "Id",
2968
+ getRecords: () =>
2969
+ this.salesforce.listRecordOptions({
2970
+ objType: "ServiceAppointmentFeed",
2971
+ nameField: "Id",
2972
+ }),
2973
+ },
2974
+ {
2975
+ name: "ServiceAppointmentHistory",
2976
+ nameField: "Id",
2977
+ getRecords: () =>
2978
+ this.salesforce.listRecordOptions({
2979
+ objType: "ServiceAppointmentHistory",
2980
+ nameField: "Id",
2981
+ }),
2982
+ },
2983
+ {
2984
+ name: "ServiceContract",
2985
+ nameField: "Name",
2986
+ getRecords: () =>
2987
+ this.salesforce.listRecordOptions({
2988
+ objType: "ServiceContract",
2989
+ nameField: "Name",
2990
+ }),
2991
+ },
2992
+ {
2993
+ name: "ServiceContractFeed",
2994
+ nameField: "Id",
2995
+ getRecords: () =>
2996
+ this.salesforce.listRecordOptions({
2997
+ objType: "ServiceContractFeed",
2998
+ nameField: "Id",
2999
+ }),
3000
+ },
3001
+ {
3002
+ name: "ServiceContractHistory",
3003
+ nameField: "Id",
3004
+ getRecords: () =>
3005
+ this.salesforce.listRecordOptions({
3006
+ objType: "ServiceContractHistory",
3007
+ nameField: "Id",
3008
+ }),
3009
+ },
3010
+ {
3011
+ name: "ServiceResource",
3012
+ nameField: "Name",
3013
+ getRecords: () =>
3014
+ this.salesforce.listRecordOptions({
3015
+ objType: "ServiceResource",
3016
+ nameField: "Name",
3017
+ }),
3018
+ },
3019
+ {
3020
+ name: "ServiceResourceFeed",
3021
+ nameField: "Id",
3022
+ getRecords: () =>
3023
+ this.salesforce.listRecordOptions({
3024
+ objType: "ServiceResourceFeed",
3025
+ nameField: "Id",
3026
+ }),
3027
+ },
3028
+ {
3029
+ name: "ServiceResourceHistory",
3030
+ nameField: "Id",
3031
+ getRecords: () =>
3032
+ this.salesforce.listRecordOptions({
3033
+ objType: "ServiceResourceHistory",
3034
+ nameField: "Id",
3035
+ }),
3036
+ },
3037
+ {
3038
+ name: "ServiceResourceSkill",
3039
+ nameField: "SkillNumber",
3040
+ getRecords: () =>
3041
+ this.salesforce.listRecordOptions({
3042
+ objType: "ServiceResourceSkill",
3043
+ nameField: "SkillNumber",
3044
+ }),
3045
+ },
3046
+ {
3047
+ name: "ServiceResourceSkillFeed",
3048
+ nameField: "Id",
3049
+ getRecords: () =>
3050
+ this.salesforce.listRecordOptions({
3051
+ objType: "ServiceResourceSkillFeed",
3052
+ nameField: "Id",
3053
+ }),
3054
+ },
3055
+ {
3056
+ name: "ServiceResourceSkillHistory",
3057
+ nameField: "Id",
3058
+ getRecords: () =>
3059
+ this.salesforce.listRecordOptions({
3060
+ objType: "ServiceResourceSkillHistory",
3061
+ nameField: "Id",
3062
+ }),
3063
+ },
3064
+ {
3065
+ name: "ServiceTerritory",
3066
+ nameField: "Name",
3067
+ getRecords: () =>
3068
+ this.salesforce.listRecordOptions({
3069
+ objType: "ServiceTerritory",
3070
+ nameField: "Name",
3071
+ }),
3072
+ },
3073
+ {
3074
+ name: "ServiceTerritoryFeed",
3075
+ nameField: "Id",
3076
+ getRecords: () =>
3077
+ this.salesforce.listRecordOptions({
3078
+ objType: "ServiceTerritoryFeed",
3079
+ nameField: "Id",
3080
+ }),
3081
+ },
3082
+ {
3083
+ name: "ServiceTerritoryHistory",
3084
+ nameField: "Id",
3085
+ getRecords: () =>
3086
+ this.salesforce.listRecordOptions({
3087
+ objType: "ServiceTerritoryHistory",
3088
+ nameField: "Id",
3089
+ }),
3090
+ },
3091
+ {
3092
+ name: "ServiceTerritoryMember",
3093
+ nameField: "MemberNumber",
3094
+ getRecords: () =>
3095
+ this.salesforce.listRecordOptions({
3096
+ objType: "ServiceTerritoryMember",
3097
+ nameField: "MemberNumber",
3098
+ }),
3099
+ },
3100
+ {
3101
+ name: "ServiceTerritoryMemberFeed",
3102
+ nameField: "Id",
3103
+ getRecords: () =>
3104
+ this.salesforce.listRecordOptions({
3105
+ objType: "ServiceTerritoryMemberFeed",
3106
+ nameField: "Id",
3107
+ }),
3108
+ },
3109
+ {
3110
+ name: "ServiceTerritoryMemberHistory",
3111
+ nameField: "Id",
3112
+ getRecords: () =>
3113
+ this.salesforce.listRecordOptions({
3114
+ objType: "ServiceTerritoryMemberHistory",
3115
+ nameField: "Id",
3116
+ }),
3117
+ },
3118
+ {
3119
+ name: "ServiceTerritoryWorkType",
3120
+ nameField: "Name",
3121
+ getRecords: () =>
3122
+ this.salesforce.listRecordOptions({
3123
+ objType: "ServiceTerritoryWorkType",
3124
+ nameField: "Name",
3125
+ }),
3126
+ },
3127
+ {
3128
+ name: "ServiceTerritoryWorkTypeFeed",
3129
+ nameField: "Id",
3130
+ getRecords: () =>
3131
+ this.salesforce.listRecordOptions({
3132
+ objType: "ServiceTerritoryWorkTypeFeed",
3133
+ nameField: "Id",
3134
+ }),
3135
+ },
3136
+ {
3137
+ name: "ServiceTerritoryWorkTypeHistory",
3138
+ nameField: "Id",
3139
+ getRecords: () =>
3140
+ this.salesforce.listRecordOptions({
3141
+ objType: "ServiceTerritoryWorkTypeHistory",
3142
+ nameField: "Id",
3143
+ }),
3144
+ },
3145
+ {
3146
+ name: "SessionHijackingEventStore",
3147
+ nameField: "SessionHijackingEventNumber",
3148
+ getRecords: () =>
3149
+ this.salesforce.listRecordOptions({
3150
+ objType: "SessionHijackingEventStore",
3151
+ nameField: "SessionHijackingEventNumber",
3152
+ }),
3153
+ },
3154
+ {
3155
+ name: "SessionHijackingEventStoreFeed",
3156
+ nameField: "Id",
3157
+ getRecords: () =>
3158
+ this.salesforce.listRecordOptions({
3159
+ objType: "SessionHijackingEventStoreFeed",
3160
+ nameField: "Id",
3161
+ }),
3162
+ },
3163
+ {
3164
+ name: "SetupAssistantStep",
3165
+ nameField: "Name",
3166
+ getRecords: () =>
3167
+ this.salesforce.listRecordOptions({
3168
+ objType: "SetupAssistantStep",
3169
+ nameField: "Name",
3170
+ }),
3171
+ },
3172
+ {
3173
+ name: "Shift",
3174
+ nameField: "ShiftNumber",
3175
+ getRecords: () =>
3176
+ this.salesforce.listRecordOptions({
3177
+ objType: "Shift",
3178
+ nameField: "ShiftNumber",
3179
+ }),
3180
+ },
3181
+ {
3182
+ name: "ShiftFeed",
3183
+ nameField: "Id",
3184
+ getRecords: () =>
3185
+ this.salesforce.listRecordOptions({
3186
+ objType: "ShiftFeed",
3187
+ nameField: "Id",
3188
+ }),
3189
+ },
3190
+ {
3191
+ name: "ShiftHistory",
3192
+ nameField: "Id",
3193
+ getRecords: () =>
3194
+ this.salesforce.listRecordOptions({
3195
+ objType: "ShiftHistory",
3196
+ nameField: "Id",
3197
+ }),
3198
+ },
3199
+ {
3200
+ name: "Shipment",
3201
+ nameField: "ShipmentNumber",
3202
+ getRecords: () =>
3203
+ this.salesforce.listRecordOptions({
3204
+ objType: "Shipment",
3205
+ nameField: "ShipmentNumber",
3206
+ }),
3207
+ },
3208
+ {
3209
+ name: "ShipmentFeed",
3210
+ nameField: "Id",
3211
+ getRecords: () =>
3212
+ this.salesforce.listRecordOptions({
3213
+ objType: "ShipmentFeed",
3214
+ nameField: "Id",
3215
+ }),
3216
+ },
3217
+ {
3218
+ name: "ShipmentHistory",
3219
+ nameField: "Id",
3220
+ getRecords: () =>
3221
+ this.salesforce.listRecordOptions({
3222
+ objType: "ShipmentHistory",
3223
+ nameField: "Id",
3224
+ }),
3225
+ },
3226
+ {
3227
+ name: "SiteFeed",
3228
+ nameField: "Id",
3229
+ getRecords: () =>
3230
+ this.salesforce.listRecordOptions({
3231
+ objType: "SiteFeed",
3232
+ nameField: "Id",
3233
+ }),
3234
+ },
3235
+ {
3236
+ name: "SiteHistory",
3237
+ nameField: "Id",
3238
+ getRecords: () =>
3239
+ this.salesforce.listRecordOptions({
3240
+ objType: "SiteHistory",
3241
+ nameField: "Id",
3242
+ }),
3243
+ },
3244
+ {
3245
+ name: "SkillRequirement",
3246
+ nameField: "SkillNumber",
3247
+ getRecords: () =>
3248
+ this.salesforce.listRecordOptions({
3249
+ objType: "SkillRequirement",
3250
+ nameField: "SkillNumber",
3251
+ }),
3252
+ },
3253
+ {
3254
+ name: "SkillRequirementFeed",
3255
+ nameField: "Id",
3256
+ getRecords: () =>
3257
+ this.salesforce.listRecordOptions({
3258
+ objType: "SkillRequirementFeed",
3259
+ nameField: "Id",
3260
+ }),
3261
+ },
3262
+ {
3263
+ name: "SkillRequirementHistory",
3264
+ nameField: "Id",
3265
+ getRecords: () =>
3266
+ this.salesforce.listRecordOptions({
3267
+ objType: "SkillRequirementHistory",
3268
+ nameField: "Id",
3269
+ }),
3270
+ },
3271
+ {
3272
+ name: "Solution",
3273
+ nameField: "SolutionName",
3274
+ getRecords: () =>
3275
+ this.salesforce.listRecordOptions({
3276
+ objType: "Solution",
3277
+ nameField: "SolutionName",
3278
+ }),
3279
+ },
3280
+ {
3281
+ name: "SolutionFeed",
3282
+ nameField: "Id",
3283
+ getRecords: () =>
3284
+ this.salesforce.listRecordOptions({
3285
+ objType: "SolutionFeed",
3286
+ nameField: "Id",
3287
+ }),
3288
+ },
3289
+ {
3290
+ name: "SolutionHistory",
3291
+ nameField: "Id",
3292
+ getRecords: () =>
3293
+ this.salesforce.listRecordOptions({
3294
+ objType: "SolutionHistory",
3295
+ nameField: "Id",
3296
+ }),
3297
+ },
3298
+ {
3299
+ name: "StaticResource",
3300
+ nameField: "Name",
3301
+ getRecords: () =>
3302
+ this.salesforce.listRecordOptions({
3303
+ objType: "StaticResource",
3304
+ nameField: "Name",
3305
+ }),
3306
+ },
3307
+ {
3308
+ name: "StreamingChannel",
3309
+ nameField: "Name",
3310
+ getRecords: () =>
3311
+ this.salesforce.listRecordOptions({
3312
+ objType: "StreamingChannel",
3313
+ nameField: "Name",
3314
+ }),
3315
+ },
3316
+ {
3317
+ name: "Task",
3318
+ nameField: "Subject",
3319
+ getRecords: () =>
3320
+ this.salesforce.listRecordOptions({
3321
+ objType: "Task",
3322
+ nameField: "Subject",
3323
+ }),
3324
+ },
3325
+ {
3326
+ name: "TaskFeed",
3327
+ nameField: "Id",
3328
+ getRecords: () =>
3329
+ this.salesforce.listRecordOptions({
3330
+ objType: "TaskFeed",
3331
+ nameField: "Id",
3332
+ }),
3333
+ },
3334
+ {
3335
+ name: "ThreatDetectionFeedback",
3336
+ nameField: "ThreatDetectionFeedbackNumber",
3337
+ getRecords: () =>
3338
+ this.salesforce.listRecordOptions({
3339
+ objType: "ThreatDetectionFeedback",
3340
+ nameField: "ThreatDetectionFeedbackNumber",
3341
+ }),
3342
+ },
3343
+ {
3344
+ name: "ThreatDetectionFeedbackFeed",
3345
+ nameField: "Id",
3346
+ getRecords: () =>
3347
+ this.salesforce.listRecordOptions({
3348
+ objType: "ThreatDetectionFeedbackFeed",
3349
+ nameField: "Id",
3350
+ }),
3351
+ },
3352
+ {
3353
+ name: "TimeSlot",
3354
+ nameField: "TimeSlotNumber",
3355
+ getRecords: () =>
3356
+ this.salesforce.listRecordOptions({
3357
+ objType: "TimeSlot",
3358
+ nameField: "TimeSlotNumber",
3359
+ }),
3360
+ },
3361
+ {
3362
+ name: "TodayGoal",
3363
+ nameField: "Name",
3364
+ getRecords: () =>
3365
+ this.salesforce.listRecordOptions({
3366
+ objType: "TodayGoal",
3367
+ nameField: "Name",
3368
+ }),
3369
+ },
3370
+ {
3371
+ name: "Topic",
3372
+ nameField: "Name",
3373
+ getRecords: () =>
3374
+ this.salesforce.listRecordOptions({
3375
+ objType: "Topic",
3376
+ nameField: "Name",
3377
+ }),
3378
+ },
3379
+ {
3380
+ name: "TopicAssignment",
3381
+ nameField: "Id",
3382
+ getRecords: () =>
3383
+ this.salesforce.listRecordOptions({
3384
+ objType: "TopicAssignment",
3385
+ nameField: "Id",
3386
+ }),
3387
+ },
3388
+ {
3389
+ name: "TopicFeed",
3390
+ nameField: "Id",
3391
+ getRecords: () =>
3392
+ this.salesforce.listRecordOptions({
3393
+ objType: "TopicFeed",
3394
+ nameField: "Id",
3395
+ }),
3396
+ },
3397
+ {
3398
+ name: "User",
3399
+ nameField: "Name",
3400
+ getRecords: () =>
3401
+ this.salesforce.listRecordOptions({
3402
+ objType: "User",
3403
+ nameField: "Name",
3404
+ }),
3405
+ },
3406
+ {
3407
+ name: "UserAppInfo",
3408
+ nameField: "Id",
3409
+ getRecords: () =>
3410
+ this.salesforce.listRecordOptions({
3411
+ objType: "UserAppInfo",
3412
+ nameField: "Id",
3413
+ }),
3414
+ },
3415
+ {
3416
+ name: "UserAppMenuCustomization",
3417
+ nameField: "Id",
3418
+ getRecords: () =>
3419
+ this.salesforce.listRecordOptions({
3420
+ objType: "UserAppMenuCustomization",
3421
+ nameField: "Id",
3422
+ }),
3423
+ },
3424
+ {
3425
+ name: "UserEmailPreferredPerson",
3426
+ nameField: "Name",
3427
+ getRecords: () =>
3428
+ this.salesforce.listRecordOptions({
3429
+ objType: "UserEmailPreferredPerson",
3430
+ nameField: "Name",
3431
+ }),
3432
+ },
3433
+ {
3434
+ name: "UserFeed",
3435
+ nameField: "Id",
3436
+ getRecords: () =>
3437
+ this.salesforce.listRecordOptions({
3438
+ objType: "UserFeed",
3439
+ nameField: "Id",
3440
+ }),
3441
+ },
3442
+ {
3443
+ name: "UserProvAccount",
3444
+ nameField: "Name",
3445
+ getRecords: () =>
3446
+ this.salesforce.listRecordOptions({
3447
+ objType: "UserProvAccount",
3448
+ nameField: "Name",
3449
+ }),
3450
+ },
3451
+ {
3452
+ name: "UserProvAccountStaging",
3453
+ nameField: "Name",
3454
+ getRecords: () =>
3455
+ this.salesforce.listRecordOptions({
3456
+ objType: "UserProvAccountStaging",
3457
+ nameField: "Name",
3458
+ }),
3459
+ },
3460
+ {
3461
+ name: "UserProvMockTarget",
3462
+ nameField: "Name",
3463
+ getRecords: () =>
3464
+ this.salesforce.listRecordOptions({
3465
+ objType: "UserProvMockTarget",
3466
+ nameField: "Name",
3467
+ }),
3468
+ },
3469
+ {
3470
+ name: "UserProvisioningLog",
3471
+ nameField: "Name",
3472
+ getRecords: () =>
3473
+ this.salesforce.listRecordOptions({
3474
+ objType: "UserProvisioningLog",
3475
+ nameField: "Name",
3476
+ }),
3477
+ },
3478
+ {
3479
+ name: "UserProvisioningRequest",
3480
+ nameField: "Name",
3481
+ getRecords: () =>
3482
+ this.salesforce.listRecordOptions({
3483
+ objType: "UserProvisioningRequest",
3484
+ nameField: "Name",
3485
+ }),
3486
+ },
3487
+ {
3488
+ name: "UserRole",
3489
+ nameField: "Name",
3490
+ getRecords: () =>
3491
+ this.salesforce.listRecordOptions({
3492
+ objType: "UserRole",
3493
+ nameField: "Name",
3494
+ }),
3495
+ },
3496
+ {
3497
+ name: "VoiceCall",
3498
+ nameField: "Id",
3499
+ getRecords: () =>
3500
+ this.salesforce.listRecordOptions({
3501
+ objType: "VoiceCall",
3502
+ nameField: "Id",
3503
+ }),
3504
+ },
3505
+ {
3506
+ name: "VoiceCallFeed",
3507
+ nameField: "Id",
3508
+ getRecords: () =>
3509
+ this.salesforce.listRecordOptions({
3510
+ objType: "VoiceCallFeed",
3511
+ nameField: "Id",
3512
+ }),
3513
+ },
3514
+ {
3515
+ name: "VoiceCallRecording",
3516
+ nameField: "Name",
3517
+ getRecords: () =>
3518
+ this.salesforce.listRecordOptions({
3519
+ objType: "VoiceCallRecording",
3520
+ nameField: "Name",
3521
+ }),
3522
+ },
3523
+ {
3524
+ name: "Vote",
3525
+ nameField: "Id",
3526
+ getRecords: () =>
3527
+ this.salesforce.listRecordOptions({
3528
+ objType: "Vote",
3529
+ nameField: "Id",
3530
+ }),
3531
+ },
3532
+ {
3533
+ name: "WaveAutoInstallRequest",
3534
+ nameField: "Name",
3535
+ getRecords: () =>
3536
+ this.salesforce.listRecordOptions({
3537
+ objType: "WaveAutoInstallRequest",
3538
+ nameField: "Name",
3539
+ }),
3540
+ },
3541
+ {
3542
+ name: "WaveCompatibilityCheckItem",
3543
+ nameField: "Name",
3544
+ getRecords: () =>
3545
+ this.salesforce.listRecordOptions({
3546
+ objType: "WaveCompatibilityCheckItem",
3547
+ nameField: "Name",
3548
+ }),
3549
+ },
3550
+ {
3551
+ name: "WebCart",
3552
+ nameField: "Name",
3553
+ getRecords: () =>
3554
+ this.salesforce.listRecordOptions({
3555
+ objType: "WebCart",
3556
+ nameField: "Name",
3557
+ }),
3558
+ },
3559
+ {
3560
+ name: "WebCartHistory",
3561
+ nameField: "Id",
3562
+ getRecords: () =>
3563
+ this.salesforce.listRecordOptions({
3564
+ objType: "WebCartHistory",
3565
+ nameField: "Id",
3566
+ }),
3567
+ },
3568
+ {
3569
+ name: "WebLink",
3570
+ nameField: "Name",
3571
+ getRecords: () =>
3572
+ this.salesforce.listRecordOptions({
3573
+ objType: "WebLink",
3574
+ nameField: "Name",
3575
+ }),
3576
+ },
3577
+ {
3578
+ name: "WebStore",
3579
+ nameField: "Name",
3580
+ getRecords: () =>
3581
+ this.salesforce.listRecordOptions({
3582
+ objType: "WebStore",
3583
+ nameField: "Name",
3584
+ }),
3585
+ },
3586
+ {
3587
+ name: "WebStoreBuyerGroup",
3588
+ nameField: "Name",
3589
+ getRecords: () =>
3590
+ this.salesforce.listRecordOptions({
3591
+ objType: "WebStoreBuyerGroup",
3592
+ nameField: "Name",
3593
+ }),
3594
+ },
3595
+ {
3596
+ name: "WebStoreCatalog",
3597
+ nameField: "Name",
3598
+ getRecords: () =>
3599
+ this.salesforce.listRecordOptions({
3600
+ objType: "WebStoreCatalog",
3601
+ nameField: "Name",
3602
+ }),
3603
+ },
3604
+ {
3605
+ name: "WebStoreCatalogHistory",
3606
+ nameField: "Id",
3607
+ getRecords: () =>
3608
+ this.salesforce.listRecordOptions({
3609
+ objType: "WebStoreCatalogHistory",
3610
+ nameField: "Id",
3611
+ }),
3612
+ },
3613
+ {
3614
+ name: "WorkOrder",
3615
+ nameField: "WorkOrderNumber",
3616
+ getRecords: () =>
3617
+ this.salesforce.listRecordOptions({
3618
+ objType: "WorkOrder",
3619
+ nameField: "WorkOrderNumber",
3620
+ }),
3621
+ },
3622
+ {
3623
+ name: "WorkOrderFeed",
3624
+ nameField: "Id",
3625
+ getRecords: () =>
3626
+ this.salesforce.listRecordOptions({
3627
+ objType: "WorkOrderFeed",
3628
+ nameField: "Id",
3629
+ }),
3630
+ },
3631
+ {
3632
+ name: "WorkOrderHistory",
3633
+ nameField: "Id",
3634
+ getRecords: () =>
3635
+ this.salesforce.listRecordOptions({
3636
+ objType: "WorkOrderHistory",
3637
+ nameField: "Id",
3638
+ }),
3639
+ },
3640
+ {
3641
+ name: "WorkOrderLineItem",
3642
+ nameField: "LineItemNumber",
3643
+ getRecords: () =>
3644
+ this.salesforce.listRecordOptions({
3645
+ objType: "WorkOrderLineItem",
3646
+ nameField: "LineItemNumber",
3647
+ }),
3648
+ },
3649
+ {
3650
+ name: "WorkOrderLineItemFeed",
3651
+ nameField: "Id",
3652
+ getRecords: () =>
3653
+ this.salesforce.listRecordOptions({
3654
+ objType: "WorkOrderLineItemFeed",
3655
+ nameField: "Id",
3656
+ }),
3657
+ },
3658
+ {
3659
+ name: "WorkOrderLineItemHistory",
3660
+ nameField: "Id",
3661
+ getRecords: () =>
3662
+ this.salesforce.listRecordOptions({
3663
+ objType: "WorkOrderLineItemHistory",
3664
+ nameField: "Id",
3665
+ }),
3666
+ },
3667
+ {
3668
+ name: "WorkPlan",
3669
+ nameField: "Name",
3670
+ getRecords: () =>
3671
+ this.salesforce.listRecordOptions({
3672
+ objType: "WorkPlan",
3673
+ nameField: "Name",
3674
+ }),
3675
+ },
3676
+ {
3677
+ name: "WorkPlanFeed",
3678
+ nameField: "Id",
3679
+ getRecords: () =>
3680
+ this.salesforce.listRecordOptions({
3681
+ objType: "WorkPlanFeed",
3682
+ nameField: "Id",
3683
+ }),
3684
+ },
3685
+ {
3686
+ name: "WorkPlanHistory",
3687
+ nameField: "Id",
3688
+ getRecords: () =>
3689
+ this.salesforce.listRecordOptions({
3690
+ objType: "WorkPlanHistory",
3691
+ nameField: "Id",
3692
+ }),
3693
+ },
3694
+ {
3695
+ name: "WorkPlanTemplate",
3696
+ nameField: "Name",
3697
+ getRecords: () =>
3698
+ this.salesforce.listRecordOptions({
3699
+ objType: "WorkPlanTemplate",
3700
+ nameField: "Name",
3701
+ }),
3702
+ },
3703
+ {
3704
+ name: "WorkPlanTemplateEntry",
3705
+ nameField: "WorkPlanTemplateEntryNumber",
3706
+ getRecords: () =>
3707
+ this.salesforce.listRecordOptions({
3708
+ objType: "WorkPlanTemplateEntry",
3709
+ nameField: "WorkPlanTemplateEntryNumber",
3710
+ }),
3711
+ },
3712
+ {
3713
+ name: "WorkStep",
3714
+ nameField: "Name",
3715
+ getRecords: () =>
3716
+ this.salesforce.listRecordOptions({
3717
+ objType: "WorkStep",
3718
+ nameField: "Name",
3719
+ }),
3720
+ },
3721
+ {
3722
+ name: "WorkStepTemplate",
3723
+ nameField: "Name",
3724
+ getRecords: () =>
3725
+ this.salesforce.listRecordOptions({
3726
+ objType: "WorkStepTemplate",
3727
+ nameField: "Name",
3728
+ }),
3729
+ },
3730
+ {
3731
+ name: "WorkType",
3732
+ nameField: "Name",
3733
+ getRecords: () =>
3734
+ this.salesforce.listRecordOptions({
3735
+ objType: "WorkType",
3736
+ nameField: "Name",
3737
+ }),
3738
+ },
3739
+ {
3740
+ name: "WorkTypeFeed",
3741
+ nameField: "Id",
3742
+ getRecords: () =>
3743
+ this.salesforce.listRecordOptions({
3744
+ objType: "WorkTypeFeed",
3745
+ nameField: "Id",
3746
+ }),
3747
+ },
3748
+ {
3749
+ name: "WorkTypeGroup",
3750
+ nameField: "Name",
3751
+ getRecords: () =>
3752
+ this.salesforce.listRecordOptions({
3753
+ objType: "WorkTypeGroup",
3754
+ nameField: "Name",
3755
+ }),
3756
+ },
3757
+ {
3758
+ name: "WorkTypeGroupFeed",
3759
+ nameField: "Id",
3760
+ getRecords: () =>
3761
+ this.salesforce.listRecordOptions({
3762
+ objType: "WorkTypeGroupFeed",
3763
+ nameField: "Id",
3764
+ }),
3765
+ },
3766
+ {
3767
+ name: "WorkTypeGroupHistory",
3768
+ nameField: "Id",
3769
+ getRecords: () =>
3770
+ this.salesforce.listRecordOptions({
3771
+ objType: "WorkTypeGroupHistory",
3772
+ nameField: "Id",
3773
+ }),
3774
+ },
3775
+ {
3776
+ name: "WorkTypeGroupMember",
3777
+ nameField: "Name",
3778
+ getRecords: () =>
3779
+ this.salesforce.listRecordOptions({
3780
+ objType: "WorkTypeGroupMember",
3781
+ nameField: "Name",
3782
+ }),
3783
+ },
3784
+ {
3785
+ name: "WorkTypeGroupMemberFeed",
3786
+ nameField: "Id",
3787
+ getRecords: () =>
3788
+ this.salesforce.listRecordOptions({
3789
+ objType: "WorkTypeGroupMemberFeed",
3790
+ nameField: "Id",
3791
+ }),
3792
+ },
3793
+ {
3794
+ name: "WorkTypeGroupMemberHistory",
3795
+ nameField: "Id",
3796
+ getRecords: () =>
3797
+ this.salesforce.listRecordOptions({
3798
+ objType: "WorkTypeGroupMemberHistory",
3799
+ nameField: "Id",
3800
+ }),
3801
+ },
3802
+ {
3803
+ name: "WorkTypeHistory",
3804
+ nameField: "Id",
3805
+ getRecords: () =>
3806
+ this.salesforce.listRecordOptions({
3807
+ objType: "WorkTypeHistory",
3808
+ nameField: "Id",
3809
+ }),
3810
+ },
3811
+ ];
3812
+ export default sobjects;