@schandlergarcia/sf-web-components 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/package.json +2 -1
  2. package/scripts/postinstall.mjs +69 -93
  3. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Account.cls +196 -0
  4. package/src/components/library/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls +25 -0
  5. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Asset.cls +138 -0
  6. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Attachment.cls +35 -0
  7. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Case.cls +111 -0
  8. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contact.cls +167 -0
  9. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contract.cls +96 -0
  10. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Domain.cls +29 -0
  11. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Lead.cls +128 -0
  12. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Note.cls +32 -0
  13. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Opportunity.cls +113 -0
  14. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Order.cls +127 -0
  15. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls +47 -0
  16. package/src/components/library/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls +47 -0
  17. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Product2.cls +91 -0
  18. package/src/components/library/.sfdx/tools/sobjects/standardObjects/RecordType.cls +35 -0
  19. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Report.cls +47 -0
  20. package/src/components/library/.sfdx/tools/sobjects/standardObjects/Task.cls +79 -0
  21. package/src/components/library/.sfdx/tools/sobjects/standardObjects/User.cls +2318 -0
  22. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Account.json +2952 -0
  23. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json +875 -0
  24. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Asset.json +1699 -0
  25. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json +362 -0
  26. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Case.json +1371 -0
  27. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contact.json +2309 -0
  28. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contract.json +1304 -0
  29. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Domain.json +293 -0
  30. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Lead.json +1977 -0
  31. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Note.json +303 -0
  32. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json +1470 -0
  33. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Order.json +1646 -0
  34. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json +482 -0
  35. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json +433 -0
  36. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Product2.json +1039 -0
  37. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json +2576 -0
  38. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Report.json +486 -0
  39. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Task.json +4296 -0
  40. package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/User.json +30415 -0
  41. package/src/components/library/.sfdx/tools/soqlMetadata/typeNames.json +78 -0
  42. package/src/components/library/.sfdx/typings/lwc/sobjects/Account.d.ts +264 -0
  43. package/src/components/library/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts +44 -0
  44. package/src/components/library/.sfdx/typings/lwc/sobjects/Asset.d.ts +240 -0
  45. package/src/components/library/.sfdx/typings/lwc/sobjects/Attachment.d.ts +76 -0
  46. package/src/components/library/.sfdx/typings/lwc/sobjects/Case.d.ts +172 -0
  47. package/src/components/library/.sfdx/typings/lwc/sobjects/Contact.d.ts +264 -0
  48. package/src/components/library/.sfdx/typings/lwc/sobjects/Contract.d.ts +188 -0
  49. package/src/components/library/.sfdx/typings/lwc/sobjects/Domain.d.ts +52 -0
  50. package/src/components/library/.sfdx/typings/lwc/sobjects/Lead.d.ts +252 -0
  51. package/src/components/library/.sfdx/typings/lwc/sobjects/Note.d.ts +64 -0
  52. package/src/components/library/.sfdx/typings/lwc/sobjects/Opportunity.d.ts +200 -0
  53. package/src/components/library/.sfdx/typings/lwc/sobjects/Order.d.ts +260 -0
  54. package/src/components/library/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts +64 -0
  55. package/src/components/library/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts +76 -0
  56. package/src/components/library/.sfdx/typings/lwc/sobjects/Product2.d.ts +96 -0
  57. package/src/components/library/.sfdx/typings/lwc/sobjects/RecordType.d.ts +64 -0
  58. package/src/components/library/.sfdx/typings/lwc/sobjects/Report.d.ts +80 -0
  59. package/src/components/library/.sfdx/typings/lwc/sobjects/Task.d.ts +184 -0
  60. package/src/components/library/.sfdx/typings/lwc/sobjects/User.d.ts +752 -0
  61. package/src/components/library/cards/ActionList.jsx +38 -0
  62. package/src/components/library/cards/ActivityCard.jsx +56 -0
  63. package/src/components/library/cards/BaseCard.jsx +109 -0
  64. package/src/components/library/cards/CalloutCard.jsx +37 -0
  65. package/src/components/library/cards/ChartCard.jsx +105 -0
  66. package/src/components/library/cards/FeedPanel.jsx +39 -0
  67. package/src/components/library/cards/ListCard.jsx +193 -0
  68. package/src/components/library/cards/MetricCard.jsx +109 -0
  69. package/src/components/library/cards/MetricsStrip.jsx +78 -0
  70. package/src/components/library/cards/SectionCard.jsx +83 -0
  71. package/src/components/library/cards/SemanticMetricCard.jsx +52 -0
  72. package/src/components/library/cards/SemanticMetricCardWithLoading.jsx +23 -0
  73. package/src/components/library/cards/SemanticTableCard.jsx +48 -0
  74. package/src/components/library/cards/SemanticTableCardWithLoading.jsx +22 -0
  75. package/src/components/library/cards/StatusCard.jsx +220 -0
  76. package/src/components/library/cards/TableCard.jsx +337 -0
  77. package/src/components/library/cards/WidgetCard.jsx +90 -0
  78. package/src/components/library/charts/D3Chart.jsx +109 -0
  79. package/src/components/library/charts/D3ChartTemplates.jsx +126 -0
  80. package/src/components/library/charts/GeoMap.jsx +293 -0
  81. package/src/components/library/chat/ChatBar.jsx +256 -0
  82. package/src/components/library/chat/ChatInput.jsx +89 -0
  83. package/src/components/library/chat/ChatMessage.jsx +178 -0
  84. package/src/components/library/chat/ChatMessageList.jsx +73 -0
  85. package/src/components/library/chat/ChatPanel.jsx +97 -0
  86. package/src/components/library/chat/ChatSuggestions.jsx +28 -0
  87. package/src/components/library/chat/ChatToolCall.jsx +100 -0
  88. package/src/components/library/chat/ChatTypingIndicator.jsx +23 -0
  89. package/src/components/library/chat/ChatWelcome.jsx +43 -0
  90. package/src/components/library/chat/index.jsx +10 -0
  91. package/src/components/library/chat/useChatState.jsx +130 -0
  92. package/src/components/library/data/DataModeProvider.jsx +67 -0
  93. package/src/components/library/data/DataModeToggle.jsx +36 -0
  94. package/src/components/library/data/chartDataProvider.jsx +61 -0
  95. package/src/components/library/data/filterUtils.jsx +141 -0
  96. package/src/components/library/data/useDataSource.jsx +33 -0
  97. package/src/components/library/data/usePageFilters.jsx +99 -0
  98. package/src/components/library/filters/FilterBar.jsx +95 -0
  99. package/src/components/library/filters/SearchFilter.jsx +36 -0
  100. package/src/components/library/filters/SelectFilter.jsx +55 -0
  101. package/src/components/library/filters/ToggleFilter.jsx +52 -0
  102. package/src/components/library/filters/index.jsx +4 -0
  103. package/src/components/library/forms/FormField.jsx +291 -0
  104. package/src/components/library/forms/FormModal.jsx +201 -0
  105. package/src/components/library/forms/FormRenderer.jsx +46 -0
  106. package/src/components/library/forms/FormSection.jsx +69 -0
  107. package/src/components/library/forms/index.jsx +5 -0
  108. package/src/components/library/forms/useFormState.jsx +165 -0
  109. package/src/components/library/heroui/Accordion.jsx +26 -0
  110. package/src/components/library/heroui/Alert.jsx +8 -0
  111. package/src/components/library/heroui/Badge.jsx +8 -0
  112. package/src/components/library/heroui/Breadcrumbs.jsx +22 -0
  113. package/src/components/library/heroui/Button.jsx +58 -0
  114. package/src/components/library/heroui/Card.jsx +8 -0
  115. package/src/components/library/heroui/Collapsible.jsx +42 -0
  116. package/src/components/library/heroui/DatePicker.jsx +34 -0
  117. package/src/components/library/heroui/Dialog.jsx +37 -0
  118. package/src/components/library/heroui/Drawer.jsx +32 -0
  119. package/src/components/library/heroui/Dropdown.jsx +28 -0
  120. package/src/components/library/heroui/Field.jsx +51 -0
  121. package/src/components/library/heroui/Input.jsx +6 -0
  122. package/src/components/library/heroui/Kbd.jsx +8 -0
  123. package/src/components/library/heroui/Meter.jsx +8 -0
  124. package/src/components/library/heroui/Modal.jsx +32 -0
  125. package/src/components/library/heroui/Pagination.jsx +8 -0
  126. package/src/components/library/heroui/Popover.jsx +64 -0
  127. package/src/components/library/heroui/ProgressBar.jsx +8 -0
  128. package/src/components/library/heroui/ProgressCircle.jsx +8 -0
  129. package/src/components/library/heroui/ScrollShadow.jsx +8 -0
  130. package/src/components/library/heroui/Select.jsx +37 -0
  131. package/src/components/library/heroui/Separator.jsx +8 -0
  132. package/src/components/library/heroui/Skeleton.jsx +8 -0
  133. package/src/components/library/heroui/Tabs.jsx +26 -0
  134. package/src/components/library/heroui/Toast.jsx +25 -0
  135. package/src/components/library/heroui/Toggle.jsx +14 -0
  136. package/src/components/library/heroui/Tooltip.jsx +21 -0
  137. package/src/components/library/index.jsx +149 -0
  138. package/src/components/library/layout/PageContainer.jsx +11 -0
  139. package/src/components/library/skeletons/CardSkeleton.jsx +30 -0
  140. package/src/components/library/theme/AppThemeProvider.jsx +67 -0
  141. package/src/components/library/theme/tokens.jsx +72 -0
  142. package/src/components/library/ui/Alert.jsx +80 -0
  143. package/src/components/library/ui/Avatar.jsx +44 -0
  144. package/src/components/library/ui/BreadcrumbExtras.tsx +119 -0
  145. package/src/components/library/ui/Card.jsx +117 -0
  146. package/src/components/library/ui/Checkbox.jsx +17 -0
  147. package/src/components/library/ui/Chip.jsx +38 -0
  148. package/src/components/library/ui/Collapsible.tsx +31 -0
  149. package/src/components/library/ui/Container.jsx +56 -0
  150. package/src/components/library/ui/DatePicker.tsx +34 -0
  151. package/src/components/library/ui/Dialog.tsx +141 -0
  152. package/src/components/library/ui/EmptyState.jsx +46 -0
  153. package/src/components/library/ui/Field.tsx +82 -0
  154. package/src/components/library/ui/FieldGroup.jsx +17 -0
  155. package/src/components/library/ui/Label.jsx +22 -0
  156. package/src/components/library/ui/PaginationExtras.tsx +143 -0
  157. package/src/components/library/ui/Popover.tsx +39 -0
  158. package/src/components/library/ui/Select.tsx +113 -0
  159. package/src/components/library/ui/Spinner.jsx +64 -0
  160. package/src/components/library/ui/Text.jsx +46 -0
  161. package/src/components/library/ui/UIButton.jsx +61 -0
  162. package/src/components/library/ui/UIInput.jsx +21 -0
  163. package/src/components/workspace/ComponentRegistry.jsx +297 -0
  164. package/src/templates/pages/Home.tsx.template +5 -5
  165. package/src/templates/pages/NotFound.tsx.template +2 -2
