@pipedream/salesforce_rest_api 1.2.1 → 1.3.1
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/README.md +92 -0
- package/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +25 -25
- package/actions/add-lead-to-campaign/add-lead-to-campaign.mjs +25 -24
- package/actions/common/base-create-update.mjs +108 -0
- package/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs +11 -3
- package/actions/create-account/create-account.mjs +33 -36
- package/actions/create-attachment/create-attachment.mjs +36 -50
- package/actions/create-campaign/create-campaign.mjs +41 -37
- package/actions/create-case/create-case.mjs +41 -37
- package/actions/create-casecomment/create-casecomment.mjs +26 -38
- package/actions/create-contact/create-contact.mjs +38 -35
- package/actions/create-event/create-event.mjs +57 -66
- package/actions/create-lead/create-lead.mjs +34 -42
- package/actions/create-note/create-note.mjs +24 -43
- package/actions/create-opportunity/create-opportunity.mjs +38 -47
- package/actions/create-record/create-record.mjs +49 -15
- package/actions/create-task/create-task.mjs +50 -42
- package/actions/create-user/create-user.mjs +33 -196
- package/actions/delete-opportunity/delete-opportunity.mjs +17 -13
- package/actions/delete-record/delete-record.mjs +18 -16
- package/actions/find-records/find-records.mjs +41 -26
- package/actions/insert-blob-data/insert-blob-data.mjs +3 -7
- package/actions/post-feed-to-chatter/post-feed-to-chatter.mjs +45 -20
- package/actions/search-string/search-string.mjs +22 -20
- package/actions/soql-search/soql-search.mjs +13 -8
- package/actions/sosl-search/sosl-search.mjs +19 -9
- package/actions/update-account/update-account.mjs +54 -41
- package/actions/update-contact/update-contact.mjs +59 -40
- package/actions/update-opportunity/update-opportunity.mjs +56 -54
- package/actions/update-record/update-record.mjs +67 -20
- package/common/all-sobjects.mjs +3812 -0
- package/common/constants-props.mjs +1539 -0
- package/common/props-async-options.mjs +154 -0
- package/common/props-utils.mjs +88 -31
- package/common/sobjects/account.mjs +349 -22
- package/common/sobjects/attachment.mjs +56 -17
- package/common/sobjects/campaign.mjs +125 -23
- package/common/sobjects/case.mjs +193 -13
- package/common/sobjects/caseComment.mjs +28 -4
- package/common/sobjects/contact.mjs +207 -43
- package/common/sobjects/event.mjs +218 -18
- package/common/sobjects/lead.mjs +245 -22
- package/common/sobjects/note.mjs +37 -14
- package/common/sobjects/opportunity.mjs +148 -22
- package/common/sobjects/task.mjs +240 -19
- package/common/sobjects/user.mjs +965 -0
- package/package.json +2 -2
- package/salesforce_rest_api.app.mjs +72 -249
- package/sources/common-webhook-methods.mjs +71 -0
- package/sources/common.mjs +85 -22
- package/sources/new-outbound-message/new-outbound-message.mjs +11 -3
- package/sources/new-record-instant/new-record-instant.mjs +95 -7
- package/sources/record-deleted-instant/record-deleted-instant.mjs +40 -5
- package/sources/record-updated-instant/record-updated-instant.mjs +137 -5
- package/actions/common/base.mjs +0 -18
- package/actions/find-create-record/find-create-record.mjs +0 -89
- package/actions/get-sobject-fields-values/get-sobject-fields-values.mjs +0 -57
- package/common/utils.mjs +0 -51
- package/sources/common-instant.mjs +0 -146
- package/sources/new-record/new-record.mjs +0 -91
- package/sources/record-deleted/record-deleted.mjs +0 -51
- package/sources/record-updated/record-updated.mjs +0 -94
- package/sources/updated-field-on-record/updated-field-on-record.mjs +0 -161
- package/sources/updated-field-on-record-instant/updated-field-on-record-instant.mjs +0 -76
|
@@ -0,0 +1,965 @@
|
|
|
1
|
+
import salesforce from "../../salesforce_rest_api.app.mjs";
|
|
2
|
+
import {
|
|
3
|
+
EMAIL_ENCODING_OPTIONS,
|
|
4
|
+
GEOCODE_ACCURACY_OPTIONS,
|
|
5
|
+
LANGUAGE_OPTIONS,
|
|
6
|
+
LOCALE_OPTIONS,
|
|
7
|
+
TIMEZONE_OPTIONS,
|
|
8
|
+
} from "../constants-props.mjs";
|
|
9
|
+
import commonProps from "../props-async-options.mjs";
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
updateProps: {
|
|
13
|
+
UserPreferencesEmailVerified: {
|
|
14
|
+
type: "boolean",
|
|
15
|
+
label: "Email Verified",
|
|
16
|
+
description:
|
|
17
|
+
"Indicates whether a user's email address is verified (true) or unverified (false).",
|
|
18
|
+
optional: true,
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
initialProps: {
|
|
22
|
+
Alias: {
|
|
23
|
+
type: "string",
|
|
24
|
+
label: "Alias",
|
|
25
|
+
description: "The user's alias (max 8 characters).",
|
|
26
|
+
},
|
|
27
|
+
CommunityNickname: {
|
|
28
|
+
type: "string",
|
|
29
|
+
label: "Nickname",
|
|
30
|
+
description:
|
|
31
|
+
"Name used to identify this user in the Experience Cloud site.",
|
|
32
|
+
},
|
|
33
|
+
DigestFrequency: {
|
|
34
|
+
type: "string",
|
|
35
|
+
label: "Chatter Email Highlights Frequency",
|
|
36
|
+
description:
|
|
37
|
+
"The send frequency of the user's Chatter personal email digest.",
|
|
38
|
+
options: [
|
|
39
|
+
{
|
|
40
|
+
label: "Daily",
|
|
41
|
+
value: "D",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
label: "Weekly",
|
|
45
|
+
value: "W",
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
label: "Never",
|
|
49
|
+
value: "N",
|
|
50
|
+
},
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
Email: {
|
|
54
|
+
type: "string",
|
|
55
|
+
label: "Email",
|
|
56
|
+
description: "The user's email address.",
|
|
57
|
+
},
|
|
58
|
+
EmailEncodingKey: {
|
|
59
|
+
type: "string",
|
|
60
|
+
label: "Email Encoding",
|
|
61
|
+
description: "The email encoding for the user.",
|
|
62
|
+
options: EMAIL_ENCODING_OPTIONS,
|
|
63
|
+
},
|
|
64
|
+
LanguageLocaleKey: {
|
|
65
|
+
type: "string",
|
|
66
|
+
label: "Language",
|
|
67
|
+
description: "The user's language.",
|
|
68
|
+
options: LANGUAGE_OPTIONS,
|
|
69
|
+
},
|
|
70
|
+
LastName: {
|
|
71
|
+
type: "string",
|
|
72
|
+
label: "Last Name",
|
|
73
|
+
description: "The user's last name.",
|
|
74
|
+
},
|
|
75
|
+
LocaleSidKey: {
|
|
76
|
+
type: "string",
|
|
77
|
+
label: "Locale",
|
|
78
|
+
description:
|
|
79
|
+
"The locale affects formatting and parsing of values, especially numeric values, in the user interface.",
|
|
80
|
+
options: LOCALE_OPTIONS,
|
|
81
|
+
},
|
|
82
|
+
ProfileId: {
|
|
83
|
+
propDefinition: [
|
|
84
|
+
salesforce,
|
|
85
|
+
"recordId",
|
|
86
|
+
() => ({
|
|
87
|
+
objType: "Profile",
|
|
88
|
+
nameField: "Name",
|
|
89
|
+
}),
|
|
90
|
+
],
|
|
91
|
+
label: "Profile ID",
|
|
92
|
+
description:
|
|
93
|
+
"ID of the user's Profile. Use this value to cache metadata based on profile.",
|
|
94
|
+
},
|
|
95
|
+
TimeZoneSidKey: {
|
|
96
|
+
type: "string",
|
|
97
|
+
label: "Time Zone",
|
|
98
|
+
description:
|
|
99
|
+
"A User time zone affects the offset used when displaying or entering times in the user interface.",
|
|
100
|
+
options: TIMEZONE_OPTIONS,
|
|
101
|
+
},
|
|
102
|
+
Username: {
|
|
103
|
+
type: "string",
|
|
104
|
+
label: "Username",
|
|
105
|
+
description:
|
|
106
|
+
"Contains the name that a user enters to log in to the API or the user interface. The value for this field must be in the form of an email address, using all lowercase characters. It must also be unique across all organizations.",
|
|
107
|
+
},
|
|
108
|
+
UserPermissionsMarketingUser: {
|
|
109
|
+
type: "boolean",
|
|
110
|
+
label: "Marketing User",
|
|
111
|
+
description:
|
|
112
|
+
"Indicates whether the user is enabled to manage campaigns in the user interface (true) or not (false).",
|
|
113
|
+
},
|
|
114
|
+
UserPermissionsOfflineUser: {
|
|
115
|
+
type: "boolean",
|
|
116
|
+
label: "Offline User",
|
|
117
|
+
description:
|
|
118
|
+
"Indicates whether the user is enabled to use Offline Edition (true) or not (false).",
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
extraProps: {
|
|
122
|
+
AccountId: {
|
|
123
|
+
...commonProps.AccountId,
|
|
124
|
+
description: "ID of the Account associated with a Customer Portal user.",
|
|
125
|
+
optional: true,
|
|
126
|
+
},
|
|
127
|
+
CallCenterId: {
|
|
128
|
+
...commonProps.CallCenterId,
|
|
129
|
+
description:
|
|
130
|
+
"If Salesforce CRM Call Center is enabled, represents the call center that this user is assigned to.",
|
|
131
|
+
optional: true,
|
|
132
|
+
},
|
|
133
|
+
ContactId: {
|
|
134
|
+
...commonProps.ContactId,
|
|
135
|
+
description: "ID of the Contact associated with this account.",
|
|
136
|
+
optional: true,
|
|
137
|
+
},
|
|
138
|
+
DelegatedApproverId: {
|
|
139
|
+
...commonProps.UserId,
|
|
140
|
+
label: "Delegated Approver ID",
|
|
141
|
+
description: "ID of the user who is a delegated approver for this user.",
|
|
142
|
+
optional: true,
|
|
143
|
+
},
|
|
144
|
+
IndividualId: {
|
|
145
|
+
...commonProps.IndividualId,
|
|
146
|
+
description: "ID of the data privacy record associated with this user.",
|
|
147
|
+
optional: true,
|
|
148
|
+
},
|
|
149
|
+
ManagerId: {
|
|
150
|
+
...commonProps.UserId,
|
|
151
|
+
label: "Manager ID",
|
|
152
|
+
description: "The ID of the user who manages this user.",
|
|
153
|
+
optional: true,
|
|
154
|
+
},
|
|
155
|
+
UserRoleId: {
|
|
156
|
+
...commonProps.UserRoleId,
|
|
157
|
+
description: "ID of the user's UserRole.",
|
|
158
|
+
optional: true,
|
|
159
|
+
},
|
|
160
|
+
AboutMe: {
|
|
161
|
+
type: "string",
|
|
162
|
+
label: "About Me",
|
|
163
|
+
description:
|
|
164
|
+
"Information about the user, such as areas of interest or skills.",
|
|
165
|
+
optional: true,
|
|
166
|
+
},
|
|
167
|
+
City: {
|
|
168
|
+
type: "string",
|
|
169
|
+
label: "City",
|
|
170
|
+
description:
|
|
171
|
+
"The city associated with the user. Up to 40 characters allowed.",
|
|
172
|
+
optional: true,
|
|
173
|
+
},
|
|
174
|
+
CompanyName: {
|
|
175
|
+
type: "string",
|
|
176
|
+
label: "Company Name",
|
|
177
|
+
description: "The name of the user's company.",
|
|
178
|
+
optional: true,
|
|
179
|
+
},
|
|
180
|
+
Country: {
|
|
181
|
+
type: "string",
|
|
182
|
+
label: "Country",
|
|
183
|
+
description:
|
|
184
|
+
"The country associated with the user. Up to 80 characters allowed.",
|
|
185
|
+
optional: true,
|
|
186
|
+
},
|
|
187
|
+
DefaultGroupNotificationFrequency: {
|
|
188
|
+
type: "string",
|
|
189
|
+
label: "Default Notification Frequency when Joining Groups",
|
|
190
|
+
description:
|
|
191
|
+
"The default frequency for sending the user's Chatter group email notifications when the user joins groups.",
|
|
192
|
+
optional: true,
|
|
193
|
+
options: [
|
|
194
|
+
{
|
|
195
|
+
label: "Email on Each Post",
|
|
196
|
+
value: "P",
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
label: "Daily Digests",
|
|
200
|
+
value: "D",
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
label: "Weekly Digests",
|
|
204
|
+
value: "W",
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
label: "Never",
|
|
208
|
+
value: "N",
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
Department: {
|
|
213
|
+
type: "string",
|
|
214
|
+
label: "Department",
|
|
215
|
+
description: "The company department associated with the user.",
|
|
216
|
+
optional: true,
|
|
217
|
+
},
|
|
218
|
+
Division: {
|
|
219
|
+
type: "string",
|
|
220
|
+
label: "Division",
|
|
221
|
+
description: "The division associated with this user.",
|
|
222
|
+
optional: true,
|
|
223
|
+
},
|
|
224
|
+
EmailPreferencesAutoBcc: {
|
|
225
|
+
type: "boolean",
|
|
226
|
+
label: "Auto Bcc",
|
|
227
|
+
description:
|
|
228
|
+
"Determines whether the user receives copies of sent emails.",
|
|
229
|
+
optional: true,
|
|
230
|
+
},
|
|
231
|
+
EmployeeNumber: {
|
|
232
|
+
type: "string",
|
|
233
|
+
label: "Employee Number",
|
|
234
|
+
description: "The user's employee number.",
|
|
235
|
+
optional: true,
|
|
236
|
+
},
|
|
237
|
+
Extension: {
|
|
238
|
+
type: "string",
|
|
239
|
+
label: "Extension",
|
|
240
|
+
description: "The user's phone extension number.",
|
|
241
|
+
optional: true,
|
|
242
|
+
},
|
|
243
|
+
Fax: {
|
|
244
|
+
type: "string",
|
|
245
|
+
label: "Fax",
|
|
246
|
+
description: "The user's fax number.",
|
|
247
|
+
optional: true,
|
|
248
|
+
},
|
|
249
|
+
FederationIdentifier: {
|
|
250
|
+
type: "string",
|
|
251
|
+
label: "SAML Federation ID",
|
|
252
|
+
description:
|
|
253
|
+
"Indicates the value that must be listed in the Subject element of a Security Assertion Markup Language (SAML) IDP certificate to authenticate the user for a client application using single sign-on.",
|
|
254
|
+
optional: true,
|
|
255
|
+
},
|
|
256
|
+
FirstName: {
|
|
257
|
+
type: "string",
|
|
258
|
+
label: "First Name",
|
|
259
|
+
description: "The user's first name.",
|
|
260
|
+
optional: true,
|
|
261
|
+
},
|
|
262
|
+
ForecastEnabled: {
|
|
263
|
+
type: "boolean",
|
|
264
|
+
label: "Allow Forecasting",
|
|
265
|
+
description: "Indicates whether the user is enabled for forecasts.",
|
|
266
|
+
optional: true,
|
|
267
|
+
},
|
|
268
|
+
GeocodeAccuracy: {
|
|
269
|
+
type: "string",
|
|
270
|
+
label: "Geocode Accuracy",
|
|
271
|
+
description:
|
|
272
|
+
"The level of accuracy of a location's geographical coordinates compared with its physical address.",
|
|
273
|
+
optional: true,
|
|
274
|
+
options: GEOCODE_ACCURACY_OPTIONS,
|
|
275
|
+
},
|
|
276
|
+
IsActive: {
|
|
277
|
+
type: "boolean",
|
|
278
|
+
label: "Active",
|
|
279
|
+
description: "Indicates whether the user has access to log in.",
|
|
280
|
+
optional: true,
|
|
281
|
+
},
|
|
282
|
+
JigsawImportLimitOverride: {
|
|
283
|
+
type: "integer",
|
|
284
|
+
label: "Data.com Monthly Addition Limit",
|
|
285
|
+
description:
|
|
286
|
+
"The Data.com user's monthly addition limit. The value must be between zero and the organization's monthly addition limit.",
|
|
287
|
+
optional: true,
|
|
288
|
+
},
|
|
289
|
+
Latitude: {
|
|
290
|
+
type: "string",
|
|
291
|
+
label: "Latitude",
|
|
292
|
+
description:
|
|
293
|
+
"A number between -90 and 90 with up to 15 decimal places. Use with `Longitude` to specify the precise geolocation of an address.",
|
|
294
|
+
optional: true,
|
|
295
|
+
},
|
|
296
|
+
Longitude: {
|
|
297
|
+
type: "string",
|
|
298
|
+
label: "Longitude",
|
|
299
|
+
description:
|
|
300
|
+
"A number between -180 and 180 with up to 15 decimal places. Use with `Latitude` to specify the precise geolocation of an address.",
|
|
301
|
+
optional: true,
|
|
302
|
+
},
|
|
303
|
+
MiddleName: {
|
|
304
|
+
type: "string",
|
|
305
|
+
label: "Middle Name",
|
|
306
|
+
description: "The user's middle name. Maximum size is 40 characters.",
|
|
307
|
+
optional: true,
|
|
308
|
+
},
|
|
309
|
+
MobilePhone: {
|
|
310
|
+
type: "string",
|
|
311
|
+
label: "Mobile",
|
|
312
|
+
description: "The user's mobile device number.",
|
|
313
|
+
optional: true,
|
|
314
|
+
},
|
|
315
|
+
Phone: {
|
|
316
|
+
type: "string",
|
|
317
|
+
label: "Phone",
|
|
318
|
+
description: "The user's phone number.",
|
|
319
|
+
optional: true,
|
|
320
|
+
},
|
|
321
|
+
PostalCode: {
|
|
322
|
+
type: "string",
|
|
323
|
+
label: "Zip/Postal Code",
|
|
324
|
+
description: "The user's postal or ZIP code.",
|
|
325
|
+
optional: true,
|
|
326
|
+
},
|
|
327
|
+
ReceivesAdminInfoEmails: {
|
|
328
|
+
type: "boolean",
|
|
329
|
+
label: "Admin Info Emails",
|
|
330
|
+
description:
|
|
331
|
+
"Indicates whether the user receives email for administrators from Salesforce (true) or not (false).",
|
|
332
|
+
optional: true,
|
|
333
|
+
},
|
|
334
|
+
ReceivesInfoEmails: {
|
|
335
|
+
type: "boolean",
|
|
336
|
+
label: "Info Emails",
|
|
337
|
+
description:
|
|
338
|
+
"Indicates whether the user receives informational email from Salesforce (true) or not (false).",
|
|
339
|
+
optional: true,
|
|
340
|
+
},
|
|
341
|
+
SenderEmail: {
|
|
342
|
+
type: "string",
|
|
343
|
+
label: "Email Sender Address",
|
|
344
|
+
description:
|
|
345
|
+
"The email address used as the From address when the user sends emails.",
|
|
346
|
+
optional: true,
|
|
347
|
+
},
|
|
348
|
+
SenderName: {
|
|
349
|
+
type: "string",
|
|
350
|
+
label: "Email Sender Name",
|
|
351
|
+
description:
|
|
352
|
+
"The name used as the email sender when the user sends emails.",
|
|
353
|
+
optional: true,
|
|
354
|
+
},
|
|
355
|
+
Signature: {
|
|
356
|
+
type: "string",
|
|
357
|
+
label: "Email Signature",
|
|
358
|
+
description: "The signature text added to emails.",
|
|
359
|
+
optional: true,
|
|
360
|
+
},
|
|
361
|
+
State: {
|
|
362
|
+
type: "string",
|
|
363
|
+
label: "State",
|
|
364
|
+
description:
|
|
365
|
+
"The state associated with the User. Up to 80 characters allowed.",
|
|
366
|
+
optional: true,
|
|
367
|
+
},
|
|
368
|
+
Street: {
|
|
369
|
+
type: "string",
|
|
370
|
+
label: "Street",
|
|
371
|
+
description: "The street address associated with the User.",
|
|
372
|
+
optional: true,
|
|
373
|
+
},
|
|
374
|
+
Suffix: {
|
|
375
|
+
type: "string",
|
|
376
|
+
label: "Suffix",
|
|
377
|
+
description: "The user's name suffix. Maximum size is 40 characters.",
|
|
378
|
+
optional: true,
|
|
379
|
+
},
|
|
380
|
+
Title: {
|
|
381
|
+
type: "string",
|
|
382
|
+
label: "Title",
|
|
383
|
+
description: "The user's business title, such as Vice President.",
|
|
384
|
+
optional: true,
|
|
385
|
+
},
|
|
386
|
+
UserPermissionsCallCenterAutoLogin: {
|
|
387
|
+
type: "boolean",
|
|
388
|
+
label: "Auto-login To Call Center",
|
|
389
|
+
description:
|
|
390
|
+
"Required if Salesforce CRM Call Center is enabled. Indicates whether the user is enabled to use the auto login feature of the call center (true) or not (false).",
|
|
391
|
+
optional: true,
|
|
392
|
+
},
|
|
393
|
+
UserPermissionsChatterAnswersUser: {
|
|
394
|
+
type: "boolean",
|
|
395
|
+
label: "Chatter Answers User",
|
|
396
|
+
description:
|
|
397
|
+
"Indicates whether the portal user is enabled to use the Chatter Answers feature (true) or not (false).",
|
|
398
|
+
optional: true,
|
|
399
|
+
},
|
|
400
|
+
UserPermissionsInteractionUser: {
|
|
401
|
+
type: "boolean",
|
|
402
|
+
label: "Flow User",
|
|
403
|
+
description: "Indicates whether the user can run flows or not.",
|
|
404
|
+
optional: true,
|
|
405
|
+
},
|
|
406
|
+
UserPermissionsJigsawProspectingUser: {
|
|
407
|
+
type: "boolean",
|
|
408
|
+
label: "Data.com User",
|
|
409
|
+
description:
|
|
410
|
+
"Indicates whether the user is allocated one Data.com user license (true) or not (false).",
|
|
411
|
+
optional: true,
|
|
412
|
+
},
|
|
413
|
+
UserPermissionsKnowledgeUser: {
|
|
414
|
+
type: "boolean",
|
|
415
|
+
label: "Knowledge User",
|
|
416
|
+
description:
|
|
417
|
+
"Indicates whether the user is enabled to use Salesforce Knowledge (true) or not (false).",
|
|
418
|
+
optional: true,
|
|
419
|
+
},
|
|
420
|
+
UserPermissionsLiveAgentUser: {
|
|
421
|
+
type: "boolean",
|
|
422
|
+
label: "Live Agent User",
|
|
423
|
+
description:
|
|
424
|
+
"Indicates whether the user is enabled to use Chat (true) or not (false).",
|
|
425
|
+
optional: true,
|
|
426
|
+
},
|
|
427
|
+
UserPermissionsSFContentUser: {
|
|
428
|
+
type: "boolean",
|
|
429
|
+
label: "Salesforce CRM Content User",
|
|
430
|
+
description:
|
|
431
|
+
"Indicates whether the user is allocated one Salesforce CRM Content User License (true) or not (false).",
|
|
432
|
+
optional: true,
|
|
433
|
+
},
|
|
434
|
+
UserPermissionsSiteforceContributorUser: {
|
|
435
|
+
type: "boolean",
|
|
436
|
+
label: "Site.com Contributor User",
|
|
437
|
+
description:
|
|
438
|
+
"Indicates whether the user is allocated one Site.com Contributor feature license (true) or not (false).",
|
|
439
|
+
optional: true,
|
|
440
|
+
},
|
|
441
|
+
UserPermissionsSiteforcePublisherUser: {
|
|
442
|
+
type: "boolean",
|
|
443
|
+
label: "Site.com Publisher User",
|
|
444
|
+
description:
|
|
445
|
+
"Indicates whether the user is allocated one Site.com Publisher feature license (true) or not (false).",
|
|
446
|
+
optional: true,
|
|
447
|
+
},
|
|
448
|
+
UserPermissionsSupportUser: {
|
|
449
|
+
type: "boolean",
|
|
450
|
+
label: "Service Cloud User",
|
|
451
|
+
description: "When true, the user can use the Salesforce console.",
|
|
452
|
+
optional: true,
|
|
453
|
+
},
|
|
454
|
+
UserPermissionsWorkDotComUserFeature: {
|
|
455
|
+
type: "boolean",
|
|
456
|
+
label: "WDC User",
|
|
457
|
+
description:
|
|
458
|
+
"Indicates whether the WDC feature is enabled for the user (true) or not (false).",
|
|
459
|
+
optional: true,
|
|
460
|
+
},
|
|
461
|
+
UserPreferencesActivityRemindersPopup: {
|
|
462
|
+
type: "boolean",
|
|
463
|
+
label: "ActivityRemindersPopup",
|
|
464
|
+
description:
|
|
465
|
+
"When true, a reminder window automatically opens when an activity reminder is due. Corresponds to the Trigger alert when reminder comes due checkbox at the Reminders page in the personal settings in the user interface.",
|
|
466
|
+
optional: true,
|
|
467
|
+
},
|
|
468
|
+
UserPreferencesAllowConversationReminders: {
|
|
469
|
+
type: "boolean",
|
|
470
|
+
label: "Allow Conversation Reminders",
|
|
471
|
+
description:
|
|
472
|
+
"When true, voice and call reminders are displayed as notification cards in Lightning Experience. Corresponds to the Show conversation reminders in Lightning Experience checkbox in the Activity Reminders page in the personal settings in the user interface.",
|
|
473
|
+
optional: true,
|
|
474
|
+
},
|
|
475
|
+
UserPreferencesApexPagesDeveloperMode: {
|
|
476
|
+
type: "boolean",
|
|
477
|
+
label: "Apex Pages Developer Mode",
|
|
478
|
+
description:
|
|
479
|
+
"When true, indicates that the user has enabled developer mode for editing Visualforce pages and controllers.",
|
|
480
|
+
optional: true,
|
|
481
|
+
},
|
|
482
|
+
UserPreferencesAutoForwardCall: {
|
|
483
|
+
type: "boolean",
|
|
484
|
+
label: "Auto Forward Call",
|
|
485
|
+
description:
|
|
486
|
+
"When true, the user receives Dialer calls simultaneously in their browser and on their forwarding number.",
|
|
487
|
+
optional: true,
|
|
488
|
+
},
|
|
489
|
+
UserPreferencesContentEmailAsAndWhen: {
|
|
490
|
+
type: "boolean",
|
|
491
|
+
label: "Content Email As And When",
|
|
492
|
+
description:
|
|
493
|
+
"When false, a user with Salesforce CRM Content subscriptions receives a once-daily email summary if activity occurs on the subscribed content, libraries, tags, or authors.",
|
|
494
|
+
optional: true,
|
|
495
|
+
},
|
|
496
|
+
UserPreferencesContentNoEmail: {
|
|
497
|
+
type: "boolean",
|
|
498
|
+
label: "Content No Email",
|
|
499
|
+
description:
|
|
500
|
+
"When false, a user with Salesforce CRM Content subscriptions receives email notifications if activity occurs on the subscribed content, libraries, tags, or authors.",
|
|
501
|
+
optional: true,
|
|
502
|
+
},
|
|
503
|
+
UserPreferencesEnableAutoSubForFeeds: {
|
|
504
|
+
type: "boolean",
|
|
505
|
+
label: "Enable Auto Sub For Feeds",
|
|
506
|
+
description:
|
|
507
|
+
"When true, the user automatically subscribes to feeds for any objects that the user creates.",
|
|
508
|
+
optional: true,
|
|
509
|
+
},
|
|
510
|
+
UserPreferencesDisableAllFeedsEmail: {
|
|
511
|
+
type: "boolean",
|
|
512
|
+
label: "Disable All Feeds Email",
|
|
513
|
+
description:
|
|
514
|
+
"When false, the user automatically receives email for all updates to Chatter feeds, based on the types of feed emails and digests the user has enabled.",
|
|
515
|
+
optional: true,
|
|
516
|
+
},
|
|
517
|
+
UserPreferencesDisableBookmarkEmail: {
|
|
518
|
+
type: "boolean",
|
|
519
|
+
label: "Disable Bookmark Email",
|
|
520
|
+
description:
|
|
521
|
+
"When false, the user automatically receives email every time someone comments on a Chatter feed item after the user has bookmarked it.",
|
|
522
|
+
optional: true,
|
|
523
|
+
},
|
|
524
|
+
UserPreferencesDisableChangeCommentEmail: {
|
|
525
|
+
type: "boolean",
|
|
526
|
+
label: "Disable Change Comment Email",
|
|
527
|
+
description:
|
|
528
|
+
"When false, the user automatically receives email every time someone comments on a change the user has made, such as an update to their profile.",
|
|
529
|
+
optional: true,
|
|
530
|
+
},
|
|
531
|
+
UserPreferencesDisableEndorsementEmail: {
|
|
532
|
+
type: "boolean",
|
|
533
|
+
label: "Disable Endorsement Email",
|
|
534
|
+
description:
|
|
535
|
+
"When false, the member automatically receives email every time someone endorses them for a topic.",
|
|
536
|
+
optional: true,
|
|
537
|
+
},
|
|
538
|
+
UserPreferencesDisableFileShareNotificationsForApi: {
|
|
539
|
+
type: "boolean",
|
|
540
|
+
label: "Disable File Share Notifications For Api",
|
|
541
|
+
description:
|
|
542
|
+
"When false, email notifications are sent from the person who shared the file to the users that the file is shared with.",
|
|
543
|
+
optional: true,
|
|
544
|
+
},
|
|
545
|
+
UserPreferencesDisableFollowersEmail: {
|
|
546
|
+
type: "boolean",
|
|
547
|
+
label: "Disable Followers Email",
|
|
548
|
+
description:
|
|
549
|
+
"When false, the user automatically receives email every time someone starts following the user in Chatter.",
|
|
550
|
+
optional: true,
|
|
551
|
+
},
|
|
552
|
+
UserPreferencesDisableLaterCommentEmail: {
|
|
553
|
+
type: "boolean",
|
|
554
|
+
label: "Disable Later Comment Email",
|
|
555
|
+
description:
|
|
556
|
+
"When false, the user automatically receives email every time someone comments on a feed item after the user has commented on the feed item.",
|
|
557
|
+
optional: true,
|
|
558
|
+
},
|
|
559
|
+
UserPreferencesDisableLikeEmail: {
|
|
560
|
+
type: "boolean",
|
|
561
|
+
label: "Disable Like Email",
|
|
562
|
+
description:
|
|
563
|
+
"When false, the user automatically receives email every time someone likes their post or comment.",
|
|
564
|
+
optional: true,
|
|
565
|
+
},
|
|
566
|
+
UserPreferencesDisableMentionsPostEmail: {
|
|
567
|
+
type: "boolean",
|
|
568
|
+
label: "Disable Mentions Post Email",
|
|
569
|
+
description:
|
|
570
|
+
"When false, the user automatically receives email every time they're mentioned in posts.",
|
|
571
|
+
optional: true,
|
|
572
|
+
},
|
|
573
|
+
UserPreferencesDisableProfilePostEmail: {
|
|
574
|
+
type: "boolean",
|
|
575
|
+
label: "Disable Profile Post Email",
|
|
576
|
+
description:
|
|
577
|
+
"When false, the user automatically receives email every time someone posts to the user's profile.",
|
|
578
|
+
optional: true,
|
|
579
|
+
},
|
|
580
|
+
UserPreferencesDisableSharePostEmail: {
|
|
581
|
+
type: "boolean",
|
|
582
|
+
label: "Disable Share Post Email",
|
|
583
|
+
description:
|
|
584
|
+
"When false, the user automatically receives email every time their post is shared.",
|
|
585
|
+
optional: true,
|
|
586
|
+
},
|
|
587
|
+
UserPreferencesDisableFeedbackEmail: {
|
|
588
|
+
type: "boolean",
|
|
589
|
+
label: "Disable Feedback Email",
|
|
590
|
+
description:
|
|
591
|
+
"When false, the user automatically receives emails related to WDC feedback. The user receives these emails when someone requests or offers feedback, shares feedback with the user, or reminds the user to answer a feedback request.",
|
|
592
|
+
optional: true,
|
|
593
|
+
},
|
|
594
|
+
UserPreferencesDisCommentAfterLikeEmail: {
|
|
595
|
+
type: "boolean",
|
|
596
|
+
label: "Dis Comment After Like Email",
|
|
597
|
+
description:
|
|
598
|
+
"When false, the user automatically receives email every time someone comments on a post that the user liked.",
|
|
599
|
+
optional: true,
|
|
600
|
+
},
|
|
601
|
+
UserPreferencesDisMentionsCommentEmail: {
|
|
602
|
+
type: "boolean",
|
|
603
|
+
label: "Dis Mentions Comment Email",
|
|
604
|
+
description:
|
|
605
|
+
"When false, the user automatically receives email every time the user is mentioned in comments.",
|
|
606
|
+
optional: true,
|
|
607
|
+
},
|
|
608
|
+
UserPreferencesDisableMessageEmail: {
|
|
609
|
+
type: "boolean",
|
|
610
|
+
label: "Disable Message Email",
|
|
611
|
+
description:
|
|
612
|
+
"When false, the user automatically receives email for Chatter messages sent to the user.",
|
|
613
|
+
optional: true,
|
|
614
|
+
},
|
|
615
|
+
UserPreferencesDisableRewardEmail: {
|
|
616
|
+
type: "boolean",
|
|
617
|
+
label: "Disable Reward Email",
|
|
618
|
+
description:
|
|
619
|
+
"When false, the user automatically receives emails related to WDC rewards. The user receives these emails when someone gives a reward to the user.",
|
|
620
|
+
optional: true,
|
|
621
|
+
},
|
|
622
|
+
UserPreferencesDisableWorkEmail: {
|
|
623
|
+
type: "boolean",
|
|
624
|
+
label: "Disable Work Email",
|
|
625
|
+
description:
|
|
626
|
+
"When false, the user receives emails related to WDC feedback, goals, and coaching. The user must also sign up for individual emails listed on the WDC email settings page. When true, the user doesn't receive any emails related to WDC feedback, goals, or coaching even if they're signed up for individual emails.",
|
|
627
|
+
optional: true,
|
|
628
|
+
},
|
|
629
|
+
UserPreferencesDisProfPostCommentEmail: {
|
|
630
|
+
type: "boolean",
|
|
631
|
+
label: "Dis Prof Post Comment Email",
|
|
632
|
+
description:
|
|
633
|
+
"When false, the user automatically receives email every time someone comments on posts on the user's profile.",
|
|
634
|
+
optional: true,
|
|
635
|
+
},
|
|
636
|
+
UserPreferencesEnableVoiceCallRecording: {
|
|
637
|
+
type: "boolean",
|
|
638
|
+
label: "EnableVoiceCallRecording",
|
|
639
|
+
description: "When true, voice call recording is enabled for the user.",
|
|
640
|
+
optional: true,
|
|
641
|
+
},
|
|
642
|
+
UserPreferencesEnableVoiceLocalPresence: {
|
|
643
|
+
type: "boolean",
|
|
644
|
+
label: "EnableVoiceLocalPresence",
|
|
645
|
+
description:
|
|
646
|
+
"When true, local numbers are shown when the user calls customers with Sales Dialer.",
|
|
647
|
+
optional: true,
|
|
648
|
+
},
|
|
649
|
+
UserPreferencesEventRemindersCheckboxDefault: {
|
|
650
|
+
type: "boolean",
|
|
651
|
+
label: "Event Reminders Checkbox Default",
|
|
652
|
+
description:
|
|
653
|
+
"When true, a reminder popup is automatically set on the user's events. Corresponds to the `By default, set reminder on Events to...` checkbox on the Reminders page in the user interface. This field is related to UserPreference and customizing activity reminders.",
|
|
654
|
+
optional: true,
|
|
655
|
+
},
|
|
656
|
+
UserPreferencesHideBiggerPhotoCallout: {
|
|
657
|
+
type: "boolean",
|
|
658
|
+
label: "Hide Bigger Photo Callout",
|
|
659
|
+
description:
|
|
660
|
+
"When true, users can choose to hide the callout text below the large profile photo.",
|
|
661
|
+
optional: true,
|
|
662
|
+
},
|
|
663
|
+
UserPreferencesHideChatterOnboardingSplash: {
|
|
664
|
+
type: "boolean",
|
|
665
|
+
label: "Hide Chatter Onboarding Splash",
|
|
666
|
+
description:
|
|
667
|
+
"When true, the initial Chatter onboarding prompts don't appear.",
|
|
668
|
+
optional: true,
|
|
669
|
+
},
|
|
670
|
+
UserPreferencesHideCSNDesktopTask: {
|
|
671
|
+
type: "boolean",
|
|
672
|
+
label: "Hide CSN Desktop Task",
|
|
673
|
+
description:
|
|
674
|
+
"When true, the Chatter recommendations panel never displays the recommendation to install Chatter Desktop.",
|
|
675
|
+
optional: true,
|
|
676
|
+
},
|
|
677
|
+
UserPreferencesHideCSNGetChatterMobileTask: {
|
|
678
|
+
type: "boolean",
|
|
679
|
+
label: "Hide CSN Get Chatter Mobile Task",
|
|
680
|
+
description:
|
|
681
|
+
"When true, the Chatter recommendations panel never displays the recommendation to install Chatter Mobile.",
|
|
682
|
+
optional: true,
|
|
683
|
+
},
|
|
684
|
+
UserPreferencesHideSecondChatterOnboardingSplash: {
|
|
685
|
+
type: "boolean",
|
|
686
|
+
label: "HideSecondChatterOnboardingSplash",
|
|
687
|
+
description:
|
|
688
|
+
"When true, the secondary Chatter onboarding prompts don't appear.",
|
|
689
|
+
optional: true,
|
|
690
|
+
},
|
|
691
|
+
UserPreferencesHideS1BrowserUI: {
|
|
692
|
+
type: "boolean",
|
|
693
|
+
label: "Hide S1 Browser UI",
|
|
694
|
+
description:
|
|
695
|
+
"Controls the interface that the user sees when logging in to Salesforce from a supported mobile browser. If false, the user is automatically redirected to the Salesforce mobile web. If true, the user sees the full Salesforce site.",
|
|
696
|
+
optional: true,
|
|
697
|
+
},
|
|
698
|
+
UserPreferencesHideSfxWelcomeMat: {
|
|
699
|
+
type: "boolean",
|
|
700
|
+
label: "Hide Sfx Welcome Mat",
|
|
701
|
+
description:
|
|
702
|
+
"Controls whether a user sees the Lightning Experience new user message. That message welcomes users to the new interface and provides step-by-step instructions that describe how to return to Salesforce Classic.",
|
|
703
|
+
optional: true,
|
|
704
|
+
},
|
|
705
|
+
UserPreferencesJigsawListUser: {
|
|
706
|
+
type: "boolean",
|
|
707
|
+
label: "Data.com List User",
|
|
708
|
+
description:
|
|
709
|
+
"When true, the user is a Data.com List user so shares record additions from a pool.",
|
|
710
|
+
optional: true,
|
|
711
|
+
},
|
|
712
|
+
UserPreferencesLightningExperiencePreferred: {
|
|
713
|
+
type: "boolean",
|
|
714
|
+
label: "Lightning Experience Preferred",
|
|
715
|
+
description:
|
|
716
|
+
"When true, redirects the user to the Lightning Experience interface. Label is Switch to Lightning Experience.",
|
|
717
|
+
optional: true,
|
|
718
|
+
},
|
|
719
|
+
UserPreferencesLiveAgentMiawSetupDeflection: {
|
|
720
|
+
type: "boolean",
|
|
721
|
+
label: "Live Agent Miaw Setup Deflection",
|
|
722
|
+
description:
|
|
723
|
+
"When true, disables the pop-up to deflect users on Chat setup nodes to the Messaging setup. The default value is false.",
|
|
724
|
+
optional: true,
|
|
725
|
+
},
|
|
726
|
+
UserPreferencesNativeEmailClient: {
|
|
727
|
+
type: "boolean",
|
|
728
|
+
label: "Native Email Client",
|
|
729
|
+
description:
|
|
730
|
+
"Use this field to set a default email preference for the user's native email client.",
|
|
731
|
+
optional: true,
|
|
732
|
+
},
|
|
733
|
+
UserPreferencesOutboundBridge: {
|
|
734
|
+
type: "boolean",
|
|
735
|
+
label: "Outbound Bridge",
|
|
736
|
+
description:
|
|
737
|
+
"When true, outbound calls are made through the user's phone.",
|
|
738
|
+
optional: true,
|
|
739
|
+
},
|
|
740
|
+
UserPreferencesPathAssistantCollapsed: {
|
|
741
|
+
type: "boolean",
|
|
742
|
+
label: "Path Assistant Collapsed",
|
|
743
|
+
description:
|
|
744
|
+
"When true, Sales Path appears collapsed or hidden to the user.",
|
|
745
|
+
optional: true,
|
|
746
|
+
},
|
|
747
|
+
UserPreferencesReceiveNoNotificationsAsApprover: {
|
|
748
|
+
type: "boolean",
|
|
749
|
+
label: "Receive No Notifications As Approver",
|
|
750
|
+
description:
|
|
751
|
+
"Controls email notifications from the approval process for approvers. If true, emails are disabled. If false, emails are enabled. The default value is false.",
|
|
752
|
+
optional: true,
|
|
753
|
+
},
|
|
754
|
+
UserPreferencesReceiveNotificationsAsDelegatedApprover: {
|
|
755
|
+
type: "boolean",
|
|
756
|
+
label: "Receive Notifications As Delegated Approver",
|
|
757
|
+
description:
|
|
758
|
+
"Controls email notifications from the approval process for delegated approvers. If true, emails are enabled. If false, emails are disabled. The default value is false.",
|
|
759
|
+
optional: true,
|
|
760
|
+
},
|
|
761
|
+
UserPreferencesReminderSoundOff: {
|
|
762
|
+
type: "boolean",
|
|
763
|
+
label: "Reminde Sound Off",
|
|
764
|
+
description:
|
|
765
|
+
"When true, a sound automatically plays when an activity reminder is due. Corresponds to the `Play a reminder sound` checkbox on the Reminders page in the user interface.",
|
|
766
|
+
optional: true,
|
|
767
|
+
},
|
|
768
|
+
UserPreferencesShowCityToExternalUsers: {
|
|
769
|
+
type: "boolean",
|
|
770
|
+
label: "Show City To External Users",
|
|
771
|
+
description:
|
|
772
|
+
"Indicates the visibility of the city field in the user's contact information. ",
|
|
773
|
+
optional: true,
|
|
774
|
+
},
|
|
775
|
+
UserPreferencesShowCityToGuestUsers: {
|
|
776
|
+
type: "boolean",
|
|
777
|
+
label: "Show City To Guest Users",
|
|
778
|
+
description:
|
|
779
|
+
"Indicates the visibility of the city field in the user's contact information.",
|
|
780
|
+
optional: true,
|
|
781
|
+
},
|
|
782
|
+
UserPreferencesShowCountryToExternalUsers: {
|
|
783
|
+
type: "boolean",
|
|
784
|
+
label: "Show Country To External Users",
|
|
785
|
+
description:
|
|
786
|
+
"Indicates the visibility of the country field in the user's contact information.",
|
|
787
|
+
optional: true,
|
|
788
|
+
},
|
|
789
|
+
UserPreferencesShowCountryToGuestUsers: {
|
|
790
|
+
type: "boolean",
|
|
791
|
+
label: "Show Country To Guest Users",
|
|
792
|
+
description:
|
|
793
|
+
"Indicates the visibility of the country field in the user's contact information.",
|
|
794
|
+
optional: true,
|
|
795
|
+
},
|
|
796
|
+
UserPreferencesShowEmailToExternalUsers: {
|
|
797
|
+
type: "boolean",
|
|
798
|
+
label: "Show Email To External Users",
|
|
799
|
+
description:
|
|
800
|
+
"Indicates the visibility of the email address field in the user's contact information.",
|
|
801
|
+
optional: true,
|
|
802
|
+
},
|
|
803
|
+
UserPreferencesShowEmailToGuestUsers: {
|
|
804
|
+
type: "boolean",
|
|
805
|
+
label: "Show Email To Guest Users",
|
|
806
|
+
description:
|
|
807
|
+
"Indicates the visibility of the email address field in the user's contact information.",
|
|
808
|
+
optional: true,
|
|
809
|
+
},
|
|
810
|
+
UserPreferencesShowFaxToExternalUsers: {
|
|
811
|
+
type: "boolean",
|
|
812
|
+
label: "Show Fax To External Users",
|
|
813
|
+
description:
|
|
814
|
+
"Indicates the visibility of the fax number field in the user's contact information.",
|
|
815
|
+
optional: true,
|
|
816
|
+
},
|
|
817
|
+
UserPreferencesShowFaxToGuestUsers: {
|
|
818
|
+
type: "boolean",
|
|
819
|
+
label: "Show Fax To Guest Users",
|
|
820
|
+
description:
|
|
821
|
+
"Indicates the visibility of the fax number field in the user's contact information.",
|
|
822
|
+
optional: true,
|
|
823
|
+
},
|
|
824
|
+
UserPreferencesShowManagerToExternalUsers: {
|
|
825
|
+
type: "boolean",
|
|
826
|
+
label: "Show Manager To External Users",
|
|
827
|
+
description:
|
|
828
|
+
"Indicates the visibility of the manager field in the user's contact information.",
|
|
829
|
+
optional: true,
|
|
830
|
+
},
|
|
831
|
+
UserPreferencesShowManagerToGuestUsers: {
|
|
832
|
+
type: "boolean",
|
|
833
|
+
label: "Show Manager To Guest Users",
|
|
834
|
+
description:
|
|
835
|
+
"Indicates the visibility of the manager field in the user's contact information..",
|
|
836
|
+
optional: true,
|
|
837
|
+
},
|
|
838
|
+
UserPreferencesShowMobilePhoneToExternalUsers: {
|
|
839
|
+
type: "boolean",
|
|
840
|
+
label: "Show Mobile Phone To External Users",
|
|
841
|
+
description:
|
|
842
|
+
"Indicates the visibility of the mobile device number field in the user's contact information.",
|
|
843
|
+
optional: true,
|
|
844
|
+
},
|
|
845
|
+
UserPreferencesShowMobilePhoneToGuestUsers: {
|
|
846
|
+
type: "boolean",
|
|
847
|
+
label: "Show Mobile Phone To Guest Users",
|
|
848
|
+
description:
|
|
849
|
+
"Indicates the visibility of the mobile phone field in the user's contact information.",
|
|
850
|
+
optional: true,
|
|
851
|
+
},
|
|
852
|
+
UserPreferencesShowPostalCodeToExternalUsers: {
|
|
853
|
+
type: "boolean",
|
|
854
|
+
label: "Show Postal Code To External Users",
|
|
855
|
+
description:
|
|
856
|
+
"Indicates the visibility of the postal or ZIP code field in the user's contact information.",
|
|
857
|
+
optional: true,
|
|
858
|
+
},
|
|
859
|
+
UserPreferencesShowPostalCodeToGuestUsers: {
|
|
860
|
+
type: "boolean",
|
|
861
|
+
label: "Show Postal Code To Guest Users",
|
|
862
|
+
description:
|
|
863
|
+
"Indicates the visibility of the postal or ZIP code field in the user's contact information.",
|
|
864
|
+
optional: true,
|
|
865
|
+
},
|
|
866
|
+
UserPreferencesShowProfilePicToGuestUsers: {
|
|
867
|
+
type: "boolean",
|
|
868
|
+
label: "Show Profile Pic To Guest Users",
|
|
869
|
+
description:
|
|
870
|
+
"Indicates the visibility of the user's profile photo.",
|
|
871
|
+
optional: true,
|
|
872
|
+
},
|
|
873
|
+
UserPreferencesShowStateToExternalUsers: {
|
|
874
|
+
type: "boolean",
|
|
875
|
+
label: "Show State To External Users",
|
|
876
|
+
description:
|
|
877
|
+
"Indicates the visibility of the state field in the user's contact information.",
|
|
878
|
+
optional: true,
|
|
879
|
+
},
|
|
880
|
+
UserPreferencesShowStateToGuestUsers: {
|
|
881
|
+
type: "boolean",
|
|
882
|
+
label: "Show State To Guest Users",
|
|
883
|
+
description:
|
|
884
|
+
"Indicates the visibility of the state field in the user's contact information.",
|
|
885
|
+
optional: true,
|
|
886
|
+
},
|
|
887
|
+
UserPreferencesShowStreetAddressToExternalUsers: {
|
|
888
|
+
type: "boolean",
|
|
889
|
+
label: "Show Street Address To External Users",
|
|
890
|
+
description:
|
|
891
|
+
"Indicates the visibility of the street address field in the user's contact information.",
|
|
892
|
+
optional: true,
|
|
893
|
+
},
|
|
894
|
+
UserPreferencesShowStreetAddressToGuestUsers: {
|
|
895
|
+
type: "boolean",
|
|
896
|
+
label: "Show Street Address To Guest Users",
|
|
897
|
+
description:
|
|
898
|
+
"Indicates the visibility of the street address field in the user's contact information.",
|
|
899
|
+
optional: true,
|
|
900
|
+
},
|
|
901
|
+
UserPreferencesShowTitleToExternalUsers: {
|
|
902
|
+
type: "boolean",
|
|
903
|
+
label: "Show Title To External Users",
|
|
904
|
+
description:
|
|
905
|
+
"Indicates the visibility of the business title field in the user's contact information.",
|
|
906
|
+
optional: true,
|
|
907
|
+
},
|
|
908
|
+
UserPreferencesShowTitleToGuestUsers: {
|
|
909
|
+
type: "boolean",
|
|
910
|
+
label: "Show Title To Guest Users",
|
|
911
|
+
description:
|
|
912
|
+
"Indicates the visibility of the business title field in the user's contact information.",
|
|
913
|
+
optional: true,
|
|
914
|
+
},
|
|
915
|
+
UserPreferencesShowWorkPhoneToExternalUsers: {
|
|
916
|
+
type: "boolean",
|
|
917
|
+
label: "Show Work Phone To External Users",
|
|
918
|
+
description:
|
|
919
|
+
"Indicates the visibility of the work phone number field in the user's contact information.",
|
|
920
|
+
optional: true,
|
|
921
|
+
},
|
|
922
|
+
UserPreferencesShowWorkPhoneToGuestUsers: {
|
|
923
|
+
type: "boolean",
|
|
924
|
+
label: "Show Work Phone To Guest Users",
|
|
925
|
+
description:
|
|
926
|
+
"Indicates the visibility of the work phone field in the user's contact information.",
|
|
927
|
+
optional: true,
|
|
928
|
+
},
|
|
929
|
+
UserPreferencesSortFeedByComment: {
|
|
930
|
+
type: "boolean",
|
|
931
|
+
label: "Sort Feed By Comment",
|
|
932
|
+
description:
|
|
933
|
+
"Specifies the data value used in sorting a user's feed. When true, the feed is sorted by most recent comment activity. When false, the feed is sorted by post date.",
|
|
934
|
+
optional: true,
|
|
935
|
+
},
|
|
936
|
+
UserPreferencesSuppressEventSFXReminders: {
|
|
937
|
+
type: "boolean",
|
|
938
|
+
label: "Suppress Event SFX Reminders",
|
|
939
|
+
description:
|
|
940
|
+
"When true, event reminders don't appear. Corresponds to the Show event reminders in Lightning Experience checkbox on the Activity Reminders page in the user interface.",
|
|
941
|
+
optional: true,
|
|
942
|
+
},
|
|
943
|
+
UserPreferencesSuppressTaskSFXReminders: {
|
|
944
|
+
type: "boolean",
|
|
945
|
+
label: "Suppress Task SFX Reminders",
|
|
946
|
+
description:
|
|
947
|
+
"When true, task reminders don't appear. Corresponds to the `Show task reminders in Lightning Experience.` checkbox on the Activity Reminders page in the user interface.",
|
|
948
|
+
optional: true,
|
|
949
|
+
},
|
|
950
|
+
UserPreferencesTaskRemindersCheckboxDefault: {
|
|
951
|
+
type: "boolean",
|
|
952
|
+
label: "Task Reminders Checkbox Default",
|
|
953
|
+
description:
|
|
954
|
+
"When true, a reminder popup is automatically set on the user's tasks. Corresponds to the `By default, set reminder on Tasks to...` checkbox on the Reminders page in the user interface.",
|
|
955
|
+
optional: true,
|
|
956
|
+
},
|
|
957
|
+
UserPreferencesUserDebugModePref: {
|
|
958
|
+
type: "boolean",
|
|
959
|
+
label: "User Debug Mode Pref",
|
|
960
|
+
description:
|
|
961
|
+
"When true, the Lightning Component framework executes in debug mode for the user. Corresponds to the `Debug Mode` checkbox on the Advanced User Details page of personal settings in the user interface.",
|
|
962
|
+
optional: true,
|
|
963
|
+
},
|
|
964
|
+
},
|
|
965
|
+
};
|