@schandlergarcia/sf-web-components 1.2.6 → 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,433 @@
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": "Price Book Entry 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": "Product Name",
29
+ "name": "Name",
30
+ "nillable": true,
31
+ "picklistValues": [],
32
+ "referenceTo": [],
33
+ "relationshipName": null,
34
+ "sortable": true,
35
+ "type": "string"
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": "Price Book ID",
46
+ "name": "Pricebook2Id",
47
+ "nillable": false,
48
+ "picklistValues": [],
49
+ "referenceTo": [
50
+ "Pricebook2"
51
+ ],
52
+ "relationshipName": "Pricebook2",
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": true,
63
+ "inlineHelpText": null,
64
+ "label": "Product ID",
65
+ "name": "Product2Id",
66
+ "nillable": false,
67
+ "picklistValues": [],
68
+ "referenceTo": [
69
+ "Product2"
70
+ ],
71
+ "relationshipName": "Product2",
72
+ "sortable": true,
73
+ "type": "reference"
74
+ },
75
+ {
76
+ "aggregatable": true,
77
+ "custom": false,
78
+ "defaultValue": null,
79
+ "extraTypeInfo": null,
80
+ "filterable": true,
81
+ "groupable": false,
82
+ "inlineHelpText": null,
83
+ "label": "List Price",
84
+ "name": "UnitPrice",
85
+ "nillable": false,
86
+ "picklistValues": [],
87
+ "referenceTo": [],
88
+ "relationshipName": null,
89
+ "sortable": true,
90
+ "type": "currency"
91
+ },
92
+ {
93
+ "aggregatable": false,
94
+ "custom": false,
95
+ "defaultValue": null,
96
+ "extraTypeInfo": null,
97
+ "filterable": true,
98
+ "groupable": true,
99
+ "inlineHelpText": null,
100
+ "label": "Active",
101
+ "name": "IsActive",
102
+ "nillable": false,
103
+ "picklistValues": [],
104
+ "referenceTo": [],
105
+ "relationshipName": null,
106
+ "sortable": true,
107
+ "type": "boolean"
108
+ },
109
+ {
110
+ "aggregatable": false,
111
+ "custom": false,
112
+ "defaultValue": null,
113
+ "extraTypeInfo": null,
114
+ "filterable": true,
115
+ "groupable": true,
116
+ "inlineHelpText": null,
117
+ "label": "Use Standard Price",
118
+ "name": "UseStandardPrice",
119
+ "nillable": false,
120
+ "picklistValues": [],
121
+ "referenceTo": [],
122
+ "relationshipName": null,
123
+ "sortable": true,
124
+ "type": "boolean"
125
+ },
126
+ {
127
+ "aggregatable": true,
128
+ "custom": false,
129
+ "defaultValue": null,
130
+ "extraTypeInfo": null,
131
+ "filterable": true,
132
+ "groupable": false,
133
+ "inlineHelpText": null,
134
+ "label": "Created Date",
135
+ "name": "CreatedDate",
136
+ "nillable": false,
137
+ "picklistValues": [],
138
+ "referenceTo": [],
139
+ "relationshipName": null,
140
+ "sortable": true,
141
+ "type": "datetime"
142
+ },
143
+ {
144
+ "aggregatable": true,
145
+ "custom": false,
146
+ "defaultValue": null,
147
+ "extraTypeInfo": null,
148
+ "filterable": true,
149
+ "groupable": true,
150
+ "inlineHelpText": null,
151
+ "label": "Created By ID",
152
+ "name": "CreatedById",
153
+ "nillable": false,
154
+ "picklistValues": [],
155
+ "referenceTo": [
156
+ "User"
157
+ ],
158
+ "relationshipName": "CreatedBy",
159
+ "sortable": true,
160
+ "type": "reference"
161
+ },
162
+ {
163
+ "aggregatable": true,
164
+ "custom": false,
165
+ "defaultValue": null,
166
+ "extraTypeInfo": null,
167
+ "filterable": true,
168
+ "groupable": false,
169
+ "inlineHelpText": null,
170
+ "label": "Last Modified Date",
171
+ "name": "LastModifiedDate",
172
+ "nillable": false,
173
+ "picklistValues": [],
174
+ "referenceTo": [],
175
+ "relationshipName": null,
176
+ "sortable": true,
177
+ "type": "datetime"
178
+ },
179
+ {
180
+ "aggregatable": true,
181
+ "custom": false,
182
+ "defaultValue": null,
183
+ "extraTypeInfo": null,
184
+ "filterable": true,
185
+ "groupable": true,
186
+ "inlineHelpText": null,
187
+ "label": "Last Modified By ID",
188
+ "name": "LastModifiedById",
189
+ "nillable": false,
190
+ "picklistValues": [],
191
+ "referenceTo": [
192
+ "User"
193
+ ],
194
+ "relationshipName": "LastModifiedBy",
195
+ "sortable": true,
196
+ "type": "reference"
197
+ },
198
+ {
199
+ "aggregatable": true,
200
+ "custom": false,
201
+ "defaultValue": null,
202
+ "extraTypeInfo": null,
203
+ "filterable": true,
204
+ "groupable": false,
205
+ "inlineHelpText": null,
206
+ "label": "System Modstamp",
207
+ "name": "SystemModstamp",
208
+ "nillable": false,
209
+ "picklistValues": [],
210
+ "referenceTo": [],
211
+ "relationshipName": null,
212
+ "sortable": true,
213
+ "type": "datetime"
214
+ },
215
+ {
216
+ "aggregatable": true,
217
+ "custom": false,
218
+ "defaultValue": null,
219
+ "extraTypeInfo": null,
220
+ "filterable": true,
221
+ "groupable": true,
222
+ "inlineHelpText": null,
223
+ "label": "Product Code",
224
+ "name": "ProductCode",
225
+ "nillable": true,
226
+ "picklistValues": [],
227
+ "referenceTo": [],
228
+ "relationshipName": null,
229
+ "sortable": true,
230
+ "type": "string"
231
+ },
232
+ {
233
+ "aggregatable": false,
234
+ "custom": false,
235
+ "defaultValue": null,
236
+ "extraTypeInfo": null,
237
+ "filterable": true,
238
+ "groupable": true,
239
+ "inlineHelpText": null,
240
+ "label": "Deleted",
241
+ "name": "IsDeleted",
242
+ "nillable": false,
243
+ "picklistValues": [],
244
+ "referenceTo": [],
245
+ "relationshipName": null,
246
+ "sortable": true,
247
+ "type": "boolean"
248
+ },
249
+ {
250
+ "aggregatable": false,
251
+ "custom": false,
252
+ "defaultValue": null,
253
+ "extraTypeInfo": null,
254
+ "filterable": true,
255
+ "groupable": true,
256
+ "inlineHelpText": null,
257
+ "label": "Archived",
258
+ "name": "IsArchived",
259
+ "nillable": false,
260
+ "picklistValues": [],
261
+ "referenceTo": [],
262
+ "relationshipName": null,
263
+ "sortable": true,
264
+ "type": "boolean"
265
+ }
266
+ ],
267
+ "label": "Price Book Entry",
268
+ "childRelationships": [
269
+ {
270
+ "cascadeDelete": true,
271
+ "childSObject": "AIInsightValue",
272
+ "deprecatedAndHidden": false,
273
+ "field": "SobjectLookupValueId",
274
+ "junctionIdListNames": [],
275
+ "junctionReferenceTo": [],
276
+ "relationshipName": null,
277
+ "restrictedDelete": false
278
+ },
279
+ {
280
+ "cascadeDelete": true,
281
+ "childSObject": "AIRecordInsight",
282
+ "deprecatedAndHidden": false,
283
+ "field": "TargetId",
284
+ "junctionIdListNames": [],
285
+ "junctionReferenceTo": [],
286
+ "relationshipName": null,
287
+ "restrictedDelete": false
288
+ },
289
+ {
290
+ "cascadeDelete": false,
291
+ "childSObject": "ContractLineItem",
292
+ "deprecatedAndHidden": false,
293
+ "field": "PricebookEntryId",
294
+ "junctionIdListNames": [],
295
+ "junctionReferenceTo": [],
296
+ "relationshipName": "ContractLineItems",
297
+ "restrictedDelete": true
298
+ },
299
+ {
300
+ "cascadeDelete": false,
301
+ "childSObject": "ContractLineItemChangeEvent",
302
+ "deprecatedAndHidden": false,
303
+ "field": "PricebookEntryId",
304
+ "junctionIdListNames": [],
305
+ "junctionReferenceTo": [],
306
+ "relationshipName": null,
307
+ "restrictedDelete": false
308
+ },
309
+ {
310
+ "cascadeDelete": false,
311
+ "childSObject": "FlowExecutionErrorEvent",
312
+ "deprecatedAndHidden": false,
313
+ "field": "ContextRecordId",
314
+ "junctionIdListNames": [],
315
+ "junctionReferenceTo": [],
316
+ "relationshipName": null,
317
+ "restrictedDelete": false
318
+ },
319
+ {
320
+ "cascadeDelete": false,
321
+ "childSObject": "FlowRecordRelation",
322
+ "deprecatedAndHidden": false,
323
+ "field": "RelatedRecordId",
324
+ "junctionIdListNames": [],
325
+ "junctionReferenceTo": [],
326
+ "relationshipName": null,
327
+ "restrictedDelete": false
328
+ },
329
+ {
330
+ "cascadeDelete": false,
331
+ "childSObject": "OpportunityLineItem",
332
+ "deprecatedAndHidden": false,
333
+ "field": "PricebookEntryId",
334
+ "junctionIdListNames": [],
335
+ "junctionReferenceTo": [],
336
+ "relationshipName": "OpportunityLineItems",
337
+ "restrictedDelete": true
338
+ },
339
+ {
340
+ "cascadeDelete": false,
341
+ "childSObject": "OrderItem",
342
+ "deprecatedAndHidden": false,
343
+ "field": "PricebookEntryId",
344
+ "junctionIdListNames": [],
345
+ "junctionReferenceTo": [],
346
+ "relationshipName": "OrderItems",
347
+ "restrictedDelete": true
348
+ },
349
+ {
350
+ "cascadeDelete": false,
351
+ "childSObject": "OrderItemChangeEvent",
352
+ "deprecatedAndHidden": false,
353
+ "field": "PricebookEntryId",
354
+ "junctionIdListNames": [],
355
+ "junctionReferenceTo": [],
356
+ "relationshipName": null,
357
+ "restrictedDelete": false
358
+ },
359
+ {
360
+ "cascadeDelete": true,
361
+ "childSObject": "PricebookEntryHistory",
362
+ "deprecatedAndHidden": false,
363
+ "field": "PricebookEntryId",
364
+ "junctionIdListNames": [],
365
+ "junctionReferenceTo": [],
366
+ "relationshipName": "Histories",
367
+ "restrictedDelete": false
368
+ },
369
+ {
370
+ "cascadeDelete": false,
371
+ "childSObject": "ProductConsumed",
372
+ "deprecatedAndHidden": false,
373
+ "field": "PricebookEntryId",
374
+ "junctionIdListNames": [],
375
+ "junctionReferenceTo": [],
376
+ "relationshipName": "ProductsConsumed",
377
+ "restrictedDelete": true
378
+ },
379
+ {
380
+ "cascadeDelete": false,
381
+ "childSObject": "ProductConsumedChangeEvent",
382
+ "deprecatedAndHidden": false,
383
+ "field": "PricebookEntryId",
384
+ "junctionIdListNames": [],
385
+ "junctionReferenceTo": [],
386
+ "relationshipName": null,
387
+ "restrictedDelete": false
388
+ },
389
+ {
390
+ "cascadeDelete": true,
391
+ "childSObject": "RecordAction",
392
+ "deprecatedAndHidden": false,
393
+ "field": "RecordId",
394
+ "junctionIdListNames": [],
395
+ "junctionReferenceTo": [],
396
+ "relationshipName": "RecordActions",
397
+ "restrictedDelete": false
398
+ },
399
+ {
400
+ "cascadeDelete": false,
401
+ "childSObject": "RecordActionHistory",
402
+ "deprecatedAndHidden": false,
403
+ "field": "ParentRecordId",
404
+ "junctionIdListNames": [],
405
+ "junctionReferenceTo": [],
406
+ "relationshipName": "RecordActionHistories",
407
+ "restrictedDelete": false
408
+ },
409
+ {
410
+ "cascadeDelete": false,
411
+ "childSObject": "WorkOrderLineItem",
412
+ "deprecatedAndHidden": false,
413
+ "field": "PricebookEntryId",
414
+ "junctionIdListNames": [],
415
+ "junctionReferenceTo": [],
416
+ "relationshipName": "WorkOrderLineItems",
417
+ "restrictedDelete": false
418
+ },
419
+ {
420
+ "cascadeDelete": false,
421
+ "childSObject": "WorkOrderLineItemChangeEvent",
422
+ "deprecatedAndHidden": false,
423
+ "field": "PricebookEntryId",
424
+ "junctionIdListNames": [],
425
+ "junctionReferenceTo": [],
426
+ "relationshipName": null,
427
+ "restrictedDelete": false
428
+ }
429
+ ],
430
+ "custom": false,
431
+ "name": "PricebookEntry",
432
+ "queryable": true
433
+ }