@schandlergarcia/sf-web-components 1.2.6 → 1.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/scripts/postinstall.mjs +69 -93
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Account.cls +196 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/AccountHistory.cls +25 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Asset.cls +138 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Attachment.cls +35 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Case.cls +111 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contact.cls +167 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Contract.cls +96 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Domain.cls +29 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Lead.cls +128 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Note.cls +32 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Opportunity.cls +113 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Order.cls +127 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Pricebook2.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/PricebookEntry.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Product2.cls +91 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/RecordType.cls +35 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Report.cls +47 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/Task.cls +79 -0
- package/src/components/library/.sfdx/tools/sobjects/standardObjects/User.cls +2318 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Account.json +2952 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/AccountHistory.json +875 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Asset.json +1699 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Attachment.json +362 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Case.json +1371 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contact.json +2309 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Contract.json +1304 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Domain.json +293 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Lead.json +1977 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Note.json +303 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Opportunity.json +1470 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Order.json +1646 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Pricebook2.json +482 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/PricebookEntry.json +433 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Product2.json +1039 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/RecordType.json +2576 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Report.json +486 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/Task.json +4296 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/standardObjects/User.json +30415 -0
- package/src/components/library/.sfdx/tools/soqlMetadata/typeNames.json +78 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Account.d.ts +264 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/AccountHistory.d.ts +44 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Asset.d.ts +240 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Attachment.d.ts +76 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Case.d.ts +172 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Contact.d.ts +264 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Contract.d.ts +188 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Domain.d.ts +52 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Lead.d.ts +252 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Note.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Opportunity.d.ts +200 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Order.d.ts +260 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Pricebook2.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/PricebookEntry.d.ts +76 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Product2.d.ts +96 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/RecordType.d.ts +64 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Report.d.ts +80 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/Task.d.ts +184 -0
- package/src/components/library/.sfdx/typings/lwc/sobjects/User.d.ts +752 -0
- package/src/components/library/cards/ActionList.jsx +38 -0
- package/src/components/library/cards/ActivityCard.jsx +56 -0
- package/src/components/library/cards/BaseCard.jsx +109 -0
- package/src/components/library/cards/CalloutCard.jsx +37 -0
- package/src/components/library/cards/ChartCard.jsx +105 -0
- package/src/components/library/cards/FeedPanel.jsx +39 -0
- package/src/components/library/cards/ListCard.jsx +193 -0
- package/src/components/library/cards/MetricCard.jsx +109 -0
- package/src/components/library/cards/MetricsStrip.jsx +78 -0
- package/src/components/library/cards/SectionCard.jsx +83 -0
- package/src/components/library/cards/SemanticMetricCard.jsx +52 -0
- package/src/components/library/cards/SemanticMetricCardWithLoading.jsx +23 -0
- package/src/components/library/cards/SemanticTableCard.jsx +48 -0
- package/src/components/library/cards/SemanticTableCardWithLoading.jsx +22 -0
- package/src/components/library/cards/StatusCard.jsx +220 -0
- package/src/components/library/cards/TableCard.jsx +337 -0
- package/src/components/library/cards/WidgetCard.jsx +90 -0
- package/src/components/library/charts/D3Chart.jsx +109 -0
- package/src/components/library/charts/D3ChartTemplates.jsx +126 -0
- package/src/components/library/charts/GeoMap.jsx +293 -0
- package/src/components/library/chat/ChatBar.jsx +256 -0
- package/src/components/library/chat/ChatInput.jsx +89 -0
- package/src/components/library/chat/ChatMessage.jsx +178 -0
- package/src/components/library/chat/ChatMessageList.jsx +73 -0
- package/src/components/library/chat/ChatPanel.jsx +97 -0
- package/src/components/library/chat/ChatSuggestions.jsx +28 -0
- package/src/components/library/chat/ChatToolCall.jsx +100 -0
- package/src/components/library/chat/ChatTypingIndicator.jsx +23 -0
- package/src/components/library/chat/ChatWelcome.jsx +43 -0
- package/src/components/library/chat/index.jsx +10 -0
- package/src/components/library/chat/useChatState.jsx +130 -0
- package/src/components/library/data/DataModeProvider.jsx +67 -0
- package/src/components/library/data/DataModeToggle.jsx +36 -0
- package/src/components/library/data/chartDataProvider.jsx +61 -0
- package/src/components/library/data/filterUtils.jsx +141 -0
- package/src/components/library/data/useDataSource.jsx +33 -0
- package/src/components/library/data/usePageFilters.jsx +99 -0
- package/src/components/library/filters/FilterBar.jsx +95 -0
- package/src/components/library/filters/SearchFilter.jsx +36 -0
- package/src/components/library/filters/SelectFilter.jsx +55 -0
- package/src/components/library/filters/ToggleFilter.jsx +52 -0
- package/src/components/library/filters/index.jsx +4 -0
- package/src/components/library/forms/FormField.jsx +291 -0
- package/src/components/library/forms/FormModal.jsx +201 -0
- package/src/components/library/forms/FormRenderer.jsx +46 -0
- package/src/components/library/forms/FormSection.jsx +69 -0
- package/src/components/library/forms/index.jsx +5 -0
- package/src/components/library/forms/useFormState.jsx +165 -0
- package/src/components/library/heroui/Accordion.jsx +26 -0
- package/src/components/library/heroui/Alert.jsx +8 -0
- package/src/components/library/heroui/Badge.jsx +8 -0
- package/src/components/library/heroui/Breadcrumbs.jsx +22 -0
- package/src/components/library/heroui/Button.jsx +58 -0
- package/src/components/library/heroui/Card.jsx +8 -0
- package/src/components/library/heroui/Collapsible.jsx +42 -0
- package/src/components/library/heroui/DatePicker.jsx +34 -0
- package/src/components/library/heroui/Dialog.jsx +37 -0
- package/src/components/library/heroui/Drawer.jsx +32 -0
- package/src/components/library/heroui/Dropdown.jsx +28 -0
- package/src/components/library/heroui/Field.jsx +51 -0
- package/src/components/library/heroui/Input.jsx +6 -0
- package/src/components/library/heroui/Kbd.jsx +8 -0
- package/src/components/library/heroui/Meter.jsx +8 -0
- package/src/components/library/heroui/Modal.jsx +32 -0
- package/src/components/library/heroui/Pagination.jsx +8 -0
- package/src/components/library/heroui/Popover.jsx +64 -0
- package/src/components/library/heroui/ProgressBar.jsx +8 -0
- package/src/components/library/heroui/ProgressCircle.jsx +8 -0
- package/src/components/library/heroui/ScrollShadow.jsx +8 -0
- package/src/components/library/heroui/Select.jsx +37 -0
- package/src/components/library/heroui/Separator.jsx +8 -0
- package/src/components/library/heroui/Skeleton.jsx +8 -0
- package/src/components/library/heroui/Tabs.jsx +26 -0
- package/src/components/library/heroui/Toast.jsx +25 -0
- package/src/components/library/heroui/Toggle.jsx +14 -0
- package/src/components/library/heroui/Tooltip.jsx +21 -0
- package/src/components/library/index.jsx +149 -0
- package/src/components/library/layout/PageContainer.jsx +11 -0
- package/src/components/library/skeletons/CardSkeleton.jsx +30 -0
- package/src/components/library/theme/AppThemeProvider.jsx +67 -0
- package/src/components/library/theme/tokens.jsx +72 -0
- package/src/components/library/ui/Alert.jsx +80 -0
- package/src/components/library/ui/Avatar.jsx +44 -0
- package/src/components/library/ui/BreadcrumbExtras.tsx +119 -0
- package/src/components/library/ui/Card.jsx +117 -0
- package/src/components/library/ui/Checkbox.jsx +17 -0
- package/src/components/library/ui/Chip.jsx +38 -0
- package/src/components/library/ui/Collapsible.tsx +31 -0
- package/src/components/library/ui/Container.jsx +56 -0
- package/src/components/library/ui/DatePicker.tsx +34 -0
- package/src/components/library/ui/Dialog.tsx +141 -0
- package/src/components/library/ui/EmptyState.jsx +46 -0
- package/src/components/library/ui/Field.tsx +82 -0
- package/src/components/library/ui/FieldGroup.jsx +17 -0
- package/src/components/library/ui/Label.jsx +22 -0
- package/src/components/library/ui/PaginationExtras.tsx +143 -0
- package/src/components/library/ui/Popover.tsx +39 -0
- package/src/components/library/ui/Select.tsx +113 -0
- package/src/components/library/ui/Spinner.jsx +64 -0
- package/src/components/library/ui/Text.jsx +46 -0
- package/src/components/library/ui/UIButton.jsx +61 -0
- package/src/components/library/ui/UIInput.jsx +21 -0
- package/src/components/workspace/ComponentRegistry.jsx +297 -0
- package/src/templates/pages/Home.tsx.template +6 -5
- package/src/templates/pages/NotFound.tsx.template +2 -2
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
declare module "@salesforce/schema/Case.Id" {
|
|
2
|
+
const Id:any;
|
|
3
|
+
export default Id;
|
|
4
|
+
}
|
|
5
|
+
declare module "@salesforce/schema/Case.IsDeleted" {
|
|
6
|
+
const IsDeleted:boolean;
|
|
7
|
+
export default IsDeleted;
|
|
8
|
+
}
|
|
9
|
+
declare module "@salesforce/schema/Case.MasterRecord" {
|
|
10
|
+
const MasterRecord:any;
|
|
11
|
+
export default MasterRecord;
|
|
12
|
+
}
|
|
13
|
+
declare module "@salesforce/schema/Case.MasterRecordId" {
|
|
14
|
+
const MasterRecordId:any;
|
|
15
|
+
export default MasterRecordId;
|
|
16
|
+
}
|
|
17
|
+
declare module "@salesforce/schema/Case.CaseNumber" {
|
|
18
|
+
const CaseNumber:string;
|
|
19
|
+
export default CaseNumber;
|
|
20
|
+
}
|
|
21
|
+
declare module "@salesforce/schema/Case.Contact" {
|
|
22
|
+
const Contact:any;
|
|
23
|
+
export default Contact;
|
|
24
|
+
}
|
|
25
|
+
declare module "@salesforce/schema/Case.ContactId" {
|
|
26
|
+
const ContactId:any;
|
|
27
|
+
export default ContactId;
|
|
28
|
+
}
|
|
29
|
+
declare module "@salesforce/schema/Case.Account" {
|
|
30
|
+
const Account:any;
|
|
31
|
+
export default Account;
|
|
32
|
+
}
|
|
33
|
+
declare module "@salesforce/schema/Case.AccountId" {
|
|
34
|
+
const AccountId:any;
|
|
35
|
+
export default AccountId;
|
|
36
|
+
}
|
|
37
|
+
declare module "@salesforce/schema/Case.Asset" {
|
|
38
|
+
const Asset:any;
|
|
39
|
+
export default Asset;
|
|
40
|
+
}
|
|
41
|
+
declare module "@salesforce/schema/Case.AssetId" {
|
|
42
|
+
const AssetId:any;
|
|
43
|
+
export default AssetId;
|
|
44
|
+
}
|
|
45
|
+
declare module "@salesforce/schema/Case.Parent" {
|
|
46
|
+
const Parent:any;
|
|
47
|
+
export default Parent;
|
|
48
|
+
}
|
|
49
|
+
declare module "@salesforce/schema/Case.ParentId" {
|
|
50
|
+
const ParentId:any;
|
|
51
|
+
export default ParentId;
|
|
52
|
+
}
|
|
53
|
+
declare module "@salesforce/schema/Case.SuppliedName" {
|
|
54
|
+
const SuppliedName:string;
|
|
55
|
+
export default SuppliedName;
|
|
56
|
+
}
|
|
57
|
+
declare module "@salesforce/schema/Case.SuppliedEmail" {
|
|
58
|
+
const SuppliedEmail:string;
|
|
59
|
+
export default SuppliedEmail;
|
|
60
|
+
}
|
|
61
|
+
declare module "@salesforce/schema/Case.SuppliedPhone" {
|
|
62
|
+
const SuppliedPhone:string;
|
|
63
|
+
export default SuppliedPhone;
|
|
64
|
+
}
|
|
65
|
+
declare module "@salesforce/schema/Case.SuppliedCompany" {
|
|
66
|
+
const SuppliedCompany:string;
|
|
67
|
+
export default SuppliedCompany;
|
|
68
|
+
}
|
|
69
|
+
declare module "@salesforce/schema/Case.Type" {
|
|
70
|
+
const Type:string;
|
|
71
|
+
export default Type;
|
|
72
|
+
}
|
|
73
|
+
declare module "@salesforce/schema/Case.Status" {
|
|
74
|
+
const Status:string;
|
|
75
|
+
export default Status;
|
|
76
|
+
}
|
|
77
|
+
declare module "@salesforce/schema/Case.Reason" {
|
|
78
|
+
const Reason:string;
|
|
79
|
+
export default Reason;
|
|
80
|
+
}
|
|
81
|
+
declare module "@salesforce/schema/Case.Origin" {
|
|
82
|
+
const Origin:string;
|
|
83
|
+
export default Origin;
|
|
84
|
+
}
|
|
85
|
+
declare module "@salesforce/schema/Case.Subject" {
|
|
86
|
+
const Subject:string;
|
|
87
|
+
export default Subject;
|
|
88
|
+
}
|
|
89
|
+
declare module "@salesforce/schema/Case.Priority" {
|
|
90
|
+
const Priority:string;
|
|
91
|
+
export default Priority;
|
|
92
|
+
}
|
|
93
|
+
declare module "@salesforce/schema/Case.Description" {
|
|
94
|
+
const Description:string;
|
|
95
|
+
export default Description;
|
|
96
|
+
}
|
|
97
|
+
declare module "@salesforce/schema/Case.IsClosed" {
|
|
98
|
+
const IsClosed:boolean;
|
|
99
|
+
export default IsClosed;
|
|
100
|
+
}
|
|
101
|
+
declare module "@salesforce/schema/Case.ClosedDate" {
|
|
102
|
+
const ClosedDate:any;
|
|
103
|
+
export default ClosedDate;
|
|
104
|
+
}
|
|
105
|
+
declare module "@salesforce/schema/Case.IsEscalated" {
|
|
106
|
+
const IsEscalated:boolean;
|
|
107
|
+
export default IsEscalated;
|
|
108
|
+
}
|
|
109
|
+
declare module "@salesforce/schema/Case.Owner" {
|
|
110
|
+
const Owner:any;
|
|
111
|
+
export default Owner;
|
|
112
|
+
}
|
|
113
|
+
declare module "@salesforce/schema/Case.OwnerId" {
|
|
114
|
+
const OwnerId:any;
|
|
115
|
+
export default OwnerId;
|
|
116
|
+
}
|
|
117
|
+
declare module "@salesforce/schema/Case.CreatedDate" {
|
|
118
|
+
const CreatedDate:any;
|
|
119
|
+
export default CreatedDate;
|
|
120
|
+
}
|
|
121
|
+
declare module "@salesforce/schema/Case.CreatedBy" {
|
|
122
|
+
const CreatedBy:any;
|
|
123
|
+
export default CreatedBy;
|
|
124
|
+
}
|
|
125
|
+
declare module "@salesforce/schema/Case.CreatedById" {
|
|
126
|
+
const CreatedById:any;
|
|
127
|
+
export default CreatedById;
|
|
128
|
+
}
|
|
129
|
+
declare module "@salesforce/schema/Case.LastModifiedDate" {
|
|
130
|
+
const LastModifiedDate:any;
|
|
131
|
+
export default LastModifiedDate;
|
|
132
|
+
}
|
|
133
|
+
declare module "@salesforce/schema/Case.LastModifiedBy" {
|
|
134
|
+
const LastModifiedBy:any;
|
|
135
|
+
export default LastModifiedBy;
|
|
136
|
+
}
|
|
137
|
+
declare module "@salesforce/schema/Case.LastModifiedById" {
|
|
138
|
+
const LastModifiedById:any;
|
|
139
|
+
export default LastModifiedById;
|
|
140
|
+
}
|
|
141
|
+
declare module "@salesforce/schema/Case.SystemModstamp" {
|
|
142
|
+
const SystemModstamp:any;
|
|
143
|
+
export default SystemModstamp;
|
|
144
|
+
}
|
|
145
|
+
declare module "@salesforce/schema/Case.ContactPhone" {
|
|
146
|
+
const ContactPhone:string;
|
|
147
|
+
export default ContactPhone;
|
|
148
|
+
}
|
|
149
|
+
declare module "@salesforce/schema/Case.ContactMobile" {
|
|
150
|
+
const ContactMobile:string;
|
|
151
|
+
export default ContactMobile;
|
|
152
|
+
}
|
|
153
|
+
declare module "@salesforce/schema/Case.ContactEmail" {
|
|
154
|
+
const ContactEmail:string;
|
|
155
|
+
export default ContactEmail;
|
|
156
|
+
}
|
|
157
|
+
declare module "@salesforce/schema/Case.ContactFax" {
|
|
158
|
+
const ContactFax:string;
|
|
159
|
+
export default ContactFax;
|
|
160
|
+
}
|
|
161
|
+
declare module "@salesforce/schema/Case.Comments" {
|
|
162
|
+
const Comments:string;
|
|
163
|
+
export default Comments;
|
|
164
|
+
}
|
|
165
|
+
declare module "@salesforce/schema/Case.LastViewedDate" {
|
|
166
|
+
const LastViewedDate:any;
|
|
167
|
+
export default LastViewedDate;
|
|
168
|
+
}
|
|
169
|
+
declare module "@salesforce/schema/Case.LastReferencedDate" {
|
|
170
|
+
const LastReferencedDate:any;
|
|
171
|
+
export default LastReferencedDate;
|
|
172
|
+
}
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
declare module "@salesforce/schema/Contact.Id" {
|
|
2
|
+
const Id:any;
|
|
3
|
+
export default Id;
|
|
4
|
+
}
|
|
5
|
+
declare module "@salesforce/schema/Contact.IsDeleted" {
|
|
6
|
+
const IsDeleted:boolean;
|
|
7
|
+
export default IsDeleted;
|
|
8
|
+
}
|
|
9
|
+
declare module "@salesforce/schema/Contact.MasterRecord" {
|
|
10
|
+
const MasterRecord:any;
|
|
11
|
+
export default MasterRecord;
|
|
12
|
+
}
|
|
13
|
+
declare module "@salesforce/schema/Contact.MasterRecordId" {
|
|
14
|
+
const MasterRecordId:any;
|
|
15
|
+
export default MasterRecordId;
|
|
16
|
+
}
|
|
17
|
+
declare module "@salesforce/schema/Contact.Account" {
|
|
18
|
+
const Account:any;
|
|
19
|
+
export default Account;
|
|
20
|
+
}
|
|
21
|
+
declare module "@salesforce/schema/Contact.AccountId" {
|
|
22
|
+
const AccountId:any;
|
|
23
|
+
export default AccountId;
|
|
24
|
+
}
|
|
25
|
+
declare module "@salesforce/schema/Contact.LastName" {
|
|
26
|
+
const LastName:string;
|
|
27
|
+
export default LastName;
|
|
28
|
+
}
|
|
29
|
+
declare module "@salesforce/schema/Contact.FirstName" {
|
|
30
|
+
const FirstName:string;
|
|
31
|
+
export default FirstName;
|
|
32
|
+
}
|
|
33
|
+
declare module "@salesforce/schema/Contact.Salutation" {
|
|
34
|
+
const Salutation:string;
|
|
35
|
+
export default Salutation;
|
|
36
|
+
}
|
|
37
|
+
declare module "@salesforce/schema/Contact.Name" {
|
|
38
|
+
const Name:string;
|
|
39
|
+
export default Name;
|
|
40
|
+
}
|
|
41
|
+
declare module "@salesforce/schema/Contact.OtherStreet" {
|
|
42
|
+
const OtherStreet:string;
|
|
43
|
+
export default OtherStreet;
|
|
44
|
+
}
|
|
45
|
+
declare module "@salesforce/schema/Contact.OtherCity" {
|
|
46
|
+
const OtherCity:string;
|
|
47
|
+
export default OtherCity;
|
|
48
|
+
}
|
|
49
|
+
declare module "@salesforce/schema/Contact.OtherState" {
|
|
50
|
+
const OtherState:string;
|
|
51
|
+
export default OtherState;
|
|
52
|
+
}
|
|
53
|
+
declare module "@salesforce/schema/Contact.OtherPostalCode" {
|
|
54
|
+
const OtherPostalCode:string;
|
|
55
|
+
export default OtherPostalCode;
|
|
56
|
+
}
|
|
57
|
+
declare module "@salesforce/schema/Contact.OtherCountry" {
|
|
58
|
+
const OtherCountry:string;
|
|
59
|
+
export default OtherCountry;
|
|
60
|
+
}
|
|
61
|
+
declare module "@salesforce/schema/Contact.OtherLatitude" {
|
|
62
|
+
const OtherLatitude:number;
|
|
63
|
+
export default OtherLatitude;
|
|
64
|
+
}
|
|
65
|
+
declare module "@salesforce/schema/Contact.OtherLongitude" {
|
|
66
|
+
const OtherLongitude:number;
|
|
67
|
+
export default OtherLongitude;
|
|
68
|
+
}
|
|
69
|
+
declare module "@salesforce/schema/Contact.OtherGeocodeAccuracy" {
|
|
70
|
+
const OtherGeocodeAccuracy:string;
|
|
71
|
+
export default OtherGeocodeAccuracy;
|
|
72
|
+
}
|
|
73
|
+
declare module "@salesforce/schema/Contact.OtherAddress" {
|
|
74
|
+
const OtherAddress:any;
|
|
75
|
+
export default OtherAddress;
|
|
76
|
+
}
|
|
77
|
+
declare module "@salesforce/schema/Contact.MailingStreet" {
|
|
78
|
+
const MailingStreet:string;
|
|
79
|
+
export default MailingStreet;
|
|
80
|
+
}
|
|
81
|
+
declare module "@salesforce/schema/Contact.MailingCity" {
|
|
82
|
+
const MailingCity:string;
|
|
83
|
+
export default MailingCity;
|
|
84
|
+
}
|
|
85
|
+
declare module "@salesforce/schema/Contact.MailingState" {
|
|
86
|
+
const MailingState:string;
|
|
87
|
+
export default MailingState;
|
|
88
|
+
}
|
|
89
|
+
declare module "@salesforce/schema/Contact.MailingPostalCode" {
|
|
90
|
+
const MailingPostalCode:string;
|
|
91
|
+
export default MailingPostalCode;
|
|
92
|
+
}
|
|
93
|
+
declare module "@salesforce/schema/Contact.MailingCountry" {
|
|
94
|
+
const MailingCountry:string;
|
|
95
|
+
export default MailingCountry;
|
|
96
|
+
}
|
|
97
|
+
declare module "@salesforce/schema/Contact.MailingLatitude" {
|
|
98
|
+
const MailingLatitude:number;
|
|
99
|
+
export default MailingLatitude;
|
|
100
|
+
}
|
|
101
|
+
declare module "@salesforce/schema/Contact.MailingLongitude" {
|
|
102
|
+
const MailingLongitude:number;
|
|
103
|
+
export default MailingLongitude;
|
|
104
|
+
}
|
|
105
|
+
declare module "@salesforce/schema/Contact.MailingGeocodeAccuracy" {
|
|
106
|
+
const MailingGeocodeAccuracy:string;
|
|
107
|
+
export default MailingGeocodeAccuracy;
|
|
108
|
+
}
|
|
109
|
+
declare module "@salesforce/schema/Contact.MailingAddress" {
|
|
110
|
+
const MailingAddress:any;
|
|
111
|
+
export default MailingAddress;
|
|
112
|
+
}
|
|
113
|
+
declare module "@salesforce/schema/Contact.Phone" {
|
|
114
|
+
const Phone:string;
|
|
115
|
+
export default Phone;
|
|
116
|
+
}
|
|
117
|
+
declare module "@salesforce/schema/Contact.Fax" {
|
|
118
|
+
const Fax:string;
|
|
119
|
+
export default Fax;
|
|
120
|
+
}
|
|
121
|
+
declare module "@salesforce/schema/Contact.MobilePhone" {
|
|
122
|
+
const MobilePhone:string;
|
|
123
|
+
export default MobilePhone;
|
|
124
|
+
}
|
|
125
|
+
declare module "@salesforce/schema/Contact.HomePhone" {
|
|
126
|
+
const HomePhone:string;
|
|
127
|
+
export default HomePhone;
|
|
128
|
+
}
|
|
129
|
+
declare module "@salesforce/schema/Contact.OtherPhone" {
|
|
130
|
+
const OtherPhone:string;
|
|
131
|
+
export default OtherPhone;
|
|
132
|
+
}
|
|
133
|
+
declare module "@salesforce/schema/Contact.AssistantPhone" {
|
|
134
|
+
const AssistantPhone:string;
|
|
135
|
+
export default AssistantPhone;
|
|
136
|
+
}
|
|
137
|
+
declare module "@salesforce/schema/Contact.ReportsTo" {
|
|
138
|
+
const ReportsTo:any;
|
|
139
|
+
export default ReportsTo;
|
|
140
|
+
}
|
|
141
|
+
declare module "@salesforce/schema/Contact.ReportsToId" {
|
|
142
|
+
const ReportsToId:any;
|
|
143
|
+
export default ReportsToId;
|
|
144
|
+
}
|
|
145
|
+
declare module "@salesforce/schema/Contact.Email" {
|
|
146
|
+
const Email:string;
|
|
147
|
+
export default Email;
|
|
148
|
+
}
|
|
149
|
+
declare module "@salesforce/schema/Contact.Title" {
|
|
150
|
+
const Title:string;
|
|
151
|
+
export default Title;
|
|
152
|
+
}
|
|
153
|
+
declare module "@salesforce/schema/Contact.Department" {
|
|
154
|
+
const Department:string;
|
|
155
|
+
export default Department;
|
|
156
|
+
}
|
|
157
|
+
declare module "@salesforce/schema/Contact.AssistantName" {
|
|
158
|
+
const AssistantName:string;
|
|
159
|
+
export default AssistantName;
|
|
160
|
+
}
|
|
161
|
+
declare module "@salesforce/schema/Contact.LeadSource" {
|
|
162
|
+
const LeadSource:string;
|
|
163
|
+
export default LeadSource;
|
|
164
|
+
}
|
|
165
|
+
declare module "@salesforce/schema/Contact.Birthdate" {
|
|
166
|
+
const Birthdate:any;
|
|
167
|
+
export default Birthdate;
|
|
168
|
+
}
|
|
169
|
+
declare module "@salesforce/schema/Contact.Description" {
|
|
170
|
+
const Description:string;
|
|
171
|
+
export default Description;
|
|
172
|
+
}
|
|
173
|
+
declare module "@salesforce/schema/Contact.Owner" {
|
|
174
|
+
const Owner:any;
|
|
175
|
+
export default Owner;
|
|
176
|
+
}
|
|
177
|
+
declare module "@salesforce/schema/Contact.OwnerId" {
|
|
178
|
+
const OwnerId:any;
|
|
179
|
+
export default OwnerId;
|
|
180
|
+
}
|
|
181
|
+
declare module "@salesforce/schema/Contact.CreatedDate" {
|
|
182
|
+
const CreatedDate:any;
|
|
183
|
+
export default CreatedDate;
|
|
184
|
+
}
|
|
185
|
+
declare module "@salesforce/schema/Contact.CreatedBy" {
|
|
186
|
+
const CreatedBy:any;
|
|
187
|
+
export default CreatedBy;
|
|
188
|
+
}
|
|
189
|
+
declare module "@salesforce/schema/Contact.CreatedById" {
|
|
190
|
+
const CreatedById:any;
|
|
191
|
+
export default CreatedById;
|
|
192
|
+
}
|
|
193
|
+
declare module "@salesforce/schema/Contact.LastModifiedDate" {
|
|
194
|
+
const LastModifiedDate:any;
|
|
195
|
+
export default LastModifiedDate;
|
|
196
|
+
}
|
|
197
|
+
declare module "@salesforce/schema/Contact.LastModifiedBy" {
|
|
198
|
+
const LastModifiedBy:any;
|
|
199
|
+
export default LastModifiedBy;
|
|
200
|
+
}
|
|
201
|
+
declare module "@salesforce/schema/Contact.LastModifiedById" {
|
|
202
|
+
const LastModifiedById:any;
|
|
203
|
+
export default LastModifiedById;
|
|
204
|
+
}
|
|
205
|
+
declare module "@salesforce/schema/Contact.SystemModstamp" {
|
|
206
|
+
const SystemModstamp:any;
|
|
207
|
+
export default SystemModstamp;
|
|
208
|
+
}
|
|
209
|
+
declare module "@salesforce/schema/Contact.LastActivityDate" {
|
|
210
|
+
const LastActivityDate:any;
|
|
211
|
+
export default LastActivityDate;
|
|
212
|
+
}
|
|
213
|
+
declare module "@salesforce/schema/Contact.LastCURequestDate" {
|
|
214
|
+
const LastCURequestDate:any;
|
|
215
|
+
export default LastCURequestDate;
|
|
216
|
+
}
|
|
217
|
+
declare module "@salesforce/schema/Contact.LastCUUpdateDate" {
|
|
218
|
+
const LastCUUpdateDate:any;
|
|
219
|
+
export default LastCUUpdateDate;
|
|
220
|
+
}
|
|
221
|
+
declare module "@salesforce/schema/Contact.LastViewedDate" {
|
|
222
|
+
const LastViewedDate:any;
|
|
223
|
+
export default LastViewedDate;
|
|
224
|
+
}
|
|
225
|
+
declare module "@salesforce/schema/Contact.LastReferencedDate" {
|
|
226
|
+
const LastReferencedDate:any;
|
|
227
|
+
export default LastReferencedDate;
|
|
228
|
+
}
|
|
229
|
+
declare module "@salesforce/schema/Contact.EmailBouncedReason" {
|
|
230
|
+
const EmailBouncedReason:string;
|
|
231
|
+
export default EmailBouncedReason;
|
|
232
|
+
}
|
|
233
|
+
declare module "@salesforce/schema/Contact.EmailBouncedDate" {
|
|
234
|
+
const EmailBouncedDate:any;
|
|
235
|
+
export default EmailBouncedDate;
|
|
236
|
+
}
|
|
237
|
+
declare module "@salesforce/schema/Contact.IsEmailBounced" {
|
|
238
|
+
const IsEmailBounced:boolean;
|
|
239
|
+
export default IsEmailBounced;
|
|
240
|
+
}
|
|
241
|
+
declare module "@salesforce/schema/Contact.PhotoUrl" {
|
|
242
|
+
const PhotoUrl:string;
|
|
243
|
+
export default PhotoUrl;
|
|
244
|
+
}
|
|
245
|
+
declare module "@salesforce/schema/Contact.Jigsaw" {
|
|
246
|
+
const Jigsaw:string;
|
|
247
|
+
export default Jigsaw;
|
|
248
|
+
}
|
|
249
|
+
declare module "@salesforce/schema/Contact.JigsawContactId" {
|
|
250
|
+
const JigsawContactId:string;
|
|
251
|
+
export default JigsawContactId;
|
|
252
|
+
}
|
|
253
|
+
declare module "@salesforce/schema/Contact.CleanStatus" {
|
|
254
|
+
const CleanStatus:string;
|
|
255
|
+
export default CleanStatus;
|
|
256
|
+
}
|
|
257
|
+
declare module "@salesforce/schema/Contact.Individual" {
|
|
258
|
+
const Individual:any;
|
|
259
|
+
export default Individual;
|
|
260
|
+
}
|
|
261
|
+
declare module "@salesforce/schema/Contact.IndividualId" {
|
|
262
|
+
const IndividualId:any;
|
|
263
|
+
export default IndividualId;
|
|
264
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
declare module "@salesforce/schema/Contract.Id" {
|
|
2
|
+
const Id:any;
|
|
3
|
+
export default Id;
|
|
4
|
+
}
|
|
5
|
+
declare module "@salesforce/schema/Contract.Account" {
|
|
6
|
+
const Account:any;
|
|
7
|
+
export default Account;
|
|
8
|
+
}
|
|
9
|
+
declare module "@salesforce/schema/Contract.AccountId" {
|
|
10
|
+
const AccountId:any;
|
|
11
|
+
export default AccountId;
|
|
12
|
+
}
|
|
13
|
+
declare module "@salesforce/schema/Contract.Pricebook2" {
|
|
14
|
+
const Pricebook2:any;
|
|
15
|
+
export default Pricebook2;
|
|
16
|
+
}
|
|
17
|
+
declare module "@salesforce/schema/Contract.Pricebook2Id" {
|
|
18
|
+
const Pricebook2Id:any;
|
|
19
|
+
export default Pricebook2Id;
|
|
20
|
+
}
|
|
21
|
+
declare module "@salesforce/schema/Contract.OwnerExpirationNotice" {
|
|
22
|
+
const OwnerExpirationNotice:string;
|
|
23
|
+
export default OwnerExpirationNotice;
|
|
24
|
+
}
|
|
25
|
+
declare module "@salesforce/schema/Contract.StartDate" {
|
|
26
|
+
const StartDate:any;
|
|
27
|
+
export default StartDate;
|
|
28
|
+
}
|
|
29
|
+
declare module "@salesforce/schema/Contract.EndDate" {
|
|
30
|
+
const EndDate:any;
|
|
31
|
+
export default EndDate;
|
|
32
|
+
}
|
|
33
|
+
declare module "@salesforce/schema/Contract.BillingStreet" {
|
|
34
|
+
const BillingStreet:string;
|
|
35
|
+
export default BillingStreet;
|
|
36
|
+
}
|
|
37
|
+
declare module "@salesforce/schema/Contract.BillingCity" {
|
|
38
|
+
const BillingCity:string;
|
|
39
|
+
export default BillingCity;
|
|
40
|
+
}
|
|
41
|
+
declare module "@salesforce/schema/Contract.BillingState" {
|
|
42
|
+
const BillingState:string;
|
|
43
|
+
export default BillingState;
|
|
44
|
+
}
|
|
45
|
+
declare module "@salesforce/schema/Contract.BillingPostalCode" {
|
|
46
|
+
const BillingPostalCode:string;
|
|
47
|
+
export default BillingPostalCode;
|
|
48
|
+
}
|
|
49
|
+
declare module "@salesforce/schema/Contract.BillingCountry" {
|
|
50
|
+
const BillingCountry:string;
|
|
51
|
+
export default BillingCountry;
|
|
52
|
+
}
|
|
53
|
+
declare module "@salesforce/schema/Contract.BillingLatitude" {
|
|
54
|
+
const BillingLatitude:number;
|
|
55
|
+
export default BillingLatitude;
|
|
56
|
+
}
|
|
57
|
+
declare module "@salesforce/schema/Contract.BillingLongitude" {
|
|
58
|
+
const BillingLongitude:number;
|
|
59
|
+
export default BillingLongitude;
|
|
60
|
+
}
|
|
61
|
+
declare module "@salesforce/schema/Contract.BillingGeocodeAccuracy" {
|
|
62
|
+
const BillingGeocodeAccuracy:string;
|
|
63
|
+
export default BillingGeocodeAccuracy;
|
|
64
|
+
}
|
|
65
|
+
declare module "@salesforce/schema/Contract.BillingAddress" {
|
|
66
|
+
const BillingAddress:any;
|
|
67
|
+
export default BillingAddress;
|
|
68
|
+
}
|
|
69
|
+
declare module "@salesforce/schema/Contract.ContractTerm" {
|
|
70
|
+
const ContractTerm:number;
|
|
71
|
+
export default ContractTerm;
|
|
72
|
+
}
|
|
73
|
+
declare module "@salesforce/schema/Contract.Owner" {
|
|
74
|
+
const Owner:any;
|
|
75
|
+
export default Owner;
|
|
76
|
+
}
|
|
77
|
+
declare module "@salesforce/schema/Contract.OwnerId" {
|
|
78
|
+
const OwnerId:any;
|
|
79
|
+
export default OwnerId;
|
|
80
|
+
}
|
|
81
|
+
declare module "@salesforce/schema/Contract.Status" {
|
|
82
|
+
const Status:string;
|
|
83
|
+
export default Status;
|
|
84
|
+
}
|
|
85
|
+
declare module "@salesforce/schema/Contract.CompanySigned" {
|
|
86
|
+
const CompanySigned:any;
|
|
87
|
+
export default CompanySigned;
|
|
88
|
+
}
|
|
89
|
+
declare module "@salesforce/schema/Contract.CompanySignedId" {
|
|
90
|
+
const CompanySignedId:any;
|
|
91
|
+
export default CompanySignedId;
|
|
92
|
+
}
|
|
93
|
+
declare module "@salesforce/schema/Contract.CompanySignedDate" {
|
|
94
|
+
const CompanySignedDate:any;
|
|
95
|
+
export default CompanySignedDate;
|
|
96
|
+
}
|
|
97
|
+
declare module "@salesforce/schema/Contract.CustomerSigned" {
|
|
98
|
+
const CustomerSigned:any;
|
|
99
|
+
export default CustomerSigned;
|
|
100
|
+
}
|
|
101
|
+
declare module "@salesforce/schema/Contract.CustomerSignedId" {
|
|
102
|
+
const CustomerSignedId:any;
|
|
103
|
+
export default CustomerSignedId;
|
|
104
|
+
}
|
|
105
|
+
declare module "@salesforce/schema/Contract.CustomerSignedTitle" {
|
|
106
|
+
const CustomerSignedTitle:string;
|
|
107
|
+
export default CustomerSignedTitle;
|
|
108
|
+
}
|
|
109
|
+
declare module "@salesforce/schema/Contract.CustomerSignedDate" {
|
|
110
|
+
const CustomerSignedDate:any;
|
|
111
|
+
export default CustomerSignedDate;
|
|
112
|
+
}
|
|
113
|
+
declare module "@salesforce/schema/Contract.SpecialTerms" {
|
|
114
|
+
const SpecialTerms:string;
|
|
115
|
+
export default SpecialTerms;
|
|
116
|
+
}
|
|
117
|
+
declare module "@salesforce/schema/Contract.ActivatedBy" {
|
|
118
|
+
const ActivatedBy:any;
|
|
119
|
+
export default ActivatedBy;
|
|
120
|
+
}
|
|
121
|
+
declare module "@salesforce/schema/Contract.ActivatedById" {
|
|
122
|
+
const ActivatedById:any;
|
|
123
|
+
export default ActivatedById;
|
|
124
|
+
}
|
|
125
|
+
declare module "@salesforce/schema/Contract.ActivatedDate" {
|
|
126
|
+
const ActivatedDate:any;
|
|
127
|
+
export default ActivatedDate;
|
|
128
|
+
}
|
|
129
|
+
declare module "@salesforce/schema/Contract.StatusCode" {
|
|
130
|
+
const StatusCode:string;
|
|
131
|
+
export default StatusCode;
|
|
132
|
+
}
|
|
133
|
+
declare module "@salesforce/schema/Contract.Description" {
|
|
134
|
+
const Description:string;
|
|
135
|
+
export default Description;
|
|
136
|
+
}
|
|
137
|
+
declare module "@salesforce/schema/Contract.IsDeleted" {
|
|
138
|
+
const IsDeleted:boolean;
|
|
139
|
+
export default IsDeleted;
|
|
140
|
+
}
|
|
141
|
+
declare module "@salesforce/schema/Contract.ContractNumber" {
|
|
142
|
+
const ContractNumber:string;
|
|
143
|
+
export default ContractNumber;
|
|
144
|
+
}
|
|
145
|
+
declare module "@salesforce/schema/Contract.LastApprovedDate" {
|
|
146
|
+
const LastApprovedDate:any;
|
|
147
|
+
export default LastApprovedDate;
|
|
148
|
+
}
|
|
149
|
+
declare module "@salesforce/schema/Contract.CreatedDate" {
|
|
150
|
+
const CreatedDate:any;
|
|
151
|
+
export default CreatedDate;
|
|
152
|
+
}
|
|
153
|
+
declare module "@salesforce/schema/Contract.CreatedBy" {
|
|
154
|
+
const CreatedBy:any;
|
|
155
|
+
export default CreatedBy;
|
|
156
|
+
}
|
|
157
|
+
declare module "@salesforce/schema/Contract.CreatedById" {
|
|
158
|
+
const CreatedById:any;
|
|
159
|
+
export default CreatedById;
|
|
160
|
+
}
|
|
161
|
+
declare module "@salesforce/schema/Contract.LastModifiedDate" {
|
|
162
|
+
const LastModifiedDate:any;
|
|
163
|
+
export default LastModifiedDate;
|
|
164
|
+
}
|
|
165
|
+
declare module "@salesforce/schema/Contract.LastModifiedBy" {
|
|
166
|
+
const LastModifiedBy:any;
|
|
167
|
+
export default LastModifiedBy;
|
|
168
|
+
}
|
|
169
|
+
declare module "@salesforce/schema/Contract.LastModifiedById" {
|
|
170
|
+
const LastModifiedById:any;
|
|
171
|
+
export default LastModifiedById;
|
|
172
|
+
}
|
|
173
|
+
declare module "@salesforce/schema/Contract.SystemModstamp" {
|
|
174
|
+
const SystemModstamp:any;
|
|
175
|
+
export default SystemModstamp;
|
|
176
|
+
}
|
|
177
|
+
declare module "@salesforce/schema/Contract.LastActivityDate" {
|
|
178
|
+
const LastActivityDate:any;
|
|
179
|
+
export default LastActivityDate;
|
|
180
|
+
}
|
|
181
|
+
declare module "@salesforce/schema/Contract.LastViewedDate" {
|
|
182
|
+
const LastViewedDate:any;
|
|
183
|
+
export default LastViewedDate;
|
|
184
|
+
}
|
|
185
|
+
declare module "@salesforce/schema/Contract.LastReferencedDate" {
|
|
186
|
+
const LastReferencedDate:any;
|
|
187
|
+
export default LastReferencedDate;
|
|
188
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare module "@salesforce/schema/Domain.Id" {
|
|
2
|
+
const Id:any;
|
|
3
|
+
export default Id;
|
|
4
|
+
}
|
|
5
|
+
declare module "@salesforce/schema/Domain.DomainType" {
|
|
6
|
+
const DomainType:string;
|
|
7
|
+
export default DomainType;
|
|
8
|
+
}
|
|
9
|
+
declare module "@salesforce/schema/Domain.Domain" {
|
|
10
|
+
const Domain:string;
|
|
11
|
+
export default Domain;
|
|
12
|
+
}
|
|
13
|
+
declare module "@salesforce/schema/Domain.OptionsHstsPreload" {
|
|
14
|
+
const OptionsHstsPreload:boolean;
|
|
15
|
+
export default OptionsHstsPreload;
|
|
16
|
+
}
|
|
17
|
+
declare module "@salesforce/schema/Domain.CnameTarget" {
|
|
18
|
+
const CnameTarget:string;
|
|
19
|
+
export default CnameTarget;
|
|
20
|
+
}
|
|
21
|
+
declare module "@salesforce/schema/Domain.HttpsOption" {
|
|
22
|
+
const HttpsOption:string;
|
|
23
|
+
export default HttpsOption;
|
|
24
|
+
}
|
|
25
|
+
declare module "@salesforce/schema/Domain.CreatedDate" {
|
|
26
|
+
const CreatedDate:any;
|
|
27
|
+
export default CreatedDate;
|
|
28
|
+
}
|
|
29
|
+
declare module "@salesforce/schema/Domain.CreatedBy" {
|
|
30
|
+
const CreatedBy:any;
|
|
31
|
+
export default CreatedBy;
|
|
32
|
+
}
|
|
33
|
+
declare module "@salesforce/schema/Domain.CreatedById" {
|
|
34
|
+
const CreatedById:any;
|
|
35
|
+
export default CreatedById;
|
|
36
|
+
}
|
|
37
|
+
declare module "@salesforce/schema/Domain.LastModifiedDate" {
|
|
38
|
+
const LastModifiedDate:any;
|
|
39
|
+
export default LastModifiedDate;
|
|
40
|
+
}
|
|
41
|
+
declare module "@salesforce/schema/Domain.LastModifiedBy" {
|
|
42
|
+
const LastModifiedBy:any;
|
|
43
|
+
export default LastModifiedBy;
|
|
44
|
+
}
|
|
45
|
+
declare module "@salesforce/schema/Domain.LastModifiedById" {
|
|
46
|
+
const LastModifiedById:any;
|
|
47
|
+
export default LastModifiedById;
|
|
48
|
+
}
|
|
49
|
+
declare module "@salesforce/schema/Domain.SystemModstamp" {
|
|
50
|
+
const SystemModstamp:any;
|
|
51
|
+
export default SystemModstamp;
|
|
52
|
+
}
|