@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,486 @@
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": "Report ID",
12
+ "name": "Id",
13
+ "nillable": false,
14
+ "picklistValues": [],
15
+ "referenceTo": [],
16
+ "relationshipName": null,
17
+ "sortable": true,
18
+ "type": "id"
19
+ },
20
+ {
21
+ "aggregatable": true,
22
+ "custom": false,
23
+ "defaultValue": null,
24
+ "extraTypeInfo": null,
25
+ "filterable": true,
26
+ "groupable": true,
27
+ "inlineHelpText": null,
28
+ "label": "Owner ID",
29
+ "name": "OwnerId",
30
+ "nillable": false,
31
+ "picklistValues": [],
32
+ "referenceTo": [
33
+ "Folder",
34
+ "Organization",
35
+ "User"
36
+ ],
37
+ "relationshipName": "Owner",
38
+ "sortable": true,
39
+ "type": "reference"
40
+ },
41
+ {
42
+ "aggregatable": true,
43
+ "custom": false,
44
+ "defaultValue": null,
45
+ "extraTypeInfo": null,
46
+ "filterable": true,
47
+ "groupable": false,
48
+ "inlineHelpText": null,
49
+ "label": "Folder Name",
50
+ "name": "FolderName",
51
+ "nillable": true,
52
+ "picklistValues": [],
53
+ "referenceTo": [],
54
+ "relationshipName": null,
55
+ "sortable": true,
56
+ "type": "string"
57
+ },
58
+ {
59
+ "aggregatable": true,
60
+ "custom": false,
61
+ "defaultValue": null,
62
+ "extraTypeInfo": null,
63
+ "filterable": true,
64
+ "groupable": false,
65
+ "inlineHelpText": null,
66
+ "label": "Created Date",
67
+ "name": "CreatedDate",
68
+ "nillable": false,
69
+ "picklistValues": [],
70
+ "referenceTo": [],
71
+ "relationshipName": null,
72
+ "sortable": true,
73
+ "type": "datetime"
74
+ },
75
+ {
76
+ "aggregatable": true,
77
+ "custom": false,
78
+ "defaultValue": null,
79
+ "extraTypeInfo": null,
80
+ "filterable": true,
81
+ "groupable": true,
82
+ "inlineHelpText": null,
83
+ "label": "Created By ID",
84
+ "name": "CreatedById",
85
+ "nillable": false,
86
+ "picklistValues": [],
87
+ "referenceTo": [
88
+ "User"
89
+ ],
90
+ "relationshipName": "CreatedBy",
91
+ "sortable": true,
92
+ "type": "reference"
93
+ },
94
+ {
95
+ "aggregatable": true,
96
+ "custom": false,
97
+ "defaultValue": null,
98
+ "extraTypeInfo": null,
99
+ "filterable": true,
100
+ "groupable": false,
101
+ "inlineHelpText": null,
102
+ "label": "Last Modified Date",
103
+ "name": "LastModifiedDate",
104
+ "nillable": false,
105
+ "picklistValues": [],
106
+ "referenceTo": [],
107
+ "relationshipName": null,
108
+ "sortable": true,
109
+ "type": "datetime"
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": "Last Modified By ID",
120
+ "name": "LastModifiedById",
121
+ "nillable": false,
122
+ "picklistValues": [],
123
+ "referenceTo": [
124
+ "User"
125
+ ],
126
+ "relationshipName": "LastModifiedBy",
127
+ "sortable": true,
128
+ "type": "reference"
129
+ },
130
+ {
131
+ "aggregatable": false,
132
+ "custom": false,
133
+ "defaultValue": null,
134
+ "extraTypeInfo": null,
135
+ "filterable": true,
136
+ "groupable": true,
137
+ "inlineHelpText": null,
138
+ "label": "Deleted",
139
+ "name": "IsDeleted",
140
+ "nillable": false,
141
+ "picklistValues": [],
142
+ "referenceTo": [],
143
+ "relationshipName": null,
144
+ "sortable": true,
145
+ "type": "boolean"
146
+ },
147
+ {
148
+ "aggregatable": true,
149
+ "custom": false,
150
+ "defaultValue": null,
151
+ "extraTypeInfo": null,
152
+ "filterable": true,
153
+ "groupable": true,
154
+ "inlineHelpText": null,
155
+ "label": "Report Name",
156
+ "name": "Name",
157
+ "nillable": false,
158
+ "picklistValues": [],
159
+ "referenceTo": [],
160
+ "relationshipName": null,
161
+ "sortable": true,
162
+ "type": "string"
163
+ },
164
+ {
165
+ "aggregatable": true,
166
+ "custom": false,
167
+ "defaultValue": null,
168
+ "extraTypeInfo": null,
169
+ "filterable": true,
170
+ "groupable": true,
171
+ "inlineHelpText": null,
172
+ "label": "Description",
173
+ "name": "Description",
174
+ "nillable": true,
175
+ "picklistValues": [],
176
+ "referenceTo": [],
177
+ "relationshipName": null,
178
+ "sortable": true,
179
+ "type": "string"
180
+ },
181
+ {
182
+ "aggregatable": true,
183
+ "custom": false,
184
+ "defaultValue": null,
185
+ "extraTypeInfo": null,
186
+ "filterable": true,
187
+ "groupable": true,
188
+ "inlineHelpText": null,
189
+ "label": "Report Unique Name",
190
+ "name": "DeveloperName",
191
+ "nillable": false,
192
+ "picklistValues": [],
193
+ "referenceTo": [],
194
+ "relationshipName": null,
195
+ "sortable": true,
196
+ "type": "string"
197
+ },
198
+ {
199
+ "aggregatable": true,
200
+ "custom": false,
201
+ "defaultValue": null,
202
+ "extraTypeInfo": null,
203
+ "filterable": true,
204
+ "groupable": true,
205
+ "inlineHelpText": null,
206
+ "label": "Namespace Prefix",
207
+ "name": "NamespacePrefix",
208
+ "nillable": true,
209
+ "picklistValues": [],
210
+ "referenceTo": [],
211
+ "relationshipName": null,
212
+ "sortable": true,
213
+ "type": "string"
214
+ },
215
+ {
216
+ "aggregatable": true,
217
+ "custom": false,
218
+ "defaultValue": null,
219
+ "extraTypeInfo": null,
220
+ "filterable": true,
221
+ "groupable": false,
222
+ "inlineHelpText": null,
223
+ "label": "Last Run",
224
+ "name": "LastRunDate",
225
+ "nillable": true,
226
+ "picklistValues": [],
227
+ "referenceTo": [],
228
+ "relationshipName": null,
229
+ "sortable": true,
230
+ "type": "datetime"
231
+ },
232
+ {
233
+ "aggregatable": true,
234
+ "custom": false,
235
+ "defaultValue": null,
236
+ "extraTypeInfo": null,
237
+ "filterable": true,
238
+ "groupable": false,
239
+ "inlineHelpText": null,
240
+ "label": "System Modstamp",
241
+ "name": "SystemModstamp",
242
+ "nillable": false,
243
+ "picklistValues": [],
244
+ "referenceTo": [],
245
+ "relationshipName": null,
246
+ "sortable": true,
247
+ "type": "datetime"
248
+ },
249
+ {
250
+ "aggregatable": true,
251
+ "custom": false,
252
+ "defaultValue": "Tabular",
253
+ "extraTypeInfo": null,
254
+ "filterable": true,
255
+ "groupable": true,
256
+ "inlineHelpText": null,
257
+ "label": "Format",
258
+ "name": "Format",
259
+ "nillable": false,
260
+ "picklistValues": [
261
+ {
262
+ "active": true,
263
+ "defaultValue": false,
264
+ "label": "Joined",
265
+ "validFor": null,
266
+ "value": "MultiBlock"
267
+ },
268
+ {
269
+ "active": true,
270
+ "defaultValue": false,
271
+ "label": "Matrix",
272
+ "validFor": null,
273
+ "value": "Matrix"
274
+ },
275
+ {
276
+ "active": true,
277
+ "defaultValue": false,
278
+ "label": "Summary",
279
+ "validFor": null,
280
+ "value": "Summary"
281
+ },
282
+ {
283
+ "active": true,
284
+ "defaultValue": true,
285
+ "label": "Tabular",
286
+ "validFor": null,
287
+ "value": "Tabular"
288
+ }
289
+ ],
290
+ "referenceTo": [],
291
+ "relationshipName": null,
292
+ "sortable": true,
293
+ "type": "picklist"
294
+ },
295
+ {
296
+ "aggregatable": true,
297
+ "custom": false,
298
+ "defaultValue": null,
299
+ "extraTypeInfo": null,
300
+ "filterable": true,
301
+ "groupable": false,
302
+ "inlineHelpText": null,
303
+ "label": "Last Viewed Date",
304
+ "name": "LastViewedDate",
305
+ "nillable": true,
306
+ "picklistValues": [],
307
+ "referenceTo": [],
308
+ "relationshipName": null,
309
+ "sortable": true,
310
+ "type": "datetime"
311
+ },
312
+ {
313
+ "aggregatable": true,
314
+ "custom": false,
315
+ "defaultValue": null,
316
+ "extraTypeInfo": null,
317
+ "filterable": true,
318
+ "groupable": false,
319
+ "inlineHelpText": null,
320
+ "label": "Last Referenced Date",
321
+ "name": "LastReferencedDate",
322
+ "nillable": true,
323
+ "picklistValues": [],
324
+ "referenceTo": [],
325
+ "relationshipName": null,
326
+ "sortable": true,
327
+ "type": "datetime"
328
+ }
329
+ ],
330
+ "label": "Report",
331
+ "childRelationships": [
332
+ {
333
+ "cascadeDelete": true,
334
+ "childSObject": "AttachedContentDocument",
335
+ "deprecatedAndHidden": false,
336
+ "field": "LinkedEntityId",
337
+ "junctionIdListNames": [],
338
+ "junctionReferenceTo": [],
339
+ "relationshipName": "AttachedContentDocuments",
340
+ "restrictedDelete": false
341
+ },
342
+ {
343
+ "cascadeDelete": true,
344
+ "childSObject": "CombinedAttachment",
345
+ "deprecatedAndHidden": false,
346
+ "field": "ParentId",
347
+ "junctionIdListNames": [],
348
+ "junctionReferenceTo": [],
349
+ "relationshipName": "CombinedAttachments",
350
+ "restrictedDelete": false
351
+ },
352
+ {
353
+ "cascadeDelete": true,
354
+ "childSObject": "ContentDocumentLink",
355
+ "deprecatedAndHidden": false,
356
+ "field": "LinkedEntityId",
357
+ "junctionIdListNames": [],
358
+ "junctionReferenceTo": [],
359
+ "relationshipName": "ContentDocumentLinks",
360
+ "restrictedDelete": false
361
+ },
362
+ {
363
+ "cascadeDelete": false,
364
+ "childSObject": "ContentDocumentLinkChangeEvent",
365
+ "deprecatedAndHidden": false,
366
+ "field": "LinkedEntityId",
367
+ "junctionIdListNames": [],
368
+ "junctionReferenceTo": [],
369
+ "relationshipName": null,
370
+ "restrictedDelete": false
371
+ },
372
+ {
373
+ "cascadeDelete": false,
374
+ "childSObject": "ContentVersion",
375
+ "deprecatedAndHidden": false,
376
+ "field": "FirstPublishLocationId",
377
+ "junctionIdListNames": [],
378
+ "junctionReferenceTo": [],
379
+ "relationshipName": null,
380
+ "restrictedDelete": false
381
+ },
382
+ {
383
+ "cascadeDelete": false,
384
+ "childSObject": "ContentVersionChangeEvent",
385
+ "deprecatedAndHidden": false,
386
+ "field": "FirstPublishLocationId",
387
+ "junctionIdListNames": [],
388
+ "junctionReferenceTo": [],
389
+ "relationshipName": null,
390
+ "restrictedDelete": false
391
+ },
392
+ {
393
+ "cascadeDelete": false,
394
+ "childSObject": "DashboardComponent",
395
+ "deprecatedAndHidden": false,
396
+ "field": "CustomReportId",
397
+ "junctionIdListNames": [],
398
+ "junctionReferenceTo": [],
399
+ "relationshipName": null,
400
+ "restrictedDelete": false
401
+ },
402
+ {
403
+ "cascadeDelete": true,
404
+ "childSObject": "EntitySubscription",
405
+ "deprecatedAndHidden": false,
406
+ "field": "ParentId",
407
+ "junctionIdListNames": [],
408
+ "junctionReferenceTo": [],
409
+ "relationshipName": "FeedSubscriptionsForEntity",
410
+ "restrictedDelete": false
411
+ },
412
+ {
413
+ "cascadeDelete": false,
414
+ "childSObject": "FeedComment",
415
+ "deprecatedAndHidden": false,
416
+ "field": "ParentId",
417
+ "junctionIdListNames": [],
418
+ "junctionReferenceTo": [],
419
+ "relationshipName": null,
420
+ "restrictedDelete": false
421
+ },
422
+ {
423
+ "cascadeDelete": true,
424
+ "childSObject": "FeedItem",
425
+ "deprecatedAndHidden": false,
426
+ "field": "ParentId",
427
+ "junctionIdListNames": [],
428
+ "junctionReferenceTo": [],
429
+ "relationshipName": null,
430
+ "restrictedDelete": false
431
+ },
432
+ {
433
+ "cascadeDelete": false,
434
+ "childSObject": "FlowExecutionErrorEvent",
435
+ "deprecatedAndHidden": false,
436
+ "field": "ContextRecordId",
437
+ "junctionIdListNames": [],
438
+ "junctionReferenceTo": [],
439
+ "relationshipName": null,
440
+ "restrictedDelete": false
441
+ },
442
+ {
443
+ "cascadeDelete": false,
444
+ "childSObject": "FlowRecordRelation",
445
+ "deprecatedAndHidden": false,
446
+ "field": "RelatedRecordId",
447
+ "junctionIdListNames": [],
448
+ "junctionReferenceTo": [],
449
+ "relationshipName": null,
450
+ "restrictedDelete": false
451
+ },
452
+ {
453
+ "cascadeDelete": false,
454
+ "childSObject": "ReportEvent",
455
+ "deprecatedAndHidden": false,
456
+ "field": "ReportId",
457
+ "junctionIdListNames": [],
458
+ "junctionReferenceTo": [],
459
+ "relationshipName": null,
460
+ "restrictedDelete": false
461
+ },
462
+ {
463
+ "cascadeDelete": true,
464
+ "childSObject": "ReportFeed",
465
+ "deprecatedAndHidden": false,
466
+ "field": "ParentId",
467
+ "junctionIdListNames": [],
468
+ "junctionReferenceTo": [],
469
+ "relationshipName": "Feeds",
470
+ "restrictedDelete": false
471
+ },
472
+ {
473
+ "cascadeDelete": true,
474
+ "childSObject": "ScorecardMetric",
475
+ "deprecatedAndHidden": false,
476
+ "field": "ReportId",
477
+ "junctionIdListNames": [],
478
+ "junctionReferenceTo": [],
479
+ "relationshipName": "ScorecardMetrics",
480
+ "restrictedDelete": false
481
+ }
482
+ ],
483
+ "custom": false,
484
+ "name": "Report",
485
+ "queryable": true
486
+ }