@schandlergarcia/sf-web-components 1.2.5 → 1.2.7

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 +5 -5
  165. package/src/templates/pages/NotFound.tsx.template +2 -2
@@ -0,0 +1,1699 @@
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": "Asset 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": "Contact ID",
29
+ "name": "ContactId",
30
+ "nillable": true,
31
+ "picklistValues": [],
32
+ "referenceTo": [
33
+ "Contact"
34
+ ],
35
+ "relationshipName": "Contact",
36
+ "sortable": true,
37
+ "type": "reference"
38
+ },
39
+ {
40
+ "aggregatable": true,
41
+ "custom": false,
42
+ "defaultValue": null,
43
+ "extraTypeInfo": null,
44
+ "filterable": true,
45
+ "groupable": true,
46
+ "inlineHelpText": null,
47
+ "label": "Account ID",
48
+ "name": "AccountId",
49
+ "nillable": true,
50
+ "picklistValues": [],
51
+ "referenceTo": [
52
+ "Account"
53
+ ],
54
+ "relationshipName": "Account",
55
+ "sortable": true,
56
+ "type": "reference"
57
+ },
58
+ {
59
+ "aggregatable": true,
60
+ "custom": false,
61
+ "defaultValue": null,
62
+ "extraTypeInfo": null,
63
+ "filterable": true,
64
+ "groupable": true,
65
+ "inlineHelpText": null,
66
+ "label": "Parent Asset ID",
67
+ "name": "ParentId",
68
+ "nillable": true,
69
+ "picklistValues": [],
70
+ "referenceTo": [
71
+ "Asset"
72
+ ],
73
+ "relationshipName": "Parent",
74
+ "sortable": true,
75
+ "type": "reference"
76
+ },
77
+ {
78
+ "aggregatable": true,
79
+ "custom": false,
80
+ "defaultValue": null,
81
+ "extraTypeInfo": null,
82
+ "filterable": true,
83
+ "groupable": true,
84
+ "inlineHelpText": null,
85
+ "label": "Root Asset ID",
86
+ "name": "RootAssetId",
87
+ "nillable": true,
88
+ "picklistValues": [],
89
+ "referenceTo": [
90
+ "Asset"
91
+ ],
92
+ "relationshipName": "RootAsset",
93
+ "sortable": true,
94
+ "type": "reference"
95
+ },
96
+ {
97
+ "aggregatable": true,
98
+ "custom": false,
99
+ "defaultValue": null,
100
+ "extraTypeInfo": null,
101
+ "filterable": true,
102
+ "groupable": true,
103
+ "inlineHelpText": null,
104
+ "label": "Product ID",
105
+ "name": "Product2Id",
106
+ "nillable": true,
107
+ "picklistValues": [],
108
+ "referenceTo": [
109
+ "Product2"
110
+ ],
111
+ "relationshipName": "Product2",
112
+ "sortable": true,
113
+ "type": "reference"
114
+ },
115
+ {
116
+ "aggregatable": true,
117
+ "custom": false,
118
+ "defaultValue": null,
119
+ "extraTypeInfo": null,
120
+ "filterable": true,
121
+ "groupable": true,
122
+ "inlineHelpText": null,
123
+ "label": "Product Code",
124
+ "name": "ProductCode",
125
+ "nillable": true,
126
+ "picklistValues": [],
127
+ "referenceTo": [],
128
+ "relationshipName": null,
129
+ "sortable": true,
130
+ "type": "string"
131
+ },
132
+ {
133
+ "aggregatable": false,
134
+ "custom": false,
135
+ "defaultValue": null,
136
+ "extraTypeInfo": null,
137
+ "filterable": true,
138
+ "groupable": true,
139
+ "inlineHelpText": null,
140
+ "label": "Competitor Asset",
141
+ "name": "IsCompetitorProduct",
142
+ "nillable": false,
143
+ "picklistValues": [],
144
+ "referenceTo": [],
145
+ "relationshipName": null,
146
+ "sortable": true,
147
+ "type": "boolean"
148
+ },
149
+ {
150
+ "aggregatable": true,
151
+ "custom": false,
152
+ "defaultValue": null,
153
+ "extraTypeInfo": null,
154
+ "filterable": true,
155
+ "groupable": false,
156
+ "inlineHelpText": null,
157
+ "label": "Created Date",
158
+ "name": "CreatedDate",
159
+ "nillable": false,
160
+ "picklistValues": [],
161
+ "referenceTo": [],
162
+ "relationshipName": null,
163
+ "sortable": true,
164
+ "type": "datetime"
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": "Created By ID",
175
+ "name": "CreatedById",
176
+ "nillable": false,
177
+ "picklistValues": [],
178
+ "referenceTo": [
179
+ "User"
180
+ ],
181
+ "relationshipName": "CreatedBy",
182
+ "sortable": true,
183
+ "type": "reference"
184
+ },
185
+ {
186
+ "aggregatable": true,
187
+ "custom": false,
188
+ "defaultValue": null,
189
+ "extraTypeInfo": null,
190
+ "filterable": true,
191
+ "groupable": false,
192
+ "inlineHelpText": null,
193
+ "label": "Last Modified Date",
194
+ "name": "LastModifiedDate",
195
+ "nillable": false,
196
+ "picklistValues": [],
197
+ "referenceTo": [],
198
+ "relationshipName": null,
199
+ "sortable": true,
200
+ "type": "datetime"
201
+ },
202
+ {
203
+ "aggregatable": true,
204
+ "custom": false,
205
+ "defaultValue": null,
206
+ "extraTypeInfo": null,
207
+ "filterable": true,
208
+ "groupable": true,
209
+ "inlineHelpText": null,
210
+ "label": "Last Modified By ID",
211
+ "name": "LastModifiedById",
212
+ "nillable": false,
213
+ "picklistValues": [],
214
+ "referenceTo": [
215
+ "User"
216
+ ],
217
+ "relationshipName": "LastModifiedBy",
218
+ "sortable": true,
219
+ "type": "reference"
220
+ },
221
+ {
222
+ "aggregatable": true,
223
+ "custom": false,
224
+ "defaultValue": null,
225
+ "extraTypeInfo": null,
226
+ "filterable": true,
227
+ "groupable": false,
228
+ "inlineHelpText": null,
229
+ "label": "System Modstamp",
230
+ "name": "SystemModstamp",
231
+ "nillable": false,
232
+ "picklistValues": [],
233
+ "referenceTo": [],
234
+ "relationshipName": null,
235
+ "sortable": true,
236
+ "type": "datetime"
237
+ },
238
+ {
239
+ "aggregatable": false,
240
+ "custom": false,
241
+ "defaultValue": null,
242
+ "extraTypeInfo": null,
243
+ "filterable": true,
244
+ "groupable": true,
245
+ "inlineHelpText": null,
246
+ "label": "Deleted",
247
+ "name": "IsDeleted",
248
+ "nillable": false,
249
+ "picklistValues": [],
250
+ "referenceTo": [],
251
+ "relationshipName": null,
252
+ "sortable": true,
253
+ "type": "boolean"
254
+ },
255
+ {
256
+ "aggregatable": true,
257
+ "custom": false,
258
+ "defaultValue": null,
259
+ "extraTypeInfo": null,
260
+ "filterable": true,
261
+ "groupable": true,
262
+ "inlineHelpText": null,
263
+ "label": "Asset Name",
264
+ "name": "Name",
265
+ "nillable": false,
266
+ "picklistValues": [],
267
+ "referenceTo": [],
268
+ "relationshipName": null,
269
+ "sortable": true,
270
+ "type": "string"
271
+ },
272
+ {
273
+ "aggregatable": true,
274
+ "custom": false,
275
+ "defaultValue": null,
276
+ "extraTypeInfo": null,
277
+ "filterable": true,
278
+ "groupable": true,
279
+ "inlineHelpText": null,
280
+ "label": "Serial Number",
281
+ "name": "SerialNumber",
282
+ "nillable": true,
283
+ "picklistValues": [],
284
+ "referenceTo": [],
285
+ "relationshipName": null,
286
+ "sortable": true,
287
+ "type": "string"
288
+ },
289
+ {
290
+ "aggregatable": true,
291
+ "custom": false,
292
+ "defaultValue": null,
293
+ "extraTypeInfo": null,
294
+ "filterable": true,
295
+ "groupable": true,
296
+ "inlineHelpText": null,
297
+ "label": "Install Date",
298
+ "name": "InstallDate",
299
+ "nillable": true,
300
+ "picklistValues": [],
301
+ "referenceTo": [],
302
+ "relationshipName": null,
303
+ "sortable": true,
304
+ "type": "date"
305
+ },
306
+ {
307
+ "aggregatable": true,
308
+ "custom": false,
309
+ "defaultValue": null,
310
+ "extraTypeInfo": null,
311
+ "filterable": true,
312
+ "groupable": true,
313
+ "inlineHelpText": null,
314
+ "label": "Purchase Date",
315
+ "name": "PurchaseDate",
316
+ "nillable": true,
317
+ "picklistValues": [],
318
+ "referenceTo": [],
319
+ "relationshipName": null,
320
+ "sortable": true,
321
+ "type": "date"
322
+ },
323
+ {
324
+ "aggregatable": true,
325
+ "custom": false,
326
+ "defaultValue": null,
327
+ "extraTypeInfo": null,
328
+ "filterable": true,
329
+ "groupable": true,
330
+ "inlineHelpText": null,
331
+ "label": "Usage End Date",
332
+ "name": "UsageEndDate",
333
+ "nillable": true,
334
+ "picklistValues": [],
335
+ "referenceTo": [],
336
+ "relationshipName": null,
337
+ "sortable": true,
338
+ "type": "date"
339
+ },
340
+ {
341
+ "aggregatable": true,
342
+ "custom": false,
343
+ "defaultValue": null,
344
+ "extraTypeInfo": null,
345
+ "filterable": true,
346
+ "groupable": false,
347
+ "inlineHelpText": null,
348
+ "label": "Lifecycle Start Date",
349
+ "name": "LifecycleStartDate",
350
+ "nillable": true,
351
+ "picklistValues": [],
352
+ "referenceTo": [],
353
+ "relationshipName": null,
354
+ "sortable": true,
355
+ "type": "datetime"
356
+ },
357
+ {
358
+ "aggregatable": true,
359
+ "custom": false,
360
+ "defaultValue": null,
361
+ "extraTypeInfo": null,
362
+ "filterable": true,
363
+ "groupable": false,
364
+ "inlineHelpText": null,
365
+ "label": "Lifecycle End Date",
366
+ "name": "LifecycleEndDate",
367
+ "nillable": true,
368
+ "picklistValues": [],
369
+ "referenceTo": [],
370
+ "relationshipName": null,
371
+ "sortable": true,
372
+ "type": "datetime"
373
+ },
374
+ {
375
+ "aggregatable": true,
376
+ "custom": false,
377
+ "defaultValue": null,
378
+ "extraTypeInfo": null,
379
+ "filterable": true,
380
+ "groupable": true,
381
+ "inlineHelpText": null,
382
+ "label": "Status",
383
+ "name": "Status",
384
+ "nillable": true,
385
+ "picklistValues": [
386
+ {
387
+ "active": true,
388
+ "defaultValue": false,
389
+ "label": "Shipped",
390
+ "validFor": null,
391
+ "value": "Shipped"
392
+ },
393
+ {
394
+ "active": true,
395
+ "defaultValue": false,
396
+ "label": "Installed",
397
+ "validFor": null,
398
+ "value": "Installed"
399
+ },
400
+ {
401
+ "active": true,
402
+ "defaultValue": false,
403
+ "label": "Registered",
404
+ "validFor": null,
405
+ "value": "Registered"
406
+ },
407
+ {
408
+ "active": true,
409
+ "defaultValue": false,
410
+ "label": "Obsolete",
411
+ "validFor": null,
412
+ "value": "Obsolete"
413
+ },
414
+ {
415
+ "active": true,
416
+ "defaultValue": false,
417
+ "label": "Purchased",
418
+ "validFor": null,
419
+ "value": "Purchased"
420
+ }
421
+ ],
422
+ "referenceTo": [],
423
+ "relationshipName": null,
424
+ "sortable": true,
425
+ "type": "picklist"
426
+ },
427
+ {
428
+ "aggregatable": true,
429
+ "custom": false,
430
+ "defaultValue": null,
431
+ "extraTypeInfo": null,
432
+ "filterable": true,
433
+ "groupable": false,
434
+ "inlineHelpText": null,
435
+ "label": "Price",
436
+ "name": "Price",
437
+ "nillable": true,
438
+ "picklistValues": [],
439
+ "referenceTo": [],
440
+ "relationshipName": null,
441
+ "sortable": true,
442
+ "type": "currency"
443
+ },
444
+ {
445
+ "aggregatable": true,
446
+ "custom": false,
447
+ "defaultValue": null,
448
+ "extraTypeInfo": null,
449
+ "filterable": true,
450
+ "groupable": false,
451
+ "inlineHelpText": null,
452
+ "label": "Quantity",
453
+ "name": "Quantity",
454
+ "nillable": true,
455
+ "picklistValues": [],
456
+ "referenceTo": [],
457
+ "relationshipName": null,
458
+ "sortable": true,
459
+ "type": "double"
460
+ },
461
+ {
462
+ "aggregatable": false,
463
+ "custom": false,
464
+ "defaultValue": null,
465
+ "extraTypeInfo": "plaintextarea",
466
+ "filterable": false,
467
+ "groupable": false,
468
+ "inlineHelpText": null,
469
+ "label": "Description",
470
+ "name": "Description",
471
+ "nillable": true,
472
+ "picklistValues": [],
473
+ "referenceTo": [],
474
+ "relationshipName": null,
475
+ "sortable": false,
476
+ "type": "textarea"
477
+ },
478
+ {
479
+ "aggregatable": true,
480
+ "custom": false,
481
+ "defaultValue": null,
482
+ "extraTypeInfo": null,
483
+ "filterable": true,
484
+ "groupable": true,
485
+ "inlineHelpText": null,
486
+ "label": "Owner ID",
487
+ "name": "OwnerId",
488
+ "nillable": false,
489
+ "picklistValues": [],
490
+ "referenceTo": [
491
+ "User"
492
+ ],
493
+ "relationshipName": "Owner",
494
+ "sortable": true,
495
+ "type": "reference"
496
+ },
497
+ {
498
+ "aggregatable": true,
499
+ "custom": false,
500
+ "defaultValue": null,
501
+ "extraTypeInfo": null,
502
+ "filterable": true,
503
+ "groupable": true,
504
+ "inlineHelpText": null,
505
+ "label": "Location ID",
506
+ "name": "LocationId",
507
+ "nillable": true,
508
+ "picklistValues": [],
509
+ "referenceTo": [
510
+ "Location"
511
+ ],
512
+ "relationshipName": "Location",
513
+ "sortable": true,
514
+ "type": "reference"
515
+ },
516
+ {
517
+ "aggregatable": true,
518
+ "custom": false,
519
+ "defaultValue": null,
520
+ "extraTypeInfo": null,
521
+ "filterable": true,
522
+ "groupable": true,
523
+ "inlineHelpText": null,
524
+ "label": "Asset Provided By ID",
525
+ "name": "AssetProvidedById",
526
+ "nillable": true,
527
+ "picklistValues": [],
528
+ "referenceTo": [
529
+ "Account"
530
+ ],
531
+ "relationshipName": "AssetProvidedBy",
532
+ "sortable": true,
533
+ "type": "reference"
534
+ },
535
+ {
536
+ "aggregatable": true,
537
+ "custom": false,
538
+ "defaultValue": null,
539
+ "extraTypeInfo": null,
540
+ "filterable": true,
541
+ "groupable": true,
542
+ "inlineHelpText": null,
543
+ "label": "Asset Serviced By ID",
544
+ "name": "AssetServicedById",
545
+ "nillable": true,
546
+ "picklistValues": [],
547
+ "referenceTo": [
548
+ "Account"
549
+ ],
550
+ "relationshipName": "AssetServicedBy",
551
+ "sortable": true,
552
+ "type": "reference"
553
+ },
554
+ {
555
+ "aggregatable": false,
556
+ "custom": false,
557
+ "defaultValue": null,
558
+ "extraTypeInfo": null,
559
+ "filterable": true,
560
+ "groupable": true,
561
+ "inlineHelpText": null,
562
+ "label": "Internal Asset",
563
+ "name": "IsInternal",
564
+ "nillable": false,
565
+ "picklistValues": [],
566
+ "referenceTo": [],
567
+ "relationshipName": null,
568
+ "sortable": true,
569
+ "type": "boolean"
570
+ },
571
+ {
572
+ "aggregatable": true,
573
+ "custom": false,
574
+ "defaultValue": null,
575
+ "extraTypeInfo": null,
576
+ "filterable": true,
577
+ "groupable": true,
578
+ "inlineHelpText": null,
579
+ "label": "Asset Level",
580
+ "name": "AssetLevel",
581
+ "nillable": true,
582
+ "picklistValues": [],
583
+ "referenceTo": [],
584
+ "relationshipName": null,
585
+ "sortable": true,
586
+ "type": "int"
587
+ },
588
+ {
589
+ "aggregatable": true,
590
+ "custom": false,
591
+ "defaultValue": null,
592
+ "extraTypeInfo": null,
593
+ "filterable": true,
594
+ "groupable": true,
595
+ "inlineHelpText": null,
596
+ "label": "Product SKU",
597
+ "name": "StockKeepingUnit",
598
+ "nillable": true,
599
+ "picklistValues": [],
600
+ "referenceTo": [],
601
+ "relationshipName": null,
602
+ "sortable": true,
603
+ "type": "string"
604
+ },
605
+ {
606
+ "aggregatable": false,
607
+ "custom": false,
608
+ "defaultValue": null,
609
+ "extraTypeInfo": null,
610
+ "filterable": true,
611
+ "groupable": true,
612
+ "inlineHelpText": null,
613
+ "label": "Lifecycle-managed asset",
614
+ "name": "HasLifecycleManagement",
615
+ "nillable": false,
616
+ "picklistValues": [],
617
+ "referenceTo": [],
618
+ "relationshipName": null,
619
+ "sortable": true,
620
+ "type": "boolean"
621
+ },
622
+ {
623
+ "aggregatable": true,
624
+ "custom": false,
625
+ "defaultValue": null,
626
+ "extraTypeInfo": null,
627
+ "filterable": true,
628
+ "groupable": false,
629
+ "inlineHelpText": null,
630
+ "label": "Current Monthly Recurring Revenue",
631
+ "name": "CurrentMrr",
632
+ "nillable": true,
633
+ "picklistValues": [],
634
+ "referenceTo": [],
635
+ "relationshipName": null,
636
+ "sortable": true,
637
+ "type": "currency"
638
+ },
639
+ {
640
+ "aggregatable": true,
641
+ "custom": false,
642
+ "defaultValue": null,
643
+ "extraTypeInfo": null,
644
+ "filterable": true,
645
+ "groupable": false,
646
+ "inlineHelpText": null,
647
+ "label": "Current Lifecycle End Date",
648
+ "name": "CurrentLifecycleEndDate",
649
+ "nillable": true,
650
+ "picklistValues": [],
651
+ "referenceTo": [],
652
+ "relationshipName": null,
653
+ "sortable": true,
654
+ "type": "datetime"
655
+ },
656
+ {
657
+ "aggregatable": true,
658
+ "custom": false,
659
+ "defaultValue": null,
660
+ "extraTypeInfo": null,
661
+ "filterable": true,
662
+ "groupable": false,
663
+ "inlineHelpText": null,
664
+ "label": "Current Quantity",
665
+ "name": "CurrentQuantity",
666
+ "nillable": true,
667
+ "picklistValues": [],
668
+ "referenceTo": [],
669
+ "relationshipName": null,
670
+ "sortable": true,
671
+ "type": "double"
672
+ },
673
+ {
674
+ "aggregatable": true,
675
+ "custom": false,
676
+ "defaultValue": null,
677
+ "extraTypeInfo": null,
678
+ "filterable": true,
679
+ "groupable": false,
680
+ "inlineHelpText": null,
681
+ "label": "Current Amount",
682
+ "name": "CurrentAmount",
683
+ "nillable": true,
684
+ "picklistValues": [],
685
+ "referenceTo": [],
686
+ "relationshipName": null,
687
+ "sortable": true,
688
+ "type": "currency"
689
+ },
690
+ {
691
+ "aggregatable": true,
692
+ "custom": false,
693
+ "defaultValue": null,
694
+ "extraTypeInfo": null,
695
+ "filterable": true,
696
+ "groupable": false,
697
+ "inlineHelpText": null,
698
+ "label": "Total Lifecycle Amount",
699
+ "name": "TotalLifecycleAmount",
700
+ "nillable": true,
701
+ "picklistValues": [],
702
+ "referenceTo": [],
703
+ "relationshipName": null,
704
+ "sortable": true,
705
+ "type": "currency"
706
+ },
707
+ {
708
+ "aggregatable": true,
709
+ "custom": false,
710
+ "defaultValue": null,
711
+ "extraTypeInfo": "plaintextarea",
712
+ "filterable": true,
713
+ "groupable": true,
714
+ "inlineHelpText": null,
715
+ "label": "Street",
716
+ "name": "Street",
717
+ "nillable": true,
718
+ "picklistValues": [],
719
+ "referenceTo": [],
720
+ "relationshipName": null,
721
+ "sortable": true,
722
+ "type": "textarea"
723
+ },
724
+ {
725
+ "aggregatable": true,
726
+ "custom": false,
727
+ "defaultValue": null,
728
+ "extraTypeInfo": null,
729
+ "filterable": true,
730
+ "groupable": true,
731
+ "inlineHelpText": null,
732
+ "label": "City",
733
+ "name": "City",
734
+ "nillable": true,
735
+ "picklistValues": [],
736
+ "referenceTo": [],
737
+ "relationshipName": null,
738
+ "sortable": true,
739
+ "type": "string"
740
+ },
741
+ {
742
+ "aggregatable": true,
743
+ "custom": false,
744
+ "defaultValue": null,
745
+ "extraTypeInfo": null,
746
+ "filterable": true,
747
+ "groupable": true,
748
+ "inlineHelpText": null,
749
+ "label": "State",
750
+ "name": "State",
751
+ "nillable": true,
752
+ "picklistValues": [],
753
+ "referenceTo": [],
754
+ "relationshipName": null,
755
+ "sortable": true,
756
+ "type": "string"
757
+ },
758
+ {
759
+ "aggregatable": true,
760
+ "custom": false,
761
+ "defaultValue": null,
762
+ "extraTypeInfo": null,
763
+ "filterable": true,
764
+ "groupable": true,
765
+ "inlineHelpText": null,
766
+ "label": "Postal Code",
767
+ "name": "PostalCode",
768
+ "nillable": true,
769
+ "picklistValues": [],
770
+ "referenceTo": [],
771
+ "relationshipName": null,
772
+ "sortable": true,
773
+ "type": "string"
774
+ },
775
+ {
776
+ "aggregatable": true,
777
+ "custom": false,
778
+ "defaultValue": null,
779
+ "extraTypeInfo": null,
780
+ "filterable": true,
781
+ "groupable": true,
782
+ "inlineHelpText": null,
783
+ "label": "Country",
784
+ "name": "Country",
785
+ "nillable": true,
786
+ "picklistValues": [],
787
+ "referenceTo": [],
788
+ "relationshipName": null,
789
+ "sortable": true,
790
+ "type": "string"
791
+ },
792
+ {
793
+ "aggregatable": true,
794
+ "custom": false,
795
+ "defaultValue": null,
796
+ "extraTypeInfo": null,
797
+ "filterable": true,
798
+ "groupable": false,
799
+ "inlineHelpText": null,
800
+ "label": "Latitude",
801
+ "name": "Latitude",
802
+ "nillable": true,
803
+ "picklistValues": [],
804
+ "referenceTo": [],
805
+ "relationshipName": null,
806
+ "sortable": true,
807
+ "type": "double"
808
+ },
809
+ {
810
+ "aggregatable": true,
811
+ "custom": false,
812
+ "defaultValue": null,
813
+ "extraTypeInfo": null,
814
+ "filterable": true,
815
+ "groupable": false,
816
+ "inlineHelpText": null,
817
+ "label": "Longitude",
818
+ "name": "Longitude",
819
+ "nillable": true,
820
+ "picklistValues": [],
821
+ "referenceTo": [],
822
+ "relationshipName": null,
823
+ "sortable": true,
824
+ "type": "double"
825
+ },
826
+ {
827
+ "aggregatable": true,
828
+ "custom": false,
829
+ "defaultValue": null,
830
+ "extraTypeInfo": null,
831
+ "filterable": true,
832
+ "groupable": true,
833
+ "inlineHelpText": null,
834
+ "label": "Geocode Accuracy",
835
+ "name": "GeocodeAccuracy",
836
+ "nillable": true,
837
+ "picklistValues": [
838
+ {
839
+ "active": true,
840
+ "defaultValue": false,
841
+ "label": "Address",
842
+ "validFor": null,
843
+ "value": "Address"
844
+ },
845
+ {
846
+ "active": true,
847
+ "defaultValue": false,
848
+ "label": "NearAddress",
849
+ "validFor": null,
850
+ "value": "NearAddress"
851
+ },
852
+ {
853
+ "active": true,
854
+ "defaultValue": false,
855
+ "label": "Block",
856
+ "validFor": null,
857
+ "value": "Block"
858
+ },
859
+ {
860
+ "active": true,
861
+ "defaultValue": false,
862
+ "label": "Street",
863
+ "validFor": null,
864
+ "value": "Street"
865
+ },
866
+ {
867
+ "active": true,
868
+ "defaultValue": false,
869
+ "label": "ExtendedZip",
870
+ "validFor": null,
871
+ "value": "ExtendedZip"
872
+ },
873
+ {
874
+ "active": true,
875
+ "defaultValue": false,
876
+ "label": "Zip",
877
+ "validFor": null,
878
+ "value": "Zip"
879
+ },
880
+ {
881
+ "active": true,
882
+ "defaultValue": false,
883
+ "label": "Neighborhood",
884
+ "validFor": null,
885
+ "value": "Neighborhood"
886
+ },
887
+ {
888
+ "active": true,
889
+ "defaultValue": false,
890
+ "label": "City",
891
+ "validFor": null,
892
+ "value": "City"
893
+ },
894
+ {
895
+ "active": true,
896
+ "defaultValue": false,
897
+ "label": "County",
898
+ "validFor": null,
899
+ "value": "County"
900
+ },
901
+ {
902
+ "active": true,
903
+ "defaultValue": false,
904
+ "label": "State",
905
+ "validFor": null,
906
+ "value": "State"
907
+ },
908
+ {
909
+ "active": true,
910
+ "defaultValue": false,
911
+ "label": "Unknown",
912
+ "validFor": null,
913
+ "value": "Unknown"
914
+ }
915
+ ],
916
+ "referenceTo": [],
917
+ "relationshipName": null,
918
+ "sortable": true,
919
+ "type": "picklist"
920
+ },
921
+ {
922
+ "aggregatable": false,
923
+ "custom": false,
924
+ "defaultValue": null,
925
+ "extraTypeInfo": null,
926
+ "filterable": true,
927
+ "groupable": false,
928
+ "inlineHelpText": null,
929
+ "label": "Address",
930
+ "name": "Address",
931
+ "nillable": true,
932
+ "picklistValues": [],
933
+ "referenceTo": [],
934
+ "relationshipName": null,
935
+ "sortable": false,
936
+ "type": "address"
937
+ },
938
+ {
939
+ "aggregatable": true,
940
+ "custom": false,
941
+ "defaultValue": null,
942
+ "extraTypeInfo": null,
943
+ "filterable": true,
944
+ "groupable": false,
945
+ "inlineHelpText": null,
946
+ "label": "Last Viewed Date",
947
+ "name": "LastViewedDate",
948
+ "nillable": true,
949
+ "picklistValues": [],
950
+ "referenceTo": [],
951
+ "relationshipName": null,
952
+ "sortable": true,
953
+ "type": "datetime"
954
+ },
955
+ {
956
+ "aggregatable": true,
957
+ "custom": false,
958
+ "defaultValue": null,
959
+ "extraTypeInfo": null,
960
+ "filterable": true,
961
+ "groupable": false,
962
+ "inlineHelpText": null,
963
+ "label": "Last Referenced Date",
964
+ "name": "LastReferencedDate",
965
+ "nillable": true,
966
+ "picklistValues": [],
967
+ "referenceTo": [],
968
+ "relationshipName": null,
969
+ "sortable": true,
970
+ "type": "datetime"
971
+ }
972
+ ],
973
+ "label": "Asset",
974
+ "childRelationships": [
975
+ {
976
+ "cascadeDelete": true,
977
+ "childSObject": "AIInsightValue",
978
+ "deprecatedAndHidden": false,
979
+ "field": "SobjectLookupValueId",
980
+ "junctionIdListNames": [],
981
+ "junctionReferenceTo": [],
982
+ "relationshipName": null,
983
+ "restrictedDelete": false
984
+ },
985
+ {
986
+ "cascadeDelete": true,
987
+ "childSObject": "AIRecordInsight",
988
+ "deprecatedAndHidden": false,
989
+ "field": "TargetId",
990
+ "junctionIdListNames": [],
991
+ "junctionReferenceTo": [],
992
+ "relationshipName": null,
993
+ "restrictedDelete": false
994
+ },
995
+ {
996
+ "cascadeDelete": true,
997
+ "childSObject": "ActivityHistory",
998
+ "deprecatedAndHidden": false,
999
+ "field": "WhatId",
1000
+ "junctionIdListNames": [],
1001
+ "junctionReferenceTo": [],
1002
+ "relationshipName": "ActivityHistories",
1003
+ "restrictedDelete": false
1004
+ },
1005
+ {
1006
+ "cascadeDelete": false,
1007
+ "childSObject": "Asset",
1008
+ "deprecatedAndHidden": false,
1009
+ "field": "ParentId",
1010
+ "junctionIdListNames": [],
1011
+ "junctionReferenceTo": [],
1012
+ "relationshipName": "ChildAssets",
1013
+ "restrictedDelete": false
1014
+ },
1015
+ {
1016
+ "cascadeDelete": false,
1017
+ "childSObject": "Asset",
1018
+ "deprecatedAndHidden": false,
1019
+ "field": "RootAssetId",
1020
+ "junctionIdListNames": [],
1021
+ "junctionReferenceTo": [],
1022
+ "relationshipName": null,
1023
+ "restrictedDelete": false
1024
+ },
1025
+ {
1026
+ "cascadeDelete": true,
1027
+ "childSObject": "AssetAction",
1028
+ "deprecatedAndHidden": false,
1029
+ "field": "AssetId",
1030
+ "junctionIdListNames": [],
1031
+ "junctionReferenceTo": [],
1032
+ "relationshipName": "AssetActions",
1033
+ "restrictedDelete": false
1034
+ },
1035
+ {
1036
+ "cascadeDelete": false,
1037
+ "childSObject": "AssetAttribute",
1038
+ "deprecatedAndHidden": false,
1039
+ "field": "AssetId",
1040
+ "junctionIdListNames": [],
1041
+ "junctionReferenceTo": [],
1042
+ "relationshipName": "AssetAttributes",
1043
+ "restrictedDelete": false
1044
+ },
1045
+ {
1046
+ "cascadeDelete": false,
1047
+ "childSObject": "AssetAttributeChangeEvent",
1048
+ "deprecatedAndHidden": false,
1049
+ "field": "AssetId",
1050
+ "junctionIdListNames": [],
1051
+ "junctionReferenceTo": [],
1052
+ "relationshipName": null,
1053
+ "restrictedDelete": false
1054
+ },
1055
+ {
1056
+ "cascadeDelete": false,
1057
+ "childSObject": "AssetChangeEvent",
1058
+ "deprecatedAndHidden": false,
1059
+ "field": "ParentId",
1060
+ "junctionIdListNames": [],
1061
+ "junctionReferenceTo": [],
1062
+ "relationshipName": null,
1063
+ "restrictedDelete": false
1064
+ },
1065
+ {
1066
+ "cascadeDelete": false,
1067
+ "childSObject": "AssetChangeEvent",
1068
+ "deprecatedAndHidden": false,
1069
+ "field": "RootAssetId",
1070
+ "junctionIdListNames": [],
1071
+ "junctionReferenceTo": [],
1072
+ "relationshipName": null,
1073
+ "restrictedDelete": false
1074
+ },
1075
+ {
1076
+ "cascadeDelete": true,
1077
+ "childSObject": "AssetDowntimePeriod",
1078
+ "deprecatedAndHidden": false,
1079
+ "field": "AssetId",
1080
+ "junctionIdListNames": [],
1081
+ "junctionReferenceTo": [],
1082
+ "relationshipName": "AssetDowntimePeriods",
1083
+ "restrictedDelete": false
1084
+ },
1085
+ {
1086
+ "cascadeDelete": true,
1087
+ "childSObject": "AssetFeed",
1088
+ "deprecatedAndHidden": false,
1089
+ "field": "ParentId",
1090
+ "junctionIdListNames": [],
1091
+ "junctionReferenceTo": [],
1092
+ "relationshipName": "Feeds",
1093
+ "restrictedDelete": false
1094
+ },
1095
+ {
1096
+ "cascadeDelete": true,
1097
+ "childSObject": "AssetHistory",
1098
+ "deprecatedAndHidden": false,
1099
+ "field": "AssetId",
1100
+ "junctionIdListNames": [],
1101
+ "junctionReferenceTo": [],
1102
+ "relationshipName": "Histories",
1103
+ "restrictedDelete": false
1104
+ },
1105
+ {
1106
+ "cascadeDelete": true,
1107
+ "childSObject": "AssetRelationship",
1108
+ "deprecatedAndHidden": false,
1109
+ "field": "AssetId",
1110
+ "junctionIdListNames": [],
1111
+ "junctionReferenceTo": [],
1112
+ "relationshipName": "PrimaryAssets",
1113
+ "restrictedDelete": false
1114
+ },
1115
+ {
1116
+ "cascadeDelete": false,
1117
+ "childSObject": "AssetRelationship",
1118
+ "deprecatedAndHidden": false,
1119
+ "field": "RelatedAssetId",
1120
+ "junctionIdListNames": [],
1121
+ "junctionReferenceTo": [],
1122
+ "relationshipName": "RelatedAssets",
1123
+ "restrictedDelete": true
1124
+ },
1125
+ {
1126
+ "cascadeDelete": true,
1127
+ "childSObject": "AssetShare",
1128
+ "deprecatedAndHidden": false,
1129
+ "field": "AssetId",
1130
+ "junctionIdListNames": [],
1131
+ "junctionReferenceTo": [],
1132
+ "relationshipName": "Shares",
1133
+ "restrictedDelete": false
1134
+ },
1135
+ {
1136
+ "cascadeDelete": true,
1137
+ "childSObject": "AssetStatePeriod",
1138
+ "deprecatedAndHidden": false,
1139
+ "field": "AssetId",
1140
+ "junctionIdListNames": [],
1141
+ "junctionReferenceTo": [],
1142
+ "relationshipName": "AssetStatePeriods",
1143
+ "restrictedDelete": false
1144
+ },
1145
+ {
1146
+ "cascadeDelete": false,
1147
+ "childSObject": "AssetTokenEvent",
1148
+ "deprecatedAndHidden": false,
1149
+ "field": "AssetId",
1150
+ "junctionIdListNames": [],
1151
+ "junctionReferenceTo": [],
1152
+ "relationshipName": null,
1153
+ "restrictedDelete": false
1154
+ },
1155
+ {
1156
+ "cascadeDelete": true,
1157
+ "childSObject": "AssetWarranty",
1158
+ "deprecatedAndHidden": false,
1159
+ "field": "AssetId",
1160
+ "junctionIdListNames": [],
1161
+ "junctionReferenceTo": [],
1162
+ "relationshipName": "WarrantyAssets",
1163
+ "restrictedDelete": false
1164
+ },
1165
+ {
1166
+ "cascadeDelete": false,
1167
+ "childSObject": "AssetWarrantyChangeEvent",
1168
+ "deprecatedAndHidden": false,
1169
+ "field": "AssetId",
1170
+ "junctionIdListNames": [],
1171
+ "junctionReferenceTo": [],
1172
+ "relationshipName": null,
1173
+ "restrictedDelete": false
1174
+ },
1175
+ {
1176
+ "cascadeDelete": true,
1177
+ "childSObject": "AttachedContentDocument",
1178
+ "deprecatedAndHidden": false,
1179
+ "field": "LinkedEntityId",
1180
+ "junctionIdListNames": [],
1181
+ "junctionReferenceTo": [],
1182
+ "relationshipName": "AttachedContentDocuments",
1183
+ "restrictedDelete": false
1184
+ },
1185
+ {
1186
+ "cascadeDelete": true,
1187
+ "childSObject": "Attachment",
1188
+ "deprecatedAndHidden": false,
1189
+ "field": "ParentId",
1190
+ "junctionIdListNames": [],
1191
+ "junctionReferenceTo": [],
1192
+ "relationshipName": "Attachments",
1193
+ "restrictedDelete": false
1194
+ },
1195
+ {
1196
+ "cascadeDelete": false,
1197
+ "childSObject": "Case",
1198
+ "deprecatedAndHidden": false,
1199
+ "field": "AssetId",
1200
+ "junctionIdListNames": [],
1201
+ "junctionReferenceTo": [],
1202
+ "relationshipName": "Cases",
1203
+ "restrictedDelete": true
1204
+ },
1205
+ {
1206
+ "cascadeDelete": false,
1207
+ "childSObject": "CaseChangeEvent",
1208
+ "deprecatedAndHidden": false,
1209
+ "field": "AssetId",
1210
+ "junctionIdListNames": [],
1211
+ "junctionReferenceTo": [],
1212
+ "relationshipName": null,
1213
+ "restrictedDelete": false
1214
+ },
1215
+ {
1216
+ "cascadeDelete": true,
1217
+ "childSObject": "CombinedAttachment",
1218
+ "deprecatedAndHidden": false,
1219
+ "field": "ParentId",
1220
+ "junctionIdListNames": [],
1221
+ "junctionReferenceTo": [],
1222
+ "relationshipName": "CombinedAttachments",
1223
+ "restrictedDelete": false
1224
+ },
1225
+ {
1226
+ "cascadeDelete": true,
1227
+ "childSObject": "ContentDocumentLink",
1228
+ "deprecatedAndHidden": false,
1229
+ "field": "LinkedEntityId",
1230
+ "junctionIdListNames": [],
1231
+ "junctionReferenceTo": [],
1232
+ "relationshipName": "ContentDocumentLinks",
1233
+ "restrictedDelete": false
1234
+ },
1235
+ {
1236
+ "cascadeDelete": false,
1237
+ "childSObject": "ContentDocumentLinkChangeEvent",
1238
+ "deprecatedAndHidden": false,
1239
+ "field": "LinkedEntityId",
1240
+ "junctionIdListNames": [],
1241
+ "junctionReferenceTo": [],
1242
+ "relationshipName": null,
1243
+ "restrictedDelete": false
1244
+ },
1245
+ {
1246
+ "cascadeDelete": false,
1247
+ "childSObject": "ContentVersion",
1248
+ "deprecatedAndHidden": false,
1249
+ "field": "FirstPublishLocationId",
1250
+ "junctionIdListNames": [],
1251
+ "junctionReferenceTo": [],
1252
+ "relationshipName": null,
1253
+ "restrictedDelete": false
1254
+ },
1255
+ {
1256
+ "cascadeDelete": false,
1257
+ "childSObject": "ContentVersionChangeEvent",
1258
+ "deprecatedAndHidden": false,
1259
+ "field": "FirstPublishLocationId",
1260
+ "junctionIdListNames": [],
1261
+ "junctionReferenceTo": [],
1262
+ "relationshipName": null,
1263
+ "restrictedDelete": false
1264
+ },
1265
+ {
1266
+ "cascadeDelete": false,
1267
+ "childSObject": "ContractLineItem",
1268
+ "deprecatedAndHidden": false,
1269
+ "field": "AssetId",
1270
+ "junctionIdListNames": [],
1271
+ "junctionReferenceTo": [],
1272
+ "relationshipName": "ContractLineItems",
1273
+ "restrictedDelete": false
1274
+ },
1275
+ {
1276
+ "cascadeDelete": false,
1277
+ "childSObject": "ContractLineItemChangeEvent",
1278
+ "deprecatedAndHidden": false,
1279
+ "field": "AssetId",
1280
+ "junctionIdListNames": [],
1281
+ "junctionReferenceTo": [],
1282
+ "relationshipName": null,
1283
+ "restrictedDelete": false
1284
+ },
1285
+ {
1286
+ "cascadeDelete": false,
1287
+ "childSObject": "EmailMessage",
1288
+ "deprecatedAndHidden": false,
1289
+ "field": "RelatedToId",
1290
+ "junctionIdListNames": [],
1291
+ "junctionReferenceTo": [],
1292
+ "relationshipName": "Emails",
1293
+ "restrictedDelete": false
1294
+ },
1295
+ {
1296
+ "cascadeDelete": false,
1297
+ "childSObject": "EmailMessageChangeEvent",
1298
+ "deprecatedAndHidden": false,
1299
+ "field": "RelatedToId",
1300
+ "junctionIdListNames": [],
1301
+ "junctionReferenceTo": [],
1302
+ "relationshipName": null,
1303
+ "restrictedDelete": false
1304
+ },
1305
+ {
1306
+ "cascadeDelete": false,
1307
+ "childSObject": "Entitlement",
1308
+ "deprecatedAndHidden": false,
1309
+ "field": "AssetId",
1310
+ "junctionIdListNames": [],
1311
+ "junctionReferenceTo": [],
1312
+ "relationshipName": "Entitlements",
1313
+ "restrictedDelete": false
1314
+ },
1315
+ {
1316
+ "cascadeDelete": false,
1317
+ "childSObject": "EntitlementChangeEvent",
1318
+ "deprecatedAndHidden": false,
1319
+ "field": "AssetId",
1320
+ "junctionIdListNames": [],
1321
+ "junctionReferenceTo": [],
1322
+ "relationshipName": null,
1323
+ "restrictedDelete": false
1324
+ },
1325
+ {
1326
+ "cascadeDelete": true,
1327
+ "childSObject": "EntitySubscription",
1328
+ "deprecatedAndHidden": false,
1329
+ "field": "ParentId",
1330
+ "junctionIdListNames": [],
1331
+ "junctionReferenceTo": [],
1332
+ "relationshipName": "FeedSubscriptionsForEntity",
1333
+ "restrictedDelete": false
1334
+ },
1335
+ {
1336
+ "cascadeDelete": true,
1337
+ "childSObject": "Event",
1338
+ "deprecatedAndHidden": false,
1339
+ "field": "WhatId",
1340
+ "junctionIdListNames": [],
1341
+ "junctionReferenceTo": [],
1342
+ "relationshipName": "Events",
1343
+ "restrictedDelete": false
1344
+ },
1345
+ {
1346
+ "cascadeDelete": false,
1347
+ "childSObject": "EventChangeEvent",
1348
+ "deprecatedAndHidden": false,
1349
+ "field": "WhatId",
1350
+ "junctionIdListNames": [],
1351
+ "junctionReferenceTo": [],
1352
+ "relationshipName": null,
1353
+ "restrictedDelete": false
1354
+ },
1355
+ {
1356
+ "cascadeDelete": false,
1357
+ "childSObject": "EventRelationChangeEvent",
1358
+ "deprecatedAndHidden": false,
1359
+ "field": "RelationId",
1360
+ "junctionIdListNames": [],
1361
+ "junctionReferenceTo": [],
1362
+ "relationshipName": null,
1363
+ "restrictedDelete": false
1364
+ },
1365
+ {
1366
+ "cascadeDelete": false,
1367
+ "childSObject": "FeedComment",
1368
+ "deprecatedAndHidden": false,
1369
+ "field": "ParentId",
1370
+ "junctionIdListNames": [],
1371
+ "junctionReferenceTo": [],
1372
+ "relationshipName": null,
1373
+ "restrictedDelete": false
1374
+ },
1375
+ {
1376
+ "cascadeDelete": true,
1377
+ "childSObject": "FeedItem",
1378
+ "deprecatedAndHidden": false,
1379
+ "field": "ParentId",
1380
+ "junctionIdListNames": [],
1381
+ "junctionReferenceTo": [],
1382
+ "relationshipName": null,
1383
+ "restrictedDelete": false
1384
+ },
1385
+ {
1386
+ "cascadeDelete": false,
1387
+ "childSObject": "FlowExecutionErrorEvent",
1388
+ "deprecatedAndHidden": false,
1389
+ "field": "ContextRecordId",
1390
+ "junctionIdListNames": [],
1391
+ "junctionReferenceTo": [],
1392
+ "relationshipName": null,
1393
+ "restrictedDelete": false
1394
+ },
1395
+ {
1396
+ "cascadeDelete": false,
1397
+ "childSObject": "FlowOrchestrationWorkItem",
1398
+ "deprecatedAndHidden": false,
1399
+ "field": "RelatedRecordId",
1400
+ "junctionIdListNames": [],
1401
+ "junctionReferenceTo": [],
1402
+ "relationshipName": null,
1403
+ "restrictedDelete": false
1404
+ },
1405
+ {
1406
+ "cascadeDelete": false,
1407
+ "childSObject": "FlowRecordRelation",
1408
+ "deprecatedAndHidden": false,
1409
+ "field": "RelatedRecordId",
1410
+ "junctionIdListNames": [],
1411
+ "junctionReferenceTo": [],
1412
+ "relationshipName": null,
1413
+ "restrictedDelete": false
1414
+ },
1415
+ {
1416
+ "cascadeDelete": true,
1417
+ "childSObject": "MaintenanceAsset",
1418
+ "deprecatedAndHidden": false,
1419
+ "field": "AssetId",
1420
+ "junctionIdListNames": [],
1421
+ "junctionReferenceTo": [],
1422
+ "relationshipName": "MaintenanceAssets",
1423
+ "restrictedDelete": false
1424
+ },
1425
+ {
1426
+ "cascadeDelete": false,
1427
+ "childSObject": "MaintenanceAssetChangeEvent",
1428
+ "deprecatedAndHidden": false,
1429
+ "field": "AssetId",
1430
+ "junctionIdListNames": [],
1431
+ "junctionReferenceTo": [],
1432
+ "relationshipName": null,
1433
+ "restrictedDelete": false
1434
+ },
1435
+ {
1436
+ "cascadeDelete": true,
1437
+ "childSObject": "Note",
1438
+ "deprecatedAndHidden": false,
1439
+ "field": "ParentId",
1440
+ "junctionIdListNames": [],
1441
+ "junctionReferenceTo": [],
1442
+ "relationshipName": "Notes",
1443
+ "restrictedDelete": false
1444
+ },
1445
+ {
1446
+ "cascadeDelete": true,
1447
+ "childSObject": "NoteAndAttachment",
1448
+ "deprecatedAndHidden": false,
1449
+ "field": "ParentId",
1450
+ "junctionIdListNames": [],
1451
+ "junctionReferenceTo": [],
1452
+ "relationshipName": "NotesAndAttachments",
1453
+ "restrictedDelete": false
1454
+ },
1455
+ {
1456
+ "cascadeDelete": true,
1457
+ "childSObject": "OpenActivity",
1458
+ "deprecatedAndHidden": false,
1459
+ "field": "WhatId",
1460
+ "junctionIdListNames": [],
1461
+ "junctionReferenceTo": [],
1462
+ "relationshipName": "OpenActivities",
1463
+ "restrictedDelete": false
1464
+ },
1465
+ {
1466
+ "cascadeDelete": false,
1467
+ "childSObject": "OutgoingEmail",
1468
+ "deprecatedAndHidden": false,
1469
+ "field": "RelatedToId",
1470
+ "junctionIdListNames": [],
1471
+ "junctionReferenceTo": [],
1472
+ "relationshipName": null,
1473
+ "restrictedDelete": false
1474
+ },
1475
+ {
1476
+ "cascadeDelete": true,
1477
+ "childSObject": "ProcessInstance",
1478
+ "deprecatedAndHidden": false,
1479
+ "field": "TargetObjectId",
1480
+ "junctionIdListNames": [],
1481
+ "junctionReferenceTo": [],
1482
+ "relationshipName": "ProcessInstances",
1483
+ "restrictedDelete": false
1484
+ },
1485
+ {
1486
+ "cascadeDelete": false,
1487
+ "childSObject": "ProcessInstanceHistory",
1488
+ "deprecatedAndHidden": false,
1489
+ "field": "TargetObjectId",
1490
+ "junctionIdListNames": [],
1491
+ "junctionReferenceTo": [],
1492
+ "relationshipName": "ProcessSteps",
1493
+ "restrictedDelete": false
1494
+ },
1495
+ {
1496
+ "cascadeDelete": false,
1497
+ "childSObject": "ProductServiceCampaignItem",
1498
+ "deprecatedAndHidden": false,
1499
+ "field": "AssetId",
1500
+ "junctionIdListNames": [],
1501
+ "junctionReferenceTo": [],
1502
+ "relationshipName": "ProductServiceCampaignItems",
1503
+ "restrictedDelete": true
1504
+ },
1505
+ {
1506
+ "cascadeDelete": true,
1507
+ "childSObject": "RecordAction",
1508
+ "deprecatedAndHidden": false,
1509
+ "field": "RecordId",
1510
+ "junctionIdListNames": [],
1511
+ "junctionReferenceTo": [],
1512
+ "relationshipName": "RecordActions",
1513
+ "restrictedDelete": false
1514
+ },
1515
+ {
1516
+ "cascadeDelete": false,
1517
+ "childSObject": "RecordActionHistory",
1518
+ "deprecatedAndHidden": false,
1519
+ "field": "ParentRecordId",
1520
+ "junctionIdListNames": [],
1521
+ "junctionReferenceTo": [],
1522
+ "relationshipName": "RecordActionHistories",
1523
+ "restrictedDelete": false
1524
+ },
1525
+ {
1526
+ "cascadeDelete": true,
1527
+ "childSObject": "RecordsetFltrCritMonitor",
1528
+ "deprecatedAndHidden": false,
1529
+ "field": "AssetId",
1530
+ "junctionIdListNames": [],
1531
+ "junctionReferenceTo": [],
1532
+ "relationshipName": "RecordsetFltrCritMonitors",
1533
+ "restrictedDelete": false
1534
+ },
1535
+ {
1536
+ "cascadeDelete": false,
1537
+ "childSObject": "RecordsetFltrCritMonitorChangeEvent",
1538
+ "deprecatedAndHidden": false,
1539
+ "field": "AssetId",
1540
+ "junctionIdListNames": [],
1541
+ "junctionReferenceTo": [],
1542
+ "relationshipName": null,
1543
+ "restrictedDelete": false
1544
+ },
1545
+ {
1546
+ "cascadeDelete": true,
1547
+ "childSObject": "ResourcePreference",
1548
+ "deprecatedAndHidden": false,
1549
+ "field": "RelatedRecordId",
1550
+ "junctionIdListNames": [],
1551
+ "junctionReferenceTo": [],
1552
+ "relationshipName": "ResourcePreferences",
1553
+ "restrictedDelete": false
1554
+ },
1555
+ {
1556
+ "cascadeDelete": false,
1557
+ "childSObject": "ReturnOrderLineItem",
1558
+ "deprecatedAndHidden": false,
1559
+ "field": "AssetId",
1560
+ "junctionIdListNames": [],
1561
+ "junctionReferenceTo": [],
1562
+ "relationshipName": "ReturnOrderLineItems",
1563
+ "restrictedDelete": false
1564
+ },
1565
+ {
1566
+ "cascadeDelete": false,
1567
+ "childSObject": "ReturnOrderLineItemChangeEvent",
1568
+ "deprecatedAndHidden": false,
1569
+ "field": "AssetId",
1570
+ "junctionIdListNames": [],
1571
+ "junctionReferenceTo": [],
1572
+ "relationshipName": null,
1573
+ "restrictedDelete": false
1574
+ },
1575
+ {
1576
+ "cascadeDelete": false,
1577
+ "childSObject": "SerializedProduct",
1578
+ "deprecatedAndHidden": false,
1579
+ "field": "AssetId",
1580
+ "junctionIdListNames": [],
1581
+ "junctionReferenceTo": [],
1582
+ "relationshipName": "SerializedProducts",
1583
+ "restrictedDelete": false
1584
+ },
1585
+ {
1586
+ "cascadeDelete": true,
1587
+ "childSObject": "ServiceAppointment",
1588
+ "deprecatedAndHidden": false,
1589
+ "field": "ParentRecordId",
1590
+ "junctionIdListNames": [],
1591
+ "junctionReferenceTo": [],
1592
+ "relationshipName": "ServiceAppointments",
1593
+ "restrictedDelete": false
1594
+ },
1595
+ {
1596
+ "cascadeDelete": false,
1597
+ "childSObject": "ServiceAppointmentChangeEvent",
1598
+ "deprecatedAndHidden": false,
1599
+ "field": "ParentRecordId",
1600
+ "junctionIdListNames": [],
1601
+ "junctionReferenceTo": [],
1602
+ "relationshipName": null,
1603
+ "restrictedDelete": false
1604
+ },
1605
+ {
1606
+ "cascadeDelete": true,
1607
+ "childSObject": "Task",
1608
+ "deprecatedAndHidden": false,
1609
+ "field": "WhatId",
1610
+ "junctionIdListNames": [],
1611
+ "junctionReferenceTo": [],
1612
+ "relationshipName": "Tasks",
1613
+ "restrictedDelete": false
1614
+ },
1615
+ {
1616
+ "cascadeDelete": false,
1617
+ "childSObject": "TaskChangeEvent",
1618
+ "deprecatedAndHidden": false,
1619
+ "field": "WhatId",
1620
+ "junctionIdListNames": [],
1621
+ "junctionReferenceTo": [],
1622
+ "relationshipName": null,
1623
+ "restrictedDelete": false
1624
+ },
1625
+ {
1626
+ "cascadeDelete": true,
1627
+ "childSObject": "TopicAssignment",
1628
+ "deprecatedAndHidden": false,
1629
+ "field": "EntityId",
1630
+ "junctionIdListNames": [],
1631
+ "junctionReferenceTo": [],
1632
+ "relationshipName": "TopicAssignments",
1633
+ "restrictedDelete": false
1634
+ },
1635
+ {
1636
+ "cascadeDelete": false,
1637
+ "childSObject": "WorkOrder",
1638
+ "deprecatedAndHidden": false,
1639
+ "field": "AssetId",
1640
+ "junctionIdListNames": [],
1641
+ "junctionReferenceTo": [],
1642
+ "relationshipName": "WorkOrders",
1643
+ "restrictedDelete": false
1644
+ },
1645
+ {
1646
+ "cascadeDelete": false,
1647
+ "childSObject": "WorkOrderChangeEvent",
1648
+ "deprecatedAndHidden": false,
1649
+ "field": "AssetId",
1650
+ "junctionIdListNames": [],
1651
+ "junctionReferenceTo": [],
1652
+ "relationshipName": null,
1653
+ "restrictedDelete": false
1654
+ },
1655
+ {
1656
+ "cascadeDelete": false,
1657
+ "childSObject": "WorkOrderLineItem",
1658
+ "deprecatedAndHidden": false,
1659
+ "field": "AssetId",
1660
+ "junctionIdListNames": [],
1661
+ "junctionReferenceTo": [],
1662
+ "relationshipName": "WorkOrderLineItems",
1663
+ "restrictedDelete": false
1664
+ },
1665
+ {
1666
+ "cascadeDelete": false,
1667
+ "childSObject": "WorkOrderLineItemChangeEvent",
1668
+ "deprecatedAndHidden": false,
1669
+ "field": "AssetId",
1670
+ "junctionIdListNames": [],
1671
+ "junctionReferenceTo": [],
1672
+ "relationshipName": null,
1673
+ "restrictedDelete": false
1674
+ },
1675
+ {
1676
+ "cascadeDelete": false,
1677
+ "childSObject": "WorkPlanSelectionRule",
1678
+ "deprecatedAndHidden": false,
1679
+ "field": "AssetId",
1680
+ "junctionIdListNames": [],
1681
+ "junctionReferenceTo": [],
1682
+ "relationshipName": "WorkPlanSelectionRules",
1683
+ "restrictedDelete": false
1684
+ },
1685
+ {
1686
+ "cascadeDelete": false,
1687
+ "childSObject": "WorkPlanSelectionRuleChangeEvent",
1688
+ "deprecatedAndHidden": false,
1689
+ "field": "AssetId",
1690
+ "junctionIdListNames": [],
1691
+ "junctionReferenceTo": [],
1692
+ "relationshipName": null,
1693
+ "restrictedDelete": false
1694
+ }
1695
+ ],
1696
+ "custom": false,
1697
+ "name": "Asset",
1698
+ "queryable": true
1699
+ }