@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.
- package/package.json +2 -1
- package/scripts/postinstall.mjs +69 -93
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Account.cls +196 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls +25 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Asset.cls +138 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Attachment.cls +35 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Case.cls +111 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contact.cls +167 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contract.cls +96 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Domain.cls +29 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Lead.cls +128 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Note.cls +32 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Opportunity.cls +113 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Order.cls +127 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Product2.cls +91 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/RecordType.cls +35 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Report.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Task.cls +79 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/User.cls +2318 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Account.json +2952 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json +875 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Asset.json +1699 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json +362 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Case.json +1371 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contact.json +2309 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contract.json +1304 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Domain.json +293 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Lead.json +1977 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Note.json +303 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json +1470 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Order.json +1646 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json +482 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json +433 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Product2.json +1039 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json +2576 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Report.json +486 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Task.json +4296 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/User.json +30415 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/typeNames.json +78 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Account.d.ts +264 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts +44 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Asset.d.ts +240 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Attachment.d.ts +76 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Case.d.ts +172 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Contact.d.ts +264 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Contract.d.ts +188 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Domain.d.ts +52 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Lead.d.ts +252 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Note.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Opportunity.d.ts +200 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Order.d.ts +260 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts +76 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Product2.d.ts +96 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/RecordType.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Report.d.ts +80 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Task.d.ts +184 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/User.d.ts +752 -0
- package/src/components/library/cards/ActionList.jsx +38 -0
- package/src/components/library/cards/ActivityCard.jsx +56 -0
- package/src/components/library/cards/BaseCard.jsx +109 -0
- package/src/components/library/cards/CalloutCard.jsx +37 -0
- package/src/components/library/cards/ChartCard.jsx +105 -0
- package/src/components/library/cards/FeedPanel.jsx +39 -0
- package/src/components/library/cards/ListCard.jsx +193 -0
- package/src/components/library/cards/MetricCard.jsx +109 -0
- package/src/components/library/cards/MetricsStrip.jsx +78 -0
- package/src/components/library/cards/SectionCard.jsx +83 -0
- package/src/components/library/cards/SemanticMetricCard.jsx +52 -0
- package/src/components/library/cards/SemanticMetricCardWithLoading.jsx +23 -0
- package/src/components/library/cards/SemanticTableCard.jsx +48 -0
- package/src/components/library/cards/SemanticTableCardWithLoading.jsx +22 -0
- package/src/components/library/cards/StatusCard.jsx +220 -0
- package/src/components/library/cards/TableCard.jsx +337 -0
- package/src/components/library/cards/WidgetCard.jsx +90 -0
- package/src/components/library/charts/D3Chart.jsx +109 -0
- package/src/components/library/charts/D3ChartTemplates.jsx +126 -0
- package/src/components/library/charts/GeoMap.jsx +293 -0
- package/src/components/library/chat/ChatBar.jsx +256 -0
- package/src/components/library/chat/ChatInput.jsx +89 -0
- package/src/components/library/chat/ChatMessage.jsx +178 -0
- package/src/components/library/chat/ChatMessageList.jsx +73 -0
- package/src/components/library/chat/ChatPanel.jsx +97 -0
- package/src/components/library/chat/ChatSuggestions.jsx +28 -0
- package/src/components/library/chat/ChatToolCall.jsx +100 -0
- package/src/components/library/chat/ChatTypingIndicator.jsx +23 -0
- package/src/components/library/chat/ChatWelcome.jsx +43 -0
- package/src/components/library/chat/index.jsx +10 -0
- package/src/components/library/chat/useChatState.jsx +130 -0
- package/src/components/library/data/DataModeProvider.jsx +67 -0
- package/src/components/library/data/DataModeToggle.jsx +36 -0
- package/src/components/library/data/chartDataProvider.jsx +61 -0
- package/src/components/library/data/filterUtils.jsx +141 -0
- package/src/components/library/data/useDataSource.jsx +33 -0
- package/src/components/library/data/usePageFilters.jsx +99 -0
- package/src/components/library/filters/FilterBar.jsx +95 -0
- package/src/components/library/filters/SearchFilter.jsx +36 -0
- package/src/components/library/filters/SelectFilter.jsx +55 -0
- package/src/components/library/filters/ToggleFilter.jsx +52 -0
- package/src/components/library/filters/index.jsx +4 -0
- package/src/components/library/forms/FormField.jsx +291 -0
- package/src/components/library/forms/FormModal.jsx +201 -0
- package/src/components/library/forms/FormRenderer.jsx +46 -0
- package/src/components/library/forms/FormSection.jsx +69 -0
- package/src/components/library/forms/index.jsx +5 -0
- package/src/components/library/forms/useFormState.jsx +165 -0
- package/src/components/library/heroui/Accordion.jsx +26 -0
- package/src/components/library/heroui/Alert.jsx +8 -0
- package/src/components/library/heroui/Badge.jsx +8 -0
- package/src/components/library/heroui/Breadcrumbs.jsx +22 -0
- package/src/components/library/heroui/Button.jsx +58 -0
- package/src/components/library/heroui/Card.jsx +8 -0
- package/src/components/library/heroui/Collapsible.jsx +42 -0
- package/src/components/library/heroui/DatePicker.jsx +34 -0
- package/src/components/library/heroui/Dialog.jsx +37 -0
- package/src/components/library/heroui/Drawer.jsx +32 -0
- package/src/components/library/heroui/Dropdown.jsx +28 -0
- package/src/components/library/heroui/Field.jsx +51 -0
- package/src/components/library/heroui/Input.jsx +6 -0
- package/src/components/library/heroui/Kbd.jsx +8 -0
- package/src/components/library/heroui/Meter.jsx +8 -0
- package/src/components/library/heroui/Modal.jsx +32 -0
- package/src/components/library/heroui/Pagination.jsx +8 -0
- package/src/components/library/heroui/Popover.jsx +64 -0
- package/src/components/library/heroui/ProgressBar.jsx +8 -0
- package/src/components/library/heroui/ProgressCircle.jsx +8 -0
- package/src/components/library/heroui/ScrollShadow.jsx +8 -0
- package/src/components/library/heroui/Select.jsx +37 -0
- package/src/components/library/heroui/Separator.jsx +8 -0
- package/src/components/library/heroui/Skeleton.jsx +8 -0
- package/src/components/library/heroui/Tabs.jsx +26 -0
- package/src/components/library/heroui/Toast.jsx +25 -0
- package/src/components/library/heroui/Toggle.jsx +14 -0
- package/src/components/library/heroui/Tooltip.jsx +21 -0
- package/src/components/library/index.jsx +149 -0
- package/src/components/library/layout/PageContainer.jsx +11 -0
- package/src/components/library/skeletons/CardSkeleton.jsx +30 -0
- package/src/components/library/theme/AppThemeProvider.jsx +67 -0
- package/src/components/library/theme/tokens.jsx +72 -0
- package/src/components/library/ui/Alert.jsx +80 -0
- package/src/components/library/ui/Avatar.jsx +44 -0
- package/src/components/library/ui/BreadcrumbExtras.tsx +119 -0
- package/src/components/library/ui/Card.jsx +117 -0
- package/src/components/library/ui/Checkbox.jsx +17 -0
- package/src/components/library/ui/Chip.jsx +38 -0
- package/src/components/library/ui/Collapsible.tsx +31 -0
- package/src/components/library/ui/Container.jsx +56 -0
- package/src/components/library/ui/DatePicker.tsx +34 -0
- package/src/components/library/ui/Dialog.tsx +141 -0
- package/src/components/library/ui/EmptyState.jsx +46 -0
- package/src/components/library/ui/Field.tsx +82 -0
- package/src/components/library/ui/FieldGroup.jsx +17 -0
- package/src/components/library/ui/Label.jsx +22 -0
- package/src/components/library/ui/PaginationExtras.tsx +143 -0
- package/src/components/library/ui/Popover.tsx +39 -0
- package/src/components/library/ui/Select.tsx +113 -0
- package/src/components/library/ui/Spinner.jsx +64 -0
- package/src/components/library/ui/Text.jsx +46 -0
- package/src/components/library/ui/UIButton.jsx +61 -0
- package/src/components/library/ui/UIInput.jsx +21 -0
- package/src/components/workspace/ComponentRegistry.jsx +297 -0
- package/src/templates/pages/Home.tsx.template +6 -5
- package/src/templates/pages/NotFound.tsx.template +2 -2
|
@@ -0,0 +1,362 @@
|
|
|
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": "Attachment 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": "Parent ID",
|
|
46
|
+
"name": "ParentId",
|
|
47
|
+
"nillable": false,
|
|
48
|
+
"picklistValues": [],
|
|
49
|
+
"referenceTo": [
|
|
50
|
+
"Account",
|
|
51
|
+
"ApptBundleAggrDurDnscale",
|
|
52
|
+
"ApptBundleAggrPolicy",
|
|
53
|
+
"ApptBundleConfig",
|
|
54
|
+
"ApptBundlePolicy",
|
|
55
|
+
"ApptBundlePolicySvcTerr",
|
|
56
|
+
"ApptBundlePropagatePolicy",
|
|
57
|
+
"ApptBundleRestrictPolicy",
|
|
58
|
+
"ApptBundleSortPolicy",
|
|
59
|
+
"Asset",
|
|
60
|
+
"AssetDowntimePeriod",
|
|
61
|
+
"AssetWarranty",
|
|
62
|
+
"AttributeDefinition",
|
|
63
|
+
"Broker__c",
|
|
64
|
+
"Campaign",
|
|
65
|
+
"Case",
|
|
66
|
+
"CommSubscription",
|
|
67
|
+
"CommSubscriptionChannelType",
|
|
68
|
+
"CommSubscriptionConsent",
|
|
69
|
+
"CommSubscriptionTiming",
|
|
70
|
+
"Contact",
|
|
71
|
+
"Contract",
|
|
72
|
+
"ContractLineItem",
|
|
73
|
+
"ContractLineOutcome",
|
|
74
|
+
"CreditMemo",
|
|
75
|
+
"EmailMessage",
|
|
76
|
+
"EmailTemplate",
|
|
77
|
+
"EngagementChannelType",
|
|
78
|
+
"Entitlement",
|
|
79
|
+
"Event",
|
|
80
|
+
"Image",
|
|
81
|
+
"Invoice",
|
|
82
|
+
"JobProfile",
|
|
83
|
+
"Lead",
|
|
84
|
+
"LegalEntity",
|
|
85
|
+
"Location",
|
|
86
|
+
"MaintenancePlan",
|
|
87
|
+
"Opportunity",
|
|
88
|
+
"Order",
|
|
89
|
+
"Product2",
|
|
90
|
+
"ProductConsumed",
|
|
91
|
+
"ProductItem",
|
|
92
|
+
"ProductRequest",
|
|
93
|
+
"ProductRequestLineItem",
|
|
94
|
+
"ProductRequired",
|
|
95
|
+
"ProductServiceCampaign",
|
|
96
|
+
"ProductServiceCampaignItem",
|
|
97
|
+
"ProductTransfer",
|
|
98
|
+
"ProductWarrantyTerm",
|
|
99
|
+
"Property__c",
|
|
100
|
+
"ReturnOrder",
|
|
101
|
+
"ReturnOrderLineItem",
|
|
102
|
+
"SerializedProduct",
|
|
103
|
+
"SerializedProductTransaction",
|
|
104
|
+
"ServiceAppointment",
|
|
105
|
+
"ServiceContract",
|
|
106
|
+
"ServiceResource",
|
|
107
|
+
"Shift",
|
|
108
|
+
"Solution",
|
|
109
|
+
"Task",
|
|
110
|
+
"TravelMode",
|
|
111
|
+
"WarrantyTerm",
|
|
112
|
+
"WorkOrder",
|
|
113
|
+
"WorkOrderLineItem",
|
|
114
|
+
"WorkPlan",
|
|
115
|
+
"WorkPlanSelectionRule",
|
|
116
|
+
"WorkPlanTemplate",
|
|
117
|
+
"WorkStep",
|
|
118
|
+
"WorkStepTemplate"
|
|
119
|
+
],
|
|
120
|
+
"relationshipName": "Parent",
|
|
121
|
+
"sortable": true,
|
|
122
|
+
"type": "reference"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"aggregatable": true,
|
|
126
|
+
"custom": false,
|
|
127
|
+
"defaultValue": null,
|
|
128
|
+
"extraTypeInfo": null,
|
|
129
|
+
"filterable": true,
|
|
130
|
+
"groupable": true,
|
|
131
|
+
"inlineHelpText": null,
|
|
132
|
+
"label": "File Name",
|
|
133
|
+
"name": "Name",
|
|
134
|
+
"nillable": false,
|
|
135
|
+
"picklistValues": [],
|
|
136
|
+
"referenceTo": [],
|
|
137
|
+
"relationshipName": null,
|
|
138
|
+
"sortable": true,
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"aggregatable": false,
|
|
143
|
+
"custom": false,
|
|
144
|
+
"defaultValue": null,
|
|
145
|
+
"extraTypeInfo": null,
|
|
146
|
+
"filterable": true,
|
|
147
|
+
"groupable": true,
|
|
148
|
+
"inlineHelpText": null,
|
|
149
|
+
"label": "Private",
|
|
150
|
+
"name": "IsPrivate",
|
|
151
|
+
"nillable": false,
|
|
152
|
+
"picklistValues": [],
|
|
153
|
+
"referenceTo": [],
|
|
154
|
+
"relationshipName": null,
|
|
155
|
+
"sortable": true,
|
|
156
|
+
"type": "boolean"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"aggregatable": true,
|
|
160
|
+
"custom": false,
|
|
161
|
+
"defaultValue": null,
|
|
162
|
+
"extraTypeInfo": null,
|
|
163
|
+
"filterable": true,
|
|
164
|
+
"groupable": true,
|
|
165
|
+
"inlineHelpText": null,
|
|
166
|
+
"label": "Content Type",
|
|
167
|
+
"name": "ContentType",
|
|
168
|
+
"nillable": true,
|
|
169
|
+
"picklistValues": [],
|
|
170
|
+
"referenceTo": [],
|
|
171
|
+
"relationshipName": null,
|
|
172
|
+
"sortable": true,
|
|
173
|
+
"type": "string"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"aggregatable": true,
|
|
177
|
+
"custom": false,
|
|
178
|
+
"defaultValue": null,
|
|
179
|
+
"extraTypeInfo": null,
|
|
180
|
+
"filterable": true,
|
|
181
|
+
"groupable": true,
|
|
182
|
+
"inlineHelpText": null,
|
|
183
|
+
"label": "Body Length",
|
|
184
|
+
"name": "BodyLength",
|
|
185
|
+
"nillable": true,
|
|
186
|
+
"picklistValues": [],
|
|
187
|
+
"referenceTo": [],
|
|
188
|
+
"relationshipName": null,
|
|
189
|
+
"sortable": true,
|
|
190
|
+
"type": "int"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"aggregatable": false,
|
|
194
|
+
"custom": false,
|
|
195
|
+
"defaultValue": null,
|
|
196
|
+
"extraTypeInfo": null,
|
|
197
|
+
"filterable": false,
|
|
198
|
+
"groupable": false,
|
|
199
|
+
"inlineHelpText": null,
|
|
200
|
+
"label": "Body",
|
|
201
|
+
"name": "Body",
|
|
202
|
+
"nillable": false,
|
|
203
|
+
"picklistValues": [],
|
|
204
|
+
"referenceTo": [],
|
|
205
|
+
"relationshipName": null,
|
|
206
|
+
"sortable": false,
|
|
207
|
+
"type": "base64"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"aggregatable": true,
|
|
211
|
+
"custom": false,
|
|
212
|
+
"defaultValue": null,
|
|
213
|
+
"extraTypeInfo": null,
|
|
214
|
+
"filterable": true,
|
|
215
|
+
"groupable": true,
|
|
216
|
+
"inlineHelpText": null,
|
|
217
|
+
"label": "Owner ID",
|
|
218
|
+
"name": "OwnerId",
|
|
219
|
+
"nillable": false,
|
|
220
|
+
"picklistValues": [],
|
|
221
|
+
"referenceTo": [
|
|
222
|
+
"Calendar",
|
|
223
|
+
"User"
|
|
224
|
+
],
|
|
225
|
+
"relationshipName": "Owner",
|
|
226
|
+
"sortable": true,
|
|
227
|
+
"type": "reference"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"aggregatable": true,
|
|
231
|
+
"custom": false,
|
|
232
|
+
"defaultValue": null,
|
|
233
|
+
"extraTypeInfo": null,
|
|
234
|
+
"filterable": true,
|
|
235
|
+
"groupable": false,
|
|
236
|
+
"inlineHelpText": null,
|
|
237
|
+
"label": "Created Date",
|
|
238
|
+
"name": "CreatedDate",
|
|
239
|
+
"nillable": false,
|
|
240
|
+
"picklistValues": [],
|
|
241
|
+
"referenceTo": [],
|
|
242
|
+
"relationshipName": null,
|
|
243
|
+
"sortable": true,
|
|
244
|
+
"type": "datetime"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"aggregatable": true,
|
|
248
|
+
"custom": false,
|
|
249
|
+
"defaultValue": null,
|
|
250
|
+
"extraTypeInfo": null,
|
|
251
|
+
"filterable": true,
|
|
252
|
+
"groupable": true,
|
|
253
|
+
"inlineHelpText": null,
|
|
254
|
+
"label": "Created By ID",
|
|
255
|
+
"name": "CreatedById",
|
|
256
|
+
"nillable": false,
|
|
257
|
+
"picklistValues": [],
|
|
258
|
+
"referenceTo": [
|
|
259
|
+
"User"
|
|
260
|
+
],
|
|
261
|
+
"relationshipName": "CreatedBy",
|
|
262
|
+
"sortable": true,
|
|
263
|
+
"type": "reference"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"aggregatable": true,
|
|
267
|
+
"custom": false,
|
|
268
|
+
"defaultValue": null,
|
|
269
|
+
"extraTypeInfo": null,
|
|
270
|
+
"filterable": true,
|
|
271
|
+
"groupable": false,
|
|
272
|
+
"inlineHelpText": null,
|
|
273
|
+
"label": "Last Modified Date",
|
|
274
|
+
"name": "LastModifiedDate",
|
|
275
|
+
"nillable": false,
|
|
276
|
+
"picklistValues": [],
|
|
277
|
+
"referenceTo": [],
|
|
278
|
+
"relationshipName": null,
|
|
279
|
+
"sortable": true,
|
|
280
|
+
"type": "datetime"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"aggregatable": true,
|
|
284
|
+
"custom": false,
|
|
285
|
+
"defaultValue": null,
|
|
286
|
+
"extraTypeInfo": null,
|
|
287
|
+
"filterable": true,
|
|
288
|
+
"groupable": true,
|
|
289
|
+
"inlineHelpText": null,
|
|
290
|
+
"label": "Last Modified By ID",
|
|
291
|
+
"name": "LastModifiedById",
|
|
292
|
+
"nillable": false,
|
|
293
|
+
"picklistValues": [],
|
|
294
|
+
"referenceTo": [
|
|
295
|
+
"User"
|
|
296
|
+
],
|
|
297
|
+
"relationshipName": "LastModifiedBy",
|
|
298
|
+
"sortable": true,
|
|
299
|
+
"type": "reference"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"aggregatable": true,
|
|
303
|
+
"custom": false,
|
|
304
|
+
"defaultValue": null,
|
|
305
|
+
"extraTypeInfo": null,
|
|
306
|
+
"filterable": true,
|
|
307
|
+
"groupable": false,
|
|
308
|
+
"inlineHelpText": null,
|
|
309
|
+
"label": "System Modstamp",
|
|
310
|
+
"name": "SystemModstamp",
|
|
311
|
+
"nillable": false,
|
|
312
|
+
"picklistValues": [],
|
|
313
|
+
"referenceTo": [],
|
|
314
|
+
"relationshipName": null,
|
|
315
|
+
"sortable": true,
|
|
316
|
+
"type": "datetime"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"aggregatable": true,
|
|
320
|
+
"custom": false,
|
|
321
|
+
"defaultValue": null,
|
|
322
|
+
"extraTypeInfo": "plaintextarea",
|
|
323
|
+
"filterable": true,
|
|
324
|
+
"groupable": false,
|
|
325
|
+
"inlineHelpText": null,
|
|
326
|
+
"label": "Description",
|
|
327
|
+
"name": "Description",
|
|
328
|
+
"nillable": true,
|
|
329
|
+
"picklistValues": [],
|
|
330
|
+
"referenceTo": [],
|
|
331
|
+
"relationshipName": null,
|
|
332
|
+
"sortable": true,
|
|
333
|
+
"type": "textarea"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"label": "Attachment",
|
|
337
|
+
"childRelationships": [
|
|
338
|
+
{
|
|
339
|
+
"cascadeDelete": false,
|
|
340
|
+
"childSObject": "FlowExecutionErrorEvent",
|
|
341
|
+
"deprecatedAndHidden": false,
|
|
342
|
+
"field": "ContextRecordId",
|
|
343
|
+
"junctionIdListNames": [],
|
|
344
|
+
"junctionReferenceTo": [],
|
|
345
|
+
"relationshipName": null,
|
|
346
|
+
"restrictedDelete": false
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"cascadeDelete": false,
|
|
350
|
+
"childSObject": "FlowRecordRelation",
|
|
351
|
+
"deprecatedAndHidden": false,
|
|
352
|
+
"field": "RelatedRecordId",
|
|
353
|
+
"junctionIdListNames": [],
|
|
354
|
+
"junctionReferenceTo": [],
|
|
355
|
+
"relationshipName": null,
|
|
356
|
+
"restrictedDelete": false
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"custom": false,
|
|
360
|
+
"name": "Attachment",
|
|
361
|
+
"queryable": true
|
|
362
|
+
}
|