@schandlergarcia/sf-web-components 1.2.6 → 1.2.8

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 (165) hide show
  1. package/package.json +2 -1
  2. package/scripts/postinstall.mjs +69 -93
  3. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Account.cls +196 -0
  4. package/src/components/library/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls +25 -0
  5. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Asset.cls +138 -0
  6. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Attachment.cls +35 -0
  7. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Case.cls +111 -0
  8. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contact.cls +167 -0
  9. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contract.cls +96 -0
  10. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Domain.cls +29 -0
  11. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Lead.cls +128 -0
  12. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Note.cls +32 -0
  13. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Opportunity.cls +113 -0
  14. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Order.cls +127 -0
  15. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls +47 -0
  16. package/src/components/library/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls +47 -0
  17. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Product2.cls +91 -0
  18. package/src/components/library/.sfdx/tools/sobjects/standardObjects/RecordType.cls +35 -0
  19. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Report.cls +47 -0
  20. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Task.cls +79 -0
  21. package/src/components/library/.sfdx/tools/sobjects/standardObjects/User.cls +2318 -0
  22. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Account.json +2952 -0
  23. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json +875 -0
  24. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Asset.json +1699 -0
  25. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json +362 -0
  26. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Case.json +1371 -0
  27. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contact.json +2309 -0
  28. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contract.json +1304 -0
  29. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Domain.json +293 -0
  30. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Lead.json +1977 -0
  31. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Note.json +303 -0
  32. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json +1470 -0
  33. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Order.json +1646 -0
  34. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json +482 -0
  35. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json +433 -0
  36. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Product2.json +1039 -0
  37. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json +2576 -0
  38. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Report.json +486 -0
  39. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Task.json +4296 -0
  40. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/User.json +30415 -0
  41. package/src/components/library/.sfdx/tools/soqlMetadata/typeNames.json +78 -0
  42. package/src/components/library/.sfdx/typings/lwc/sobjects/Account.d.ts +264 -0
  43. package/src/components/library/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts +44 -0
  44. package/src/components/library/.sfdx/typings/lwc/sobjects/Asset.d.ts +240 -0
  45. package/src/components/library/.sfdx/typings/lwc/sobjects/Attachment.d.ts +76 -0
  46. package/src/components/library/.sfdx/typings/lwc/sobjects/Case.d.ts +172 -0
  47. package/src/components/library/.sfdx/typings/lwc/sobjects/Contact.d.ts +264 -0
  48. package/src/components/library/.sfdx/typings/lwc/sobjects/Contract.d.ts +188 -0
  49. package/src/components/library/.sfdx/typings/lwc/sobjects/Domain.d.ts +52 -0
  50. package/src/components/library/.sfdx/typings/lwc/sobjects/Lead.d.ts +252 -0
  51. package/src/components/library/.sfdx/typings/lwc/sobjects/Note.d.ts +64 -0
  52. package/src/components/library/.sfdx/typings/lwc/sobjects/Opportunity.d.ts +200 -0
  53. package/src/components/library/.sfdx/typings/lwc/sobjects/Order.d.ts +260 -0
  54. package/src/components/library/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts +64 -0
  55. package/src/components/library/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts +76 -0
  56. package/src/components/library/.sfdx/typings/lwc/sobjects/Product2.d.ts +96 -0
  57. package/src/components/library/.sfdx/typings/lwc/sobjects/RecordType.d.ts +64 -0
  58. package/src/components/library/.sfdx/typings/lwc/sobjects/Report.d.ts +80 -0
  59. package/src/components/library/.sfdx/typings/lwc/sobjects/Task.d.ts +184 -0
  60. package/src/components/library/.sfdx/typings/lwc/sobjects/User.d.ts +752 -0
  61. package/src/components/library/cards/ActionList.jsx +38 -0
  62. package/src/components/library/cards/ActivityCard.jsx +56 -0
  63. package/src/components/library/cards/BaseCard.jsx +109 -0
  64. package/src/components/library/cards/CalloutCard.jsx +37 -0
  65. package/src/components/library/cards/ChartCard.jsx +105 -0
  66. package/src/components/library/cards/FeedPanel.jsx +39 -0
  67. package/src/components/library/cards/ListCard.jsx +193 -0
  68. package/src/components/library/cards/MetricCard.jsx +109 -0
  69. package/src/components/library/cards/MetricsStrip.jsx +78 -0
  70. package/src/components/library/cards/SectionCard.jsx +83 -0
  71. package/src/components/library/cards/SemanticMetricCard.jsx +52 -0
  72. package/src/components/library/cards/SemanticMetricCardWithLoading.jsx +23 -0
  73. package/src/components/library/cards/SemanticTableCard.jsx +48 -0
  74. package/src/components/library/cards/SemanticTableCardWithLoading.jsx +22 -0
  75. package/src/components/library/cards/StatusCard.jsx +220 -0
  76. package/src/components/library/cards/TableCard.jsx +337 -0
  77. package/src/components/library/cards/WidgetCard.jsx +90 -0
  78. package/src/components/library/charts/D3Chart.jsx +109 -0
  79. package/src/components/library/charts/D3ChartTemplates.jsx +126 -0
  80. package/src/components/library/charts/GeoMap.jsx +293 -0
  81. package/src/components/library/chat/ChatBar.jsx +256 -0
  82. package/src/components/library/chat/ChatInput.jsx +89 -0
  83. package/src/components/library/chat/ChatMessage.jsx +178 -0
  84. package/src/components/library/chat/ChatMessageList.jsx +73 -0
  85. package/src/components/library/chat/ChatPanel.jsx +97 -0
  86. package/src/components/library/chat/ChatSuggestions.jsx +28 -0
  87. package/src/components/library/chat/ChatToolCall.jsx +100 -0
  88. package/src/components/library/chat/ChatTypingIndicator.jsx +23 -0
  89. package/src/components/library/chat/ChatWelcome.jsx +43 -0
  90. package/src/components/library/chat/index.jsx +10 -0
  91. package/src/components/library/chat/useChatState.jsx +130 -0
  92. package/src/components/library/data/DataModeProvider.jsx +67 -0
  93. package/src/components/library/data/DataModeToggle.jsx +36 -0
  94. package/src/components/library/data/chartDataProvider.jsx +61 -0
  95. package/src/components/library/data/filterUtils.jsx +141 -0
  96. package/src/components/library/data/useDataSource.jsx +33 -0
  97. package/src/components/library/data/usePageFilters.jsx +99 -0
  98. package/src/components/library/filters/FilterBar.jsx +95 -0
  99. package/src/components/library/filters/SearchFilter.jsx +36 -0
  100. package/src/components/library/filters/SelectFilter.jsx +55 -0
  101. package/src/components/library/filters/ToggleFilter.jsx +52 -0
  102. package/src/components/library/filters/index.jsx +4 -0
  103. package/src/components/library/forms/FormField.jsx +291 -0
  104. package/src/components/library/forms/FormModal.jsx +201 -0
  105. package/src/components/library/forms/FormRenderer.jsx +46 -0
  106. package/src/components/library/forms/FormSection.jsx +69 -0
  107. package/src/components/library/forms/index.jsx +5 -0
  108. package/src/components/library/forms/useFormState.jsx +165 -0
  109. package/src/components/library/heroui/Accordion.jsx +26 -0
  110. package/src/components/library/heroui/Alert.jsx +8 -0
  111. package/src/components/library/heroui/Badge.jsx +8 -0
  112. package/src/components/library/heroui/Breadcrumbs.jsx +22 -0
  113. package/src/components/library/heroui/Button.jsx +58 -0
  114. package/src/components/library/heroui/Card.jsx +8 -0
  115. package/src/components/library/heroui/Collapsible.jsx +42 -0
  116. package/src/components/library/heroui/DatePicker.jsx +34 -0
  117. package/src/components/library/heroui/Dialog.jsx +37 -0
  118. package/src/components/library/heroui/Drawer.jsx +32 -0
  119. package/src/components/library/heroui/Dropdown.jsx +28 -0
  120. package/src/components/library/heroui/Field.jsx +51 -0
  121. package/src/components/library/heroui/Input.jsx +6 -0
  122. package/src/components/library/heroui/Kbd.jsx +8 -0
  123. package/src/components/library/heroui/Meter.jsx +8 -0
  124. package/src/components/library/heroui/Modal.jsx +32 -0
  125. package/src/components/library/heroui/Pagination.jsx +8 -0
  126. package/src/components/library/heroui/Popover.jsx +64 -0
  127. package/src/components/library/heroui/ProgressBar.jsx +8 -0
  128. package/src/components/library/heroui/ProgressCircle.jsx +8 -0
  129. package/src/components/library/heroui/ScrollShadow.jsx +8 -0
  130. package/src/components/library/heroui/Select.jsx +37 -0
  131. package/src/components/library/heroui/Separator.jsx +8 -0
  132. package/src/components/library/heroui/Skeleton.jsx +8 -0
  133. package/src/components/library/heroui/Tabs.jsx +26 -0
  134. package/src/components/library/heroui/Toast.jsx +25 -0
  135. package/src/components/library/heroui/Toggle.jsx +14 -0
  136. package/src/components/library/heroui/Tooltip.jsx +21 -0
  137. package/src/components/library/index.jsx +149 -0
  138. package/src/components/library/layout/PageContainer.jsx +11 -0
  139. package/src/components/library/skeletons/CardSkeleton.jsx +30 -0
  140. package/src/components/library/theme/AppThemeProvider.jsx +67 -0
  141. package/src/components/library/theme/tokens.jsx +72 -0
  142. package/src/components/library/ui/Alert.jsx +80 -0
  143. package/src/components/library/ui/Avatar.jsx +44 -0
  144. package/src/components/library/ui/BreadcrumbExtras.tsx +119 -0
  145. package/src/components/library/ui/Card.jsx +117 -0
  146. package/src/components/library/ui/Checkbox.jsx +17 -0
  147. package/src/components/library/ui/Chip.jsx +38 -0
  148. package/src/components/library/ui/Collapsible.tsx +31 -0
  149. package/src/components/library/ui/Container.jsx +56 -0
  150. package/src/components/library/ui/DatePicker.tsx +34 -0
  151. package/src/components/library/ui/Dialog.tsx +141 -0
  152. package/src/components/library/ui/EmptyState.jsx +46 -0
  153. package/src/components/library/ui/Field.tsx +82 -0
  154. package/src/components/library/ui/FieldGroup.jsx +17 -0
  155. package/src/components/library/ui/Label.jsx +22 -0
  156. package/src/components/library/ui/PaginationExtras.tsx +143 -0
  157. package/src/components/library/ui/Popover.tsx +39 -0
  158. package/src/components/library/ui/Select.tsx +113 -0
  159. package/src/components/library/ui/Spinner.jsx +64 -0
  160. package/src/components/library/ui/Text.jsx +46 -0
  161. package/src/components/library/ui/UIButton.jsx +61 -0
  162. package/src/components/library/ui/UIInput.jsx +21 -0
  163. package/src/components/workspace/ComponentRegistry.jsx +297 -0
  164. package/src/templates/pages/Home.tsx.template +6 -5
  165. package/src/templates/pages/NotFound.tsx.template +2 -2
