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