@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,1371 @@
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": "Case 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": "Master Record ID",
46
+ "name": "MasterRecordId",
47
+ "nillable": true,
48
+ "picklistValues": [],
49
+ "referenceTo": [
50
+ "Case"
51
+ ],
52
+ "relationshipName": "MasterRecord",
53
+ "sortable": true,
54
+ "type": "reference"
55
+ },
56
+ {
57
+ "aggregatable": true,
58
+ "custom": false,
59
+ "defaultValue": null,
60
+ "extraTypeInfo": null,
61
+ "filterable": true,
62
+ "groupable": false,
63
+ "inlineHelpText": null,
64
+ "label": "Case Number",
65
+ "name": "CaseNumber",
66
+ "nillable": false,
67
+ "picklistValues": [],
68
+ "referenceTo": [],
69
+ "relationshipName": null,
70
+ "sortable": true,
71
+ "type": "string"
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": "Contact ID",
82
+ "name": "ContactId",
83
+ "nillable": true,
84
+ "picklistValues": [],
85
+ "referenceTo": [
86
+ "Contact"
87
+ ],
88
+ "relationshipName": "Contact",
89
+ "sortable": true,
90
+ "type": "reference"
91
+ },
92
+ {
93
+ "aggregatable": true,
94
+ "custom": false,
95
+ "defaultValue": null,
96
+ "extraTypeInfo": null,
97
+ "filterable": true,
98
+ "groupable": true,
99
+ "inlineHelpText": null,
100
+ "label": "Account ID",
101
+ "name": "AccountId",
102
+ "nillable": true,
103
+ "picklistValues": [],
104
+ "referenceTo": [
105
+ "Account"
106
+ ],
107
+ "relationshipName": "Account",
108
+ "sortable": true,
109
+ "type": "reference"
110
+ },
111
+ {
112
+ "aggregatable": true,
113
+ "custom": false,
114
+ "defaultValue": null,
115
+ "extraTypeInfo": null,
116
+ "filterable": true,
117
+ "groupable": true,
118
+ "inlineHelpText": null,
119
+ "label": "Asset ID",
120
+ "name": "AssetId",
121
+ "nillable": true,
122
+ "picklistValues": [],
123
+ "referenceTo": [
124
+ "Asset"
125
+ ],
126
+ "relationshipName": "Asset",
127
+ "sortable": true,
128
+ "type": "reference"
129
+ },
130
+ {
131
+ "aggregatable": true,
132
+ "custom": false,
133
+ "defaultValue": null,
134
+ "extraTypeInfo": null,
135
+ "filterable": true,
136
+ "groupable": true,
137
+ "inlineHelpText": null,
138
+ "label": "Parent Case ID",
139
+ "name": "ParentId",
140
+ "nillable": true,
141
+ "picklistValues": [],
142
+ "referenceTo": [
143
+ "Case"
144
+ ],
145
+ "relationshipName": "Parent",
146
+ "sortable": true,
147
+ "type": "reference"
148
+ },
149
+ {
150
+ "aggregatable": true,
151
+ "custom": false,
152
+ "defaultValue": null,
153
+ "extraTypeInfo": null,
154
+ "filterable": true,
155
+ "groupable": true,
156
+ "inlineHelpText": null,
157
+ "label": "Name",
158
+ "name": "SuppliedName",
159
+ "nillable": true,
160
+ "picklistValues": [],
161
+ "referenceTo": [],
162
+ "relationshipName": null,
163
+ "sortable": true,
164
+ "type": "string"
165
+ },
166
+ {
167
+ "aggregatable": true,
168
+ "custom": false,
169
+ "defaultValue": null,
170
+ "extraTypeInfo": null,
171
+ "filterable": true,
172
+ "groupable": true,
173
+ "inlineHelpText": null,
174
+ "label": "Email Address",
175
+ "name": "SuppliedEmail",
176
+ "nillable": true,
177
+ "picklistValues": [],
178
+ "referenceTo": [],
179
+ "relationshipName": null,
180
+ "sortable": true,
181
+ "type": "email"
182
+ },
183
+ {
184
+ "aggregatable": true,
185
+ "custom": false,
186
+ "defaultValue": null,
187
+ "extraTypeInfo": null,
188
+ "filterable": true,
189
+ "groupable": true,
190
+ "inlineHelpText": null,
191
+ "label": "Phone",
192
+ "name": "SuppliedPhone",
193
+ "nillable": true,
194
+ "picklistValues": [],
195
+ "referenceTo": [],
196
+ "relationshipName": null,
197
+ "sortable": true,
198
+ "type": "string"
199
+ },
200
+ {
201
+ "aggregatable": true,
202
+ "custom": false,
203
+ "defaultValue": null,
204
+ "extraTypeInfo": null,
205
+ "filterable": true,
206
+ "groupable": true,
207
+ "inlineHelpText": null,
208
+ "label": "Company",
209
+ "name": "SuppliedCompany",
210
+ "nillable": true,
211
+ "picklistValues": [],
212
+ "referenceTo": [],
213
+ "relationshipName": null,
214
+ "sortable": true,
215
+ "type": "string"
216
+ },
217
+ {
218
+ "aggregatable": true,
219
+ "custom": false,
220
+ "defaultValue": null,
221
+ "extraTypeInfo": null,
222
+ "filterable": true,
223
+ "groupable": true,
224
+ "inlineHelpText": null,
225
+ "label": "Case Type",
226
+ "name": "Type",
227
+ "nillable": true,
228
+ "picklistValues": [
229
+ {
230
+ "active": true,
231
+ "defaultValue": false,
232
+ "label": "Mechanical",
233
+ "validFor": null,
234
+ "value": "Mechanical"
235
+ },
236
+ {
237
+ "active": true,
238
+ "defaultValue": false,
239
+ "label": "Electrical",
240
+ "validFor": null,
241
+ "value": "Electrical"
242
+ },
243
+ {
244
+ "active": true,
245
+ "defaultValue": false,
246
+ "label": "Electronic",
247
+ "validFor": null,
248
+ "value": "Electronic"
249
+ },
250
+ {
251
+ "active": true,
252
+ "defaultValue": false,
253
+ "label": "Structural",
254
+ "validFor": null,
255
+ "value": "Structural"
256
+ },
257
+ {
258
+ "active": true,
259
+ "defaultValue": false,
260
+ "label": "Other",
261
+ "validFor": null,
262
+ "value": "Other"
263
+ }
264
+ ],
265
+ "referenceTo": [],
266
+ "relationshipName": null,
267
+ "sortable": true,
268
+ "type": "picklist"
269
+ },
270
+ {
271
+ "aggregatable": true,
272
+ "custom": false,
273
+ "defaultValue": "New",
274
+ "extraTypeInfo": null,
275
+ "filterable": true,
276
+ "groupable": true,
277
+ "inlineHelpText": null,
278
+ "label": "Status",
279
+ "name": "Status",
280
+ "nillable": true,
281
+ "picklistValues": [
282
+ {
283
+ "active": true,
284
+ "defaultValue": true,
285
+ "label": "New",
286
+ "validFor": null,
287
+ "value": "New"
288
+ },
289
+ {
290
+ "active": true,
291
+ "defaultValue": false,
292
+ "label": "Working",
293
+ "validFor": null,
294
+ "value": "Working"
295
+ },
296
+ {
297
+ "active": true,
298
+ "defaultValue": false,
299
+ "label": "Escalated",
300
+ "validFor": null,
301
+ "value": "Escalated"
302
+ },
303
+ {
304
+ "active": true,
305
+ "defaultValue": false,
306
+ "label": "Closed",
307
+ "validFor": null,
308
+ "value": "Closed"
309
+ }
310
+ ],
311
+ "referenceTo": [],
312
+ "relationshipName": null,
313
+ "sortable": true,
314
+ "type": "picklist"
315
+ },
316
+ {
317
+ "aggregatable": true,
318
+ "custom": false,
319
+ "defaultValue": null,
320
+ "extraTypeInfo": null,
321
+ "filterable": true,
322
+ "groupable": true,
323
+ "inlineHelpText": null,
324
+ "label": "Case Reason",
325
+ "name": "Reason",
326
+ "nillable": true,
327
+ "picklistValues": [
328
+ {
329
+ "active": true,
330
+ "defaultValue": false,
331
+ "label": "Installation",
332
+ "validFor": null,
333
+ "value": "Installation"
334
+ },
335
+ {
336
+ "active": true,
337
+ "defaultValue": false,
338
+ "label": "Equipment Complexity",
339
+ "validFor": null,
340
+ "value": "Equipment Complexity"
341
+ },
342
+ {
343
+ "active": true,
344
+ "defaultValue": false,
345
+ "label": "Performance",
346
+ "validFor": null,
347
+ "value": "Performance"
348
+ },
349
+ {
350
+ "active": true,
351
+ "defaultValue": false,
352
+ "label": "Breakdown",
353
+ "validFor": null,
354
+ "value": "Breakdown"
355
+ },
356
+ {
357
+ "active": true,
358
+ "defaultValue": false,
359
+ "label": "Equipment Design",
360
+ "validFor": null,
361
+ "value": "Equipment Design"
362
+ },
363
+ {
364
+ "active": true,
365
+ "defaultValue": false,
366
+ "label": "Feedback",
367
+ "validFor": null,
368
+ "value": "Feedback"
369
+ },
370
+ {
371
+ "active": true,
372
+ "defaultValue": false,
373
+ "label": "Other",
374
+ "validFor": null,
375
+ "value": "Other"
376
+ }
377
+ ],
378
+ "referenceTo": [],
379
+ "relationshipName": null,
380
+ "sortable": true,
381
+ "type": "picklist"
382
+ },
383
+ {
384
+ "aggregatable": true,
385
+ "custom": false,
386
+ "defaultValue": null,
387
+ "extraTypeInfo": null,
388
+ "filterable": true,
389
+ "groupable": true,
390
+ "inlineHelpText": null,
391
+ "label": "Case Origin",
392
+ "name": "Origin",
393
+ "nillable": true,
394
+ "picklistValues": [
395
+ {
396
+ "active": true,
397
+ "defaultValue": false,
398
+ "label": "Phone",
399
+ "validFor": null,
400
+ "value": "Phone"
401
+ },
402
+ {
403
+ "active": true,
404
+ "defaultValue": false,
405
+ "label": "Email",
406
+ "validFor": null,
407
+ "value": "Email"
408
+ },
409
+ {
410
+ "active": true,
411
+ "defaultValue": false,
412
+ "label": "Web",
413
+ "validFor": null,
414
+ "value": "Web"
415
+ }
416
+ ],
417
+ "referenceTo": [],
418
+ "relationshipName": null,
419
+ "sortable": true,
420
+ "type": "picklist"
421
+ },
422
+ {
423
+ "aggregatable": true,
424
+ "custom": false,
425
+ "defaultValue": null,
426
+ "extraTypeInfo": null,
427
+ "filterable": true,
428
+ "groupable": true,
429
+ "inlineHelpText": null,
430
+ "label": "Subject",
431
+ "name": "Subject",
432
+ "nillable": true,
433
+ "picklistValues": [],
434
+ "referenceTo": [],
435
+ "relationshipName": null,
436
+ "sortable": true,
437
+ "type": "string"
438
+ },
439
+ {
440
+ "aggregatable": true,
441
+ "custom": false,
442
+ "defaultValue": "Medium",
443
+ "extraTypeInfo": null,
444
+ "filterable": true,
445
+ "groupable": true,
446
+ "inlineHelpText": null,
447
+ "label": "Priority",
448
+ "name": "Priority",
449
+ "nillable": true,
450
+ "picklistValues": [
451
+ {
452
+ "active": true,
453
+ "defaultValue": false,
454
+ "label": "High",
455
+ "validFor": null,
456
+ "value": "High"
457
+ },
458
+ {
459
+ "active": true,
460
+ "defaultValue": true,
461
+ "label": "Medium",
462
+ "validFor": null,
463
+ "value": "Medium"
464
+ },
465
+ {
466
+ "active": true,
467
+ "defaultValue": false,
468
+ "label": "Low",
469
+ "validFor": null,
470
+ "value": "Low"
471
+ }
472
+ ],
473
+ "referenceTo": [],
474
+ "relationshipName": null,
475
+ "sortable": true,
476
+ "type": "picklist"
477
+ },
478
+ {
479
+ "aggregatable": false,
480
+ "custom": false,
481
+ "defaultValue": null,
482
+ "extraTypeInfo": "plaintextarea",
483
+ "filterable": false,
484
+ "groupable": false,
485
+ "inlineHelpText": null,
486
+ "label": "Description",
487
+ "name": "Description",
488
+ "nillable": true,
489
+ "picklistValues": [],
490
+ "referenceTo": [],
491
+ "relationshipName": null,
492
+ "sortable": false,
493
+ "type": "textarea"
494
+ },
495
+ {
496
+ "aggregatable": false,
497
+ "custom": false,
498
+ "defaultValue": null,
499
+ "extraTypeInfo": null,
500
+ "filterable": true,
501
+ "groupable": true,
502
+ "inlineHelpText": null,
503
+ "label": "Closed",
504
+ "name": "IsClosed",
505
+ "nillable": false,
506
+ "picklistValues": [],
507
+ "referenceTo": [],
508
+ "relationshipName": null,
509
+ "sortable": true,
510
+ "type": "boolean"
511
+ },
512
+ {
513
+ "aggregatable": true,
514
+ "custom": false,
515
+ "defaultValue": null,
516
+ "extraTypeInfo": null,
517
+ "filterable": true,
518
+ "groupable": false,
519
+ "inlineHelpText": null,
520
+ "label": "Closed Date",
521
+ "name": "ClosedDate",
522
+ "nillable": true,
523
+ "picklistValues": [],
524
+ "referenceTo": [],
525
+ "relationshipName": null,
526
+ "sortable": true,
527
+ "type": "datetime"
528
+ },
529
+ {
530
+ "aggregatable": false,
531
+ "custom": false,
532
+ "defaultValue": null,
533
+ "extraTypeInfo": null,
534
+ "filterable": true,
535
+ "groupable": true,
536
+ "inlineHelpText": null,
537
+ "label": "Escalated",
538
+ "name": "IsEscalated",
539
+ "nillable": false,
540
+ "picklistValues": [],
541
+ "referenceTo": [],
542
+ "relationshipName": null,
543
+ "sortable": true,
544
+ "type": "boolean"
545
+ },
546
+ {
547
+ "aggregatable": true,
548
+ "custom": false,
549
+ "defaultValue": null,
550
+ "extraTypeInfo": null,
551
+ "filterable": true,
552
+ "groupable": true,
553
+ "inlineHelpText": null,
554
+ "label": "Owner ID",
555
+ "name": "OwnerId",
556
+ "nillable": false,
557
+ "picklistValues": [],
558
+ "referenceTo": [
559
+ "Group",
560
+ "User"
561
+ ],
562
+ "relationshipName": "Owner",
563
+ "sortable": true,
564
+ "type": "reference"
565
+ },
566
+ {
567
+ "aggregatable": true,
568
+ "custom": false,
569
+ "defaultValue": null,
570
+ "extraTypeInfo": null,
571
+ "filterable": true,
572
+ "groupable": false,
573
+ "inlineHelpText": null,
574
+ "label": "Created Date",
575
+ "name": "CreatedDate",
576
+ "nillable": false,
577
+ "picklistValues": [],
578
+ "referenceTo": [],
579
+ "relationshipName": null,
580
+ "sortable": true,
581
+ "type": "datetime"
582
+ },
583
+ {
584
+ "aggregatable": true,
585
+ "custom": false,
586
+ "defaultValue": null,
587
+ "extraTypeInfo": null,
588
+ "filterable": true,
589
+ "groupable": true,
590
+ "inlineHelpText": null,
591
+ "label": "Created By ID",
592
+ "name": "CreatedById",
593
+ "nillable": false,
594
+ "picklistValues": [],
595
+ "referenceTo": [
596
+ "User"
597
+ ],
598
+ "relationshipName": "CreatedBy",
599
+ "sortable": true,
600
+ "type": "reference"
601
+ },
602
+ {
603
+ "aggregatable": true,
604
+ "custom": false,
605
+ "defaultValue": null,
606
+ "extraTypeInfo": null,
607
+ "filterable": true,
608
+ "groupable": false,
609
+ "inlineHelpText": null,
610
+ "label": "Last Modified Date",
611
+ "name": "LastModifiedDate",
612
+ "nillable": false,
613
+ "picklistValues": [],
614
+ "referenceTo": [],
615
+ "relationshipName": null,
616
+ "sortable": true,
617
+ "type": "datetime"
618
+ },
619
+ {
620
+ "aggregatable": true,
621
+ "custom": false,
622
+ "defaultValue": null,
623
+ "extraTypeInfo": null,
624
+ "filterable": true,
625
+ "groupable": true,
626
+ "inlineHelpText": null,
627
+ "label": "Last Modified By ID",
628
+ "name": "LastModifiedById",
629
+ "nillable": false,
630
+ "picklistValues": [],
631
+ "referenceTo": [
632
+ "User"
633
+ ],
634
+ "relationshipName": "LastModifiedBy",
635
+ "sortable": true,
636
+ "type": "reference"
637
+ },
638
+ {
639
+ "aggregatable": true,
640
+ "custom": false,
641
+ "defaultValue": null,
642
+ "extraTypeInfo": null,
643
+ "filterable": true,
644
+ "groupable": false,
645
+ "inlineHelpText": null,
646
+ "label": "System Modstamp",
647
+ "name": "SystemModstamp",
648
+ "nillable": false,
649
+ "picklistValues": [],
650
+ "referenceTo": [],
651
+ "relationshipName": null,
652
+ "sortable": true,
653
+ "type": "datetime"
654
+ },
655
+ {
656
+ "aggregatable": true,
657
+ "custom": false,
658
+ "defaultValue": null,
659
+ "extraTypeInfo": null,
660
+ "filterable": true,
661
+ "groupable": true,
662
+ "inlineHelpText": null,
663
+ "label": "Contact Phone",
664
+ "name": "ContactPhone",
665
+ "nillable": true,
666
+ "picklistValues": [],
667
+ "referenceTo": [],
668
+ "relationshipName": null,
669
+ "sortable": true,
670
+ "type": "phone"
671
+ },
672
+ {
673
+ "aggregatable": true,
674
+ "custom": false,
675
+ "defaultValue": null,
676
+ "extraTypeInfo": null,
677
+ "filterable": true,
678
+ "groupable": true,
679
+ "inlineHelpText": null,
680
+ "label": "Contact Mobile",
681
+ "name": "ContactMobile",
682
+ "nillable": true,
683
+ "picklistValues": [],
684
+ "referenceTo": [],
685
+ "relationshipName": null,
686
+ "sortable": true,
687
+ "type": "phone"
688
+ },
689
+ {
690
+ "aggregatable": true,
691
+ "custom": false,
692
+ "defaultValue": null,
693
+ "extraTypeInfo": null,
694
+ "filterable": true,
695
+ "groupable": true,
696
+ "inlineHelpText": null,
697
+ "label": "Contact Email",
698
+ "name": "ContactEmail",
699
+ "nillable": true,
700
+ "picklistValues": [],
701
+ "referenceTo": [],
702
+ "relationshipName": null,
703
+ "sortable": true,
704
+ "type": "email"
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": "Contact Fax",
715
+ "name": "ContactFax",
716
+ "nillable": true,
717
+ "picklistValues": [],
718
+ "referenceTo": [],
719
+ "relationshipName": null,
720
+ "sortable": true,
721
+ "type": "phone"
722
+ },
723
+ {
724
+ "aggregatable": true,
725
+ "custom": false,
726
+ "defaultValue": null,
727
+ "extraTypeInfo": "plaintextarea",
728
+ "filterable": false,
729
+ "groupable": false,
730
+ "inlineHelpText": null,
731
+ "label": "Internal Comments",
732
+ "name": "Comments",
733
+ "nillable": true,
734
+ "picklistValues": [],
735
+ "referenceTo": [],
736
+ "relationshipName": null,
737
+ "sortable": true,
738
+ "type": "textarea"
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 Viewed Date",
749
+ "name": "LastViewedDate",
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": false,
764
+ "inlineHelpText": null,
765
+ "label": "Last Referenced Date",
766
+ "name": "LastReferencedDate",
767
+ "nillable": true,
768
+ "picklistValues": [],
769
+ "referenceTo": [],
770
+ "relationshipName": null,
771
+ "sortable": true,
772
+ "type": "datetime"
773
+ }
774
+ ],
775
+ "label": "Case",
776
+ "childRelationships": [
777
+ {
778
+ "cascadeDelete": true,
779
+ "childSObject": "AIInsightValue",
780
+ "deprecatedAndHidden": false,
781
+ "field": "SobjectLookupValueId",
782
+ "junctionIdListNames": [],
783
+ "junctionReferenceTo": [],
784
+ "relationshipName": null,
785
+ "restrictedDelete": false
786
+ },
787
+ {
788
+ "cascadeDelete": true,
789
+ "childSObject": "AIRecordInsight",
790
+ "deprecatedAndHidden": false,
791
+ "field": "TargetId",
792
+ "junctionIdListNames": [],
793
+ "junctionReferenceTo": [],
794
+ "relationshipName": null,
795
+ "restrictedDelete": false
796
+ },
797
+ {
798
+ "cascadeDelete": true,
799
+ "childSObject": "ActivityHistory",
800
+ "deprecatedAndHidden": false,
801
+ "field": "WhatId",
802
+ "junctionIdListNames": [],
803
+ "junctionReferenceTo": [],
804
+ "relationshipName": "ActivityHistories",
805
+ "restrictedDelete": false
806
+ },
807
+ {
808
+ "cascadeDelete": true,
809
+ "childSObject": "AttachedContentDocument",
810
+ "deprecatedAndHidden": false,
811
+ "field": "LinkedEntityId",
812
+ "junctionIdListNames": [],
813
+ "junctionReferenceTo": [],
814
+ "relationshipName": "AttachedContentDocuments",
815
+ "restrictedDelete": false
816
+ },
817
+ {
818
+ "cascadeDelete": true,
819
+ "childSObject": "Attachment",
820
+ "deprecatedAndHidden": false,
821
+ "field": "ParentId",
822
+ "junctionIdListNames": [],
823
+ "junctionReferenceTo": [],
824
+ "relationshipName": "Attachments",
825
+ "restrictedDelete": false
826
+ },
827
+ {
828
+ "cascadeDelete": false,
829
+ "childSObject": "Case",
830
+ "deprecatedAndHidden": false,
831
+ "field": "ParentId",
832
+ "junctionIdListNames": [],
833
+ "junctionReferenceTo": [],
834
+ "relationshipName": "Cases",
835
+ "restrictedDelete": false
836
+ },
837
+ {
838
+ "cascadeDelete": false,
839
+ "childSObject": "CaseChangeEvent",
840
+ "deprecatedAndHidden": false,
841
+ "field": "ParentId",
842
+ "junctionIdListNames": [],
843
+ "junctionReferenceTo": [],
844
+ "relationshipName": null,
845
+ "restrictedDelete": false
846
+ },
847
+ {
848
+ "cascadeDelete": true,
849
+ "childSObject": "CaseComment",
850
+ "deprecatedAndHidden": false,
851
+ "field": "ParentId",
852
+ "junctionIdListNames": [],
853
+ "junctionReferenceTo": [],
854
+ "relationshipName": "CaseComments",
855
+ "restrictedDelete": false
856
+ },
857
+ {
858
+ "cascadeDelete": true,
859
+ "childSObject": "CaseContactRole",
860
+ "deprecatedAndHidden": false,
861
+ "field": "CasesId",
862
+ "junctionIdListNames": [],
863
+ "junctionReferenceTo": [],
864
+ "relationshipName": "CaseContactRoles",
865
+ "restrictedDelete": false
866
+ },
867
+ {
868
+ "cascadeDelete": true,
869
+ "childSObject": "CaseFeed",
870
+ "deprecatedAndHidden": false,
871
+ "field": "ParentId",
872
+ "junctionIdListNames": [],
873
+ "junctionReferenceTo": [],
874
+ "relationshipName": "Feeds",
875
+ "restrictedDelete": false
876
+ },
877
+ {
878
+ "cascadeDelete": true,
879
+ "childSObject": "CaseHistory",
880
+ "deprecatedAndHidden": false,
881
+ "field": "CaseId",
882
+ "junctionIdListNames": [],
883
+ "junctionReferenceTo": [],
884
+ "relationshipName": "Histories",
885
+ "restrictedDelete": false
886
+ },
887
+ {
888
+ "cascadeDelete": true,
889
+ "childSObject": "CaseMilestone",
890
+ "deprecatedAndHidden": false,
891
+ "field": "CaseId",
892
+ "junctionIdListNames": [],
893
+ "junctionReferenceTo": [],
894
+ "relationshipName": "CaseMilestones",
895
+ "restrictedDelete": false
896
+ },
897
+ {
898
+ "cascadeDelete": true,
899
+ "childSObject": "CaseShare",
900
+ "deprecatedAndHidden": false,
901
+ "field": "CaseId",
902
+ "junctionIdListNames": [],
903
+ "junctionReferenceTo": [],
904
+ "relationshipName": "Shares",
905
+ "restrictedDelete": false
906
+ },
907
+ {
908
+ "cascadeDelete": true,
909
+ "childSObject": "CaseSolution",
910
+ "deprecatedAndHidden": false,
911
+ "field": "CaseId",
912
+ "junctionIdListNames": [],
913
+ "junctionReferenceTo": [],
914
+ "relationshipName": "CaseSolutions",
915
+ "restrictedDelete": false
916
+ },
917
+ {
918
+ "cascadeDelete": true,
919
+ "childSObject": "CaseTeamMember",
920
+ "deprecatedAndHidden": false,
921
+ "field": "ParentId",
922
+ "junctionIdListNames": [],
923
+ "junctionReferenceTo": [],
924
+ "relationshipName": "TeamMembers",
925
+ "restrictedDelete": false
926
+ },
927
+ {
928
+ "cascadeDelete": true,
929
+ "childSObject": "CaseTeamTemplateRecord",
930
+ "deprecatedAndHidden": false,
931
+ "field": "ParentId",
932
+ "junctionIdListNames": [],
933
+ "junctionReferenceTo": [],
934
+ "relationshipName": "TeamTemplateRecords",
935
+ "restrictedDelete": false
936
+ },
937
+ {
938
+ "cascadeDelete": true,
939
+ "childSObject": "CollaborationGroupRecord",
940
+ "deprecatedAndHidden": false,
941
+ "field": "RecordId",
942
+ "junctionIdListNames": [],
943
+ "junctionReferenceTo": [],
944
+ "relationshipName": "RecordAssociatedGroups",
945
+ "restrictedDelete": false
946
+ },
947
+ {
948
+ "cascadeDelete": true,
949
+ "childSObject": "CombinedAttachment",
950
+ "deprecatedAndHidden": false,
951
+ "field": "ParentId",
952
+ "junctionIdListNames": [],
953
+ "junctionReferenceTo": [],
954
+ "relationshipName": "CombinedAttachments",
955
+ "restrictedDelete": false
956
+ },
957
+ {
958
+ "cascadeDelete": false,
959
+ "childSObject": "ContactRequest",
960
+ "deprecatedAndHidden": false,
961
+ "field": "WhatId",
962
+ "junctionIdListNames": [],
963
+ "junctionReferenceTo": [],
964
+ "relationshipName": "ContactRequests",
965
+ "restrictedDelete": false
966
+ },
967
+ {
968
+ "cascadeDelete": true,
969
+ "childSObject": "ContentDistribution",
970
+ "deprecatedAndHidden": false,
971
+ "field": "RelatedRecordId",
972
+ "junctionIdListNames": [],
973
+ "junctionReferenceTo": [],
974
+ "relationshipName": null,
975
+ "restrictedDelete": false
976
+ },
977
+ {
978
+ "cascadeDelete": true,
979
+ "childSObject": "ContentDocumentLink",
980
+ "deprecatedAndHidden": false,
981
+ "field": "LinkedEntityId",
982
+ "junctionIdListNames": [],
983
+ "junctionReferenceTo": [],
984
+ "relationshipName": "ContentDocumentLinks",
985
+ "restrictedDelete": false
986
+ },
987
+ {
988
+ "cascadeDelete": false,
989
+ "childSObject": "ContentDocumentLinkChangeEvent",
990
+ "deprecatedAndHidden": false,
991
+ "field": "LinkedEntityId",
992
+ "junctionIdListNames": [],
993
+ "junctionReferenceTo": [],
994
+ "relationshipName": null,
995
+ "restrictedDelete": false
996
+ },
997
+ {
998
+ "cascadeDelete": false,
999
+ "childSObject": "ContentVersion",
1000
+ "deprecatedAndHidden": false,
1001
+ "field": "FirstPublishLocationId",
1002
+ "junctionIdListNames": [],
1003
+ "junctionReferenceTo": [],
1004
+ "relationshipName": null,
1005
+ "restrictedDelete": false
1006
+ },
1007
+ {
1008
+ "cascadeDelete": false,
1009
+ "childSObject": "ContentVersionChangeEvent",
1010
+ "deprecatedAndHidden": false,
1011
+ "field": "FirstPublishLocationId",
1012
+ "junctionIdListNames": [],
1013
+ "junctionReferenceTo": [],
1014
+ "relationshipName": null,
1015
+ "restrictedDelete": false
1016
+ },
1017
+ {
1018
+ "cascadeDelete": true,
1019
+ "childSObject": "EmailMessage",
1020
+ "deprecatedAndHidden": false,
1021
+ "field": "ParentId",
1022
+ "junctionIdListNames": [],
1023
+ "junctionReferenceTo": [],
1024
+ "relationshipName": "EmailMessages",
1025
+ "restrictedDelete": false
1026
+ },
1027
+ {
1028
+ "cascadeDelete": false,
1029
+ "childSObject": "EmailMessage",
1030
+ "deprecatedAndHidden": false,
1031
+ "field": "RelatedToId",
1032
+ "junctionIdListNames": [],
1033
+ "junctionReferenceTo": [],
1034
+ "relationshipName": "Emails",
1035
+ "restrictedDelete": false
1036
+ },
1037
+ {
1038
+ "cascadeDelete": false,
1039
+ "childSObject": "EmailMessageChangeEvent",
1040
+ "deprecatedAndHidden": false,
1041
+ "field": "ParentId",
1042
+ "junctionIdListNames": [],
1043
+ "junctionReferenceTo": [],
1044
+ "relationshipName": null,
1045
+ "restrictedDelete": false
1046
+ },
1047
+ {
1048
+ "cascadeDelete": false,
1049
+ "childSObject": "EmailMessageChangeEvent",
1050
+ "deprecatedAndHidden": false,
1051
+ "field": "RelatedToId",
1052
+ "junctionIdListNames": [],
1053
+ "junctionReferenceTo": [],
1054
+ "relationshipName": null,
1055
+ "restrictedDelete": false
1056
+ },
1057
+ {
1058
+ "cascadeDelete": true,
1059
+ "childSObject": "EntitySubscription",
1060
+ "deprecatedAndHidden": false,
1061
+ "field": "ParentId",
1062
+ "junctionIdListNames": [],
1063
+ "junctionReferenceTo": [],
1064
+ "relationshipName": "FeedSubscriptionsForEntity",
1065
+ "restrictedDelete": false
1066
+ },
1067
+ {
1068
+ "cascadeDelete": true,
1069
+ "childSObject": "Event",
1070
+ "deprecatedAndHidden": false,
1071
+ "field": "WhatId",
1072
+ "junctionIdListNames": [],
1073
+ "junctionReferenceTo": [],
1074
+ "relationshipName": "Events",
1075
+ "restrictedDelete": false
1076
+ },
1077
+ {
1078
+ "cascadeDelete": false,
1079
+ "childSObject": "EventChangeEvent",
1080
+ "deprecatedAndHidden": false,
1081
+ "field": "WhatId",
1082
+ "junctionIdListNames": [],
1083
+ "junctionReferenceTo": [],
1084
+ "relationshipName": null,
1085
+ "restrictedDelete": false
1086
+ },
1087
+ {
1088
+ "cascadeDelete": false,
1089
+ "childSObject": "EventRelationChangeEvent",
1090
+ "deprecatedAndHidden": false,
1091
+ "field": "RelationId",
1092
+ "junctionIdListNames": [],
1093
+ "junctionReferenceTo": [],
1094
+ "relationshipName": null,
1095
+ "restrictedDelete": false
1096
+ },
1097
+ {
1098
+ "cascadeDelete": false,
1099
+ "childSObject": "FeedComment",
1100
+ "deprecatedAndHidden": false,
1101
+ "field": "ParentId",
1102
+ "junctionIdListNames": [],
1103
+ "junctionReferenceTo": [],
1104
+ "relationshipName": null,
1105
+ "restrictedDelete": false
1106
+ },
1107
+ {
1108
+ "cascadeDelete": true,
1109
+ "childSObject": "FeedItem",
1110
+ "deprecatedAndHidden": false,
1111
+ "field": "ParentId",
1112
+ "junctionIdListNames": [],
1113
+ "junctionReferenceTo": [],
1114
+ "relationshipName": null,
1115
+ "restrictedDelete": false
1116
+ },
1117
+ {
1118
+ "cascadeDelete": false,
1119
+ "childSObject": "FlowExecutionErrorEvent",
1120
+ "deprecatedAndHidden": false,
1121
+ "field": "ContextRecordId",
1122
+ "junctionIdListNames": [],
1123
+ "junctionReferenceTo": [],
1124
+ "relationshipName": null,
1125
+ "restrictedDelete": false
1126
+ },
1127
+ {
1128
+ "cascadeDelete": false,
1129
+ "childSObject": "FlowOrchestrationWorkItem",
1130
+ "deprecatedAndHidden": false,
1131
+ "field": "RelatedRecordId",
1132
+ "junctionIdListNames": [],
1133
+ "junctionReferenceTo": [],
1134
+ "relationshipName": null,
1135
+ "restrictedDelete": false
1136
+ },
1137
+ {
1138
+ "cascadeDelete": false,
1139
+ "childSObject": "FlowRecordRelation",
1140
+ "deprecatedAndHidden": false,
1141
+ "field": "RelatedRecordId",
1142
+ "junctionIdListNames": [],
1143
+ "junctionReferenceTo": [],
1144
+ "relationshipName": null,
1145
+ "restrictedDelete": false
1146
+ },
1147
+ {
1148
+ "cascadeDelete": false,
1149
+ "childSObject": "MessagingSession",
1150
+ "deprecatedAndHidden": false,
1151
+ "field": "CaseId",
1152
+ "junctionIdListNames": [],
1153
+ "junctionReferenceTo": [],
1154
+ "relationshipName": "MessagingSessions",
1155
+ "restrictedDelete": false
1156
+ },
1157
+ {
1158
+ "cascadeDelete": true,
1159
+ "childSObject": "OpenActivity",
1160
+ "deprecatedAndHidden": false,
1161
+ "field": "WhatId",
1162
+ "junctionIdListNames": [],
1163
+ "junctionReferenceTo": [],
1164
+ "relationshipName": "OpenActivities",
1165
+ "restrictedDelete": false
1166
+ },
1167
+ {
1168
+ "cascadeDelete": false,
1169
+ "childSObject": "ProcessException",
1170
+ "deprecatedAndHidden": false,
1171
+ "field": "CaseId",
1172
+ "junctionIdListNames": [],
1173
+ "junctionReferenceTo": [],
1174
+ "relationshipName": "ProcessExceptions",
1175
+ "restrictedDelete": false
1176
+ },
1177
+ {
1178
+ "cascadeDelete": true,
1179
+ "childSObject": "ProcessInstance",
1180
+ "deprecatedAndHidden": false,
1181
+ "field": "TargetObjectId",
1182
+ "junctionIdListNames": [],
1183
+ "junctionReferenceTo": [],
1184
+ "relationshipName": "ProcessInstances",
1185
+ "restrictedDelete": false
1186
+ },
1187
+ {
1188
+ "cascadeDelete": false,
1189
+ "childSObject": "ProcessInstanceHistory",
1190
+ "deprecatedAndHidden": false,
1191
+ "field": "TargetObjectId",
1192
+ "junctionIdListNames": [],
1193
+ "junctionReferenceTo": [],
1194
+ "relationshipName": "ProcessSteps",
1195
+ "restrictedDelete": false
1196
+ },
1197
+ {
1198
+ "cascadeDelete": false,
1199
+ "childSObject": "ProductRequest",
1200
+ "deprecatedAndHidden": false,
1201
+ "field": "CaseId",
1202
+ "junctionIdListNames": [],
1203
+ "junctionReferenceTo": [],
1204
+ "relationshipName": "ProductRequests",
1205
+ "restrictedDelete": false
1206
+ },
1207
+ {
1208
+ "cascadeDelete": false,
1209
+ "childSObject": "ProductRequestChangeEvent",
1210
+ "deprecatedAndHidden": false,
1211
+ "field": "CaseId",
1212
+ "junctionIdListNames": [],
1213
+ "junctionReferenceTo": [],
1214
+ "relationshipName": null,
1215
+ "restrictedDelete": false
1216
+ },
1217
+ {
1218
+ "cascadeDelete": false,
1219
+ "childSObject": "ProductRequestLineItem",
1220
+ "deprecatedAndHidden": false,
1221
+ "field": "CaseId",
1222
+ "junctionIdListNames": [],
1223
+ "junctionReferenceTo": [],
1224
+ "relationshipName": "ProductRequestLineItems",
1225
+ "restrictedDelete": false
1226
+ },
1227
+ {
1228
+ "cascadeDelete": false,
1229
+ "childSObject": "ProductRequestLineItemChangeEvent",
1230
+ "deprecatedAndHidden": false,
1231
+ "field": "CaseId",
1232
+ "junctionIdListNames": [],
1233
+ "junctionReferenceTo": [],
1234
+ "relationshipName": null,
1235
+ "restrictedDelete": false
1236
+ },
1237
+ {
1238
+ "cascadeDelete": true,
1239
+ "childSObject": "RecordAction",
1240
+ "deprecatedAndHidden": false,
1241
+ "field": "RecordId",
1242
+ "junctionIdListNames": [],
1243
+ "junctionReferenceTo": [],
1244
+ "relationshipName": "RecordActions",
1245
+ "restrictedDelete": false
1246
+ },
1247
+ {
1248
+ "cascadeDelete": false,
1249
+ "childSObject": "RecordActionHistory",
1250
+ "deprecatedAndHidden": false,
1251
+ "field": "ParentRecordId",
1252
+ "junctionIdListNames": [],
1253
+ "junctionReferenceTo": [],
1254
+ "relationshipName": "RecordActionHistories",
1255
+ "restrictedDelete": false
1256
+ },
1257
+ {
1258
+ "cascadeDelete": false,
1259
+ "childSObject": "ReturnOrder",
1260
+ "deprecatedAndHidden": false,
1261
+ "field": "CaseId",
1262
+ "junctionIdListNames": [],
1263
+ "junctionReferenceTo": [],
1264
+ "relationshipName": "ReturnOrders",
1265
+ "restrictedDelete": false
1266
+ },
1267
+ {
1268
+ "cascadeDelete": false,
1269
+ "childSObject": "ReturnOrderChangeEvent",
1270
+ "deprecatedAndHidden": false,
1271
+ "field": "CaseId",
1272
+ "junctionIdListNames": [],
1273
+ "junctionReferenceTo": [],
1274
+ "relationshipName": null,
1275
+ "restrictedDelete": false
1276
+ },
1277
+ {
1278
+ "cascadeDelete": true,
1279
+ "childSObject": "ServiceAppointment",
1280
+ "deprecatedAndHidden": false,
1281
+ "field": "ParentRecordId",
1282
+ "junctionIdListNames": [],
1283
+ "junctionReferenceTo": [],
1284
+ "relationshipName": "ServiceAppointments",
1285
+ "restrictedDelete": false
1286
+ },
1287
+ {
1288
+ "cascadeDelete": false,
1289
+ "childSObject": "ServiceAppointmentChangeEvent",
1290
+ "deprecatedAndHidden": false,
1291
+ "field": "ParentRecordId",
1292
+ "junctionIdListNames": [],
1293
+ "junctionReferenceTo": [],
1294
+ "relationshipName": null,
1295
+ "restrictedDelete": false
1296
+ },
1297
+ {
1298
+ "cascadeDelete": true,
1299
+ "childSObject": "Swarm",
1300
+ "deprecatedAndHidden": false,
1301
+ "field": "RelatedRecordId",
1302
+ "junctionIdListNames": [],
1303
+ "junctionReferenceTo": [],
1304
+ "relationshipName": "Swarms",
1305
+ "restrictedDelete": false
1306
+ },
1307
+ {
1308
+ "cascadeDelete": true,
1309
+ "childSObject": "SwarmMember",
1310
+ "deprecatedAndHidden": false,
1311
+ "field": "RelatedRecordId",
1312
+ "junctionIdListNames": [],
1313
+ "junctionReferenceTo": [],
1314
+ "relationshipName": "SwarmMembers",
1315
+ "restrictedDelete": false
1316
+ },
1317
+ {
1318
+ "cascadeDelete": true,
1319
+ "childSObject": "Task",
1320
+ "deprecatedAndHidden": false,
1321
+ "field": "WhatId",
1322
+ "junctionIdListNames": [],
1323
+ "junctionReferenceTo": [],
1324
+ "relationshipName": "Tasks",
1325
+ "restrictedDelete": false
1326
+ },
1327
+ {
1328
+ "cascadeDelete": false,
1329
+ "childSObject": "TaskChangeEvent",
1330
+ "deprecatedAndHidden": false,
1331
+ "field": "WhatId",
1332
+ "junctionIdListNames": [],
1333
+ "junctionReferenceTo": [],
1334
+ "relationshipName": null,
1335
+ "restrictedDelete": false
1336
+ },
1337
+ {
1338
+ "cascadeDelete": true,
1339
+ "childSObject": "TopicAssignment",
1340
+ "deprecatedAndHidden": false,
1341
+ "field": "EntityId",
1342
+ "junctionIdListNames": [],
1343
+ "junctionReferenceTo": [],
1344
+ "relationshipName": "TopicAssignments",
1345
+ "restrictedDelete": false
1346
+ },
1347
+ {
1348
+ "cascadeDelete": false,
1349
+ "childSObject": "WorkOrder",
1350
+ "deprecatedAndHidden": false,
1351
+ "field": "CaseId",
1352
+ "junctionIdListNames": [],
1353
+ "junctionReferenceTo": [],
1354
+ "relationshipName": "WorkOrders",
1355
+ "restrictedDelete": false
1356
+ },
1357
+ {
1358
+ "cascadeDelete": false,
1359
+ "childSObject": "WorkOrderChangeEvent",
1360
+ "deprecatedAndHidden": false,
1361
+ "field": "CaseId",
1362
+ "junctionIdListNames": [],
1363
+ "junctionReferenceTo": [],
1364
+ "relationshipName": null,
1365
+ "restrictedDelete": false
1366
+ }
1367
+ ],
1368
+ "custom": false,
1369
+ "name": "Case",
1370
+ "queryable": true
1371
+ }