@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.
- 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 +5 -5
- package/src/templates/pages/NotFound.tsx.template +2 -2
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": [
|
|
3
|
+
{
|
|
4
|
+
"aggregatable": true,
|
|
5
|
+
"custom": false,
|
|
6
|
+
"defaultValue": null,
|
|
7
|
+
"extraTypeInfo": null,
|
|
8
|
+
"filterable": true,
|
|
9
|
+
"groupable": true,
|
|
10
|
+
"inlineHelpText": null,
|
|
11
|
+
"label": "Price Book 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": "Price Book Name",
|
|
46
|
+
"name": "Name",
|
|
47
|
+
"nillable": false,
|
|
48
|
+
"picklistValues": [],
|
|
49
|
+
"referenceTo": [],
|
|
50
|
+
"relationshipName": null,
|
|
51
|
+
"sortable": true,
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"aggregatable": true,
|
|
56
|
+
"custom": false,
|
|
57
|
+
"defaultValue": null,
|
|
58
|
+
"extraTypeInfo": null,
|
|
59
|
+
"filterable": true,
|
|
60
|
+
"groupable": false,
|
|
61
|
+
"inlineHelpText": null,
|
|
62
|
+
"label": "Created Date",
|
|
63
|
+
"name": "CreatedDate",
|
|
64
|
+
"nillable": false,
|
|
65
|
+
"picklistValues": [],
|
|
66
|
+
"referenceTo": [],
|
|
67
|
+
"relationshipName": null,
|
|
68
|
+
"sortable": true,
|
|
69
|
+
"type": "datetime"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"aggregatable": true,
|
|
73
|
+
"custom": false,
|
|
74
|
+
"defaultValue": null,
|
|
75
|
+
"extraTypeInfo": null,
|
|
76
|
+
"filterable": true,
|
|
77
|
+
"groupable": true,
|
|
78
|
+
"inlineHelpText": null,
|
|
79
|
+
"label": "Created By ID",
|
|
80
|
+
"name": "CreatedById",
|
|
81
|
+
"nillable": false,
|
|
82
|
+
"picklistValues": [],
|
|
83
|
+
"referenceTo": [
|
|
84
|
+
"User"
|
|
85
|
+
],
|
|
86
|
+
"relationshipName": "CreatedBy",
|
|
87
|
+
"sortable": true,
|
|
88
|
+
"type": "reference"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"aggregatable": true,
|
|
92
|
+
"custom": false,
|
|
93
|
+
"defaultValue": null,
|
|
94
|
+
"extraTypeInfo": null,
|
|
95
|
+
"filterable": true,
|
|
96
|
+
"groupable": false,
|
|
97
|
+
"inlineHelpText": null,
|
|
98
|
+
"label": "Last Modified Date",
|
|
99
|
+
"name": "LastModifiedDate",
|
|
100
|
+
"nillable": false,
|
|
101
|
+
"picklistValues": [],
|
|
102
|
+
"referenceTo": [],
|
|
103
|
+
"relationshipName": null,
|
|
104
|
+
"sortable": true,
|
|
105
|
+
"type": "datetime"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"aggregatable": true,
|
|
109
|
+
"custom": false,
|
|
110
|
+
"defaultValue": null,
|
|
111
|
+
"extraTypeInfo": null,
|
|
112
|
+
"filterable": true,
|
|
113
|
+
"groupable": true,
|
|
114
|
+
"inlineHelpText": null,
|
|
115
|
+
"label": "Last Modified By ID",
|
|
116
|
+
"name": "LastModifiedById",
|
|
117
|
+
"nillable": false,
|
|
118
|
+
"picklistValues": [],
|
|
119
|
+
"referenceTo": [
|
|
120
|
+
"User"
|
|
121
|
+
],
|
|
122
|
+
"relationshipName": "LastModifiedBy",
|
|
123
|
+
"sortable": true,
|
|
124
|
+
"type": "reference"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"aggregatable": true,
|
|
128
|
+
"custom": false,
|
|
129
|
+
"defaultValue": null,
|
|
130
|
+
"extraTypeInfo": null,
|
|
131
|
+
"filterable": true,
|
|
132
|
+
"groupable": false,
|
|
133
|
+
"inlineHelpText": null,
|
|
134
|
+
"label": "System Modstamp",
|
|
135
|
+
"name": "SystemModstamp",
|
|
136
|
+
"nillable": false,
|
|
137
|
+
"picklistValues": [],
|
|
138
|
+
"referenceTo": [],
|
|
139
|
+
"relationshipName": null,
|
|
140
|
+
"sortable": true,
|
|
141
|
+
"type": "datetime"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"aggregatable": true,
|
|
145
|
+
"custom": false,
|
|
146
|
+
"defaultValue": null,
|
|
147
|
+
"extraTypeInfo": null,
|
|
148
|
+
"filterable": true,
|
|
149
|
+
"groupable": false,
|
|
150
|
+
"inlineHelpText": null,
|
|
151
|
+
"label": "Last Viewed Date",
|
|
152
|
+
"name": "LastViewedDate",
|
|
153
|
+
"nillable": true,
|
|
154
|
+
"picklistValues": [],
|
|
155
|
+
"referenceTo": [],
|
|
156
|
+
"relationshipName": null,
|
|
157
|
+
"sortable": true,
|
|
158
|
+
"type": "datetime"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"aggregatable": true,
|
|
162
|
+
"custom": false,
|
|
163
|
+
"defaultValue": null,
|
|
164
|
+
"extraTypeInfo": null,
|
|
165
|
+
"filterable": true,
|
|
166
|
+
"groupable": false,
|
|
167
|
+
"inlineHelpText": null,
|
|
168
|
+
"label": "Last Referenced Date",
|
|
169
|
+
"name": "LastReferencedDate",
|
|
170
|
+
"nillable": true,
|
|
171
|
+
"picklistValues": [],
|
|
172
|
+
"referenceTo": [],
|
|
173
|
+
"relationshipName": null,
|
|
174
|
+
"sortable": true,
|
|
175
|
+
"type": "datetime"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"aggregatable": false,
|
|
179
|
+
"custom": false,
|
|
180
|
+
"defaultValue": null,
|
|
181
|
+
"extraTypeInfo": null,
|
|
182
|
+
"filterable": true,
|
|
183
|
+
"groupable": true,
|
|
184
|
+
"inlineHelpText": null,
|
|
185
|
+
"label": "Active",
|
|
186
|
+
"name": "IsActive",
|
|
187
|
+
"nillable": false,
|
|
188
|
+
"picklistValues": [],
|
|
189
|
+
"referenceTo": [],
|
|
190
|
+
"relationshipName": null,
|
|
191
|
+
"sortable": true,
|
|
192
|
+
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"aggregatable": false,
|
|
196
|
+
"custom": false,
|
|
197
|
+
"defaultValue": null,
|
|
198
|
+
"extraTypeInfo": null,
|
|
199
|
+
"filterable": true,
|
|
200
|
+
"groupable": true,
|
|
201
|
+
"inlineHelpText": null,
|
|
202
|
+
"label": "Archived",
|
|
203
|
+
"name": "IsArchived",
|
|
204
|
+
"nillable": false,
|
|
205
|
+
"picklistValues": [],
|
|
206
|
+
"referenceTo": [],
|
|
207
|
+
"relationshipName": null,
|
|
208
|
+
"sortable": true,
|
|
209
|
+
"type": "boolean"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"aggregatable": true,
|
|
213
|
+
"custom": false,
|
|
214
|
+
"defaultValue": null,
|
|
215
|
+
"extraTypeInfo": null,
|
|
216
|
+
"filterable": true,
|
|
217
|
+
"groupable": true,
|
|
218
|
+
"inlineHelpText": null,
|
|
219
|
+
"label": "Description",
|
|
220
|
+
"name": "Description",
|
|
221
|
+
"nillable": true,
|
|
222
|
+
"picklistValues": [],
|
|
223
|
+
"referenceTo": [],
|
|
224
|
+
"relationshipName": null,
|
|
225
|
+
"sortable": true,
|
|
226
|
+
"type": "string"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"aggregatable": false,
|
|
230
|
+
"custom": false,
|
|
231
|
+
"defaultValue": null,
|
|
232
|
+
"extraTypeInfo": null,
|
|
233
|
+
"filterable": true,
|
|
234
|
+
"groupable": true,
|
|
235
|
+
"inlineHelpText": null,
|
|
236
|
+
"label": "Is Standard Price Book",
|
|
237
|
+
"name": "IsStandard",
|
|
238
|
+
"nillable": false,
|
|
239
|
+
"picklistValues": [],
|
|
240
|
+
"referenceTo": [],
|
|
241
|
+
"relationshipName": null,
|
|
242
|
+
"sortable": true,
|
|
243
|
+
"type": "boolean"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"label": "Price Book",
|
|
247
|
+
"childRelationships": [
|
|
248
|
+
{
|
|
249
|
+
"cascadeDelete": true,
|
|
250
|
+
"childSObject": "AIInsightValue",
|
|
251
|
+
"deprecatedAndHidden": false,
|
|
252
|
+
"field": "SobjectLookupValueId",
|
|
253
|
+
"junctionIdListNames": [],
|
|
254
|
+
"junctionReferenceTo": [],
|
|
255
|
+
"relationshipName": null,
|
|
256
|
+
"restrictedDelete": false
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"cascadeDelete": true,
|
|
260
|
+
"childSObject": "AIRecordInsight",
|
|
261
|
+
"deprecatedAndHidden": false,
|
|
262
|
+
"field": "TargetId",
|
|
263
|
+
"junctionIdListNames": [],
|
|
264
|
+
"junctionReferenceTo": [],
|
|
265
|
+
"relationshipName": null,
|
|
266
|
+
"restrictedDelete": false
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"cascadeDelete": false,
|
|
270
|
+
"childSObject": "AssetWarranty",
|
|
271
|
+
"deprecatedAndHidden": false,
|
|
272
|
+
"field": "Pricebook2Id",
|
|
273
|
+
"junctionIdListNames": [],
|
|
274
|
+
"junctionReferenceTo": [],
|
|
275
|
+
"relationshipName": "AssetWarrantyPricebooks",
|
|
276
|
+
"restrictedDelete": false
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"cascadeDelete": false,
|
|
280
|
+
"childSObject": "AssetWarrantyChangeEvent",
|
|
281
|
+
"deprecatedAndHidden": false,
|
|
282
|
+
"field": "Pricebook2Id",
|
|
283
|
+
"junctionIdListNames": [],
|
|
284
|
+
"junctionReferenceTo": [],
|
|
285
|
+
"relationshipName": null,
|
|
286
|
+
"restrictedDelete": false
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"cascadeDelete": false,
|
|
290
|
+
"childSObject": "Contract",
|
|
291
|
+
"deprecatedAndHidden": false,
|
|
292
|
+
"field": "Pricebook2Id",
|
|
293
|
+
"junctionIdListNames": [],
|
|
294
|
+
"junctionReferenceTo": [],
|
|
295
|
+
"relationshipName": "Contracts",
|
|
296
|
+
"restrictedDelete": true
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"cascadeDelete": false,
|
|
300
|
+
"childSObject": "ContractChangeEvent",
|
|
301
|
+
"deprecatedAndHidden": false,
|
|
302
|
+
"field": "Pricebook2Id",
|
|
303
|
+
"junctionIdListNames": [],
|
|
304
|
+
"junctionReferenceTo": [],
|
|
305
|
+
"relationshipName": null,
|
|
306
|
+
"restrictedDelete": false
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"cascadeDelete": false,
|
|
310
|
+
"childSObject": "FlowExecutionErrorEvent",
|
|
311
|
+
"deprecatedAndHidden": false,
|
|
312
|
+
"field": "ContextRecordId",
|
|
313
|
+
"junctionIdListNames": [],
|
|
314
|
+
"junctionReferenceTo": [],
|
|
315
|
+
"relationshipName": null,
|
|
316
|
+
"restrictedDelete": false
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"cascadeDelete": false,
|
|
320
|
+
"childSObject": "FlowRecordRelation",
|
|
321
|
+
"deprecatedAndHidden": false,
|
|
322
|
+
"field": "RelatedRecordId",
|
|
323
|
+
"junctionIdListNames": [],
|
|
324
|
+
"junctionReferenceTo": [],
|
|
325
|
+
"relationshipName": null,
|
|
326
|
+
"restrictedDelete": false
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"cascadeDelete": false,
|
|
330
|
+
"childSObject": "Opportunity",
|
|
331
|
+
"deprecatedAndHidden": false,
|
|
332
|
+
"field": "Pricebook2Id",
|
|
333
|
+
"junctionIdListNames": [],
|
|
334
|
+
"junctionReferenceTo": [],
|
|
335
|
+
"relationshipName": "Opportunities",
|
|
336
|
+
"restrictedDelete": true
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"cascadeDelete": false,
|
|
340
|
+
"childSObject": "OpportunityChangeEvent",
|
|
341
|
+
"deprecatedAndHidden": false,
|
|
342
|
+
"field": "Pricebook2Id",
|
|
343
|
+
"junctionIdListNames": [],
|
|
344
|
+
"junctionReferenceTo": [],
|
|
345
|
+
"relationshipName": null,
|
|
346
|
+
"restrictedDelete": false
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"cascadeDelete": false,
|
|
350
|
+
"childSObject": "Order",
|
|
351
|
+
"deprecatedAndHidden": false,
|
|
352
|
+
"field": "Pricebook2Id",
|
|
353
|
+
"junctionIdListNames": [],
|
|
354
|
+
"junctionReferenceTo": [],
|
|
355
|
+
"relationshipName": "Orders",
|
|
356
|
+
"restrictedDelete": true
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"cascadeDelete": false,
|
|
360
|
+
"childSObject": "OrderChangeEvent",
|
|
361
|
+
"deprecatedAndHidden": false,
|
|
362
|
+
"field": "Pricebook2Id",
|
|
363
|
+
"junctionIdListNames": [],
|
|
364
|
+
"junctionReferenceTo": [],
|
|
365
|
+
"relationshipName": null,
|
|
366
|
+
"restrictedDelete": false
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"cascadeDelete": true,
|
|
370
|
+
"childSObject": "Pricebook2History",
|
|
371
|
+
"deprecatedAndHidden": false,
|
|
372
|
+
"field": "Pricebook2Id",
|
|
373
|
+
"junctionIdListNames": [],
|
|
374
|
+
"junctionReferenceTo": [],
|
|
375
|
+
"relationshipName": "Histories",
|
|
376
|
+
"restrictedDelete": false
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"cascadeDelete": true,
|
|
380
|
+
"childSObject": "PricebookEntry",
|
|
381
|
+
"deprecatedAndHidden": false,
|
|
382
|
+
"field": "Pricebook2Id",
|
|
383
|
+
"junctionIdListNames": [],
|
|
384
|
+
"junctionReferenceTo": [],
|
|
385
|
+
"relationshipName": "PricebookEntries",
|
|
386
|
+
"restrictedDelete": false
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"cascadeDelete": false,
|
|
390
|
+
"childSObject": "PricebookEntryChangeEvent",
|
|
391
|
+
"deprecatedAndHidden": false,
|
|
392
|
+
"field": "Pricebook2Id",
|
|
393
|
+
"junctionIdListNames": [],
|
|
394
|
+
"junctionReferenceTo": [],
|
|
395
|
+
"relationshipName": null,
|
|
396
|
+
"restrictedDelete": false
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"cascadeDelete": true,
|
|
400
|
+
"childSObject": "RecordAction",
|
|
401
|
+
"deprecatedAndHidden": false,
|
|
402
|
+
"field": "RecordId",
|
|
403
|
+
"junctionIdListNames": [],
|
|
404
|
+
"junctionReferenceTo": [],
|
|
405
|
+
"relationshipName": "RecordActions",
|
|
406
|
+
"restrictedDelete": false
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"cascadeDelete": false,
|
|
410
|
+
"childSObject": "RecordActionHistory",
|
|
411
|
+
"deprecatedAndHidden": false,
|
|
412
|
+
"field": "ParentRecordId",
|
|
413
|
+
"junctionIdListNames": [],
|
|
414
|
+
"junctionReferenceTo": [],
|
|
415
|
+
"relationshipName": "RecordActionHistories",
|
|
416
|
+
"restrictedDelete": false
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"cascadeDelete": false,
|
|
420
|
+
"childSObject": "ServiceContract",
|
|
421
|
+
"deprecatedAndHidden": false,
|
|
422
|
+
"field": "Pricebook2Id",
|
|
423
|
+
"junctionIdListNames": [],
|
|
424
|
+
"junctionReferenceTo": [],
|
|
425
|
+
"relationshipName": "ServiceContracts",
|
|
426
|
+
"restrictedDelete": true
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"cascadeDelete": false,
|
|
430
|
+
"childSObject": "ServiceContractChangeEvent",
|
|
431
|
+
"deprecatedAndHidden": false,
|
|
432
|
+
"field": "Pricebook2Id",
|
|
433
|
+
"junctionIdListNames": [],
|
|
434
|
+
"junctionReferenceTo": [],
|
|
435
|
+
"relationshipName": null,
|
|
436
|
+
"restrictedDelete": false
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"cascadeDelete": false,
|
|
440
|
+
"childSObject": "WarrantyTerm",
|
|
441
|
+
"deprecatedAndHidden": false,
|
|
442
|
+
"field": "Pricebook2Id",
|
|
443
|
+
"junctionIdListNames": [],
|
|
444
|
+
"junctionReferenceTo": [],
|
|
445
|
+
"relationshipName": "Pricebook2",
|
|
446
|
+
"restrictedDelete": false
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"cascadeDelete": false,
|
|
450
|
+
"childSObject": "WarrantyTermChangeEvent",
|
|
451
|
+
"deprecatedAndHidden": false,
|
|
452
|
+
"field": "Pricebook2Id",
|
|
453
|
+
"junctionIdListNames": [],
|
|
454
|
+
"junctionReferenceTo": [],
|
|
455
|
+
"relationshipName": null,
|
|
456
|
+
"restrictedDelete": false
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"cascadeDelete": false,
|
|
460
|
+
"childSObject": "WorkOrder",
|
|
461
|
+
"deprecatedAndHidden": false,
|
|
462
|
+
"field": "Pricebook2Id",
|
|
463
|
+
"junctionIdListNames": [],
|
|
464
|
+
"junctionReferenceTo": [],
|
|
465
|
+
"relationshipName": "WorkOrders",
|
|
466
|
+
"restrictedDelete": false
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"cascadeDelete": false,
|
|
470
|
+
"childSObject": "WorkOrderChangeEvent",
|
|
471
|
+
"deprecatedAndHidden": false,
|
|
472
|
+
"field": "Pricebook2Id",
|
|
473
|
+
"junctionIdListNames": [],
|
|
474
|
+
"junctionReferenceTo": [],
|
|
475
|
+
"relationshipName": null,
|
|
476
|
+
"restrictedDelete": false
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"custom": false,
|
|
480
|
+
"name": "Pricebook2",
|
|
481
|
+
"queryable": true
|
|
482
|
+
}
|