@@ -0,0 +1,127 @@
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 Order {
10
+ global Id Id;
11
+ global SObject Owner;
12
+ global Id OwnerId;
13
+ global Contract Contract;
14
+ global Id ContractId;
15
+ global Account Account;
16
+ global Id AccountId;
17
+ global Pricebook2 Pricebook2;
18
+ global Id Pricebook2Id;
19
+ global Order OriginalOrder;
20
+ global Id OriginalOrderId;
21
+ global Date EffectiveDate;
22
+ global Date EndDate;
23
+ global Boolean IsReductionOrder;
24
+ global String Status;
25
+ global String Description;
26
+ global Contact CustomerAuthorizedBy;
27
+ global Id CustomerAuthorizedById;
28
+ global Date CustomerAuthorizedDate;
29
+ global User CompanyAuthorizedBy;
30
+ global Id CompanyAuthorizedById;
31
+ global Date CompanyAuthorizedDate;
32
+ global String Type;
33
+ global String BillingStreet;
34
+ global String BillingCity;
35
+ global String BillingState;
36
+ global String BillingPostalCode;
37
+ global String BillingCountry;
38
+ global Double BillingLatitude;
39
+ global Double BillingLongitude;
40
+ global String BillingGeocodeAccuracy;
41
+ global Address BillingAddress;
42
+ global String ShippingStreet;
43
+ global String ShippingCity;
44
+ global String ShippingState;
45
+ global String ShippingPostalCode;
46
+ global String ShippingCountry;
47
+ global Double ShippingLatitude;
48
+ global Double ShippingLongitude;
49
+ global String ShippingGeocodeAccuracy;
50
+ global Address ShippingAddress;
51
+ global String Name;
52
+ global Date PoDate;
53
+ global String PoNumber;
54
+ global String OrderReferenceNumber;
55
+ global Contact BillToContact;
56
+ global Id BillToContactId;
57
+ global Contact ShipToContact;
58
+ global Id ShipToContactId;
59
+ global Datetime ActivatedDate;
60
+ global User ActivatedBy;
61
+ global Id ActivatedById;
62
+ global String StatusCode;
63
+ global String OrderNumber;
64
+ global Decimal TotalAmount;
65
+ global Datetime CreatedDate;
66
+ global User CreatedBy;
67
+ global Id CreatedById;
68
+ global Datetime LastModifiedDate;
69
+ global User LastModifiedBy;
70
+ global Id LastModifiedById;
71
+ global Boolean IsDeleted;
72
+ global Datetime SystemModstamp;
73
+ global Datetime LastViewedDate;
74
+ global Datetime LastReferencedDate;
75
+ global List<ActivityHistory> ActivityHistories;
76
+ global List<AppUsageAssignment> AppUsageAssignments;
77
+ global List<AttachedContentDocument> AttachedContentDocuments;
78
+ global List<Attachment> Attachments;
79
+ global List<CombinedAttachment> CombinedAttachments;
80
+ global List<ContentDocumentLink> ContentDocumentLinks;
81
+ global List<CreditMemo> CreditMemos;
82
+ global List<DigitalSignature> DigitalSignatures;
83
+ global List<EmailMessage> Emails;
84
+ global List<EntitySubscription> FeedSubscriptionsForEntity;
85
+ global List<Event> Events;
86
+ global List<Invoice> Invoices;
87
+ global List<Note> Notes;
88
+ global List<NoteAndAttachment> NotesAndAttachments;
89
+ global List<OpenActivity> OpenActivities;
90
+ global List<Order> Orders;
91
+ global List<OrderFeed> Feeds;
92
+ global List<OrderHistory> Histories;
93
+ global List<OrderItem> OrderItems;
94
+ global List<OrderShare> Shares;
95
+ global List<PaymentGroup> PaymentGroups;
96
+ global List<ProcessException> ProcessExceptions;
97
+ global List<ProcessInstance> ProcessInstances;
98
+ global List<ProcessInstanceHistory> ProcessSteps;
99
+ global List<RecordAction> RecordActions;
100
+ global List<RecordActionHistory> RecordActionHistories;
101
+ global List<ReturnOrder> ReturnOrders;
102
+ global List<Task> Tasks;
103
+ global List<TopicAssignment> TopicAssignments;
104
+ global List<WorkOrderLineItem> WorkOrderLineItems;
105
+ global List<AIInsightValue> SobjectLookupValue;
106
+ global List<AIRecordInsight> Target;
107
+ global List<ContentDocumentLinkChangeEvent> LinkedEntity;
108
+ global List<ContentVersion> FirstPublishLocation;
109
+ global List<DigitalSignatureChangeEvent> Parent;
110
+ global List<EmailMessageChangeEvent> RelatedTo;
111
+ global List<EventChangeEvent> What;
112
+ global List<EventRelationChangeEvent> Relation;
113
+ global List<FeedComment> Parent;
114
+ global List<FlowExecutionErrorEvent> ContextRecord;
115
+ global List<FlowOrchestrationWorkItem> RelatedRecord;
116
+ global List<OrderChangeEvent> OriginalOrder;
117
+ global List<OrderItemChangeEvent> Order;
118
+ global List<OutgoingEmail> RelatedTo;
119
+ global List<ProcessExceptionEvent> AttachedTo;
120
+ global List<ReturnOrderChangeEvent> Order;
121
+ global List<TaskChangeEvent> What;
122
+ global List<WorkOrderLineItemChangeEvent> Order;
123
+
124
+ global Order ()
125
+ {
126
+ }
127
+ }
@@ -0,0 +1,47 @@
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 Pricebook2 {
10
+ global Id Id;
11
+ global Boolean IsDeleted;
12
+ global String Name;
13
+ global Datetime CreatedDate;
14
+ global User CreatedBy;
15
+ global Id CreatedById;
16
+ global Datetime LastModifiedDate;
17
+ global User LastModifiedBy;
18
+ global Id LastModifiedById;
19
+ global Datetime SystemModstamp;
20
+ global Datetime LastViewedDate;
21
+ global Datetime LastReferencedDate;
22
+ global Boolean IsActive;
23
+ global Boolean IsArchived;
24
+ global String Description;
25
+ global Boolean IsStandard;
26
+ global List<AssetWarranty> AssetWarrantyPricebooks;
27
+ global List<Contract> Contracts;
28
+ global List<Opportunity> Opportunities;
29
+ global List<Order> Orders;
30
+ global List<Pricebook2History> Histories;
31
+ global List<PricebookEntry> PricebookEntries;
32
+ global List<RecordAction> RecordActions;
33
+ global List<RecordActionHistory> RecordActionHistories;
34
+ global List<ServiceContract> ServiceContracts;
35
+ global List<WarrantyTerm> Pricebook2;
36
+ global List<WorkOrder> WorkOrders;
37
+ global List<AIInsightValue> SobjectLookupValue;
38
+ global List<AIRecordInsight> Target;
39
+ global List<AssetWarrantyChangeEvent> Pricebook2;
40
+ global List<FlowExecutionErrorEvent> ContextRecord;
41
+ global List<FlowRecordRelation> RelatedRecord;
42
+ global List<OpportunityChangeEvent> Pricebook2;
43
+
44
+ global Pricebook2 ()
45
+ {
46
+ }
47
+ }
@@ -0,0 +1,47 @@
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 PricebookEntry {
10
+ global Id Id;
11
+ global String Name;
12
+ global Pricebook2 Pricebook2;
13
+ global Id Pricebook2Id;
14
+ global Product2 Product2;
15
+ global Id Product2Id;
16
+ global Decimal UnitPrice;
17
+ global Boolean IsActive;
18
+ global Boolean UseStandardPrice;
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 String ProductCode;
27
+ global Boolean IsDeleted;
28
+ global Boolean IsArchived;
29
+ global List<ContractLineItem> ContractLineItems;
30
+ global List<OpportunityLineItem> OpportunityLineItems;
31
+ global List<OrderItem> OrderItems;
32
+ global List<PricebookEntryHistory> Histories;
33
+ global List<ProductConsumed> ProductsConsumed;
34
+ global List<RecordAction> RecordActions;
35
+ global List<RecordActionHistory> RecordActionHistories;
36
+ global List<WorkOrderLineItem> WorkOrderLineItems;
37
+ global List<AIInsightValue> SobjectLookupValue;
38
+ global List<AIRecordInsight> Target;
39
+ global List<ContractLineItemChangeEvent> PricebookEntry;
40
+ global List<FlowExecutionErrorEvent> ContextRecord;
41
+ global List<FlowRecordRelation> RelatedRecord;
42
+ global List<OrderItemChangeEvent> PricebookEntry;
43
+
44
+ global PricebookEntry ()
45
+ {
46
+ }
47
+ }
@@ -0,0 +1,91 @@
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 Product2 {
10
+ global Id Id;
11
+ global String Name;
12
+ global String ProductCode;
13
+ global String Description;
14
+ global Boolean IsActive;
15
+ global Datetime CreatedDate;
16
+ global User CreatedBy;
17
+ global Id CreatedById;
18
+ global Datetime LastModifiedDate;
19
+ global User LastModifiedBy;
20
+ global Id LastModifiedById;
21
+ global Datetime SystemModstamp;
22
+ global String Family;
23
+ global Boolean IsSerialized;
24
+ global ExternalDataSource ExternalDataSource;
25
+ global Id ExternalDataSourceId;
26
+ global String ExternalId;
27
+ global String DisplayUrl;
28
+ global String QuantityUnitOfMeasure;
29
+ global Boolean IsDeleted;
30
+ global Boolean IsArchived;
31
+ global Datetime LastViewedDate;
32
+ global Datetime LastReferencedDate;
33
+ global String StockKeepingUnit;
34
+ global List<ActivityHistory> ActivityHistories;
35
+ global List<Asset> Assets;
36
+ global List<AttachedContentDocument> AttachedContentDocuments;
37
+ global List<Attachment> Attachments;
38
+ global List<CombinedAttachment> CombinedAttachments;
39
+ global List<ContentDocumentLink> ContentDocumentLinks;
40
+ global List<ContractLineItem> ContractLineItems;
41
+ global List<CreditMemoLine> CreditMemoLines;
42
+ global List<EmailMessage> Emails;
43
+ global List<EntitySubscription> FeedSubscriptionsForEntity;
44
+ global List<Event> Events;
45
+ global List<InvoiceLine> InvoiceLines;
46
+ global List<Note> Notes;
47
+ global List<NoteAndAttachment> NotesAndAttachments;
48
+ global List<OpenActivity> OpenActivities;
49
+ global List<PricebookEntry> PricebookEntries;
50
+ global List<ProcessInstance> ProcessInstances;
51
+ global List<ProcessInstanceHistory> ProcessSteps;
52
+ global List<Product2Feed> Feeds;
53
+ global List<Product2History> Histories;
54
+ global List<ProductConsumed> ProductsConsumed;
55
+ global List<ProductConsumptionSchedule> ProductConsumptionSchedules;
56
+ global List<ProductItem> ProductItems;
57
+ global List<ProductRequestLineItem> ProductRequestLineItems;
58
+ global List<ProductRequired> ProductsRequired;
59
+ global List<ProductServiceCampaign> ProductServiceCampaignProducts;
60
+ global List<ProductServiceCampaignItem> ProductServiceCampaignItems;
61
+ global List<ProductTransfer> ProductTransfers;
62
+ global List<ProductWarrantyTerm> ProductWarrantyTermProducts;
63
+ global List<RecordAction> RecordActions;
64
+ global List<RecordActionHistory> RecordActionHistories;
65
+ global List<ReturnOrderLineItem> ReturnOrderLineItems;
66
+ global List<SerializedProduct> SerializedProducts;
67
+ global List<ShipmentItem> ShipmentItems;
68
+ global List<Task> Tasks;
69
+ global List<WorkOrderLineItem> WorkOrderLineItems;
70
+ global List<WorkPlanSelectionRule> WorkPlanSelectionRules;
71
+ global List<AIInsightValue> SobjectLookupValue;
72
+ global List<AIRecordInsight> Target;
73
+ global List<AssetChangeEvent> Product2;
74
+ global List<ContentDocumentLinkChangeEvent> LinkedEntity;
75
+ global List<ContentVersion> FirstPublishLocation;
76
+ global List<EmailMessageChangeEvent> RelatedTo;
77
+ global List<EventChangeEvent> What;
78
+ global List<EventRelationChangeEvent> Relation;
79
+ global List<FeedComment> Parent;
80
+ global List<FlowExecutionErrorEvent> ContextRecord;
81
+ global List<FlowOrchestrationWorkItem> RelatedRecord;
82
+ global List<OpportunityLineItem> Product2;
83
+ global List<OutgoingEmail> RelatedTo;
84
+ global List<PricebookEntryChangeEvent> Product2;
85
+ global List<TaskChangeEvent> What;
86
+ global List<WorkOrderLineItemChangeEvent> Product2;
87
+
88
+ global Product2 ()
89
+ {
90
+ }
91
+ }
@@ -0,0 +1,35 @@
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 RecordType {
10
+ global Id Id;
11
+ global String Name;
12
+ global String DeveloperName;
13
+ global String NamespacePrefix;
14
+ global String Description;
15
+ global BusinessProcess BusinessProcess;
16
+ global Id BusinessProcessId;
17
+ global String SobjectType;
18
+ global Boolean IsActive;
19
+ global User CreatedBy;
20
+ global Id CreatedById;
21
+ global Datetime CreatedDate;
22
+ global User LastModifiedBy;
23
+ global Id LastModifiedById;
24
+ global Datetime LastModifiedDate;
25
+ global Datetime SystemModstamp;
26
+ global List<Campaign> CampaignMemberRecordType;
27
+ global List<ContentWorkspace> DefaultRecordType;
28
+ global List<GtwyProvPaymentMethodType> RecordType;
29
+ global List<PromptVersion> TargetRecordType;
30
+ global List<RecentlyViewed> RecordType;
31
+
32
+ global RecordType ()
33
+ {
34
+ }
35
+ }
@@ -0,0 +1,47 @@
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 Report {
10
+ global Id Id;
11
+ global SObject Owner;
12
+ global Id OwnerId;
13
+ global String FolderName;
14
+ global Datetime CreatedDate;
15
+ global User CreatedBy;
16
+ global Id CreatedById;
17
+ global Datetime LastModifiedDate;
18
+ global User LastModifiedBy;
19
+ global Id LastModifiedById;
20
+ global Boolean IsDeleted;
21
+ global String Name;
22
+ global String Description;
23
+ global String DeveloperName;
24
+ global String NamespacePrefix;
25
+ global Datetime LastRunDate;
26
+ global Datetime SystemModstamp;
27
+ global String Format;
28
+ global Datetime LastViewedDate;
29
+ global Datetime LastReferencedDate;
30
+ global List<AttachedContentDocument> AttachedContentDocuments;
31
+ global List<CombinedAttachment> CombinedAttachments;
32
+ global List<ContentDocumentLink> ContentDocumentLinks;
33
+ global List<EntitySubscription> FeedSubscriptionsForEntity;
34
+ global List<ReportFeed> Feeds;
35
+ global List<ScorecardMetric> ScorecardMetrics;
36
+ global List<ContentDocumentLinkChangeEvent> LinkedEntity;
37
+ global List<ContentVersion> FirstPublishLocation;
38
+ global List<DashboardComponent> CustomReport;
39
+ global List<FeedComment> Parent;
40
+ global List<FlowExecutionErrorEvent> ContextRecord;
41
+ global List<FlowRecordRelation> RelatedRecord;
42
+ global List<ReportEvent> Report;
43
+
44
+ global Report ()
45
+ {
46
+ }
47
+ }
@@ -0,0 +1,79 @@
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 Task {
10
+ global Id Id;
11
+ global SObject Who;
12
+ global Id WhoId;
13
+ global SObject What;
14
+ global Id WhatId;
15
+ global String Subject;
16
+ global Date ActivityDate;
17
+ global String Status;
18
+ global String Priority;
19
+ global Boolean IsHighPriority;
20
+ global SObject Owner;
21
+ global Id OwnerId;
22
+ global String Description;
23
+ global Boolean IsDeleted;
24
+ global Account Account;
25
+ global Id AccountId;
26
+ global Boolean IsClosed;
27
+ global Datetime CreatedDate;
28
+ global User CreatedBy;
29
+ global Id CreatedById;
30
+ global Datetime LastModifiedDate;
31
+ global User LastModifiedBy;
32
+ global Id LastModifiedById;
33
+ global Datetime SystemModstamp;
34
+ global Boolean IsArchived;
35
+ global Integer CallDurationInSeconds;
36
+ global String CallType;
37
+ global String CallDisposition;
38
+ global String CallObject;
39
+ global Datetime ReminderDateTime;
40
+ global Boolean IsReminderSet;
41
+ global Task RecurrenceActivity;
42
+ global Id RecurrenceActivityId;
43
+ global Boolean IsRecurrence;
44
+ global Date RecurrenceStartDateOnly;
45
+ global Date RecurrenceEndDateOnly;
46
+ global String RecurrenceTimeZoneSidKey;
47
+ global String RecurrenceType;
48
+ global Integer RecurrenceInterval;
49
+ global Integer RecurrenceDayOfWeekMask;
50
+ global Integer RecurrenceDayOfMonth;
51
+ global String RecurrenceInstance;
52
+ global String RecurrenceMonthOfYear;
53
+ global String RecurrenceRegeneratedType;
54
+ global String TaskSubtype;
55
+ global Datetime CompletedDateTime;
56
+ global List<ActivityFieldHistory> ActivityFieldHistories;
57
+ global List<AttachedContentDocument> AttachedContentDocuments;
58
+ global List<Attachment> Attachments;
59
+ global List<CombinedAttachment> CombinedAttachments;
60
+ global List<ContentDocumentLink> ContentDocumentLinks;
61
+ global List<EntitySubscription> FeedSubscriptionsForEntity;
62
+ global List<Task> RecurringTasks;
63
+ global List<TaskFeed> Feeds;
64
+ global List<TopicAssignment> TopicAssignments;
65
+ global List<AIInsightValue> SobjectLookupValue;
66
+ global List<AIRecordInsight> Target;
67
+ global List<ContentDocumentLinkChangeEvent> LinkedEntity;
68
+ global List<ContentVersion> FirstPublishLocation;
69
+ global List<EmailMessage> Activity;
70
+ global List<EmailStatus> Task;
71
+ global List<FeedComment> Parent;
72
+ global List<FlowExecutionErrorEvent> ContextRecord;
73
+ global List<FlowRecordRelation> RelatedRecord;
74
+ global List<TaskChangeEvent> RecurrenceActivity;
75
+
76
+ global Task ()
77
+ {
78
+ }
79
+ }