@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,875 @@
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": "Account History ID",
12
+ "name": "Id",
13
+ "nillable": false,
14
+ "picklistValues": [],
15
+ "referenceTo": [],
16
+ "relationshipName": null,
17
+ "sortable": true,
18
+ "type": "id"
19
+ },
20
+ {
21
+ "aggregatable": false,
22
+ "custom": false,
23
+ "defaultValue": null,
24
+ "extraTypeInfo": null,
25
+ "filterable": true,
26
+ "groupable": true,
27
+ "inlineHelpText": null,
28
+ "label": "Deleted",
29
+ "name": "IsDeleted",
30
+ "nillable": false,
31
+ "picklistValues": [],
32
+ "referenceTo": [],
33
+ "relationshipName": null,
34
+ "sortable": true,
35
+ "type": "boolean"
36
+ },
37
+ {
38
+ "aggregatable": true,
39
+ "custom": false,
40
+ "defaultValue": null,
41
+ "extraTypeInfo": null,
42
+ "filterable": true,
43
+ "groupable": true,
44
+ "inlineHelpText": null,
45
+ "label": "Account ID",
46
+ "name": "AccountId",
47
+ "nillable": false,
48
+ "picklistValues": [],
49
+ "referenceTo": [
50
+ "Account"
51
+ ],
52
+ "relationshipName": "Account",
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": "Created By ID",
65
+ "name": "CreatedById",
66
+ "nillable": false,
67
+ "picklistValues": [],
68
+ "referenceTo": [
69
+ "User"
70
+ ],
71
+ "relationshipName": "CreatedBy",
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": "Created Date",
84
+ "name": "CreatedDate",
85
+ "nillable": false,
86
+ "picklistValues": [],
87
+ "referenceTo": [],
88
+ "relationshipName": null,
89
+ "sortable": true,
90
+ "type": "datetime"
91
+ },
92
+ {
93
+ "aggregatable": true,
94
+ "custom": false,
95
+ "defaultValue": null,
96
+ "extraTypeInfo": null,
97
+ "filterable": true,
98
+ "groupable": true,
99
+ "inlineHelpText": null,
100
+ "label": "Changed Field",
101
+ "name": "Field",
102
+ "nillable": false,
103
+ "picklistValues": [
104
+ {
105
+ "active": true,
106
+ "defaultValue": false,
107
+ "label": "Account Merged",
108
+ "validFor": null,
109
+ "value": "accountMerged"
110
+ },
111
+ {
112
+ "active": true,
113
+ "defaultValue": false,
114
+ "label": "Account Name",
115
+ "validFor": null,
116
+ "value": "Name"
117
+ },
118
+ {
119
+ "active": true,
120
+ "defaultValue": false,
121
+ "label": "Account Name",
122
+ "validFor": null,
123
+ "value": "TextName"
124
+ },
125
+ {
126
+ "active": true,
127
+ "defaultValue": false,
128
+ "label": "Account Number",
129
+ "validFor": null,
130
+ "value": "AccountNumber"
131
+ },
132
+ {
133
+ "active": true,
134
+ "defaultValue": false,
135
+ "label": "Account Owner",
136
+ "validFor": null,
137
+ "value": "Owner"
138
+ },
139
+ {
140
+ "active": true,
141
+ "defaultValue": false,
142
+ "label": "Account Site",
143
+ "validFor": null,
144
+ "value": "Site"
145
+ },
146
+ {
147
+ "active": true,
148
+ "defaultValue": false,
149
+ "label": "Account Source",
150
+ "validFor": null,
151
+ "value": "AccountSource"
152
+ },
153
+ {
154
+ "active": true,
155
+ "defaultValue": false,
156
+ "label": "Annual Revenue",
157
+ "validFor": null,
158
+ "value": "AnnualRevenue"
159
+ },
160
+ {
161
+ "active": true,
162
+ "defaultValue": false,
163
+ "label": "Billing Address",
164
+ "validFor": null,
165
+ "value": "BillingAddress"
166
+ },
167
+ {
168
+ "active": true,
169
+ "defaultValue": false,
170
+ "label": "Billing City",
171
+ "validFor": null,
172
+ "value": "BillingCity"
173
+ },
174
+ {
175
+ "active": true,
176
+ "defaultValue": false,
177
+ "label": "Billing Country",
178
+ "validFor": null,
179
+ "value": "BillingCountry"
180
+ },
181
+ {
182
+ "active": true,
183
+ "defaultValue": false,
184
+ "label": "Billing Geocode Accuracy",
185
+ "validFor": null,
186
+ "value": "BillingGeocodeAccuracy"
187
+ },
188
+ {
189
+ "active": true,
190
+ "defaultValue": false,
191
+ "label": "Billing Latitude",
192
+ "validFor": null,
193
+ "value": "BillingLatitude"
194
+ },
195
+ {
196
+ "active": true,
197
+ "defaultValue": false,
198
+ "label": "Billing Longitude",
199
+ "validFor": null,
200
+ "value": "BillingLongitude"
201
+ },
202
+ {
203
+ "active": true,
204
+ "defaultValue": false,
205
+ "label": "Billing State/Province",
206
+ "validFor": null,
207
+ "value": "BillingState"
208
+ },
209
+ {
210
+ "active": true,
211
+ "defaultValue": false,
212
+ "label": "Billing Street",
213
+ "validFor": null,
214
+ "value": "BillingStreet"
215
+ },
216
+ {
217
+ "active": true,
218
+ "defaultValue": false,
219
+ "label": "Billing Zip/Postal Code",
220
+ "validFor": null,
221
+ "value": "BillingPostalCode"
222
+ },
223
+ {
224
+ "active": true,
225
+ "defaultValue": false,
226
+ "label": "Clean Status",
227
+ "validFor": null,
228
+ "value": "CleanStatus"
229
+ },
230
+ {
231
+ "active": true,
232
+ "defaultValue": false,
233
+ "label": "Created.",
234
+ "validFor": null,
235
+ "value": "created"
236
+ },
237
+ {
238
+ "active": true,
239
+ "defaultValue": false,
240
+ "label": "Created by lead convert",
241
+ "validFor": null,
242
+ "value": "accountCreatedFromLead"
243
+ },
244
+ {
245
+ "active": true,
246
+ "defaultValue": false,
247
+ "label": "D&B Company",
248
+ "validFor": null,
249
+ "value": "DandbCompany"
250
+ },
251
+ {
252
+ "active": true,
253
+ "defaultValue": false,
254
+ "label": "Data.com Key",
255
+ "validFor": null,
256
+ "value": "Jigsaw"
257
+ },
258
+ {
259
+ "active": true,
260
+ "defaultValue": false,
261
+ "label": "Description",
262
+ "validFor": null,
263
+ "value": "Description"
264
+ },
265
+ {
266
+ "active": true,
267
+ "defaultValue": false,
268
+ "label": "D-U-N-S Number",
269
+ "validFor": null,
270
+ "value": "DunsNumber"
271
+ },
272
+ {
273
+ "active": true,
274
+ "defaultValue": false,
275
+ "label": "Employees",
276
+ "validFor": null,
277
+ "value": "NumberOfEmployees"
278
+ },
279
+ {
280
+ "active": true,
281
+ "defaultValue": false,
282
+ "label": "Fax",
283
+ "validFor": null,
284
+ "value": "Fax"
285
+ },
286
+ {
287
+ "active": true,
288
+ "defaultValue": false,
289
+ "label": "Feed event",
290
+ "validFor": null,
291
+ "value": "feedEvent"
292
+ },
293
+ {
294
+ "active": true,
295
+ "defaultValue": false,
296
+ "label": "Individual Merged",
297
+ "validFor": null,
298
+ "value": "individualMerged"
299
+ },
300
+ {
301
+ "active": true,
302
+ "defaultValue": false,
303
+ "label": "Industry",
304
+ "validFor": null,
305
+ "value": "Industry"
306
+ },
307
+ {
308
+ "active": true,
309
+ "defaultValue": false,
310
+ "label": "Lead converted to Account",
311
+ "validFor": null,
312
+ "value": "accountUpdatedByLead"
313
+ },
314
+ {
315
+ "active": true,
316
+ "defaultValue": false,
317
+ "label": "Lead converted to Person Account",
318
+ "validFor": null,
319
+ "value": "personAccountUpdatedByLead"
320
+ },
321
+ {
322
+ "active": true,
323
+ "defaultValue": false,
324
+ "label": "NAICS Code",
325
+ "validFor": null,
326
+ "value": "NaicsCode"
327
+ },
328
+ {
329
+ "active": true,
330
+ "defaultValue": false,
331
+ "label": "NAICS Description",
332
+ "validFor": null,
333
+ "value": "NaicsDesc"
334
+ },
335
+ {
336
+ "active": true,
337
+ "defaultValue": false,
338
+ "label": "Operating Hours",
339
+ "validFor": null,
340
+ "value": "OperatingHours"
341
+ },
342
+ {
343
+ "active": true,
344
+ "defaultValue": false,
345
+ "label": "Owner (Accepted)",
346
+ "validFor": null,
347
+ "value": "ownerAccepted"
348
+ },
349
+ {
350
+ "active": true,
351
+ "defaultValue": false,
352
+ "label": "Owner (Assignment)",
353
+ "validFor": null,
354
+ "value": "ownerAssignment"
355
+ },
356
+ {
357
+ "active": true,
358
+ "defaultValue": false,
359
+ "label": "Ownership",
360
+ "validFor": null,
361
+ "value": "Ownership"
362
+ },
363
+ {
364
+ "active": true,
365
+ "defaultValue": false,
366
+ "label": "Parent Account",
367
+ "validFor": null,
368
+ "value": "Parent"
369
+ },
370
+ {
371
+ "active": true,
372
+ "defaultValue": false,
373
+ "label": "Phone",
374
+ "validFor": null,
375
+ "value": "Phone"
376
+ },
377
+ {
378
+ "active": true,
379
+ "defaultValue": false,
380
+ "label": "Rating",
381
+ "validFor": null,
382
+ "value": "Rating"
383
+ },
384
+ {
385
+ "active": true,
386
+ "defaultValue": false,
387
+ "label": "Record locked.",
388
+ "validFor": null,
389
+ "value": "locked"
390
+ },
391
+ {
392
+ "active": true,
393
+ "defaultValue": false,
394
+ "label": "Record unlocked.",
395
+ "validFor": null,
396
+ "value": "unlocked"
397
+ },
398
+ {
399
+ "active": true,
400
+ "defaultValue": false,
401
+ "label": "Shipping Address",
402
+ "validFor": null,
403
+ "value": "ShippingAddress"
404
+ },
405
+ {
406
+ "active": true,
407
+ "defaultValue": false,
408
+ "label": "Shipping City",
409
+ "validFor": null,
410
+ "value": "ShippingCity"
411
+ },
412
+ {
413
+ "active": true,
414
+ "defaultValue": false,
415
+ "label": "Shipping Country",
416
+ "validFor": null,
417
+ "value": "ShippingCountry"
418
+ },
419
+ {
420
+ "active": true,
421
+ "defaultValue": false,
422
+ "label": "Shipping Geocode Accuracy",
423
+ "validFor": null,
424
+ "value": "ShippingGeocodeAccuracy"
425
+ },
426
+ {
427
+ "active": true,
428
+ "defaultValue": false,
429
+ "label": "Shipping Latitude",
430
+ "validFor": null,
431
+ "value": "ShippingLatitude"
432
+ },
433
+ {
434
+ "active": true,
435
+ "defaultValue": false,
436
+ "label": "Shipping Longitude",
437
+ "validFor": null,
438
+ "value": "ShippingLongitude"
439
+ },
440
+ {
441
+ "active": true,
442
+ "defaultValue": false,
443
+ "label": "Shipping State/Province",
444
+ "validFor": null,
445
+ "value": "ShippingState"
446
+ },
447
+ {
448
+ "active": true,
449
+ "defaultValue": false,
450
+ "label": "Shipping Street",
451
+ "validFor": null,
452
+ "value": "ShippingStreet"
453
+ },
454
+ {
455
+ "active": true,
456
+ "defaultValue": false,
457
+ "label": "Shipping Zip/Postal Code",
458
+ "validFor": null,
459
+ "value": "ShippingPostalCode"
460
+ },
461
+ {
462
+ "active": true,
463
+ "defaultValue": false,
464
+ "label": "SIC Code",
465
+ "validFor": null,
466
+ "value": "Sic"
467
+ },
468
+ {
469
+ "active": true,
470
+ "defaultValue": false,
471
+ "label": "SIC Description",
472
+ "validFor": null,
473
+ "value": "SicDesc"
474
+ },
475
+ {
476
+ "active": true,
477
+ "defaultValue": false,
478
+ "label": "Ticker Symbol",
479
+ "validFor": null,
480
+ "value": "TickerSymbol"
481
+ },
482
+ {
483
+ "active": true,
484
+ "defaultValue": false,
485
+ "label": "Tradestyle",
486
+ "validFor": null,
487
+ "value": "Tradestyle"
488
+ },
489
+ {
490
+ "active": true,
491
+ "defaultValue": false,
492
+ "label": "Type",
493
+ "validFor": null,
494
+ "value": "Type"
495
+ },
496
+ {
497
+ "active": true,
498
+ "defaultValue": false,
499
+ "label": "Website",
500
+ "validFor": null,
501
+ "value": "Website"
502
+ },
503
+ {
504
+ "active": true,
505
+ "defaultValue": false,
506
+ "label": "Year Started",
507
+ "validFor": null,
508
+ "value": "YearStarted"
509
+ }
510
+ ],
511
+ "referenceTo": [],
512
+ "relationshipName": null,
513
+ "sortable": true,
514
+ "type": "picklist"
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": "Datatype",
525
+ "name": "DataType",
526
+ "nillable": true,
527
+ "picklistValues": [
528
+ {
529
+ "active": true,
530
+ "defaultValue": false,
531
+ "label": null,
532
+ "validFor": null,
533
+ "value": "Address"
534
+ },
535
+ {
536
+ "active": true,
537
+ "defaultValue": false,
538
+ "label": null,
539
+ "validFor": null,
540
+ "value": "AnyType"
541
+ },
542
+ {
543
+ "active": true,
544
+ "defaultValue": false,
545
+ "label": null,
546
+ "validFor": null,
547
+ "value": "AutoNumber"
548
+ },
549
+ {
550
+ "active": true,
551
+ "defaultValue": false,
552
+ "label": null,
553
+ "validFor": null,
554
+ "value": "Base64"
555
+ },
556
+ {
557
+ "active": true,
558
+ "defaultValue": false,
559
+ "label": null,
560
+ "validFor": null,
561
+ "value": "BitVector"
562
+ },
563
+ {
564
+ "active": true,
565
+ "defaultValue": false,
566
+ "label": null,
567
+ "validFor": null,
568
+ "value": "Boolean"
569
+ },
570
+ {
571
+ "active": true,
572
+ "defaultValue": false,
573
+ "label": null,
574
+ "validFor": null,
575
+ "value": "Content"
576
+ },
577
+ {
578
+ "active": true,
579
+ "defaultValue": false,
580
+ "label": null,
581
+ "validFor": null,
582
+ "value": "Currency"
583
+ },
584
+ {
585
+ "active": true,
586
+ "defaultValue": false,
587
+ "label": null,
588
+ "validFor": null,
589
+ "value": "DataCategoryGroupReference"
590
+ },
591
+ {
592
+ "active": true,
593
+ "defaultValue": false,
594
+ "label": null,
595
+ "validFor": null,
596
+ "value": "DateOnly"
597
+ },
598
+ {
599
+ "active": true,
600
+ "defaultValue": false,
601
+ "label": null,
602
+ "validFor": null,
603
+ "value": "DateTime"
604
+ },
605
+ {
606
+ "active": true,
607
+ "defaultValue": false,
608
+ "label": null,
609
+ "validFor": null,
610
+ "value": "Division"
611
+ },
612
+ {
613
+ "active": true,
614
+ "defaultValue": false,
615
+ "label": null,
616
+ "validFor": null,
617
+ "value": "Double"
618
+ },
619
+ {
620
+ "active": true,
621
+ "defaultValue": false,
622
+ "label": null,
623
+ "validFor": null,
624
+ "value": "DynamicEnum"
625
+ },
626
+ {
627
+ "active": true,
628
+ "defaultValue": false,
629
+ "label": null,
630
+ "validFor": null,
631
+ "value": "Email"
632
+ },
633
+ {
634
+ "active": true,
635
+ "defaultValue": false,
636
+ "label": null,
637
+ "validFor": null,
638
+ "value": "EncryptedBase64"
639
+ },
640
+ {
641
+ "active": true,
642
+ "defaultValue": false,
643
+ "label": null,
644
+ "validFor": null,
645
+ "value": "EncryptedText"
646
+ },
647
+ {
648
+ "active": true,
649
+ "defaultValue": false,
650
+ "label": null,
651
+ "validFor": null,
652
+ "value": "EntityId"
653
+ },
654
+ {
655
+ "active": true,
656
+ "defaultValue": false,
657
+ "label": null,
658
+ "validFor": null,
659
+ "value": "EnumOrId"
660
+ },
661
+ {
662
+ "active": true,
663
+ "defaultValue": false,
664
+ "label": null,
665
+ "validFor": null,
666
+ "value": "ExternalId"
667
+ },
668
+ {
669
+ "active": true,
670
+ "defaultValue": false,
671
+ "label": null,
672
+ "validFor": null,
673
+ "value": "Fax"
674
+ },
675
+ {
676
+ "active": true,
677
+ "defaultValue": false,
678
+ "label": null,
679
+ "validFor": null,
680
+ "value": "File"
681
+ },
682
+ {
683
+ "active": true,
684
+ "defaultValue": false,
685
+ "label": null,
686
+ "validFor": null,
687
+ "value": "HtmlMultiLineText"
688
+ },
689
+ {
690
+ "active": true,
691
+ "defaultValue": false,
692
+ "label": null,
693
+ "validFor": null,
694
+ "value": "HtmlStringPlusClob"
695
+ },
696
+ {
697
+ "active": true,
698
+ "defaultValue": false,
699
+ "label": null,
700
+ "validFor": null,
701
+ "value": "InetAddress"
702
+ },
703
+ {
704
+ "active": true,
705
+ "defaultValue": false,
706
+ "label": null,
707
+ "validFor": null,
708
+ "value": "Json"
709
+ },
710
+ {
711
+ "active": true,
712
+ "defaultValue": false,
713
+ "label": null,
714
+ "validFor": null,
715
+ "value": "Location"
716
+ },
717
+ {
718
+ "active": true,
719
+ "defaultValue": false,
720
+ "label": null,
721
+ "validFor": null,
722
+ "value": "MultiEnum"
723
+ },
724
+ {
725
+ "active": true,
726
+ "defaultValue": false,
727
+ "label": null,
728
+ "validFor": null,
729
+ "value": "MultiLineText"
730
+ },
731
+ {
732
+ "active": true,
733
+ "defaultValue": false,
734
+ "label": null,
735
+ "validFor": null,
736
+ "value": "Namespace"
737
+ },
738
+ {
739
+ "active": true,
740
+ "defaultValue": false,
741
+ "label": null,
742
+ "validFor": null,
743
+ "value": "Percent"
744
+ },
745
+ {
746
+ "active": true,
747
+ "defaultValue": false,
748
+ "label": null,
749
+ "validFor": null,
750
+ "value": "PersonName"
751
+ },
752
+ {
753
+ "active": true,
754
+ "defaultValue": false,
755
+ "label": null,
756
+ "validFor": null,
757
+ "value": "Phone"
758
+ },
759
+ {
760
+ "active": true,
761
+ "defaultValue": false,
762
+ "label": null,
763
+ "validFor": null,
764
+ "value": "Raw"
765
+ },
766
+ {
767
+ "active": true,
768
+ "defaultValue": false,
769
+ "label": null,
770
+ "validFor": null,
771
+ "value": "RecordType"
772
+ },
773
+ {
774
+ "active": true,
775
+ "defaultValue": false,
776
+ "label": null,
777
+ "validFor": null,
778
+ "value": "SfdcEncryptedText"
779
+ },
780
+ {
781
+ "active": true,
782
+ "defaultValue": false,
783
+ "label": null,
784
+ "validFor": null,
785
+ "value": "SimpleNamespace"
786
+ },
787
+ {
788
+ "active": true,
789
+ "defaultValue": false,
790
+ "label": null,
791
+ "validFor": null,
792
+ "value": "StringPlusClob"
793
+ },
794
+ {
795
+ "active": true,
796
+ "defaultValue": false,
797
+ "label": null,
798
+ "validFor": null,
799
+ "value": "Switchable_PersonName"
800
+ },
801
+ {
802
+ "active": true,
803
+ "defaultValue": false,
804
+ "label": null,
805
+ "validFor": null,
806
+ "value": "Text"
807
+ },
808
+ {
809
+ "active": true,
810
+ "defaultValue": false,
811
+ "label": null,
812
+ "validFor": null,
813
+ "value": "TimeOnly"
814
+ },
815
+ {
816
+ "active": true,
817
+ "defaultValue": false,
818
+ "label": null,
819
+ "validFor": null,
820
+ "value": "Url"
821
+ },
822
+ {
823
+ "active": true,
824
+ "defaultValue": false,
825
+ "label": null,
826
+ "validFor": null,
827
+ "value": "YearQuarter"
828
+ }
829
+ ],
830
+ "referenceTo": [],
831
+ "relationshipName": null,
832
+ "sortable": true,
833
+ "type": "picklist"
834
+ },
835
+ {
836
+ "aggregatable": false,
837
+ "custom": false,
838
+ "defaultValue": null,
839
+ "extraTypeInfo": null,
840
+ "filterable": false,
841
+ "groupable": false,
842
+ "inlineHelpText": null,
843
+ "label": "Old Value",
844
+ "name": "OldValue",
845
+ "nillable": true,
846
+ "picklistValues": [],
847
+ "referenceTo": [],
848
+ "relationshipName": null,
849
+ "sortable": true,
850
+ "type": "anyType"
851
+ },
852
+ {
853
+ "aggregatable": false,
854
+ "custom": false,
855
+ "defaultValue": null,
856
+ "extraTypeInfo": null,
857
+ "filterable": false,
858
+ "groupable": false,
859
+ "inlineHelpText": null,
860
+ "label": "New Value",
861
+ "name": "NewValue",
862
+ "nillable": true,
863
+ "picklistValues": [],
864
+ "referenceTo": [],
865
+ "relationshipName": null,
866
+ "sortable": true,
867
+ "type": "anyType"
868
+ }
869
+ ],
870
+ "label": "Account History",
871
+ "childRelationships": [],
872
+ "custom": false,
873
+ "name": "AccountHistory",
874
+ "queryable": true
875
+ }