@schandlergarcia/sf-web-components 1.2.5 → 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,111 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Case {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Boolean IsDeleted;
|
|
12
|
+
global Case MasterRecord;
|
|
13
|
+
global Id MasterRecordId;
|
|
14
|
+
global String CaseNumber;
|
|
15
|
+
global Contact Contact;
|
|
16
|
+
global Id ContactId;
|
|
17
|
+
global Account Account;
|
|
18
|
+
global Id AccountId;
|
|
19
|
+
global Asset Asset;
|
|
20
|
+
global Id AssetId;
|
|
21
|
+
global Case Parent;
|
|
22
|
+
global Id ParentId;
|
|
23
|
+
global String SuppliedName;
|
|
24
|
+
global String SuppliedEmail;
|
|
25
|
+
global String SuppliedPhone;
|
|
26
|
+
global String SuppliedCompany;
|
|
27
|
+
global String Type;
|
|
28
|
+
global String Status;
|
|
29
|
+
global String Reason;
|
|
30
|
+
global String Origin;
|
|
31
|
+
global String Subject;
|
|
32
|
+
global String Priority;
|
|
33
|
+
global String Description;
|
|
34
|
+
global Boolean IsClosed;
|
|
35
|
+
global Datetime ClosedDate;
|
|
36
|
+
global Boolean IsEscalated;
|
|
37
|
+
global SObject Owner;
|
|
38
|
+
global Id OwnerId;
|
|
39
|
+
global Datetime CreatedDate;
|
|
40
|
+
global User CreatedBy;
|
|
41
|
+
global Id CreatedById;
|
|
42
|
+
global Datetime LastModifiedDate;
|
|
43
|
+
global User LastModifiedBy;
|
|
44
|
+
global Id LastModifiedById;
|
|
45
|
+
global Datetime SystemModstamp;
|
|
46
|
+
global String ContactPhone;
|
|
47
|
+
global String ContactMobile;
|
|
48
|
+
global String ContactEmail;
|
|
49
|
+
global String ContactFax;
|
|
50
|
+
global String Comments;
|
|
51
|
+
global Datetime LastViewedDate;
|
|
52
|
+
global Datetime LastReferencedDate;
|
|
53
|
+
global List<ActivityHistory> ActivityHistories;
|
|
54
|
+
global List<AttachedContentDocument> AttachedContentDocuments;
|
|
55
|
+
global List<Attachment> Attachments;
|
|
56
|
+
global List<Case> Cases;
|
|
57
|
+
global List<CaseComment> CaseComments;
|
|
58
|
+
global List<CaseContactRole> CaseContactRoles;
|
|
59
|
+
global List<CaseFeed> Feeds;
|
|
60
|
+
global List<CaseHistory> Histories;
|
|
61
|
+
global List<CaseMilestone> CaseMilestones;
|
|
62
|
+
global List<CaseShare> Shares;
|
|
63
|
+
global List<CaseSolution> CaseSolutions;
|
|
64
|
+
global List<CaseTeamMember> TeamMembers;
|
|
65
|
+
global List<CaseTeamTemplateRecord> TeamTemplateRecords;
|
|
66
|
+
global List<CollaborationGroupRecord> RecordAssociatedGroups;
|
|
67
|
+
global List<CombinedAttachment> CombinedAttachments;
|
|
68
|
+
global List<ContactRequest> ContactRequests;
|
|
69
|
+
global List<ContentDocumentLink> ContentDocumentLinks;
|
|
70
|
+
global List<EmailMessage> EmailMessages;
|
|
71
|
+
global List<EmailMessage> Emails;
|
|
72
|
+
global List<EntitySubscription> FeedSubscriptionsForEntity;
|
|
73
|
+
global List<Event> Events;
|
|
74
|
+
global List<MessagingSession> MessagingSessions;
|
|
75
|
+
global List<OpenActivity> OpenActivities;
|
|
76
|
+
global List<ProcessException> ProcessExceptions;
|
|
77
|
+
global List<ProcessInstance> ProcessInstances;
|
|
78
|
+
global List<ProcessInstanceHistory> ProcessSteps;
|
|
79
|
+
global List<ProductRequest> ProductRequests;
|
|
80
|
+
global List<ProductRequestLineItem> ProductRequestLineItems;
|
|
81
|
+
global List<RecordAction> RecordActions;
|
|
82
|
+
global List<RecordActionHistory> RecordActionHistories;
|
|
83
|
+
global List<ReturnOrder> ReturnOrders;
|
|
84
|
+
global List<ServiceAppointment> ServiceAppointments;
|
|
85
|
+
global List<Swarm> Swarms;
|
|
86
|
+
global List<SwarmMember> SwarmMembers;
|
|
87
|
+
global List<Task> Tasks;
|
|
88
|
+
global List<TopicAssignment> TopicAssignments;
|
|
89
|
+
global List<WorkOrder> WorkOrders;
|
|
90
|
+
global List<AIInsightValue> SobjectLookupValue;
|
|
91
|
+
global List<AIRecordInsight> Target;
|
|
92
|
+
global List<CaseChangeEvent> Parent;
|
|
93
|
+
global List<ContentDistribution> RelatedRecord;
|
|
94
|
+
global List<ContentDocumentLinkChangeEvent> LinkedEntity;
|
|
95
|
+
global List<ContentVersion> FirstPublishLocation;
|
|
96
|
+
global List<EmailMessageChangeEvent> Parent;
|
|
97
|
+
global List<EmailMessageChangeEvent> RelatedTo;
|
|
98
|
+
global List<EventChangeEvent> What;
|
|
99
|
+
global List<EventRelationChangeEvent> Relation;
|
|
100
|
+
global List<FeedComment> Parent;
|
|
101
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
102
|
+
global List<FlowOrchestrationWorkItem> RelatedRecord;
|
|
103
|
+
global List<ProductRequestChangeEvent> Case;
|
|
104
|
+
global List<ServiceAppointmentChangeEvent> ParentRecord;
|
|
105
|
+
global List<TaskChangeEvent> What;
|
|
106
|
+
global List<WorkOrderChangeEvent> Case;
|
|
107
|
+
|
|
108
|
+
global Case ()
|
|
109
|
+
{
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Contact {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Boolean IsDeleted;
|
|
12
|
+
global Contact MasterRecord;
|
|
13
|
+
global Id MasterRecordId;
|
|
14
|
+
global Account Account;
|
|
15
|
+
global Id AccountId;
|
|
16
|
+
global String LastName;
|
|
17
|
+
global String FirstName;
|
|
18
|
+
global String Salutation;
|
|
19
|
+
global String Name;
|
|
20
|
+
global String OtherStreet;
|
|
21
|
+
global String OtherCity;
|
|
22
|
+
global String OtherState;
|
|
23
|
+
global String OtherPostalCode;
|
|
24
|
+
global String OtherCountry;
|
|
25
|
+
global Double OtherLatitude;
|
|
26
|
+
global Double OtherLongitude;
|
|
27
|
+
global String OtherGeocodeAccuracy;
|
|
28
|
+
global Address OtherAddress;
|
|
29
|
+
global String MailingStreet;
|
|
30
|
+
global String MailingCity;
|
|
31
|
+
global String MailingState;
|
|
32
|
+
global String MailingPostalCode;
|
|
33
|
+
global String MailingCountry;
|
|
34
|
+
global Double MailingLatitude;
|
|
35
|
+
global Double MailingLongitude;
|
|
36
|
+
global String MailingGeocodeAccuracy;
|
|
37
|
+
global Address MailingAddress;
|
|
38
|
+
global String Phone;
|
|
39
|
+
global String Fax;
|
|
40
|
+
global String MobilePhone;
|
|
41
|
+
global String HomePhone;
|
|
42
|
+
global String OtherPhone;
|
|
43
|
+
global String AssistantPhone;
|
|
44
|
+
global Contact ReportsTo;
|
|
45
|
+
global Id ReportsToId;
|
|
46
|
+
global String Email;
|
|
47
|
+
global String Title;
|
|
48
|
+
global String Department;
|
|
49
|
+
global String AssistantName;
|
|
50
|
+
global String LeadSource;
|
|
51
|
+
global Date Birthdate;
|
|
52
|
+
global String Description;
|
|
53
|
+
global User Owner;
|
|
54
|
+
global Id OwnerId;
|
|
55
|
+
global Datetime CreatedDate;
|
|
56
|
+
global User CreatedBy;
|
|
57
|
+
global Id CreatedById;
|
|
58
|
+
global Datetime LastModifiedDate;
|
|
59
|
+
global User LastModifiedBy;
|
|
60
|
+
global Id LastModifiedById;
|
|
61
|
+
global Datetime SystemModstamp;
|
|
62
|
+
global Date LastActivityDate;
|
|
63
|
+
global Datetime LastCURequestDate;
|
|
64
|
+
global Datetime LastCUUpdateDate;
|
|
65
|
+
global Datetime LastViewedDate;
|
|
66
|
+
global Datetime LastReferencedDate;
|
|
67
|
+
global String EmailBouncedReason;
|
|
68
|
+
global Datetime EmailBouncedDate;
|
|
69
|
+
global Boolean IsEmailBounced;
|
|
70
|
+
global String PhotoUrl;
|
|
71
|
+
global String Jigsaw;
|
|
72
|
+
global String JigsawContactId;
|
|
73
|
+
global String CleanStatus;
|
|
74
|
+
global Individual Individual;
|
|
75
|
+
global Id IndividualId;
|
|
76
|
+
global List<AcceptedEventRelation> AcceptedEventRelations;
|
|
77
|
+
global List<AccountContactRole> AccountContactRoles;
|
|
78
|
+
global List<ActivityHistory> ActivityHistories;
|
|
79
|
+
global List<Asset> Assets;
|
|
80
|
+
global List<AttachedContentDocument> AttachedContentDocuments;
|
|
81
|
+
global List<Attachment> Attachments;
|
|
82
|
+
global List<AuthorizationFormConsent> AuthorizationFormConsents;
|
|
83
|
+
global List<CampaignMember> CampaignMembers;
|
|
84
|
+
global List<Case> Cases;
|
|
85
|
+
global List<CaseContactRole> CaseContactRoles;
|
|
86
|
+
global List<CollaborationGroupRecord> RecordAssociatedGroups;
|
|
87
|
+
global List<CombinedAttachment> CombinedAttachments;
|
|
88
|
+
global List<CommSubscriptionConsent> CommSubscriptionConsents;
|
|
89
|
+
global List<ContactCleanInfo> ContactCleanInfos;
|
|
90
|
+
global List<ContactFeed> Feeds;
|
|
91
|
+
global List<ContactHistory> Histories;
|
|
92
|
+
global List<ContactRequest> ContactRequests;
|
|
93
|
+
global List<ContactShare> Shares;
|
|
94
|
+
global List<ContentDocumentLink> ContentDocumentLinks;
|
|
95
|
+
global List<Contract> ContractsSigned;
|
|
96
|
+
global List<ContractContactRole> ContractContactRoles;
|
|
97
|
+
global List<ConversationParticipant> ConversationParticipants;
|
|
98
|
+
global List<CreditMemo> CreditMemos;
|
|
99
|
+
global List<DeclinedEventRelation> DeclinedEventRelations;
|
|
100
|
+
global List<DuplicateRecordItem> DuplicateRecordItems;
|
|
101
|
+
global List<EmailMessageRelation> EmailMessageRelations;
|
|
102
|
+
global List<EmailStatus> EmailStatuses;
|
|
103
|
+
global List<EntitlementContact> EntitlementContacts;
|
|
104
|
+
global List<EntitySubscription> FeedSubscriptionsForEntity;
|
|
105
|
+
global List<Event> Events;
|
|
106
|
+
global List<EventRelation> EventRelations;
|
|
107
|
+
global List<Invoice> Invoices;
|
|
108
|
+
global List<ListEmailIndividualRecipient> ListEmailIndividualRecipients;
|
|
109
|
+
global List<MaintenancePlan> MaintenancePlans;
|
|
110
|
+
global List<MessagingEndUser> MessagingEndUsers;
|
|
111
|
+
global List<MessagingSession> MessagingSessions;
|
|
112
|
+
global List<Note> Notes;
|
|
113
|
+
global List<NoteAndAttachment> NotesAndAttachments;
|
|
114
|
+
global List<OpenActivity> OpenActivities;
|
|
115
|
+
global List<Opportunity> Opportunities;
|
|
116
|
+
global List<OpportunityContactRole> OpportunityContactRoles;
|
|
117
|
+
global List<OutgoingEmailRelation> OutgoingEmailRelations;
|
|
118
|
+
global List<ProcessInstance> ProcessInstances;
|
|
119
|
+
global List<ProcessInstanceHistory> ProcessSteps;
|
|
120
|
+
global List<RecordAction> RecordActions;
|
|
121
|
+
global List<RecordActionHistory> RecordActionHistories;
|
|
122
|
+
global List<ReturnOrder> ReturnOrders;
|
|
123
|
+
global List<ServiceAppointment> ServiceAppointments;
|
|
124
|
+
global List<ServiceContract> ServiceContracts;
|
|
125
|
+
global List<Task> Tasks;
|
|
126
|
+
global List<TopicAssignment> TopicAssignments;
|
|
127
|
+
global List<UndecidedEventRelation> UndecidedEventRelations;
|
|
128
|
+
global List<User> Users;
|
|
129
|
+
global List<UserEmailPreferredPerson> PersonRecord;
|
|
130
|
+
global List<WorkOrder> WorkOrders;
|
|
131
|
+
global List<AIInsightValue> SobjectLookupValue;
|
|
132
|
+
global List<AIRecordInsight> Target;
|
|
133
|
+
global List<AccountContactRoleChangeEvent> Contact;
|
|
134
|
+
global List<AuthorizationFormConsentChangeEvent> ConsentGiver;
|
|
135
|
+
global List<CampaignMember> LeadOrContact;
|
|
136
|
+
global List<CampaignMemberChangeEvent> Contact;
|
|
137
|
+
global List<CaseTeamMember> Member;
|
|
138
|
+
global List<CommSubscriptionConsentChangeEvent> ConsentGiver;
|
|
139
|
+
global List<Contact> ReportsTo;
|
|
140
|
+
global List<ContentDistribution> RelatedRecord;
|
|
141
|
+
global List<ContentDocumentLinkChangeEvent> LinkedEntity;
|
|
142
|
+
global List<ContentVersion> FirstPublishLocation;
|
|
143
|
+
global List<ContractChangeEvent> CustomerSigned;
|
|
144
|
+
global List<EventChangeEvent> Who;
|
|
145
|
+
global List<EventRelationChangeEvent> Relation;
|
|
146
|
+
global List<FeedComment> Parent;
|
|
147
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
148
|
+
global List<FlowOrchestrationWorkItem> RelatedRecord;
|
|
149
|
+
global List<Lead> ConvertedContact;
|
|
150
|
+
global List<MaintenancePlanChangeEvent> Contact;
|
|
151
|
+
global List<MatchingInformation> SFDCId;
|
|
152
|
+
global List<OpportunityChangeEvent> Contact;
|
|
153
|
+
global List<Order> BillToContact;
|
|
154
|
+
global List<Order> CustomerAuthorizedBy;
|
|
155
|
+
global List<Order> ShipToContact;
|
|
156
|
+
global List<OrderChangeEvent> BillToContact;
|
|
157
|
+
global List<OrderChangeEvent> CustomerAuthorizedBy;
|
|
158
|
+
global List<OrderChangeEvent> ShipToContact;
|
|
159
|
+
global List<OutgoingEmail> Who;
|
|
160
|
+
global List<ReturnOrderChangeEvent> Contact;
|
|
161
|
+
global List<TaskChangeEvent> Who;
|
|
162
|
+
global List<UserChangeEvent> Contact;
|
|
163
|
+
|
|
164
|
+
global Contact ()
|
|
165
|
+
{
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Contract {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Account Account;
|
|
12
|
+
global Id AccountId;
|
|
13
|
+
global Pricebook2 Pricebook2;
|
|
14
|
+
global Id Pricebook2Id;
|
|
15
|
+
global String OwnerExpirationNotice;
|
|
16
|
+
global Date StartDate;
|
|
17
|
+
global Date EndDate;
|
|
18
|
+
global String BillingStreet;
|
|
19
|
+
global String BillingCity;
|
|
20
|
+
global String BillingState;
|
|
21
|
+
global String BillingPostalCode;
|
|
22
|
+
global String BillingCountry;
|
|
23
|
+
global Double BillingLatitude;
|
|
24
|
+
global Double BillingLongitude;
|
|
25
|
+
global String BillingGeocodeAccuracy;
|
|
26
|
+
global Address BillingAddress;
|
|
27
|
+
global Integer ContractTerm;
|
|
28
|
+
global User Owner;
|
|
29
|
+
global Id OwnerId;
|
|
30
|
+
global String Status;
|
|
31
|
+
global User CompanySigned;
|
|
32
|
+
global Id CompanySignedId;
|
|
33
|
+
global Date CompanySignedDate;
|
|
34
|
+
global Contact CustomerSigned;
|
|
35
|
+
global Id CustomerSignedId;
|
|
36
|
+
global String CustomerSignedTitle;
|
|
37
|
+
global Date CustomerSignedDate;
|
|
38
|
+
global String SpecialTerms;
|
|
39
|
+
global User ActivatedBy;
|
|
40
|
+
global Id ActivatedById;
|
|
41
|
+
global Datetime ActivatedDate;
|
|
42
|
+
global String StatusCode;
|
|
43
|
+
global String Description;
|
|
44
|
+
global Boolean IsDeleted;
|
|
45
|
+
global String ContractNumber;
|
|
46
|
+
global Datetime LastApprovedDate;
|
|
47
|
+
global Datetime CreatedDate;
|
|
48
|
+
global User CreatedBy;
|
|
49
|
+
global Id CreatedById;
|
|
50
|
+
global Datetime LastModifiedDate;
|
|
51
|
+
global User LastModifiedBy;
|
|
52
|
+
global Id LastModifiedById;
|
|
53
|
+
global Datetime SystemModstamp;
|
|
54
|
+
global Date LastActivityDate;
|
|
55
|
+
global Datetime LastViewedDate;
|
|
56
|
+
global Datetime LastReferencedDate;
|
|
57
|
+
global List<ActivityHistory> ActivityHistories;
|
|
58
|
+
global List<AttachedContentDocument> AttachedContentDocuments;
|
|
59
|
+
global List<Attachment> Attachments;
|
|
60
|
+
global List<CollaborationGroupRecord> RecordAssociatedGroups;
|
|
61
|
+
global List<CombinedAttachment> CombinedAttachments;
|
|
62
|
+
global List<ContentDocumentLink> ContentDocumentLinks;
|
|
63
|
+
global List<ContractContactRole> ContractContactRoles;
|
|
64
|
+
global List<ContractFeed> Feeds;
|
|
65
|
+
global List<ContractHistory> Histories;
|
|
66
|
+
global List<EmailMessage> Emails;
|
|
67
|
+
global List<EntitySubscription> FeedSubscriptionsForEntity;
|
|
68
|
+
global List<Event> Events;
|
|
69
|
+
global List<Note> Notes;
|
|
70
|
+
global List<NoteAndAttachment> NotesAndAttachments;
|
|
71
|
+
global List<OpenActivity> OpenActivities;
|
|
72
|
+
global List<Order> Orders;
|
|
73
|
+
global List<ProcessInstance> ProcessInstances;
|
|
74
|
+
global List<ProcessInstanceHistory> ProcessSteps;
|
|
75
|
+
global List<RecordAction> RecordActions;
|
|
76
|
+
global List<RecordActionHistory> RecordActionHistories;
|
|
77
|
+
global List<Task> Tasks;
|
|
78
|
+
global List<TopicAssignment> TopicAssignments;
|
|
79
|
+
global List<AIInsightValue> SobjectLookupValue;
|
|
80
|
+
global List<AIRecordInsight> Target;
|
|
81
|
+
global List<ContentDocumentLinkChangeEvent> LinkedEntity;
|
|
82
|
+
global List<ContentVersion> FirstPublishLocation;
|
|
83
|
+
global List<EmailMessageChangeEvent> RelatedTo;
|
|
84
|
+
global List<EventChangeEvent> What;
|
|
85
|
+
global List<EventRelationChangeEvent> Relation;
|
|
86
|
+
global List<FeedComment> Parent;
|
|
87
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
88
|
+
global List<FlowOrchestrationWorkItem> RelatedRecord;
|
|
89
|
+
global List<OrderChangeEvent> Contract;
|
|
90
|
+
global List<OutgoingEmail> RelatedTo;
|
|
91
|
+
global List<TaskChangeEvent> What;
|
|
92
|
+
|
|
93
|
+
global Contract ()
|
|
94
|
+
{
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Domain {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global String DomainType;
|
|
12
|
+
global String Domain;
|
|
13
|
+
global Boolean OptionsHstsPreload;
|
|
14
|
+
global String CnameTarget;
|
|
15
|
+
global String HttpsOption;
|
|
16
|
+
global Datetime CreatedDate;
|
|
17
|
+
global User CreatedBy;
|
|
18
|
+
global Id CreatedById;
|
|
19
|
+
global Datetime LastModifiedDate;
|
|
20
|
+
global User LastModifiedBy;
|
|
21
|
+
global Id LastModifiedById;
|
|
22
|
+
global Datetime SystemModstamp;
|
|
23
|
+
global List<DomainSite> DomainSites;
|
|
24
|
+
global List<ManagedContentChannel> Domain;
|
|
25
|
+
|
|
26
|
+
global Domain ()
|
|
27
|
+
{
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Lead {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Boolean IsDeleted;
|
|
12
|
+
global Lead MasterRecord;
|
|
13
|
+
global Id MasterRecordId;
|
|
14
|
+
global String LastName;
|
|
15
|
+
global String FirstName;
|
|
16
|
+
global String Salutation;
|
|
17
|
+
global String Name;
|
|
18
|
+
global String Title;
|
|
19
|
+
global String Company;
|
|
20
|
+
global String Street;
|
|
21
|
+
global String City;
|
|
22
|
+
global String State;
|
|
23
|
+
global String PostalCode;
|
|
24
|
+
global String Country;
|
|
25
|
+
global Double Latitude;
|
|
26
|
+
global Double Longitude;
|
|
27
|
+
global String GeocodeAccuracy;
|
|
28
|
+
global Address Address;
|
|
29
|
+
global String Phone;
|
|
30
|
+
global String MobilePhone;
|
|
31
|
+
global String Fax;
|
|
32
|
+
global String Email;
|
|
33
|
+
global String Website;
|
|
34
|
+
global String PhotoUrl;
|
|
35
|
+
global String Description;
|
|
36
|
+
global String LeadSource;
|
|
37
|
+
global String Status;
|
|
38
|
+
global String Industry;
|
|
39
|
+
global String Rating;
|
|
40
|
+
global Decimal AnnualRevenue;
|
|
41
|
+
global Integer NumberOfEmployees;
|
|
42
|
+
global SObject Owner;
|
|
43
|
+
global Id OwnerId;
|
|
44
|
+
global Boolean IsConverted;
|
|
45
|
+
global Date ConvertedDate;
|
|
46
|
+
global Account ConvertedAccount;
|
|
47
|
+
global Id ConvertedAccountId;
|
|
48
|
+
global Contact ConvertedContact;
|
|
49
|
+
global Id ConvertedContactId;
|
|
50
|
+
global Opportunity ConvertedOpportunity;
|
|
51
|
+
global Id ConvertedOpportunityId;
|
|
52
|
+
global Boolean IsUnreadByOwner;
|
|
53
|
+
global Datetime CreatedDate;
|
|
54
|
+
global User CreatedBy;
|
|
55
|
+
global Id CreatedById;
|
|
56
|
+
global Datetime LastModifiedDate;
|
|
57
|
+
global User LastModifiedBy;
|
|
58
|
+
global Id LastModifiedById;
|
|
59
|
+
global Datetime SystemModstamp;
|
|
60
|
+
global Date LastActivityDate;
|
|
61
|
+
global Datetime LastViewedDate;
|
|
62
|
+
global Datetime LastReferencedDate;
|
|
63
|
+
global String Jigsaw;
|
|
64
|
+
global String JigsawContactId;
|
|
65
|
+
global String CleanStatus;
|
|
66
|
+
global String CompanyDunsNumber;
|
|
67
|
+
global DandBCompany DandbCompany;
|
|
68
|
+
global Id DandbCompanyId;
|
|
69
|
+
global String EmailBouncedReason;
|
|
70
|
+
global Datetime EmailBouncedDate;
|
|
71
|
+
global Individual Individual;
|
|
72
|
+
global Id IndividualId;
|
|
73
|
+
global List<AcceptedEventRelation> AcceptedEventRelations;
|
|
74
|
+
global List<ActivityHistory> ActivityHistories;
|
|
75
|
+
global List<AttachedContentDocument> AttachedContentDocuments;
|
|
76
|
+
global List<Attachment> Attachments;
|
|
77
|
+
global List<CampaignMember> CampaignMembers;
|
|
78
|
+
global List<CollaborationGroupRecord> RecordAssociatedGroups;
|
|
79
|
+
global List<CombinedAttachment> CombinedAttachments;
|
|
80
|
+
global List<ContactRequest> ContactRequests;
|
|
81
|
+
global List<ContentDocumentLink> ContentDocumentLinks;
|
|
82
|
+
global List<DeclinedEventRelation> DeclinedEventRelations;
|
|
83
|
+
global List<DuplicateRecordItem> DuplicateRecordItems;
|
|
84
|
+
global List<EmailMessageRelation> EmailMessageRelations;
|
|
85
|
+
global List<EmailStatus> EmailStatuses;
|
|
86
|
+
global List<EntitySubscription> FeedSubscriptionsForEntity;
|
|
87
|
+
global List<Event> Events;
|
|
88
|
+
global List<EventRelation> EventRelations;
|
|
89
|
+
global List<LeadCleanInfo> LeadCleanInfos;
|
|
90
|
+
global List<LeadFeed> Feeds;
|
|
91
|
+
global List<LeadHistory> Histories;
|
|
92
|
+
global List<LeadShare> Shares;
|
|
93
|
+
global List<ListEmailIndividualRecipient> ListEmailIndividualRecipients;
|
|
94
|
+
global List<MessagingEndUser> MessagingEndUsers;
|
|
95
|
+
global List<MessagingSession> MessagingSessions;
|
|
96
|
+
global List<Note> Notes;
|
|
97
|
+
global List<NoteAndAttachment> NotesAndAttachments;
|
|
98
|
+
global List<OpenActivity> OpenActivities;
|
|
99
|
+
global List<OutgoingEmailRelation> OutgoingEmailRelations;
|
|
100
|
+
global List<ProcessInstance> ProcessInstances;
|
|
101
|
+
global List<ProcessInstanceHistory> ProcessSteps;
|
|
102
|
+
global List<RecordAction> RecordActions;
|
|
103
|
+
global List<RecordActionHistory> RecordActionHistories;
|
|
104
|
+
global List<ServiceAppointment> ServiceAppointments;
|
|
105
|
+
global List<Task> Tasks;
|
|
106
|
+
global List<TopicAssignment> TopicAssignments;
|
|
107
|
+
global List<UndecidedEventRelation> UndecidedEventRelations;
|
|
108
|
+
global List<UserEmailPreferredPerson> PersonRecord;
|
|
109
|
+
global List<AIInsightValue> SobjectLookupValue;
|
|
110
|
+
global List<AIRecordInsight> Target;
|
|
111
|
+
global List<CampaignMember> LeadOrContact;
|
|
112
|
+
global List<CampaignMemberChangeEvent> Lead;
|
|
113
|
+
global List<ContentDistribution> RelatedRecord;
|
|
114
|
+
global List<ContentDocumentLinkChangeEvent> LinkedEntity;
|
|
115
|
+
global List<ContentVersion> FirstPublishLocation;
|
|
116
|
+
global List<EventChangeEvent> Who;
|
|
117
|
+
global List<EventRelationChangeEvent> Relation;
|
|
118
|
+
global List<FeedComment> Parent;
|
|
119
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
120
|
+
global List<FlowOrchestrationWorkItem> RelatedRecord;
|
|
121
|
+
global List<OutgoingEmail> Who;
|
|
122
|
+
global List<ServiceAppointmentChangeEvent> ParentRecord;
|
|
123
|
+
global List<TaskChangeEvent> Who;
|
|
124
|
+
|
|
125
|
+
global Lead ()
|
|
126
|
+
{
|
|
127
|
+
}
|
|
128
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Note {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Boolean IsDeleted;
|
|
12
|
+
global SObject Parent;
|
|
13
|
+
global Id ParentId;
|
|
14
|
+
global String Title;
|
|
15
|
+
global Boolean IsPrivate;
|
|
16
|
+
global String Body;
|
|
17
|
+
global User Owner;
|
|
18
|
+
global Id OwnerId;
|
|
19
|
+
global Datetime CreatedDate;
|
|
20
|
+
global User CreatedBy;
|
|
21
|
+
global Id CreatedById;
|
|
22
|
+
global Datetime LastModifiedDate;
|
|
23
|
+
global User LastModifiedBy;
|
|
24
|
+
global Id LastModifiedById;
|
|
25
|
+
global Datetime SystemModstamp;
|
|
26
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
27
|
+
global List<FlowRecordRelation> RelatedRecord;
|
|
28
|
+
|
|
29
|
+
global Note ()
|
|
30
|
+
{
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
// This file is generated as an Apex representation of the
|
|
2
|
+
// corresponding sObject and its fields.
|
|
3
|
+
// This read-only file is used by the Apex Language Server to
|
|
4
|
+
// provide code smartness, and is deleted each time you
|
|
5
|
+
// refresh your sObject definitions.
|
|
6
|
+
// To edit your sObjects and their fields, edit the corresponding
|
|
7
|
+
// .object-meta.xml and .field-meta.xml files.
|
|
8
|
+
|
|
9
|
+
global class Opportunity {
|
|
10
|
+
global Id Id;
|
|
11
|
+
global Boolean IsDeleted;
|
|
12
|
+
global Account Account;
|
|
13
|
+
global Id AccountId;
|
|
14
|
+
global Boolean IsPrivate;
|
|
15
|
+
global String Name;
|
|
16
|
+
global String Description;
|
|
17
|
+
global String StageName;
|
|
18
|
+
global Decimal Amount;
|
|
19
|
+
global Double Probability;
|
|
20
|
+
global Decimal ExpectedRevenue;
|
|
21
|
+
global Double TotalOpportunityQuantity;
|
|
22
|
+
global Date CloseDate;
|
|
23
|
+
global String Type;
|
|
24
|
+
global String NextStep;
|
|
25
|
+
global String LeadSource;
|
|
26
|
+
global Boolean IsClosed;
|
|
27
|
+
global Boolean IsWon;
|
|
28
|
+
global String ForecastCategory;
|
|
29
|
+
global String ForecastCategoryName;
|
|
30
|
+
global Campaign Campaign;
|
|
31
|
+
global Id CampaignId;
|
|
32
|
+
global Boolean HasOpportunityLineItem;
|
|
33
|
+
global Pricebook2 Pricebook2;
|
|
34
|
+
global Id Pricebook2Id;
|
|
35
|
+
global User Owner;
|
|
36
|
+
global Id OwnerId;
|
|
37
|
+
global Datetime CreatedDate;
|
|
38
|
+
global User CreatedBy;
|
|
39
|
+
global Id CreatedById;
|
|
40
|
+
global Datetime LastModifiedDate;
|
|
41
|
+
global User LastModifiedBy;
|
|
42
|
+
global Id LastModifiedById;
|
|
43
|
+
global Datetime SystemModstamp;
|
|
44
|
+
global Date LastActivityDate;
|
|
45
|
+
global Integer PushCount;
|
|
46
|
+
global Datetime LastStageChangeDate;
|
|
47
|
+
global Integer FiscalQuarter;
|
|
48
|
+
global Integer FiscalYear;
|
|
49
|
+
global String Fiscal;
|
|
50
|
+
global Contact Contact;
|
|
51
|
+
global Id ContactId;
|
|
52
|
+
global Datetime LastViewedDate;
|
|
53
|
+
global Datetime LastReferencedDate;
|
|
54
|
+
global Boolean HasOpenActivity;
|
|
55
|
+
global Boolean HasOverdueTask;
|
|
56
|
+
global OpportunityHistory LastAmountChangedHistory;
|
|
57
|
+
global Id LastAmountChangedHistoryId;
|
|
58
|
+
global OpportunityHistory LastCloseDateChangedHistory;
|
|
59
|
+
global Id LastCloseDateChangedHistoryId;
|
|
60
|
+
global List<AccountPartner> AccountPartners;
|
|
61
|
+
global List<ActivityHistory> ActivityHistories;
|
|
62
|
+
global List<AttachedContentDocument> AttachedContentDocuments;
|
|
63
|
+
global List<Attachment> Attachments;
|
|
64
|
+
global List<CollaborationGroupRecord> RecordAssociatedGroups;
|
|
65
|
+
global List<CombinedAttachment> CombinedAttachments;
|
|
66
|
+
global List<ContactRequest> ContactRequests;
|
|
67
|
+
global List<ContentDocumentLink> ContentDocumentLinks;
|
|
68
|
+
global List<EmailMessage> Emails;
|
|
69
|
+
global List<EntitySubscription> FeedSubscriptionsForEntity;
|
|
70
|
+
global List<Event> Events;
|
|
71
|
+
global List<MessagingSession> MessagingSessions;
|
|
72
|
+
global List<Note> Notes;
|
|
73
|
+
global List<NoteAndAttachment> NotesAndAttachments;
|
|
74
|
+
global List<OpenActivity> OpenActivities;
|
|
75
|
+
global List<OpportunityCompetitor> OpportunityCompetitors;
|
|
76
|
+
global List<OpportunityContactRole> OpportunityContactRoles;
|
|
77
|
+
global List<OpportunityFeed> Feeds;
|
|
78
|
+
global List<OpportunityFieldHistory> Histories;
|
|
79
|
+
global List<OpportunityHistory> OpportunityHistories;
|
|
80
|
+
global List<OpportunityLineItem> OpportunityLineItems;
|
|
81
|
+
global List<OpportunityPartner> OpportunityPartnersFrom;
|
|
82
|
+
global List<OpportunityShare> Shares;
|
|
83
|
+
global List<Partner> Partners;
|
|
84
|
+
global List<ProcessInstance> ProcessInstances;
|
|
85
|
+
global List<ProcessInstanceHistory> ProcessSteps;
|
|
86
|
+
global List<RecordAction> RecordActions;
|
|
87
|
+
global List<RecordActionHistory> RecordActionHistories;
|
|
88
|
+
global List<ServiceAppointment> ServiceAppointments;
|
|
89
|
+
global List<Swarm> Swarms;
|
|
90
|
+
global List<SwarmMember> SwarmMembers;
|
|
91
|
+
global List<Task> Tasks;
|
|
92
|
+
global List<TopicAssignment> TopicAssignments;
|
|
93
|
+
global List<AIInsightValue> SobjectLookupValue;
|
|
94
|
+
global List<AIRecordInsight> Target;
|
|
95
|
+
global List<ContentDistribution> RelatedRecord;
|
|
96
|
+
global List<ContentDocumentLinkChangeEvent> LinkedEntity;
|
|
97
|
+
global List<ContentVersion> FirstPublishLocation;
|
|
98
|
+
global List<EmailMessageChangeEvent> RelatedTo;
|
|
99
|
+
global List<EventChangeEvent> What;
|
|
100
|
+
global List<EventRelationChangeEvent> Relation;
|
|
101
|
+
global List<FeedComment> Parent;
|
|
102
|
+
global List<FlowExecutionErrorEvent> ContextRecord;
|
|
103
|
+
global List<FlowOrchestrationWorkItem> RelatedRecord;
|
|
104
|
+
global List<Lead> ConvertedOpportunity;
|
|
105
|
+
global List<OpportunityContactRoleChangeEvent> Opportunity;
|
|
106
|
+
global List<OutgoingEmail> RelatedTo;
|
|
107
|
+
global List<ServiceAppointmentChangeEvent> ParentRecord;
|
|
108
|
+
global List<TaskChangeEvent> What;
|
|
109
|
+
|
|
110
|
+
global Opportunity ()
|
|
111
|
+
{
|
|
112
|
+
}
|
|
113
|
+
}
|