@@ -0,0 +1,1470 @@
1
+ {
2
+ "fields": [
3
+ {
4
+ "aggregatable": true,
5
+ "custom": false,
6
+ "defaultValue": null,
7
+ "extraTypeInfo": null,
8
+ "filterable": true,
9
+ "groupable": true,
10
+ "inlineHelpText": null,
11
+ "label": "Opportunity ID",
12
+ "name": "Id",
13
+ "nillable": false,
14
+ "picklistValues": [],
15
+ "referenceTo": [],
16
+ "relationshipName": null,
17
+ "sortable": true,
18
+ "type": "id"
19
+ },
20
+ {
21
+ "aggregatable": false,
22
+ "custom": false,
23
+ "defaultValue": null,
24
+ "extraTypeInfo": null,
25
+ "filterable": true,
26
+ "groupable": true,
27
+ "inlineHelpText": null,
28
+ "label": "Deleted",
29
+ "name": "IsDeleted",
30
+ "nillable": false,
31
+ "picklistValues": [],
32
+ "referenceTo": [],
33
+ "relationshipName": null,
34
+ "sortable": true,
35
+ "type": "boolean"
36
+ },
37
+ {
38
+ "aggregatable": true,
39
+ "custom": false,
40
+ "defaultValue": null,
41
+ "extraTypeInfo": null,
42
+ "filterable": true,
43
+ "groupable": true,
44
+ "inlineHelpText": null,
45
+ "label": "Account ID",
46
+ "name": "AccountId",
47
+ "nillable": true,
48
+ "picklistValues": [],
49
+ "referenceTo": [
50
+ "Account"
51
+ ],
52
+ "relationshipName": "Account",
53
+ "sortable": true,
54
+ "type": "reference"
55
+ },
56
+ {
57
+ "aggregatable": false,
58
+ "custom": false,
59
+ "defaultValue": null,
60
+ "extraTypeInfo": null,
61
+ "filterable": true,
62
+ "groupable": true,
63
+ "inlineHelpText": null,
64
+ "label": "Private",
65
+ "name": "IsPrivate",
66
+ "nillable": false,
67
+ "picklistValues": [],
68
+ "referenceTo": [],
69
+ "relationshipName": null,
70
+ "sortable": true,
71
+ "type": "boolean"
72
+ },
73
+ {
74
+ "aggregatable": true,
75
+ "custom": false,
76
+ "defaultValue": null,
77
+ "extraTypeInfo": null,
78
+ "filterable": true,
79
+ "groupable": true,
80
+ "inlineHelpText": null,
81
+ "label": "Name",
82
+ "name": "Name",
83
+ "nillable": false,
84
+ "picklistValues": [],
85
+ "referenceTo": [],
86
+ "relationshipName": null,
87
+ "sortable": true,
88
+ "type": "string"
89
+ },
90
+ {
91
+ "aggregatable": false,
92
+ "custom": false,
93
+ "defaultValue": null,
94
+ "extraTypeInfo": "plaintextarea",
95
+ "filterable": false,
96
+ "groupable": false,
97
+ "inlineHelpText": null,
98
+ "label": "Description",
99
+ "name": "Description",
100
+ "nillable": true,
101
+ "picklistValues": [],
102
+ "referenceTo": [],
103
+ "relationshipName": null,
104
+ "sortable": false,
105
+ "type": "textarea"
106
+ },
107
+ {
108
+ "aggregatable": true,
109
+ "custom": false,
110
+ "defaultValue": null,
111
+ "extraTypeInfo": null,
112
+ "filterable": true,
113
+ "groupable": true,
114
+ "inlineHelpText": null,
115
+ "label": "Stage",
116
+ "name": "StageName",
117
+ "nillable": false,
118
+ "picklistValues": [
119
+ {
120
+ "active": true,
121
+ "defaultValue": false,
122
+ "label": "Prospecting",
123
+ "validFor": null,
124
+ "value": "Prospecting"
125
+ },
126
+ {
127
+ "active": true,
128
+ "defaultValue": false,
129
+ "label": "Qualification",
130
+ "validFor": null,
131
+ "value": "Qualification"
132
+ },
133
+ {
134
+ "active": true,
135
+ "defaultValue": false,
136
+ "label": "Needs Analysis",
137
+ "validFor": null,
138
+ "value": "Needs Analysis"
139
+ },
140
+ {
141
+ "active": true,
142
+ "defaultValue": false,
143
+ "label": "Value Proposition",
144
+ "validFor": null,
145
+ "value": "Value Proposition"
146
+ },
147
+ {
148
+ "active": true,
149
+ "defaultValue": false,
150
+ "label": "Id. Decision Makers",
151
+ "validFor": null,
152
+ "value": "Id. Decision Makers"
153
+ },
154
+ {
155
+ "active": true,
156
+ "defaultValue": false,
157
+ "label": "Perception Analysis",
158
+ "validFor": null,
159
+ "value": "Perception Analysis"
160
+ },
161
+ {
162
+ "active": true,
163
+ "defaultValue": false,
164
+ "label": "Proposal/Price Quote",
165
+ "validFor": null,
166
+ "value": "Proposal/Price Quote"
167
+ },
168
+ {
169
+ "active": true,
170
+ "defaultValue": false,
171
+ "label": "Negotiation/Review",
172
+ "validFor": null,
173
+ "value": "Negotiation/Review"
174
+ },
175
+ {
176
+ "active": true,
177
+ "defaultValue": false,
178
+ "label": "Closed Won",
179
+ "validFor": null,
180
+ "value": "Closed Won"
181
+ },
182
+ {
183
+ "active": true,
184
+ "defaultValue": false,
185
+ "label": "Closed Lost",
186
+ "validFor": null,
187
+ "value": "Closed Lost"
188
+ }
189
+ ],
190
+ "referenceTo": [],
191
+ "relationshipName": null,
192
+ "sortable": true,
193
+ "type": "picklist"
194
+ },
195
+ {
196
+ "aggregatable": true,
197
+ "custom": false,
198
+ "defaultValue": null,
199
+ "extraTypeInfo": null,
200
+ "filterable": true,
201
+ "groupable": false,
202
+ "inlineHelpText": null,
203
+ "label": "Amount",
204
+ "name": "Amount",
205
+ "nillable": true,
206
+ "picklistValues": [],
207
+ "referenceTo": [],
208
+ "relationshipName": null,
209
+ "sortable": true,
210
+ "type": "currency"
211
+ },
212
+ {
213
+ "aggregatable": true,
214
+ "custom": false,
215
+ "defaultValue": null,
216
+ "extraTypeInfo": null,
217
+ "filterable": true,
218
+ "groupable": false,
219
+ "inlineHelpText": null,
220
+ "label": "Probability (%)",
221
+ "name": "Probability",
222
+ "nillable": true,
223
+ "picklistValues": [],
224
+ "referenceTo": [],
225
+ "relationshipName": null,
226
+ "sortable": true,
227
+ "type": "percent"
228
+ },
229
+ {
230
+ "aggregatable": true,
231
+ "custom": false,
232
+ "defaultValue": null,
233
+ "extraTypeInfo": null,
234
+ "filterable": true,
235
+ "groupable": false,
236
+ "inlineHelpText": null,
237
+ "label": "Expected Amount",
238
+ "name": "ExpectedRevenue",
239
+ "nillable": true,
240
+ "picklistValues": [],
241
+ "referenceTo": [],
242
+ "relationshipName": null,
243
+ "sortable": true,
244
+ "type": "currency"
245
+ },
246
+ {
247
+ "aggregatable": true,
248
+ "custom": false,
249
+ "defaultValue": null,
250
+ "extraTypeInfo": null,
251
+ "filterable": true,
252
+ "groupable": false,
253
+ "inlineHelpText": null,
254
+ "label": "Quantity",
255
+ "name": "TotalOpportunityQuantity",
256
+ "nillable": true,
257
+ "picklistValues": [],
258
+ "referenceTo": [],
259
+ "relationshipName": null,
260
+ "sortable": true,
261
+ "type": "double"
262
+ },
263
+ {
264
+ "aggregatable": true,
265
+ "custom": false,
266
+ "defaultValue": null,
267
+ "extraTypeInfo": null,
268
+ "filterable": true,
269
+ "groupable": true,
270
+ "inlineHelpText": null,
271
+ "label": "Close Date",
272
+ "name": "CloseDate",
273
+ "nillable": false,
274
+ "picklistValues": [],
275
+ "referenceTo": [],
276
+ "relationshipName": null,
277
+ "sortable": true,
278
+ "type": "date"
279
+ },
280
+ {
281
+ "aggregatable": true,
282
+ "custom": false,
283
+ "defaultValue": null,
284
+ "extraTypeInfo": null,
285
+ "filterable": true,
286
+ "groupable": true,
287
+ "inlineHelpText": null,
288
+ "label": "Opportunity Type",
289
+ "name": "Type",
290
+ "nillable": true,
291
+ "picklistValues": [
292
+ {
293
+ "active": true,
294
+ "defaultValue": false,
295
+ "label": "Existing Customer - Upgrade",
296
+ "validFor": null,
297
+ "value": "Existing Customer - Upgrade"
298
+ },
299
+ {
300
+ "active": true,
301
+ "defaultValue": false,
302
+ "label": "Existing Customer - Replacement",
303
+ "validFor": null,
304
+ "value": "Existing Customer - Replacement"
305
+ },
306
+ {
307
+ "active": true,
308
+ "defaultValue": false,
309
+ "label": "Existing Customer - Downgrade",
310
+ "validFor": null,
311
+ "value": "Existing Customer - Downgrade"
312
+ },
313
+ {
314
+ "active": true,
315
+ "defaultValue": false,
316
+ "label": "New Customer",
317
+ "validFor": null,
318
+ "value": "New Customer"
319
+ }
320
+ ],
321
+ "referenceTo": [],
322
+ "relationshipName": null,
323
+ "sortable": true,
324
+ "type": "picklist"
325
+ },
326
+ {
327
+ "aggregatable": true,
328
+ "custom": false,
329
+ "defaultValue": null,
330
+ "extraTypeInfo": null,
331
+ "filterable": true,
332
+ "groupable": true,
333
+ "inlineHelpText": null,
334
+ "label": "Next Step",
335
+ "name": "NextStep",
336
+ "nillable": true,
337
+ "picklistValues": [],
338
+ "referenceTo": [],
339
+ "relationshipName": null,
340
+ "sortable": true,
341
+ "type": "string"
342
+ },
343
+ {
344
+ "aggregatable": true,
345
+ "custom": false,
346
+ "defaultValue": null,
347
+ "extraTypeInfo": null,
348
+ "filterable": true,
349
+ "groupable": true,
350
+ "inlineHelpText": null,
351
+ "label": "Lead Source",
352
+ "name": "LeadSource",
353
+ "nillable": true,
354
+ "picklistValues": [
355
+ {
356
+ "active": true,
357
+ "defaultValue": false,
358
+ "label": "Web",
359
+ "validFor": null,
360
+ "value": "Web"
361
+ },
362
+ {
363
+ "active": true,
364
+ "defaultValue": false,
365
+ "label": "Phone Inquiry",
366
+ "validFor": null,
367
+ "value": "Phone Inquiry"
368
+ },
369
+ {
370
+ "active": true,
371
+ "defaultValue": false,
372
+ "label": "Partner Referral",
373
+ "validFor": null,
374
+ "value": "Partner Referral"
375
+ },
376
+ {
377
+ "active": true,
378
+ "defaultValue": false,
379
+ "label": "Purchased List",
380
+ "validFor": null,
381
+ "value": "Purchased List"
382
+ },
383
+ {
384
+ "active": true,
385
+ "defaultValue": false,
386
+ "label": "Other",
387
+ "validFor": null,
388
+ "value": "Other"
389
+ }
390
+ ],
391
+ "referenceTo": [],
392
+ "relationshipName": null,
393
+ "sortable": true,
394
+ "type": "picklist"
395
+ },
396
+ {
397
+ "aggregatable": false,
398
+ "custom": false,
399
+ "defaultValue": null,
400
+ "extraTypeInfo": null,
401
+ "filterable": true,
402
+ "groupable": true,
403
+ "inlineHelpText": null,
404
+ "label": "Closed",
405
+ "name": "IsClosed",
406
+ "nillable": false,
407
+ "picklistValues": [],
408
+ "referenceTo": [],
409
+ "relationshipName": null,
410
+ "sortable": true,
411
+ "type": "boolean"
412
+ },
413
+ {
414
+ "aggregatable": false,
415
+ "custom": false,
416
+ "defaultValue": null,
417
+ "extraTypeInfo": null,
418
+ "filterable": true,
419
+ "groupable": true,
420
+ "inlineHelpText": null,
421
+ "label": "Won",
422
+ "name": "IsWon",
423
+ "nillable": false,
424
+ "picklistValues": [],
425
+ "referenceTo": [],
426
+ "relationshipName": null,
427
+ "sortable": true,
428
+ "type": "boolean"
429
+ },
430
+ {
431
+ "aggregatable": true,
432
+ "custom": false,
433
+ "defaultValue": null,
434
+ "extraTypeInfo": null,
435
+ "filterable": true,
436
+ "groupable": true,
437
+ "inlineHelpText": null,
438
+ "label": "Forecast Category",
439
+ "name": "ForecastCategory",
440
+ "nillable": false,
441
+ "picklistValues": [
442
+ {
443
+ "active": true,
444
+ "defaultValue": false,
445
+ "label": "Omitted",
446
+ "validFor": null,
447
+ "value": "Omitted"
448
+ },
449
+ {
450
+ "active": true,
451
+ "defaultValue": false,
452
+ "label": "Pipeline",
453
+ "validFor": null,
454
+ "value": "Pipeline"
455
+ },
456
+ {
457
+ "active": true,
458
+ "defaultValue": false,
459
+ "label": "Best Case",
460
+ "validFor": null,
461
+ "value": "BestCase"
462
+ },
463
+ {
464
+ "active": true,
465
+ "defaultValue": false,
466
+ "label": "Most Likely",
467
+ "validFor": null,
468
+ "value": "MostLikely"
469
+ },
470
+ {
471
+ "active": true,
472
+ "defaultValue": false,
473
+ "label": "Commit",
474
+ "validFor": null,
475
+ "value": "Forecast"
476
+ },
477
+ {
478
+ "active": true,
479
+ "defaultValue": false,
480
+ "label": "Closed",
481
+ "validFor": null,
482
+ "value": "Closed"
483
+ }
484
+ ],
485
+ "referenceTo": [],
486
+ "relationshipName": null,
487
+ "sortable": true,
488
+ "type": "picklist"
489
+ },
490
+ {
491
+ "aggregatable": true,
492
+ "custom": false,
493
+ "defaultValue": null,
494
+ "extraTypeInfo": null,
495
+ "filterable": true,
496
+ "groupable": true,
497
+ "inlineHelpText": null,
498
+ "label": "Forecast Category",
499
+ "name": "ForecastCategoryName",
500
+ "nillable": true,
501
+ "picklistValues": [
502
+ {
503
+ "active": true,
504
+ "defaultValue": false,
505
+ "label": "Omitted",
506
+ "validFor": null,
507
+ "value": "Omitted"
508
+ },
509
+ {
510
+ "active": true,
511
+ "defaultValue": false,
512
+ "label": "Pipeline",
513
+ "validFor": null,
514
+ "value": "Pipeline"
515
+ },
516
+ {
517
+ "active": true,
518
+ "defaultValue": false,
519
+ "label": "Best Case",
520
+ "validFor": null,
521
+ "value": "Best Case"
522
+ },
523
+ {
524
+ "active": true,
525
+ "defaultValue": false,
526
+ "label": "Commit",
527
+ "validFor": null,
528
+ "value": "Commit"
529
+ },
530
+ {
531
+ "active": true,
532
+ "defaultValue": false,
533
+ "label": "Closed",
534
+ "validFor": null,
535
+ "value": "Closed"
536
+ }
537
+ ],
538
+ "referenceTo": [],
539
+ "relationshipName": null,
540
+ "sortable": true,
541
+ "type": "picklist"
542
+ },
543
+ {
544
+ "aggregatable": true,
545
+ "custom": false,
546
+ "defaultValue": null,
547
+ "extraTypeInfo": null,
548
+ "filterable": true,
549
+ "groupable": true,
550
+ "inlineHelpText": null,
551
+ "label": "Campaign ID",
552
+ "name": "CampaignId",
553
+ "nillable": true,
554
+ "picklistValues": [],
555
+ "referenceTo": [
556
+ "Campaign"
557
+ ],
558
+ "relationshipName": "Campaign",
559
+ "sortable": true,
560
+ "type": "reference"
561
+ },
562
+ {
563
+ "aggregatable": false,
564
+ "custom": false,
565
+ "defaultValue": null,
566
+ "extraTypeInfo": null,
567
+ "filterable": true,
568
+ "groupable": true,
569
+ "inlineHelpText": null,
570
+ "label": "Has Line Item",
571
+ "name": "HasOpportunityLineItem",
572
+ "nillable": false,
573
+ "picklistValues": [],
574
+ "referenceTo": [],
575
+ "relationshipName": null,
576
+ "sortable": true,
577
+ "type": "boolean"
578
+ },
579
+ {
580
+ "aggregatable": true,
581
+ "custom": false,
582
+ "defaultValue": null,
583
+ "extraTypeInfo": null,
584
+ "filterable": true,
585
+ "groupable": true,
586
+ "inlineHelpText": null,
587
+ "label": "Price Book ID",
588
+ "name": "Pricebook2Id",
589
+ "nillable": true,
590
+ "picklistValues": [],
591
+ "referenceTo": [
592
+ "Pricebook2"
593
+ ],
594
+ "relationshipName": "Pricebook2",
595
+ "sortable": true,
596
+ "type": "reference"
597
+ },
598
+ {
599
+ "aggregatable": true,
600
+ "custom": false,
601
+ "defaultValue": null,
602
+ "extraTypeInfo": null,
603
+ "filterable": true,
604
+ "groupable": true,
605
+ "inlineHelpText": null,
606
+ "label": "Owner ID",
607
+ "name": "OwnerId",
608
+ "nillable": false,
609
+ "picklistValues": [],
610
+ "referenceTo": [
611
+ "User"
612
+ ],
613
+ "relationshipName": "Owner",
614
+ "sortable": true,
615
+ "type": "reference"
616
+ },
617
+ {
618
+ "aggregatable": true,
619
+ "custom": false,
620
+ "defaultValue": null,
621
+ "extraTypeInfo": null,
622
+ "filterable": true,
623
+ "groupable": false,
624
+ "inlineHelpText": null,
625
+ "label": "Created Date",
626
+ "name": "CreatedDate",
627
+ "nillable": false,
628
+ "picklistValues": [],
629
+ "referenceTo": [],
630
+ "relationshipName": null,
631
+ "sortable": true,
632
+ "type": "datetime"
633
+ },
634
+ {
635
+ "aggregatable": true,
636
+ "custom": false,
637
+ "defaultValue": null,
638
+ "extraTypeInfo": null,
639
+ "filterable": true,
640
+ "groupable": true,
641
+ "inlineHelpText": null,
642
+ "label": "Created By ID",
643
+ "name": "CreatedById",
644
+ "nillable": false,
645
+ "picklistValues": [],
646
+ "referenceTo": [
647
+ "User"
648
+ ],
649
+ "relationshipName": "CreatedBy",
650
+ "sortable": true,
651
+ "type": "reference"
652
+ },
653
+ {
654
+ "aggregatable": true,
655
+ "custom": false,
656
+ "defaultValue": null,
657
+ "extraTypeInfo": null,
658
+ "filterable": true,
659
+ "groupable": false,
660
+ "inlineHelpText": null,
661
+ "label": "Last Modified Date",
662
+ "name": "LastModifiedDate",
663
+ "nillable": false,
664
+ "picklistValues": [],
665
+ "referenceTo": [],
666
+ "relationshipName": null,
667
+ "sortable": true,
668
+ "type": "datetime"
669
+ },
670
+ {
671
+ "aggregatable": true,
672
+ "custom": false,
673
+ "defaultValue": null,
674
+ "extraTypeInfo": null,
675
+ "filterable": true,
676
+ "groupable": true,
677
+ "inlineHelpText": null,
678
+ "label": "Last Modified By ID",
679
+ "name": "LastModifiedById",
680
+ "nillable": false,
681
+ "picklistValues": [],
682
+ "referenceTo": [
683
+ "User"
684
+ ],
685
+ "relationshipName": "LastModifiedBy",
686
+ "sortable": true,
687
+ "type": "reference"
688
+ },
689
+ {
690
+ "aggregatable": true,
691
+ "custom": false,
692
+ "defaultValue": null,
693
+ "extraTypeInfo": null,
694
+ "filterable": true,
695
+ "groupable": false,
696
+ "inlineHelpText": null,
697
+ "label": "System Modstamp",
698
+ "name": "SystemModstamp",
699
+ "nillable": false,
700
+ "picklistValues": [],
701
+ "referenceTo": [],
702
+ "relationshipName": null,
703
+ "sortable": true,
704
+ "type": "datetime"
705
+ },
706
+ {
707
+ "aggregatable": true,
708
+ "custom": false,
709
+ "defaultValue": null,
710
+ "extraTypeInfo": null,
711
+ "filterable": true,
712
+ "groupable": true,
713
+ "inlineHelpText": null,
714
+ "label": "Last Activity",
715
+ "name": "LastActivityDate",
716
+ "nillable": true,
717
+ "picklistValues": [],
718
+ "referenceTo": [],
719
+ "relationshipName": null,
720
+ "sortable": true,
721
+ "type": "date"
722
+ },
723
+ {
724
+ "aggregatable": true,
725
+ "custom": false,
726
+ "defaultValue": null,
727
+ "extraTypeInfo": null,
728
+ "filterable": true,
729
+ "groupable": true,
730
+ "inlineHelpText": null,
731
+ "label": "Push Count",
732
+ "name": "PushCount",
733
+ "nillable": true,
734
+ "picklistValues": [],
735
+ "referenceTo": [],
736
+ "relationshipName": null,
737
+ "sortable": true,
738
+ "type": "int"
739
+ },
740
+ {
741
+ "aggregatable": true,
742
+ "custom": false,
743
+ "defaultValue": null,
744
+ "extraTypeInfo": null,
745
+ "filterable": true,
746
+ "groupable": false,
747
+ "inlineHelpText": null,
748
+ "label": "Last Stage Change Date",
749
+ "name": "LastStageChangeDate",
750
+ "nillable": true,
751
+ "picklistValues": [],
752
+ "referenceTo": [],
753
+ "relationshipName": null,
754
+ "sortable": true,
755
+ "type": "datetime"
756
+ },
757
+ {
758
+ "aggregatable": true,
759
+ "custom": false,
760
+ "defaultValue": null,
761
+ "extraTypeInfo": null,
762
+ "filterable": true,
763
+ "groupable": true,
764
+ "inlineHelpText": null,
765
+ "label": "Fiscal Quarter",
766
+ "name": "FiscalQuarter",
767
+ "nillable": true,
768
+ "picklistValues": [],
769
+ "referenceTo": [],
770
+ "relationshipName": null,
771
+ "sortable": true,
772
+ "type": "int"
773
+ },
774
+ {
775
+ "aggregatable": true,
776
+ "custom": false,
777
+ "defaultValue": null,
778
+ "extraTypeInfo": null,
779
+ "filterable": true,
780
+ "groupable": true,
781
+ "inlineHelpText": null,
782
+ "label": "Fiscal Year",
783
+ "name": "FiscalYear",
784
+ "nillable": true,
785
+ "picklistValues": [],
786
+ "referenceTo": [],
787
+ "relationshipName": null,
788
+ "sortable": true,
789
+ "type": "int"
790
+ },
791
+ {
792
+ "aggregatable": true,
793
+ "custom": false,
794
+ "defaultValue": null,
795
+ "extraTypeInfo": null,
796
+ "filterable": true,
797
+ "groupable": true,
798
+ "inlineHelpText": null,
799
+ "label": "Fiscal Period",
800
+ "name": "Fiscal",
801
+ "nillable": true,
802
+ "picklistValues": [],
803
+ "referenceTo": [],
804
+ "relationshipName": null,
805
+ "sortable": true,
806
+ "type": "string"
807
+ },
808
+ {
809
+ "aggregatable": true,
810
+ "custom": false,
811
+ "defaultValue": null,
812
+ "extraTypeInfo": null,
813
+ "filterable": true,
814
+ "groupable": true,
815
+ "inlineHelpText": null,
816
+ "label": "Contact ID",
817
+ "name": "ContactId",
818
+ "nillable": true,
819
+ "picklistValues": [],
820
+ "referenceTo": [
821
+ "Contact"
822
+ ],
823
+ "relationshipName": null,
824
+ "sortable": true,
825
+ "type": "reference"
826
+ },
827
+ {
828
+ "aggregatable": true,
829
+ "custom": false,
830
+ "defaultValue": null,
831
+ "extraTypeInfo": null,
832
+ "filterable": true,
833
+ "groupable": false,
834
+ "inlineHelpText": null,
835
+ "label": "Last Viewed Date",
836
+ "name": "LastViewedDate",
837
+ "nillable": true,
838
+ "picklistValues": [],
839
+ "referenceTo": [],
840
+ "relationshipName": null,
841
+ "sortable": true,
842
+ "type": "datetime"
843
+ },
844
+ {
845
+ "aggregatable": true,
846
+ "custom": false,
847
+ "defaultValue": null,
848
+ "extraTypeInfo": null,
849
+ "filterable": true,
850
+ "groupable": false,
851
+ "inlineHelpText": null,
852
+ "label": "Last Referenced Date",
853
+ "name": "LastReferencedDate",
854
+ "nillable": true,
855
+ "picklistValues": [],
856
+ "referenceTo": [],
857
+ "relationshipName": null,
858
+ "sortable": true,
859
+ "type": "datetime"
860
+ },
861
+ {
862
+ "aggregatable": false,
863
+ "custom": false,
864
+ "defaultValue": null,
865
+ "extraTypeInfo": null,
866
+ "filterable": false,
867
+ "groupable": true,
868
+ "inlineHelpText": null,
869
+ "label": "Has Open Activity",
870
+ "name": "HasOpenActivity",
871
+ "nillable": false,
872
+ "picklistValues": [],
873
+ "referenceTo": [],
874
+ "relationshipName": null,
875
+ "sortable": false,
876
+ "type": "boolean"
877
+ },
878
+ {
879
+ "aggregatable": false,
880
+ "custom": false,
881
+ "defaultValue": null,
882
+ "extraTypeInfo": null,
883
+ "filterable": false,
884
+ "groupable": true,
885
+ "inlineHelpText": null,
886
+ "label": "Has Overdue Task",
887
+ "name": "HasOverdueTask",
888
+ "nillable": false,
889
+ "picklistValues": [],
890
+ "referenceTo": [],
891
+ "relationshipName": null,
892
+ "sortable": false,
893
+ "type": "boolean"
894
+ },
895
+ {
896
+ "aggregatable": true,
897
+ "custom": false,
898
+ "defaultValue": null,
899
+ "extraTypeInfo": null,
900
+ "filterable": true,
901
+ "groupable": true,
902
+ "inlineHelpText": null,
903
+ "label": "Opportunity History ID",
904
+ "name": "LastAmountChangedHistoryId",
905
+ "nillable": true,
906
+ "picklistValues": [],
907
+ "referenceTo": [
908
+ "OpportunityHistory"
909
+ ],
910
+ "relationshipName": "LastAmountChangedHistory",
911
+ "sortable": true,
912
+ "type": "reference"
913
+ },
914
+ {
915
+ "aggregatable": true,
916
+ "custom": false,
917
+ "defaultValue": null,
918
+ "extraTypeInfo": null,
919
+ "filterable": true,
920
+ "groupable": true,
921
+ "inlineHelpText": null,
922
+ "label": "Opportunity History ID",
923
+ "name": "LastCloseDateChangedHistoryId",
924
+ "nillable": true,
925
+ "picklistValues": [],
926
+ "referenceTo": [
927
+ "OpportunityHistory"
928
+ ],
929
+ "relationshipName": "LastCloseDateChangedHistory",
930
+ "sortable": true,
931
+ "type": "reference"
932
+ }
933
+ ],
934
+ "label": "Opportunity",
935
+ "childRelationships": [
936
+ {
937
+ "cascadeDelete": true,
938
+ "childSObject": "AIInsightValue",
939
+ "deprecatedAndHidden": false,
940
+ "field": "SobjectLookupValueId",
941
+ "junctionIdListNames": [],
942
+ "junctionReferenceTo": [],
943
+ "relationshipName": null,
944
+ "restrictedDelete": false
945
+ },
946
+ {
947
+ "cascadeDelete": true,
948
+ "childSObject": "AIRecordInsight",
949
+ "deprecatedAndHidden": false,
950
+ "field": "TargetId",
951
+ "junctionIdListNames": [],
952
+ "junctionReferenceTo": [],
953
+ "relationshipName": null,
954
+ "restrictedDelete": false
955
+ },
956
+ {
957
+ "cascadeDelete": true,
958
+ "childSObject": "AccountPartner",
959
+ "deprecatedAndHidden": false,
960
+ "field": "OpportunityId",
961
+ "junctionIdListNames": [],
962
+ "junctionReferenceTo": [],
963
+ "relationshipName": "AccountPartners",
964
+ "restrictedDelete": false
965
+ },
966
+ {
967
+ "cascadeDelete": true,
968
+ "childSObject": "ActivityHistory",
969
+ "deprecatedAndHidden": false,
970
+ "field": "WhatId",
971
+ "junctionIdListNames": [],
972
+ "junctionReferenceTo": [],
973
+ "relationshipName": "ActivityHistories",
974
+ "restrictedDelete": false
975
+ },
976
+ {
977
+ "cascadeDelete": true,
978
+ "childSObject": "AttachedContentDocument",
979
+ "deprecatedAndHidden": false,
980
+ "field": "LinkedEntityId",
981
+ "junctionIdListNames": [],
982
+ "junctionReferenceTo": [],
983
+ "relationshipName": "AttachedContentDocuments",
984
+ "restrictedDelete": false
985
+ },
986
+ {
987
+ "cascadeDelete": true,
988
+ "childSObject": "Attachment",
989
+ "deprecatedAndHidden": false,
990
+ "field": "ParentId",
991
+ "junctionIdListNames": [],
992
+ "junctionReferenceTo": [],
993
+ "relationshipName": "Attachments",
994
+ "restrictedDelete": false
995
+ },
996
+ {
997
+ "cascadeDelete": true,
998
+ "childSObject": "CollaborationGroupRecord",
999
+ "deprecatedAndHidden": false,
1000
+ "field": "RecordId",
1001
+ "junctionIdListNames": [],
1002
+ "junctionReferenceTo": [],
1003
+ "relationshipName": "RecordAssociatedGroups",
1004
+ "restrictedDelete": false
1005
+ },
1006
+ {
1007
+ "cascadeDelete": true,
1008
+ "childSObject": "CombinedAttachment",
1009
+ "deprecatedAndHidden": false,
1010
+ "field": "ParentId",
1011
+ "junctionIdListNames": [],
1012
+ "junctionReferenceTo": [],
1013
+ "relationshipName": "CombinedAttachments",
1014
+ "restrictedDelete": false
1015
+ },
1016
+ {
1017
+ "cascadeDelete": false,
1018
+ "childSObject": "ContactRequest",
1019
+ "deprecatedAndHidden": false,
1020
+ "field": "WhatId",
1021
+ "junctionIdListNames": [],
1022
+ "junctionReferenceTo": [],
1023
+ "relationshipName": "ContactRequests",
1024
+ "restrictedDelete": false
1025
+ },
1026
+ {
1027
+ "cascadeDelete": true,
1028
+ "childSObject": "ContentDistribution",
1029
+ "deprecatedAndHidden": false,
1030
+ "field": "RelatedRecordId",
1031
+ "junctionIdListNames": [],
1032
+ "junctionReferenceTo": [],
1033
+ "relationshipName": null,
1034
+ "restrictedDelete": false
1035
+ },
1036
+ {
1037
+ "cascadeDelete": true,
1038
+ "childSObject": "ContentDocumentLink",
1039
+ "deprecatedAndHidden": false,
1040
+ "field": "LinkedEntityId",
1041
+ "junctionIdListNames": [],
1042
+ "junctionReferenceTo": [],
1043
+ "relationshipName": "ContentDocumentLinks",
1044
+ "restrictedDelete": false
1045
+ },
1046
+ {
1047
+ "cascadeDelete": false,
1048
+ "childSObject": "ContentDocumentLinkChangeEvent",
1049
+ "deprecatedAndHidden": false,
1050
+ "field": "LinkedEntityId",
1051
+ "junctionIdListNames": [],
1052
+ "junctionReferenceTo": [],
1053
+ "relationshipName": null,
1054
+ "restrictedDelete": false
1055
+ },
1056
+ {
1057
+ "cascadeDelete": false,
1058
+ "childSObject": "ContentVersion",
1059
+ "deprecatedAndHidden": false,
1060
+ "field": "FirstPublishLocationId",
1061
+ "junctionIdListNames": [],
1062
+ "junctionReferenceTo": [],
1063
+ "relationshipName": null,
1064
+ "restrictedDelete": false
1065
+ },
1066
+ {
1067
+ "cascadeDelete": false,
1068
+ "childSObject": "ContentVersionChangeEvent",
1069
+ "deprecatedAndHidden": false,
1070
+ "field": "FirstPublishLocationId",
1071
+ "junctionIdListNames": [],
1072
+ "junctionReferenceTo": [],
1073
+ "relationshipName": null,
1074
+ "restrictedDelete": false
1075
+ },
1076
+ {
1077
+ "cascadeDelete": false,
1078
+ "childSObject": "EmailMessage",
1079
+ "deprecatedAndHidden": false,
1080
+ "field": "RelatedToId",
1081
+ "junctionIdListNames": [],
1082
+ "junctionReferenceTo": [],
1083
+ "relationshipName": "Emails",
1084
+ "restrictedDelete": false
1085
+ },
1086
+ {
1087
+ "cascadeDelete": false,
1088
+ "childSObject": "EmailMessageChangeEvent",
1089
+ "deprecatedAndHidden": false,
1090
+ "field": "RelatedToId",
1091
+ "junctionIdListNames": [],
1092
+ "junctionReferenceTo": [],
1093
+ "relationshipName": null,
1094
+ "restrictedDelete": false
1095
+ },
1096
+ {
1097
+ "cascadeDelete": true,
1098
+ "childSObject": "EntitySubscription",
1099
+ "deprecatedAndHidden": false,
1100
+ "field": "ParentId",
1101
+ "junctionIdListNames": [],
1102
+ "junctionReferenceTo": [],
1103
+ "relationshipName": "FeedSubscriptionsForEntity",
1104
+ "restrictedDelete": false
1105
+ },
1106
+ {
1107
+ "cascadeDelete": true,
1108
+ "childSObject": "Event",
1109
+ "deprecatedAndHidden": false,
1110
+ "field": "WhatId",
1111
+ "junctionIdListNames": [],
1112
+ "junctionReferenceTo": [],
1113
+ "relationshipName": "Events",
1114
+ "restrictedDelete": false
1115
+ },
1116
+ {
1117
+ "cascadeDelete": false,
1118
+ "childSObject": "EventChangeEvent",
1119
+ "deprecatedAndHidden": false,
1120
+ "field": "WhatId",
1121
+ "junctionIdListNames": [],
1122
+ "junctionReferenceTo": [],
1123
+ "relationshipName": null,
1124
+ "restrictedDelete": false
1125
+ },
1126
+ {
1127
+ "cascadeDelete": false,
1128
+ "childSObject": "EventRelationChangeEvent",
1129
+ "deprecatedAndHidden": false,
1130
+ "field": "RelationId",
1131
+ "junctionIdListNames": [],
1132
+ "junctionReferenceTo": [],
1133
+ "relationshipName": null,
1134
+ "restrictedDelete": false
1135
+ },
1136
+ {
1137
+ "cascadeDelete": false,
1138
+ "childSObject": "FeedComment",
1139
+ "deprecatedAndHidden": false,
1140
+ "field": "ParentId",
1141
+ "junctionIdListNames": [],
1142
+ "junctionReferenceTo": [],
1143
+ "relationshipName": null,
1144
+ "restrictedDelete": false
1145
+ },
1146
+ {
1147
+ "cascadeDelete": true,
1148
+ "childSObject": "FeedItem",
1149
+ "deprecatedAndHidden": false,
1150
+ "field": "ParentId",
1151
+ "junctionIdListNames": [],
1152
+ "junctionReferenceTo": [],
1153
+ "relationshipName": null,
1154
+ "restrictedDelete": false
1155
+ },
1156
+ {
1157
+ "cascadeDelete": false,
1158
+ "childSObject": "FlowExecutionErrorEvent",
1159
+ "deprecatedAndHidden": false,
1160
+ "field": "ContextRecordId",
1161
+ "junctionIdListNames": [],
1162
+ "junctionReferenceTo": [],
1163
+ "relationshipName": null,
1164
+ "restrictedDelete": false
1165
+ },
1166
+ {
1167
+ "cascadeDelete": false,
1168
+ "childSObject": "FlowOrchestrationWorkItem",
1169
+ "deprecatedAndHidden": false,
1170
+ "field": "RelatedRecordId",
1171
+ "junctionIdListNames": [],
1172
+ "junctionReferenceTo": [],
1173
+ "relationshipName": null,
1174
+ "restrictedDelete": false
1175
+ },
1176
+ {
1177
+ "cascadeDelete": false,
1178
+ "childSObject": "FlowRecordRelation",
1179
+ "deprecatedAndHidden": false,
1180
+ "field": "RelatedRecordId",
1181
+ "junctionIdListNames": [],
1182
+ "junctionReferenceTo": [],
1183
+ "relationshipName": null,
1184
+ "restrictedDelete": false
1185
+ },
1186
+ {
1187
+ "cascadeDelete": false,
1188
+ "childSObject": "Lead",
1189
+ "deprecatedAndHidden": false,
1190
+ "field": "ConvertedOpportunityId",
1191
+ "junctionIdListNames": [],
1192
+ "junctionReferenceTo": [],
1193
+ "relationshipName": null,
1194
+ "restrictedDelete": false
1195
+ },
1196
+ {
1197
+ "cascadeDelete": false,
1198
+ "childSObject": "LeadChangeEvent",
1199
+ "deprecatedAndHidden": false,
1200
+ "field": "ConvertedOpportunityId",
1201
+ "junctionIdListNames": [],
1202
+ "junctionReferenceTo": [],
1203
+ "relationshipName": null,
1204
+ "restrictedDelete": false
1205
+ },
1206
+ {
1207
+ "cascadeDelete": false,
1208
+ "childSObject": "MessagingSession",
1209
+ "deprecatedAndHidden": false,
1210
+ "field": "OpportunityId",
1211
+ "junctionIdListNames": [],
1212
+ "junctionReferenceTo": [],
1213
+ "relationshipName": "MessagingSessions",
1214
+ "restrictedDelete": false
1215
+ },
1216
+ {
1217
+ "cascadeDelete": true,
1218
+ "childSObject": "Note",
1219
+ "deprecatedAndHidden": false,
1220
+ "field": "ParentId",
1221
+ "junctionIdListNames": [],
1222
+ "junctionReferenceTo": [],
1223
+ "relationshipName": "Notes",
1224
+ "restrictedDelete": false
1225
+ },
1226
+ {
1227
+ "cascadeDelete": true,
1228
+ "childSObject": "NoteAndAttachment",
1229
+ "deprecatedAndHidden": false,
1230
+ "field": "ParentId",
1231
+ "junctionIdListNames": [],
1232
+ "junctionReferenceTo": [],
1233
+ "relationshipName": "NotesAndAttachments",
1234
+ "restrictedDelete": false
1235
+ },
1236
+ {
1237
+ "cascadeDelete": true,
1238
+ "childSObject": "OpenActivity",
1239
+ "deprecatedAndHidden": false,
1240
+ "field": "WhatId",
1241
+ "junctionIdListNames": [],
1242
+ "junctionReferenceTo": [],
1243
+ "relationshipName": "OpenActivities",
1244
+ "restrictedDelete": false
1245
+ },
1246
+ {
1247
+ "cascadeDelete": true,
1248
+ "childSObject": "OpportunityCompetitor",
1249
+ "deprecatedAndHidden": false,
1250
+ "field": "OpportunityId",
1251
+ "junctionIdListNames": [],
1252
+ "junctionReferenceTo": [],
1253
+ "relationshipName": "OpportunityCompetitors",
1254
+ "restrictedDelete": false
1255
+ },
1256
+ {
1257
+ "cascadeDelete": true,
1258
+ "childSObject": "OpportunityContactRole",
1259
+ "deprecatedAndHidden": false,
1260
+ "field": "OpportunityId",
1261
+ "junctionIdListNames": [],
1262
+ "junctionReferenceTo": [],
1263
+ "relationshipName": "OpportunityContactRoles",
1264
+ "restrictedDelete": false
1265
+ },
1266
+ {
1267
+ "cascadeDelete": false,
1268
+ "childSObject": "OpportunityContactRoleChangeEvent",
1269
+ "deprecatedAndHidden": false,
1270
+ "field": "OpportunityId",
1271
+ "junctionIdListNames": [],
1272
+ "junctionReferenceTo": [],
1273
+ "relationshipName": null,
1274
+ "restrictedDelete": false
1275
+ },
1276
+ {
1277
+ "cascadeDelete": true,
1278
+ "childSObject": "OpportunityFeed",
1279
+ "deprecatedAndHidden": false,
1280
+ "field": "ParentId",
1281
+ "junctionIdListNames": [],
1282
+ "junctionReferenceTo": [],
1283
+ "relationshipName": "Feeds",
1284
+ "restrictedDelete": false
1285
+ },
1286
+ {
1287
+ "cascadeDelete": true,
1288
+ "childSObject": "OpportunityFieldHistory",
1289
+ "deprecatedAndHidden": false,
1290
+ "field": "OpportunityId",
1291
+ "junctionIdListNames": [],
1292
+ "junctionReferenceTo": [],
1293
+ "relationshipName": "Histories",
1294
+ "restrictedDelete": false
1295
+ },
1296
+ {
1297
+ "cascadeDelete": true,
1298
+ "childSObject": "OpportunityHistory",
1299
+ "deprecatedAndHidden": false,
1300
+ "field": "OpportunityId",
1301
+ "junctionIdListNames": [],
1302
+ "junctionReferenceTo": [],
1303
+ "relationshipName": "OpportunityHistories",
1304
+ "restrictedDelete": false
1305
+ },
1306
+ {
1307
+ "cascadeDelete": true,
1308
+ "childSObject": "OpportunityLineItem",
1309
+ "deprecatedAndHidden": false,
1310
+ "field": "OpportunityId",
1311
+ "junctionIdListNames": [],
1312
+ "junctionReferenceTo": [],
1313
+ "relationshipName": "OpportunityLineItems",
1314
+ "restrictedDelete": false
1315
+ },
1316
+ {
1317
+ "cascadeDelete": true,
1318
+ "childSObject": "OpportunityPartner",
1319
+ "deprecatedAndHidden": false,
1320
+ "field": "OpportunityId",
1321
+ "junctionIdListNames": [],
1322
+ "junctionReferenceTo": [],
1323
+ "relationshipName": "OpportunityPartnersFrom",
1324
+ "restrictedDelete": false
1325
+ },
1326
+ {
1327
+ "cascadeDelete": true,
1328
+ "childSObject": "OpportunityShare",
1329
+ "deprecatedAndHidden": false,
1330
+ "field": "OpportunityId",
1331
+ "junctionIdListNames": [],
1332
+ "junctionReferenceTo": [],
1333
+ "relationshipName": "Shares",
1334
+ "restrictedDelete": false
1335
+ },
1336
+ {
1337
+ "cascadeDelete": false,
1338
+ "childSObject": "OutgoingEmail",
1339
+ "deprecatedAndHidden": false,
1340
+ "field": "RelatedToId",
1341
+ "junctionIdListNames": [],
1342
+ "junctionReferenceTo": [],
1343
+ "relationshipName": null,
1344
+ "restrictedDelete": false
1345
+ },
1346
+ {
1347
+ "cascadeDelete": true,
1348
+ "childSObject": "Partner",
1349
+ "deprecatedAndHidden": false,
1350
+ "field": "OpportunityId",
1351
+ "junctionIdListNames": [],
1352
+ "junctionReferenceTo": [],
1353
+ "relationshipName": "Partners",
1354
+ "restrictedDelete": false
1355
+ },
1356
+ {
1357
+ "cascadeDelete": true,
1358
+ "childSObject": "ProcessInstance",
1359
+ "deprecatedAndHidden": false,
1360
+ "field": "TargetObjectId",
1361
+ "junctionIdListNames": [],
1362
+ "junctionReferenceTo": [],
1363
+ "relationshipName": "ProcessInstances",
1364
+ "restrictedDelete": false
1365
+ },
1366
+ {
1367
+ "cascadeDelete": false,
1368
+ "childSObject": "ProcessInstanceHistory",
1369
+ "deprecatedAndHidden": false,
1370
+ "field": "TargetObjectId",
1371
+ "junctionIdListNames": [],
1372
+ "junctionReferenceTo": [],
1373
+ "relationshipName": "ProcessSteps",
1374
+ "restrictedDelete": false
1375
+ },
1376
+ {
1377
+ "cascadeDelete": true,
1378
+ "childSObject": "RecordAction",
1379
+ "deprecatedAndHidden": false,
1380
+ "field": "RecordId",
1381
+ "junctionIdListNames": [],
1382
+ "junctionReferenceTo": [],
1383
+ "relationshipName": "RecordActions",
1384
+ "restrictedDelete": false
1385
+ },
1386
+ {
1387
+ "cascadeDelete": false,
1388
+ "childSObject": "RecordActionHistory",
1389
+ "deprecatedAndHidden": false,
1390
+ "field": "ParentRecordId",
1391
+ "junctionIdListNames": [],
1392
+ "junctionReferenceTo": [],
1393
+ "relationshipName": "RecordActionHistories",
1394
+ "restrictedDelete": false
1395
+ },
1396
+ {
1397
+ "cascadeDelete": true,
1398
+ "childSObject": "ServiceAppointment",
1399
+ "deprecatedAndHidden": false,
1400
+ "field": "ParentRecordId",
1401
+ "junctionIdListNames": [],
1402
+ "junctionReferenceTo": [],
1403
+ "relationshipName": "ServiceAppointments",
1404
+ "restrictedDelete": false
1405
+ },
1406
+ {
1407
+ "cascadeDelete": false,
1408
+ "childSObject": "ServiceAppointmentChangeEvent",
1409
+ "deprecatedAndHidden": false,
1410
+ "field": "ParentRecordId",
1411
+ "junctionIdListNames": [],
1412
+ "junctionReferenceTo": [],
1413
+ "relationshipName": null,
1414
+ "restrictedDelete": false
1415
+ },
1416
+ {
1417
+ "cascadeDelete": true,
1418
+ "childSObject": "Swarm",
1419
+ "deprecatedAndHidden": false,
1420
+ "field": "RelatedRecordId",
1421
+ "junctionIdListNames": [],
1422
+ "junctionReferenceTo": [],
1423
+ "relationshipName": "Swarms",
1424
+ "restrictedDelete": false
1425
+ },
1426
+ {
1427
+ "cascadeDelete": true,
1428
+ "childSObject": "SwarmMember",
1429
+ "deprecatedAndHidden": false,
1430
+ "field": "RelatedRecordId",
1431
+ "junctionIdListNames": [],
1432
+ "junctionReferenceTo": [],
1433
+ "relationshipName": "SwarmMembers",
1434
+ "restrictedDelete": false
1435
+ },
1436
+ {
1437
+ "cascadeDelete": true,
1438
+ "childSObject": "Task",
1439
+ "deprecatedAndHidden": false,
1440
+ "field": "WhatId",
1441
+ "junctionIdListNames": [],
1442
+ "junctionReferenceTo": [],
1443
+ "relationshipName": "Tasks",
1444
+ "restrictedDelete": false
1445
+ },
1446
+ {
1447
+ "cascadeDelete": false,
1448
+ "childSObject": "TaskChangeEvent",
1449
+ "deprecatedAndHidden": false,
1450
+ "field": "WhatId",
1451
+ "junctionIdListNames": [],
1452
+ "junctionReferenceTo": [],
1453
+ "relationshipName": null,
1454
+ "restrictedDelete": false
1455
+ },
1456
+ {
1457
+ "cascadeDelete": true,
1458
+ "childSObject": "TopicAssignment",
1459
+ "deprecatedAndHidden": false,
1460
+ "field": "EntityId",
1461
+ "junctionIdListNames": [],
1462
+ "junctionReferenceTo": [],
1463
+ "relationshipName": "TopicAssignments",
1464
+ "restrictedDelete": false
1465
+ }
1466
+ ],
1467
+ "custom": false,
1468
+ "name": "Opportunity",
1469
+ "queryable": true
1470
+ }