@jsforce/jsforce-node 0.0.1 → 3.0.0-next.2
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/LICENSE +22 -0
- package/README.md +54 -0
- package/index.d.ts +4 -0
- package/index.js +1 -0
- package/lib/VERSION.d.ts +2 -0
- package/lib/VERSION.js +3 -0
- package/lib/api/analytics/types.d.ts +509 -0
- package/lib/api/analytics/types.js +2 -0
- package/lib/api/analytics.d.ts +163 -0
- package/lib/api/analytics.js +342 -0
- package/lib/api/apex.d.ts +44 -0
- package/lib/api/apex.js +86 -0
- package/lib/api/bulk.d.ts +253 -0
- package/lib/api/bulk.js +678 -0
- package/lib/api/bulk2.d.ts +324 -0
- package/lib/api/bulk2.js +800 -0
- package/lib/api/chatter.d.ts +133 -0
- package/lib/api/chatter.js +248 -0
- package/lib/api/metadata/schema.d.ts +16117 -0
- package/lib/api/metadata/schema.js +9094 -0
- package/lib/api/metadata.d.ts +189 -0
- package/lib/api/metadata.js +406 -0
- package/lib/api/soap/schema.d.ts +3167 -0
- package/lib/api/soap/schema.js +1787 -0
- package/lib/api/soap.d.ts +76 -0
- package/lib/api/soap.js +155 -0
- package/lib/api/streaming/extension.d.ts +94 -0
- package/lib/api/streaming/extension.js +151 -0
- package/lib/api/streaming.d.ts +160 -0
- package/lib/api/streaming.js +252 -0
- package/lib/api/tooling.d.ts +284 -0
- package/lib/api/tooling.js +202 -0
- package/lib/api/wsdl/wsdl2schema.d.ts +1 -0
- package/lib/api/wsdl/wsdl2schema.js +354 -0
- package/lib/browser/canvas.d.ts +12 -0
- package/lib/browser/canvas.js +77 -0
- package/lib/browser/client.d.ts +82 -0
- package/lib/browser/client.js +244 -0
- package/lib/browser/jsonp.d.ts +12 -0
- package/lib/browser/jsonp.js +69 -0
- package/lib/browser/registry.d.ts +3 -0
- package/lib/browser/registry.js +5 -0
- package/lib/browser/request.d.ts +10 -0
- package/lib/browser/request.js +202 -0
- package/lib/cache.d.ts +74 -0
- package/lib/cache.js +159 -0
- package/lib/connection.d.ts +356 -0
- package/lib/connection.js +1153 -0
- package/lib/core.d.ts +17 -0
- package/lib/core.js +55 -0
- package/lib/csv.d.ts +23 -0
- package/lib/csv.js +35 -0
- package/lib/date.d.ts +82 -0
- package/lib/date.js +201 -0
- package/lib/http-api.d.ts +75 -0
- package/lib/http-api.js +295 -0
- package/lib/index.d.ts +13 -0
- package/lib/index.js +32 -0
- package/lib/jsforce.d.ts +26 -0
- package/lib/jsforce.js +67 -0
- package/lib/jwtOAuth2.d.ts +8 -0
- package/lib/jwtOAuth2.js +23 -0
- package/lib/oauth2.d.ts +92 -0
- package/lib/oauth2.js +245 -0
- package/lib/process.d.ts +157 -0
- package/lib/process.js +143 -0
- package/lib/query.d.ts +341 -0
- package/lib/query.js +817 -0
- package/lib/quick-action.d.ts +44 -0
- package/lib/quick-action.js +46 -0
- package/lib/record-reference.d.ts +46 -0
- package/lib/record-reference.js +65 -0
- package/lib/record-stream.d.ts +83 -0
- package/lib/record-stream.js +233 -0
- package/lib/registry/base.d.ts +43 -0
- package/lib/registry/base.js +96 -0
- package/lib/registry/empty.d.ts +7 -0
- package/lib/registry/empty.js +13 -0
- package/lib/registry/file.d.ts +11 -0
- package/lib/registry/file.js +51 -0
- package/lib/registry/index.d.ts +8 -0
- package/lib/registry/index.js +21 -0
- package/lib/registry/sfdx.d.ts +56 -0
- package/lib/registry/sfdx.js +133 -0
- package/lib/registry/types.d.ts +47 -0
- package/lib/registry/types.js +2 -0
- package/lib/request-helper.d.ts +23 -0
- package/lib/request-helper.js +102 -0
- package/lib/request.d.ts +11 -0
- package/lib/request.js +75 -0
- package/lib/session-refresh-delegate.d.ts +31 -0
- package/lib/session-refresh-delegate.js +69 -0
- package/lib/soap.d.ts +60 -0
- package/lib/soap.js +257 -0
- package/lib/sobject.d.ts +258 -0
- package/lib/sobject.js +376 -0
- package/lib/soql-builder.d.ts +25 -0
- package/lib/soql-builder.js +226 -0
- package/lib/transport.d.ts +63 -0
- package/lib/transport.js +175 -0
- package/lib/types/common.d.ts +560 -0
- package/lib/types/common.js +2 -0
- package/lib/types/index.d.ts +7 -0
- package/lib/types/index.js +23 -0
- package/lib/types/projection.d.ts +26 -0
- package/lib/types/projection.js +2 -0
- package/lib/types/record.d.ts +44 -0
- package/lib/types/record.js +2 -0
- package/lib/types/schema.d.ts +50 -0
- package/lib/types/schema.js +2 -0
- package/lib/types/soap.d.ts +43 -0
- package/lib/types/soap.js +2 -0
- package/lib/types/standard-schema.d.ts +16199 -0
- package/lib/types/standard-schema.js +2 -0
- package/lib/types/util.d.ts +7 -0
- package/lib/types/util.js +2 -0
- package/lib/util/formatter.d.ts +8 -0
- package/lib/util/formatter.js +24 -0
- package/lib/util/function.d.ts +32 -0
- package/lib/util/function.js +52 -0
- package/lib/util/get-body-size.d.ts +4 -0
- package/lib/util/get-body-size.js +39 -0
- package/lib/util/logger.d.ts +29 -0
- package/lib/util/logger.js +102 -0
- package/lib/util/promise.d.ts +19 -0
- package/lib/util/promise.js +25 -0
- package/lib/util/stream.d.ts +12 -0
- package/lib/util/stream.js +88 -0
- package/package.json +262 -6
- package/typings/faye/index.d.ts +16 -0
- package/typings/index.d.ts +1 -0
|
@@ -0,0 +1,3167 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is generated from WSDL file by wsdl2schema.ts.
|
|
3
|
+
* Do not modify directly.
|
|
4
|
+
* To generate the file, run "ts-node path/to/wsdl2schema.ts path/to/wsdl.xml path/to/schema.ts"
|
|
5
|
+
*/
|
|
6
|
+
export declare const ApiSchemas: {
|
|
7
|
+
readonly sObject: {
|
|
8
|
+
readonly type: "sObject";
|
|
9
|
+
readonly props: {
|
|
10
|
+
readonly type: "string";
|
|
11
|
+
readonly fieldsToNull: readonly ["?", "string"];
|
|
12
|
+
readonly Id: "?string";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
readonly address: {
|
|
16
|
+
readonly type: "address";
|
|
17
|
+
readonly props: {
|
|
18
|
+
readonly city: "?string";
|
|
19
|
+
readonly country: "?string";
|
|
20
|
+
readonly countryCode: "?string";
|
|
21
|
+
readonly geocodeAccuracy: "?string";
|
|
22
|
+
readonly postalCode: "?string";
|
|
23
|
+
readonly state: "?string";
|
|
24
|
+
readonly stateCode: "?string";
|
|
25
|
+
readonly street: "?string";
|
|
26
|
+
};
|
|
27
|
+
readonly extends: "location";
|
|
28
|
+
};
|
|
29
|
+
readonly location: {
|
|
30
|
+
readonly type: "location";
|
|
31
|
+
readonly props: {
|
|
32
|
+
readonly latitude: "?number";
|
|
33
|
+
readonly longitude: "?number";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
readonly QueryResult: {
|
|
37
|
+
readonly type: "QueryResult";
|
|
38
|
+
readonly props: {
|
|
39
|
+
readonly done: "boolean";
|
|
40
|
+
readonly queryLocator: "?string";
|
|
41
|
+
readonly records: readonly ["?", "sObject"];
|
|
42
|
+
readonly size: "number";
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
readonly SearchResult: {
|
|
46
|
+
readonly type: "SearchResult";
|
|
47
|
+
readonly props: {
|
|
48
|
+
readonly queryId: "string";
|
|
49
|
+
readonly searchRecords: readonly ["SearchRecord"];
|
|
50
|
+
readonly searchResultsMetadata: "?SearchResultsMetadata";
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
readonly SearchRecord: {
|
|
54
|
+
readonly type: "SearchRecord";
|
|
55
|
+
readonly props: {
|
|
56
|
+
readonly record: "sObject";
|
|
57
|
+
readonly searchRecordMetadata: "?SearchRecordMetadata";
|
|
58
|
+
readonly snippet: "?SearchSnippet";
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
readonly SearchRecordMetadata: {
|
|
62
|
+
readonly type: "SearchRecordMetadata";
|
|
63
|
+
readonly props: {
|
|
64
|
+
readonly searchPromoted: "boolean";
|
|
65
|
+
readonly spellCorrected: "boolean";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
readonly SearchSnippet: {
|
|
69
|
+
readonly type: "SearchSnippet";
|
|
70
|
+
readonly props: {
|
|
71
|
+
readonly text: "?string";
|
|
72
|
+
readonly wholeFields: readonly ["NameValuePair"];
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
readonly SearchResultsMetadata: {
|
|
76
|
+
readonly type: "SearchResultsMetadata";
|
|
77
|
+
readonly props: {
|
|
78
|
+
readonly entityLabelMetadata: readonly ["LabelsSearchMetadata"];
|
|
79
|
+
readonly entityMetadata: readonly ["EntitySearchMetadata"];
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
readonly LabelsSearchMetadata: {
|
|
83
|
+
readonly type: "LabelsSearchMetadata";
|
|
84
|
+
readonly props: {
|
|
85
|
+
readonly entityFieldLabels: readonly ["NameValuePair"];
|
|
86
|
+
readonly entityName: "string";
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
readonly EntitySearchMetadata: {
|
|
90
|
+
readonly type: "EntitySearchMetadata";
|
|
91
|
+
readonly props: {
|
|
92
|
+
readonly entityName: "string";
|
|
93
|
+
readonly errorMetadata: "?EntityErrorMetadata";
|
|
94
|
+
readonly fieldMetadata: readonly ["FieldLevelSearchMetadata"];
|
|
95
|
+
readonly intentQueryMetadata: "?EntityIntentQueryMetadata";
|
|
96
|
+
readonly searchPromotionMetadata: "?EntitySearchPromotionMetadata";
|
|
97
|
+
readonly spellCorrectionMetadata: "?EntitySpellCorrectionMetadata";
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
readonly FieldLevelSearchMetadata: {
|
|
101
|
+
readonly type: "FieldLevelSearchMetadata";
|
|
102
|
+
readonly props: {
|
|
103
|
+
readonly label: "?string";
|
|
104
|
+
readonly name: "string";
|
|
105
|
+
readonly type: "?string";
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
readonly EntitySpellCorrectionMetadata: {
|
|
109
|
+
readonly type: "EntitySpellCorrectionMetadata";
|
|
110
|
+
readonly props: {
|
|
111
|
+
readonly correctedQuery: "string";
|
|
112
|
+
readonly hasNonCorrectedResults: "boolean";
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
readonly EntitySearchPromotionMetadata: {
|
|
116
|
+
readonly type: "EntitySearchPromotionMetadata";
|
|
117
|
+
readonly props: {
|
|
118
|
+
readonly promotedResultCount: "number";
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
readonly EntityIntentQueryMetadata: {
|
|
122
|
+
readonly type: "EntityIntentQueryMetadata";
|
|
123
|
+
readonly props: {
|
|
124
|
+
readonly intentQuery: "boolean";
|
|
125
|
+
readonly message: "?string";
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
readonly EntityErrorMetadata: {
|
|
129
|
+
readonly type: "EntityErrorMetadata";
|
|
130
|
+
readonly props: {
|
|
131
|
+
readonly errorCode: "?string";
|
|
132
|
+
readonly message: "?string";
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
readonly RelationshipReferenceTo: {
|
|
136
|
+
readonly type: "RelationshipReferenceTo";
|
|
137
|
+
readonly props: {
|
|
138
|
+
readonly referenceTo: readonly ["string"];
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
readonly RecordTypesSupported: {
|
|
142
|
+
readonly type: "RecordTypesSupported";
|
|
143
|
+
readonly props: {
|
|
144
|
+
readonly recordTypeInfos: readonly ["RecordTypeInfo"];
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
readonly JunctionIdListNames: {
|
|
148
|
+
readonly type: "JunctionIdListNames";
|
|
149
|
+
readonly props: {
|
|
150
|
+
readonly names: readonly ["string"];
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
readonly SearchLayoutButtonsDisplayed: {
|
|
154
|
+
readonly type: "SearchLayoutButtonsDisplayed";
|
|
155
|
+
readonly props: {
|
|
156
|
+
readonly applicable: "boolean";
|
|
157
|
+
readonly buttons: readonly ["SearchLayoutButton"];
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
readonly SearchLayoutButton: {
|
|
161
|
+
readonly type: "SearchLayoutButton";
|
|
162
|
+
readonly props: {
|
|
163
|
+
readonly apiName: "string";
|
|
164
|
+
readonly label: "string";
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
readonly SearchLayoutFieldsDisplayed: {
|
|
168
|
+
readonly type: "SearchLayoutFieldsDisplayed";
|
|
169
|
+
readonly props: {
|
|
170
|
+
readonly applicable: "boolean";
|
|
171
|
+
readonly fields: readonly ["SearchLayoutField"];
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
readonly SearchLayoutField: {
|
|
175
|
+
readonly type: "SearchLayoutField";
|
|
176
|
+
readonly props: {
|
|
177
|
+
readonly apiName: "string";
|
|
178
|
+
readonly label: "string";
|
|
179
|
+
readonly sortable: "boolean";
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
readonly NameValuePair: {
|
|
183
|
+
readonly type: "NameValuePair";
|
|
184
|
+
readonly props: {
|
|
185
|
+
readonly name: "string";
|
|
186
|
+
readonly value: "string";
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
readonly NameObjectValuePair: {
|
|
190
|
+
readonly type: "NameObjectValuePair";
|
|
191
|
+
readonly props: {
|
|
192
|
+
readonly isVisible: "?boolean";
|
|
193
|
+
readonly name: "string";
|
|
194
|
+
readonly value: readonly ["any"];
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
readonly GetUpdatedResult: {
|
|
198
|
+
readonly type: "GetUpdatedResult";
|
|
199
|
+
readonly props: {
|
|
200
|
+
readonly ids: readonly ["string"];
|
|
201
|
+
readonly latestDateCovered: "string";
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
readonly GetDeletedResult: {
|
|
205
|
+
readonly type: "GetDeletedResult";
|
|
206
|
+
readonly props: {
|
|
207
|
+
readonly deletedRecords: readonly ["DeletedRecord"];
|
|
208
|
+
readonly earliestDateAvailable: "string";
|
|
209
|
+
readonly latestDateCovered: "string";
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
readonly DeletedRecord: {
|
|
213
|
+
readonly type: "DeletedRecord";
|
|
214
|
+
readonly props: {
|
|
215
|
+
readonly deletedDate: "string";
|
|
216
|
+
readonly id: "string";
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
readonly GetServerTimestampResult: {
|
|
220
|
+
readonly type: "GetServerTimestampResult";
|
|
221
|
+
readonly props: {
|
|
222
|
+
readonly timestamp: "string";
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
readonly InvalidateSessionsResult: {
|
|
226
|
+
readonly type: "InvalidateSessionsResult";
|
|
227
|
+
readonly props: {
|
|
228
|
+
readonly errors: readonly ["Error"];
|
|
229
|
+
readonly success: "boolean";
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
readonly SetPasswordResult: {
|
|
233
|
+
readonly type: "SetPasswordResult";
|
|
234
|
+
readonly props: {};
|
|
235
|
+
};
|
|
236
|
+
readonly ChangeOwnPasswordResult: {
|
|
237
|
+
readonly type: "ChangeOwnPasswordResult";
|
|
238
|
+
readonly props: {};
|
|
239
|
+
};
|
|
240
|
+
readonly ResetPasswordResult: {
|
|
241
|
+
readonly type: "ResetPasswordResult";
|
|
242
|
+
readonly props: {
|
|
243
|
+
readonly password: "string";
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
readonly GetUserInfoResult: {
|
|
247
|
+
readonly type: "GetUserInfoResult";
|
|
248
|
+
readonly props: {
|
|
249
|
+
readonly accessibilityMode: "boolean";
|
|
250
|
+
readonly chatterExternal: "boolean";
|
|
251
|
+
readonly currencySymbol: "?string";
|
|
252
|
+
readonly orgAttachmentFileSizeLimit: "number";
|
|
253
|
+
readonly orgDefaultCurrencyIsoCode: "?string";
|
|
254
|
+
readonly orgDefaultCurrencyLocale: "?string";
|
|
255
|
+
readonly orgDisallowHtmlAttachments: "boolean";
|
|
256
|
+
readonly orgHasPersonAccounts: "boolean";
|
|
257
|
+
readonly organizationId: "string";
|
|
258
|
+
readonly organizationMultiCurrency: "boolean";
|
|
259
|
+
readonly organizationName: "string";
|
|
260
|
+
readonly profileId: "string";
|
|
261
|
+
readonly roleId: "?string";
|
|
262
|
+
readonly sessionSecondsValid: "number";
|
|
263
|
+
readonly userDefaultCurrencyIsoCode: "?string";
|
|
264
|
+
readonly userEmail: "string";
|
|
265
|
+
readonly userFullName: "string";
|
|
266
|
+
readonly userId: "string";
|
|
267
|
+
readonly userLanguage: "string";
|
|
268
|
+
readonly userLocale: "string";
|
|
269
|
+
readonly userName: "string";
|
|
270
|
+
readonly userTimeZone: "string";
|
|
271
|
+
readonly userType: "string";
|
|
272
|
+
readonly userUiSkin: "string";
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
readonly LoginResult: {
|
|
276
|
+
readonly type: "LoginResult";
|
|
277
|
+
readonly props: {
|
|
278
|
+
readonly metadataServerUrl: "?string";
|
|
279
|
+
readonly passwordExpired: "boolean";
|
|
280
|
+
readonly sandbox: "boolean";
|
|
281
|
+
readonly serverUrl: "?string";
|
|
282
|
+
readonly sessionId: "?string";
|
|
283
|
+
readonly userId: "?string";
|
|
284
|
+
readonly userInfo: "?GetUserInfoResult";
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
readonly ExtendedErrorDetails: {
|
|
288
|
+
readonly type: "ExtendedErrorDetails";
|
|
289
|
+
readonly props: {
|
|
290
|
+
readonly extendedErrorCode: "string";
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
readonly Error: {
|
|
294
|
+
readonly type: "Error";
|
|
295
|
+
readonly props: {
|
|
296
|
+
readonly extendedErrorDetails: readonly ["?", "ExtendedErrorDetails"];
|
|
297
|
+
readonly fields: readonly ["?", "string"];
|
|
298
|
+
readonly message: "string";
|
|
299
|
+
readonly statusCode: "string";
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
readonly SendEmailError: {
|
|
303
|
+
readonly type: "SendEmailError";
|
|
304
|
+
readonly props: {
|
|
305
|
+
readonly fields: readonly ["?", "string"];
|
|
306
|
+
readonly message: "string";
|
|
307
|
+
readonly statusCode: "string";
|
|
308
|
+
readonly targetObjectId: "?string";
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
readonly SaveResult: {
|
|
312
|
+
readonly type: "SaveResult";
|
|
313
|
+
readonly props: {
|
|
314
|
+
readonly errors: readonly ["Error"];
|
|
315
|
+
readonly id: "?string";
|
|
316
|
+
readonly success: "boolean";
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
readonly RenderEmailTemplateError: {
|
|
320
|
+
readonly type: "RenderEmailTemplateError";
|
|
321
|
+
readonly props: {
|
|
322
|
+
readonly fieldName: "string";
|
|
323
|
+
readonly message: "string";
|
|
324
|
+
readonly offset: "number";
|
|
325
|
+
readonly statusCode: "string";
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
readonly UpsertResult: {
|
|
329
|
+
readonly type: "UpsertResult";
|
|
330
|
+
readonly props: {
|
|
331
|
+
readonly created: "boolean";
|
|
332
|
+
readonly errors: readonly ["Error"];
|
|
333
|
+
readonly id: "?string";
|
|
334
|
+
readonly success: "boolean";
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
readonly PerformQuickActionResult: {
|
|
338
|
+
readonly type: "PerformQuickActionResult";
|
|
339
|
+
readonly props: {
|
|
340
|
+
readonly contextId: "?string";
|
|
341
|
+
readonly created: "boolean";
|
|
342
|
+
readonly errors: readonly ["Error"];
|
|
343
|
+
readonly feedItemIds: readonly ["?", "string"];
|
|
344
|
+
readonly ids: readonly ["?", "string"];
|
|
345
|
+
readonly success: "boolean";
|
|
346
|
+
readonly successMessage: "?string";
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
readonly QuickActionTemplateResult: {
|
|
350
|
+
readonly type: "QuickActionTemplateResult";
|
|
351
|
+
readonly props: {
|
|
352
|
+
readonly contextId: "?string";
|
|
353
|
+
readonly defaultValueFormulas: "?sObject";
|
|
354
|
+
readonly defaultValues: "?sObject";
|
|
355
|
+
readonly errors: readonly ["Error"];
|
|
356
|
+
readonly success: "boolean";
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
readonly MergeRequest: {
|
|
360
|
+
readonly type: "MergeRequest";
|
|
361
|
+
readonly props: {
|
|
362
|
+
readonly additionalInformationMap: readonly ["AdditionalInformationMap"];
|
|
363
|
+
readonly masterRecord: "sObject";
|
|
364
|
+
readonly recordToMergeIds: readonly ["string"];
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
readonly MergeResult: {
|
|
368
|
+
readonly type: "MergeResult";
|
|
369
|
+
readonly props: {
|
|
370
|
+
readonly errors: readonly ["Error"];
|
|
371
|
+
readonly id: "?string";
|
|
372
|
+
readonly mergedRecordIds: readonly ["string"];
|
|
373
|
+
readonly success: "boolean";
|
|
374
|
+
readonly updatedRelatedIds: readonly ["string"];
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
readonly ProcessRequest: {
|
|
378
|
+
readonly type: "ProcessRequest";
|
|
379
|
+
readonly props: {
|
|
380
|
+
readonly comments: "?string";
|
|
381
|
+
readonly nextApproverIds: readonly ["?", "string"];
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
readonly ProcessSubmitRequest: {
|
|
385
|
+
readonly type: "ProcessSubmitRequest";
|
|
386
|
+
readonly props: {
|
|
387
|
+
readonly objectId: "string";
|
|
388
|
+
readonly submitterId: "?string";
|
|
389
|
+
readonly processDefinitionNameOrId: "?string";
|
|
390
|
+
readonly skipEntryCriteria: "?boolean";
|
|
391
|
+
};
|
|
392
|
+
readonly extends: "ProcessRequest";
|
|
393
|
+
};
|
|
394
|
+
readonly ProcessWorkitemRequest: {
|
|
395
|
+
readonly type: "ProcessWorkitemRequest";
|
|
396
|
+
readonly props: {
|
|
397
|
+
readonly action: "string";
|
|
398
|
+
readonly workitemId: "string";
|
|
399
|
+
};
|
|
400
|
+
readonly extends: "ProcessRequest";
|
|
401
|
+
};
|
|
402
|
+
readonly PerformQuickActionRequest: {
|
|
403
|
+
readonly type: "PerformQuickActionRequest";
|
|
404
|
+
readonly props: {
|
|
405
|
+
readonly contextId: "?string";
|
|
406
|
+
readonly quickActionName: "string";
|
|
407
|
+
readonly records: readonly ["?", "sObject"];
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
readonly DescribeAvailableQuickActionResult: {
|
|
411
|
+
readonly type: "DescribeAvailableQuickActionResult";
|
|
412
|
+
readonly props: {
|
|
413
|
+
readonly actionEnumOrId: "string";
|
|
414
|
+
readonly label: "string";
|
|
415
|
+
readonly name: "string";
|
|
416
|
+
readonly type: "string";
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
readonly DescribeQuickActionResult: {
|
|
420
|
+
readonly type: "DescribeQuickActionResult";
|
|
421
|
+
readonly props: {
|
|
422
|
+
readonly accessLevelRequired: "?string";
|
|
423
|
+
readonly actionEnumOrId: "string";
|
|
424
|
+
readonly canvasApplicationId: "?string";
|
|
425
|
+
readonly canvasApplicationName: "?string";
|
|
426
|
+
readonly colors: readonly ["DescribeColor"];
|
|
427
|
+
readonly contextSobjectType: "?string";
|
|
428
|
+
readonly defaultValues: readonly ["?", "DescribeQuickActionDefaultValue"];
|
|
429
|
+
readonly flowDevName: "?string";
|
|
430
|
+
readonly flowRecordIdVar: "?string";
|
|
431
|
+
readonly height: "?number";
|
|
432
|
+
readonly iconName: "?string";
|
|
433
|
+
readonly iconUrl: "?string";
|
|
434
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
435
|
+
readonly label: "string";
|
|
436
|
+
readonly layout: "?DescribeLayoutSection";
|
|
437
|
+
readonly lightningComponentBundleId: "?string";
|
|
438
|
+
readonly lightningComponentBundleName: "?string";
|
|
439
|
+
readonly lightningComponentQualifiedName: "?string";
|
|
440
|
+
readonly miniIconUrl: "?string";
|
|
441
|
+
readonly mobileExtensionDisplayMode: "?string";
|
|
442
|
+
readonly mobileExtensionId: "?string";
|
|
443
|
+
readonly name: "string";
|
|
444
|
+
readonly showQuickActionLcHeader: "boolean";
|
|
445
|
+
readonly showQuickActionVfHeader: "boolean";
|
|
446
|
+
readonly targetParentField: "?string";
|
|
447
|
+
readonly targetRecordTypeId: "?string";
|
|
448
|
+
readonly targetSobjectType: "?string";
|
|
449
|
+
readonly type: "string";
|
|
450
|
+
readonly visualforcePageName: "?string";
|
|
451
|
+
readonly visualforcePageUrl: "?string";
|
|
452
|
+
readonly width: "?number";
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
readonly DescribeQuickActionDefaultValue: {
|
|
456
|
+
readonly type: "DescribeQuickActionDefaultValue";
|
|
457
|
+
readonly props: {
|
|
458
|
+
readonly defaultValue: "?string";
|
|
459
|
+
readonly field: "string";
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
readonly DescribeVisualForceResult: {
|
|
463
|
+
readonly type: "DescribeVisualForceResult";
|
|
464
|
+
readonly props: {
|
|
465
|
+
readonly domain: "string";
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
readonly ProcessResult: {
|
|
469
|
+
readonly type: "ProcessResult";
|
|
470
|
+
readonly props: {
|
|
471
|
+
readonly actorIds: readonly ["string"];
|
|
472
|
+
readonly entityId: "?string";
|
|
473
|
+
readonly errors: readonly ["Error"];
|
|
474
|
+
readonly instanceId: "?string";
|
|
475
|
+
readonly instanceStatus: "?string";
|
|
476
|
+
readonly newWorkitemIds: readonly ["?", "string"];
|
|
477
|
+
readonly success: "boolean";
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
readonly DeleteResult: {
|
|
481
|
+
readonly type: "DeleteResult";
|
|
482
|
+
readonly props: {
|
|
483
|
+
readonly errors: readonly ["?", "Error"];
|
|
484
|
+
readonly id: "?string";
|
|
485
|
+
readonly success: "boolean";
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
readonly UndeleteResult: {
|
|
489
|
+
readonly type: "UndeleteResult";
|
|
490
|
+
readonly props: {
|
|
491
|
+
readonly errors: readonly ["Error"];
|
|
492
|
+
readonly id: "?string";
|
|
493
|
+
readonly success: "boolean";
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
readonly DeleteByExampleResult: {
|
|
497
|
+
readonly type: "DeleteByExampleResult";
|
|
498
|
+
readonly props: {
|
|
499
|
+
readonly entity: "?sObject";
|
|
500
|
+
readonly errors: readonly ["?", "Error"];
|
|
501
|
+
readonly rowCount: "number";
|
|
502
|
+
readonly success: "boolean";
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
readonly EmptyRecycleBinResult: {
|
|
506
|
+
readonly type: "EmptyRecycleBinResult";
|
|
507
|
+
readonly props: {
|
|
508
|
+
readonly errors: readonly ["Error"];
|
|
509
|
+
readonly id: "?string";
|
|
510
|
+
readonly success: "boolean";
|
|
511
|
+
};
|
|
512
|
+
};
|
|
513
|
+
readonly LeadConvert: {
|
|
514
|
+
readonly type: "LeadConvert";
|
|
515
|
+
readonly props: {
|
|
516
|
+
readonly accountId: "?string";
|
|
517
|
+
readonly accountRecord: "?sObject";
|
|
518
|
+
readonly bypassAccountDedupeCheck: "?boolean";
|
|
519
|
+
readonly bypassContactDedupeCheck: "?boolean";
|
|
520
|
+
readonly contactId: "?string";
|
|
521
|
+
readonly contactRecord: "?sObject";
|
|
522
|
+
readonly convertedStatus: "string";
|
|
523
|
+
readonly doNotCreateOpportunity: "boolean";
|
|
524
|
+
readonly leadId: "string";
|
|
525
|
+
readonly opportunityId: "?string";
|
|
526
|
+
readonly opportunityName: "?string";
|
|
527
|
+
readonly opportunityRecord: "?sObject";
|
|
528
|
+
readonly overwriteLeadSource: "boolean";
|
|
529
|
+
readonly ownerId: "?string";
|
|
530
|
+
readonly sendNotificationEmail: "boolean";
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
readonly LeadConvertResult: {
|
|
534
|
+
readonly type: "LeadConvertResult";
|
|
535
|
+
readonly props: {
|
|
536
|
+
readonly accountId: "?string";
|
|
537
|
+
readonly contactId: "?string";
|
|
538
|
+
readonly errors: readonly ["Error"];
|
|
539
|
+
readonly leadId: "?string";
|
|
540
|
+
readonly opportunityId: "?string";
|
|
541
|
+
readonly success: "boolean";
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
readonly DescribeSObjectResult: {
|
|
545
|
+
readonly type: "DescribeSObjectResult";
|
|
546
|
+
readonly props: {
|
|
547
|
+
readonly actionOverrides: readonly ["?", "ActionOverride"];
|
|
548
|
+
readonly activateable: "boolean";
|
|
549
|
+
readonly childRelationships: readonly ["ChildRelationship"];
|
|
550
|
+
readonly compactLayoutable: "boolean";
|
|
551
|
+
readonly createable: "boolean";
|
|
552
|
+
readonly custom: "boolean";
|
|
553
|
+
readonly customSetting: "boolean";
|
|
554
|
+
readonly dataTranslationEnabled: "?boolean";
|
|
555
|
+
readonly deepCloneable: "boolean";
|
|
556
|
+
readonly defaultImplementation: "?string";
|
|
557
|
+
readonly deletable: "boolean";
|
|
558
|
+
readonly deprecatedAndHidden: "boolean";
|
|
559
|
+
readonly feedEnabled: "boolean";
|
|
560
|
+
readonly fields: readonly ["?", "Field"];
|
|
561
|
+
readonly hasSubtypes: "boolean";
|
|
562
|
+
readonly idEnabled: "boolean";
|
|
563
|
+
readonly implementedBy: "?string";
|
|
564
|
+
readonly implementsInterfaces: "?string";
|
|
565
|
+
readonly isInterface: "boolean";
|
|
566
|
+
readonly isSubtype: "boolean";
|
|
567
|
+
readonly keyPrefix: "?string";
|
|
568
|
+
readonly label: "string";
|
|
569
|
+
readonly labelPlural: "string";
|
|
570
|
+
readonly layoutable: "boolean";
|
|
571
|
+
readonly mergeable: "boolean";
|
|
572
|
+
readonly mruEnabled: "boolean";
|
|
573
|
+
readonly name: "string";
|
|
574
|
+
readonly namedLayoutInfos: readonly ["NamedLayoutInfo"];
|
|
575
|
+
readonly networkScopeFieldName: "?string";
|
|
576
|
+
readonly queryable: "boolean";
|
|
577
|
+
readonly recordTypeInfos: readonly ["RecordTypeInfo"];
|
|
578
|
+
readonly replicateable: "boolean";
|
|
579
|
+
readonly retrieveable: "boolean";
|
|
580
|
+
readonly searchLayoutable: "?boolean";
|
|
581
|
+
readonly searchable: "boolean";
|
|
582
|
+
readonly supportedScopes: readonly ["?", "ScopeInfo"];
|
|
583
|
+
readonly triggerable: "?boolean";
|
|
584
|
+
readonly undeletable: "boolean";
|
|
585
|
+
readonly updateable: "boolean";
|
|
586
|
+
readonly urlDetail: "?string";
|
|
587
|
+
readonly urlEdit: "?string";
|
|
588
|
+
readonly urlNew: "?string";
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
readonly DescribeGlobalSObjectResult: {
|
|
592
|
+
readonly type: "DescribeGlobalSObjectResult";
|
|
593
|
+
readonly props: {
|
|
594
|
+
readonly activateable: "boolean";
|
|
595
|
+
readonly createable: "boolean";
|
|
596
|
+
readonly custom: "boolean";
|
|
597
|
+
readonly customSetting: "boolean";
|
|
598
|
+
readonly dataTranslationEnabled: "?boolean";
|
|
599
|
+
readonly deepCloneable: "boolean";
|
|
600
|
+
readonly deletable: "boolean";
|
|
601
|
+
readonly deprecatedAndHidden: "boolean";
|
|
602
|
+
readonly feedEnabled: "boolean";
|
|
603
|
+
readonly hasSubtypes: "boolean";
|
|
604
|
+
readonly idEnabled: "boolean";
|
|
605
|
+
readonly isInterface: "boolean";
|
|
606
|
+
readonly isSubtype: "boolean";
|
|
607
|
+
readonly keyPrefix: "?string";
|
|
608
|
+
readonly label: "string";
|
|
609
|
+
readonly labelPlural: "string";
|
|
610
|
+
readonly layoutable: "boolean";
|
|
611
|
+
readonly mergeable: "boolean";
|
|
612
|
+
readonly mruEnabled: "boolean";
|
|
613
|
+
readonly name: "string";
|
|
614
|
+
readonly queryable: "boolean";
|
|
615
|
+
readonly replicateable: "boolean";
|
|
616
|
+
readonly retrieveable: "boolean";
|
|
617
|
+
readonly searchable: "boolean";
|
|
618
|
+
readonly triggerable: "boolean";
|
|
619
|
+
readonly undeletable: "boolean";
|
|
620
|
+
readonly updateable: "boolean";
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
readonly ChildRelationship: {
|
|
624
|
+
readonly type: "ChildRelationship";
|
|
625
|
+
readonly props: {
|
|
626
|
+
readonly cascadeDelete: "boolean";
|
|
627
|
+
readonly childSObject: "string";
|
|
628
|
+
readonly deprecatedAndHidden: "boolean";
|
|
629
|
+
readonly field: "string";
|
|
630
|
+
readonly junctionIdListNames: readonly ["?", "string"];
|
|
631
|
+
readonly junctionReferenceTo: readonly ["?", "string"];
|
|
632
|
+
readonly relationshipName: "?string";
|
|
633
|
+
readonly restrictedDelete: "?boolean";
|
|
634
|
+
};
|
|
635
|
+
};
|
|
636
|
+
readonly DescribeGlobalResult: {
|
|
637
|
+
readonly type: "DescribeGlobalResult";
|
|
638
|
+
readonly props: {
|
|
639
|
+
readonly encoding: "?string";
|
|
640
|
+
readonly maxBatchSize: "number";
|
|
641
|
+
readonly sobjects: readonly ["DescribeGlobalSObjectResult"];
|
|
642
|
+
};
|
|
643
|
+
};
|
|
644
|
+
readonly DescribeGlobalTheme: {
|
|
645
|
+
readonly type: "DescribeGlobalTheme";
|
|
646
|
+
readonly props: {
|
|
647
|
+
readonly global: "DescribeGlobalResult";
|
|
648
|
+
readonly theme: "DescribeThemeResult";
|
|
649
|
+
};
|
|
650
|
+
};
|
|
651
|
+
readonly ScopeInfo: {
|
|
652
|
+
readonly type: "ScopeInfo";
|
|
653
|
+
readonly props: {
|
|
654
|
+
readonly label: "string";
|
|
655
|
+
readonly name: "string";
|
|
656
|
+
};
|
|
657
|
+
};
|
|
658
|
+
readonly StringList: {
|
|
659
|
+
readonly type: "StringList";
|
|
660
|
+
readonly props: {
|
|
661
|
+
readonly values: readonly ["string"];
|
|
662
|
+
};
|
|
663
|
+
};
|
|
664
|
+
readonly ChangeEventHeader: {
|
|
665
|
+
readonly type: "ChangeEventHeader";
|
|
666
|
+
readonly props: {
|
|
667
|
+
readonly entityName: "string";
|
|
668
|
+
readonly recordIds: readonly ["string"];
|
|
669
|
+
readonly commitTimestamp: "number";
|
|
670
|
+
readonly commitNumber: "number";
|
|
671
|
+
readonly commitUser: "string";
|
|
672
|
+
readonly diffFields: readonly ["string"];
|
|
673
|
+
readonly changeType: "string";
|
|
674
|
+
readonly changeOrigin: "string";
|
|
675
|
+
readonly transactionKey: "string";
|
|
676
|
+
readonly sequenceNumber: "number";
|
|
677
|
+
readonly nulledFields: readonly ["string"];
|
|
678
|
+
readonly changedFields: readonly ["string"];
|
|
679
|
+
};
|
|
680
|
+
};
|
|
681
|
+
readonly FilteredLookupInfo: {
|
|
682
|
+
readonly type: "FilteredLookupInfo";
|
|
683
|
+
readonly props: {
|
|
684
|
+
readonly controllingFields: readonly ["string"];
|
|
685
|
+
readonly dependent: "boolean";
|
|
686
|
+
readonly optionalFilter: "boolean";
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
readonly Field: {
|
|
690
|
+
readonly type: "Field";
|
|
691
|
+
readonly props: {
|
|
692
|
+
readonly aggregatable: "boolean";
|
|
693
|
+
readonly aiPredictionField: "boolean";
|
|
694
|
+
readonly autoNumber: "boolean";
|
|
695
|
+
readonly byteLength: "number";
|
|
696
|
+
readonly calculated: "boolean";
|
|
697
|
+
readonly calculatedFormula: "?string";
|
|
698
|
+
readonly cascadeDelete: "?boolean";
|
|
699
|
+
readonly caseSensitive: "boolean";
|
|
700
|
+
readonly compoundFieldName: "?string";
|
|
701
|
+
readonly controllerName: "?string";
|
|
702
|
+
readonly createable: "boolean";
|
|
703
|
+
readonly custom: "boolean";
|
|
704
|
+
readonly dataTranslationEnabled: "?boolean";
|
|
705
|
+
readonly defaultValue: "?any";
|
|
706
|
+
readonly defaultValueFormula: "?string";
|
|
707
|
+
readonly defaultedOnCreate: "boolean";
|
|
708
|
+
readonly dependentPicklist: "?boolean";
|
|
709
|
+
readonly deprecatedAndHidden: "boolean";
|
|
710
|
+
readonly digits: "number";
|
|
711
|
+
readonly displayLocationInDecimal: "?boolean";
|
|
712
|
+
readonly encrypted: "?boolean";
|
|
713
|
+
readonly externalId: "?boolean";
|
|
714
|
+
readonly extraTypeInfo: "?string";
|
|
715
|
+
readonly filterable: "boolean";
|
|
716
|
+
readonly filteredLookupInfo: "?FilteredLookupInfo";
|
|
717
|
+
readonly formulaTreatNullNumberAsZero: "?boolean";
|
|
718
|
+
readonly groupable: "boolean";
|
|
719
|
+
readonly highScaleNumber: "?boolean";
|
|
720
|
+
readonly htmlFormatted: "?boolean";
|
|
721
|
+
readonly idLookup: "boolean";
|
|
722
|
+
readonly inlineHelpText: "?string";
|
|
723
|
+
readonly label: "string";
|
|
724
|
+
readonly length: "number";
|
|
725
|
+
readonly mask: "?string";
|
|
726
|
+
readonly maskType: "?string";
|
|
727
|
+
readonly name: "string";
|
|
728
|
+
readonly nameField: "boolean";
|
|
729
|
+
readonly namePointing: "?boolean";
|
|
730
|
+
readonly nillable: "boolean";
|
|
731
|
+
readonly permissionable: "boolean";
|
|
732
|
+
readonly picklistValues: readonly ["?", "PicklistEntry"];
|
|
733
|
+
readonly polymorphicForeignKey: "boolean";
|
|
734
|
+
readonly precision: "number";
|
|
735
|
+
readonly queryByDistance: "boolean";
|
|
736
|
+
readonly referenceTargetField: "?string";
|
|
737
|
+
readonly referenceTo: readonly ["?", "string"];
|
|
738
|
+
readonly relationshipName: "?string";
|
|
739
|
+
readonly relationshipOrder: "?number";
|
|
740
|
+
readonly restrictedDelete: "?boolean";
|
|
741
|
+
readonly restrictedPicklist: "boolean";
|
|
742
|
+
readonly scale: "number";
|
|
743
|
+
readonly searchPrefilterable: "boolean";
|
|
744
|
+
readonly soapType: "string";
|
|
745
|
+
readonly sortable: "?boolean";
|
|
746
|
+
readonly type: "string";
|
|
747
|
+
readonly unique: "boolean";
|
|
748
|
+
readonly updateable: "boolean";
|
|
749
|
+
readonly writeRequiresMasterRead: "?boolean";
|
|
750
|
+
};
|
|
751
|
+
};
|
|
752
|
+
readonly PicklistEntry: {
|
|
753
|
+
readonly type: "PicklistEntry";
|
|
754
|
+
readonly props: {
|
|
755
|
+
readonly active: "boolean";
|
|
756
|
+
readonly defaultValue: "boolean";
|
|
757
|
+
readonly label: "?string";
|
|
758
|
+
readonly validFor: "?string";
|
|
759
|
+
readonly value: "string";
|
|
760
|
+
};
|
|
761
|
+
};
|
|
762
|
+
readonly DescribeDataCategoryGroupResult: {
|
|
763
|
+
readonly type: "DescribeDataCategoryGroupResult";
|
|
764
|
+
readonly props: {
|
|
765
|
+
readonly categoryCount: "number";
|
|
766
|
+
readonly description: "string";
|
|
767
|
+
readonly label: "string";
|
|
768
|
+
readonly name: "string";
|
|
769
|
+
readonly sobject: "string";
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
readonly DescribeDataCategoryGroupStructureResult: {
|
|
773
|
+
readonly type: "DescribeDataCategoryGroupStructureResult";
|
|
774
|
+
readonly props: {
|
|
775
|
+
readonly description: "string";
|
|
776
|
+
readonly label: "string";
|
|
777
|
+
readonly name: "string";
|
|
778
|
+
readonly sobject: "string";
|
|
779
|
+
readonly topCategories: readonly ["DataCategory"];
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
readonly DataCategoryGroupSobjectTypePair: {
|
|
783
|
+
readonly type: "DataCategoryGroupSobjectTypePair";
|
|
784
|
+
readonly props: {
|
|
785
|
+
readonly dataCategoryGroupName: "string";
|
|
786
|
+
readonly sobject: "string";
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
readonly DataCategory: {
|
|
790
|
+
readonly type: "DataCategory";
|
|
791
|
+
readonly props: {
|
|
792
|
+
readonly childCategories: readonly ["DataCategory"];
|
|
793
|
+
readonly label: "string";
|
|
794
|
+
readonly name: "string";
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
readonly DescribeDataCategoryMappingResult: {
|
|
798
|
+
readonly type: "DescribeDataCategoryMappingResult";
|
|
799
|
+
readonly props: {
|
|
800
|
+
readonly dataCategoryGroupId: "string";
|
|
801
|
+
readonly dataCategoryGroupLabel: "string";
|
|
802
|
+
readonly dataCategoryGroupName: "string";
|
|
803
|
+
readonly dataCategoryId: "string";
|
|
804
|
+
readonly dataCategoryLabel: "string";
|
|
805
|
+
readonly dataCategoryName: "string";
|
|
806
|
+
readonly id: "string";
|
|
807
|
+
readonly mappedEntity: "string";
|
|
808
|
+
readonly mappedField: "string";
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
readonly KnowledgeSettings: {
|
|
812
|
+
readonly type: "KnowledgeSettings";
|
|
813
|
+
readonly props: {
|
|
814
|
+
readonly defaultLanguage: "?string";
|
|
815
|
+
readonly knowledgeEnabled: "boolean";
|
|
816
|
+
readonly languages: readonly ["KnowledgeLanguageItem"];
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
readonly KnowledgeLanguageItem: {
|
|
820
|
+
readonly type: "KnowledgeLanguageItem";
|
|
821
|
+
readonly props: {
|
|
822
|
+
readonly active: "boolean";
|
|
823
|
+
readonly assigneeId: "?string";
|
|
824
|
+
readonly name: "string";
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
readonly FieldDiff: {
|
|
828
|
+
readonly type: "FieldDiff";
|
|
829
|
+
readonly props: {
|
|
830
|
+
readonly difference: "string";
|
|
831
|
+
readonly name: "string";
|
|
832
|
+
};
|
|
833
|
+
};
|
|
834
|
+
readonly AdditionalInformationMap: {
|
|
835
|
+
readonly type: "AdditionalInformationMap";
|
|
836
|
+
readonly props: {
|
|
837
|
+
readonly name: "string";
|
|
838
|
+
readonly value: "string";
|
|
839
|
+
};
|
|
840
|
+
};
|
|
841
|
+
readonly MatchRecord: {
|
|
842
|
+
readonly type: "MatchRecord";
|
|
843
|
+
readonly props: {
|
|
844
|
+
readonly additionalInformation: readonly ["AdditionalInformationMap"];
|
|
845
|
+
readonly fieldDiffs: readonly ["FieldDiff"];
|
|
846
|
+
readonly matchConfidence: "number";
|
|
847
|
+
readonly record: "sObject";
|
|
848
|
+
};
|
|
849
|
+
};
|
|
850
|
+
readonly MatchResult: {
|
|
851
|
+
readonly type: "MatchResult";
|
|
852
|
+
readonly props: {
|
|
853
|
+
readonly entityType: "string";
|
|
854
|
+
readonly errors: readonly ["Error"];
|
|
855
|
+
readonly matchEngine: "string";
|
|
856
|
+
readonly matchRecords: readonly ["MatchRecord"];
|
|
857
|
+
readonly rule: "string";
|
|
858
|
+
readonly size: "number";
|
|
859
|
+
readonly success: "boolean";
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
readonly DuplicateResult: {
|
|
863
|
+
readonly type: "DuplicateResult";
|
|
864
|
+
readonly props: {
|
|
865
|
+
readonly allowSave: "boolean";
|
|
866
|
+
readonly duplicateRule: "string";
|
|
867
|
+
readonly duplicateRuleEntityType: "string";
|
|
868
|
+
readonly errorMessage: "?string";
|
|
869
|
+
readonly matchResults: readonly ["MatchResult"];
|
|
870
|
+
};
|
|
871
|
+
};
|
|
872
|
+
readonly DuplicateError: {
|
|
873
|
+
readonly type: "DuplicateError";
|
|
874
|
+
readonly props: {
|
|
875
|
+
readonly duplicateResult: "DuplicateResult";
|
|
876
|
+
};
|
|
877
|
+
readonly extends: "Error";
|
|
878
|
+
};
|
|
879
|
+
readonly DescribeNounResult: {
|
|
880
|
+
readonly type: "DescribeNounResult";
|
|
881
|
+
readonly props: {
|
|
882
|
+
readonly caseValues: readonly ["NameCaseValue"];
|
|
883
|
+
readonly developerName: "string";
|
|
884
|
+
readonly gender: "?string";
|
|
885
|
+
readonly name: "string";
|
|
886
|
+
readonly pluralAlias: "?string";
|
|
887
|
+
readonly startsWith: "?string";
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
readonly NameCaseValue: {
|
|
891
|
+
readonly type: "NameCaseValue";
|
|
892
|
+
readonly props: {
|
|
893
|
+
readonly article: "?string";
|
|
894
|
+
readonly caseType: "?string";
|
|
895
|
+
readonly number: "?string";
|
|
896
|
+
readonly possessive: "?string";
|
|
897
|
+
readonly value: "?string";
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
readonly FindDuplicatesResult: {
|
|
901
|
+
readonly type: "FindDuplicatesResult";
|
|
902
|
+
readonly props: {
|
|
903
|
+
readonly duplicateResults: readonly ["DuplicateResult"];
|
|
904
|
+
readonly errors: readonly ["Error"];
|
|
905
|
+
readonly success: "boolean";
|
|
906
|
+
};
|
|
907
|
+
};
|
|
908
|
+
readonly DescribeAppMenuResult: {
|
|
909
|
+
readonly type: "DescribeAppMenuResult";
|
|
910
|
+
readonly props: {
|
|
911
|
+
readonly appMenuItems: readonly ["DescribeAppMenuItem"];
|
|
912
|
+
};
|
|
913
|
+
};
|
|
914
|
+
readonly DescribeAppMenuItem: {
|
|
915
|
+
readonly type: "DescribeAppMenuItem";
|
|
916
|
+
readonly props: {
|
|
917
|
+
readonly colors: readonly ["DescribeColor"];
|
|
918
|
+
readonly content: "string";
|
|
919
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
920
|
+
readonly label: "string";
|
|
921
|
+
readonly name: "string";
|
|
922
|
+
readonly type: "string";
|
|
923
|
+
readonly url: "string";
|
|
924
|
+
};
|
|
925
|
+
};
|
|
926
|
+
readonly DescribeThemeResult: {
|
|
927
|
+
readonly type: "DescribeThemeResult";
|
|
928
|
+
readonly props: {
|
|
929
|
+
readonly themeItems: readonly ["DescribeThemeItem"];
|
|
930
|
+
};
|
|
931
|
+
};
|
|
932
|
+
readonly DescribeThemeItem: {
|
|
933
|
+
readonly type: "DescribeThemeItem";
|
|
934
|
+
readonly props: {
|
|
935
|
+
readonly colors: readonly ["DescribeColor"];
|
|
936
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
937
|
+
readonly name: "string";
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
readonly DescribeSoftphoneLayoutResult: {
|
|
941
|
+
readonly type: "DescribeSoftphoneLayoutResult";
|
|
942
|
+
readonly props: {
|
|
943
|
+
readonly callTypes: readonly ["DescribeSoftphoneLayoutCallType"];
|
|
944
|
+
readonly id: "string";
|
|
945
|
+
readonly name: "string";
|
|
946
|
+
};
|
|
947
|
+
};
|
|
948
|
+
readonly DescribeSoftphoneLayoutCallType: {
|
|
949
|
+
readonly type: "DescribeSoftphoneLayoutCallType";
|
|
950
|
+
readonly props: {
|
|
951
|
+
readonly infoFields: readonly ["DescribeSoftphoneLayoutInfoField"];
|
|
952
|
+
readonly name: "string";
|
|
953
|
+
readonly screenPopOptions: readonly ["DescribeSoftphoneScreenPopOption"];
|
|
954
|
+
readonly screenPopsOpenWithin: "?string";
|
|
955
|
+
readonly sections: readonly ["DescribeSoftphoneLayoutSection"];
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
readonly DescribeSoftphoneScreenPopOption: {
|
|
959
|
+
readonly type: "DescribeSoftphoneScreenPopOption";
|
|
960
|
+
readonly props: {
|
|
961
|
+
readonly matchType: "string";
|
|
962
|
+
readonly screenPopData: "string";
|
|
963
|
+
readonly screenPopType: "string";
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
readonly DescribeSoftphoneLayoutInfoField: {
|
|
967
|
+
readonly type: "DescribeSoftphoneLayoutInfoField";
|
|
968
|
+
readonly props: {
|
|
969
|
+
readonly name: "string";
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
readonly DescribeSoftphoneLayoutSection: {
|
|
973
|
+
readonly type: "DescribeSoftphoneLayoutSection";
|
|
974
|
+
readonly props: {
|
|
975
|
+
readonly entityApiName: "string";
|
|
976
|
+
readonly items: readonly ["DescribeSoftphoneLayoutItem"];
|
|
977
|
+
};
|
|
978
|
+
};
|
|
979
|
+
readonly DescribeSoftphoneLayoutItem: {
|
|
980
|
+
readonly type: "DescribeSoftphoneLayoutItem";
|
|
981
|
+
readonly props: {
|
|
982
|
+
readonly itemApiName: "string";
|
|
983
|
+
};
|
|
984
|
+
};
|
|
985
|
+
readonly DescribeCompactLayoutsResult: {
|
|
986
|
+
readonly type: "DescribeCompactLayoutsResult";
|
|
987
|
+
readonly props: {
|
|
988
|
+
readonly compactLayouts: readonly ["DescribeCompactLayout"];
|
|
989
|
+
readonly defaultCompactLayoutId: "string";
|
|
990
|
+
readonly recordTypeCompactLayoutMappings: readonly ["RecordTypeCompactLayoutMapping"];
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
readonly DescribeCompactLayout: {
|
|
994
|
+
readonly type: "DescribeCompactLayout";
|
|
995
|
+
readonly props: {
|
|
996
|
+
readonly actions: readonly ["DescribeLayoutButton"];
|
|
997
|
+
readonly fieldItems: readonly ["DescribeLayoutItem"];
|
|
998
|
+
readonly id: "string";
|
|
999
|
+
readonly imageItems: readonly ["DescribeLayoutItem"];
|
|
1000
|
+
readonly label: "string";
|
|
1001
|
+
readonly name: "string";
|
|
1002
|
+
readonly objectType: "string";
|
|
1003
|
+
};
|
|
1004
|
+
};
|
|
1005
|
+
readonly RecordTypeCompactLayoutMapping: {
|
|
1006
|
+
readonly type: "RecordTypeCompactLayoutMapping";
|
|
1007
|
+
readonly props: {
|
|
1008
|
+
readonly available: "boolean";
|
|
1009
|
+
readonly compactLayoutId: "?string";
|
|
1010
|
+
readonly compactLayoutName: "string";
|
|
1011
|
+
readonly recordTypeId: "string";
|
|
1012
|
+
readonly recordTypeName: "string";
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
readonly DescribePathAssistantsResult: {
|
|
1016
|
+
readonly type: "DescribePathAssistantsResult";
|
|
1017
|
+
readonly props: {
|
|
1018
|
+
readonly pathAssistants: readonly ["DescribePathAssistant"];
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
readonly DescribePathAssistant: {
|
|
1022
|
+
readonly type: "DescribePathAssistant";
|
|
1023
|
+
readonly props: {
|
|
1024
|
+
readonly active: "boolean";
|
|
1025
|
+
readonly animationRule: readonly ["?", "DescribeAnimationRule"];
|
|
1026
|
+
readonly apiName: "string";
|
|
1027
|
+
readonly label: "string";
|
|
1028
|
+
readonly pathPicklistField: "string";
|
|
1029
|
+
readonly picklistsForRecordType: readonly ["?", "PicklistForRecordType"];
|
|
1030
|
+
readonly recordTypeId: "?string";
|
|
1031
|
+
readonly steps: readonly ["DescribePathAssistantStep"];
|
|
1032
|
+
};
|
|
1033
|
+
};
|
|
1034
|
+
readonly DescribePathAssistantStep: {
|
|
1035
|
+
readonly type: "DescribePathAssistantStep";
|
|
1036
|
+
readonly props: {
|
|
1037
|
+
readonly closed: "boolean";
|
|
1038
|
+
readonly converted: "boolean";
|
|
1039
|
+
readonly fields: readonly ["DescribePathAssistantField"];
|
|
1040
|
+
readonly info: "?string";
|
|
1041
|
+
readonly layoutSection: "?DescribeLayoutSection";
|
|
1042
|
+
readonly picklistLabel: "string";
|
|
1043
|
+
readonly picklistValue: "string";
|
|
1044
|
+
readonly won: "boolean";
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
readonly DescribePathAssistantField: {
|
|
1048
|
+
readonly type: "DescribePathAssistantField";
|
|
1049
|
+
readonly props: {
|
|
1050
|
+
readonly apiName: "string";
|
|
1051
|
+
readonly label: "string";
|
|
1052
|
+
readonly readOnly: "boolean";
|
|
1053
|
+
readonly required: "boolean";
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
readonly DescribeAnimationRule: {
|
|
1057
|
+
readonly type: "DescribeAnimationRule";
|
|
1058
|
+
readonly props: {
|
|
1059
|
+
readonly animationFrequency: "string";
|
|
1060
|
+
readonly isActive: "boolean";
|
|
1061
|
+
readonly recordTypeContext: "string";
|
|
1062
|
+
readonly recordTypeId: "?string";
|
|
1063
|
+
readonly targetField: "string";
|
|
1064
|
+
readonly targetFieldChangeToValues: "string";
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
readonly DescribeApprovalLayoutResult: {
|
|
1068
|
+
readonly type: "DescribeApprovalLayoutResult";
|
|
1069
|
+
readonly props: {
|
|
1070
|
+
readonly approvalLayouts: readonly ["DescribeApprovalLayout"];
|
|
1071
|
+
};
|
|
1072
|
+
};
|
|
1073
|
+
readonly DescribeApprovalLayout: {
|
|
1074
|
+
readonly type: "DescribeApprovalLayout";
|
|
1075
|
+
readonly props: {
|
|
1076
|
+
readonly id: "string";
|
|
1077
|
+
readonly label: "string";
|
|
1078
|
+
readonly layoutItems: readonly ["DescribeLayoutItem"];
|
|
1079
|
+
readonly name: "string";
|
|
1080
|
+
};
|
|
1081
|
+
};
|
|
1082
|
+
readonly DescribeLayoutResult: {
|
|
1083
|
+
readonly type: "DescribeLayoutResult";
|
|
1084
|
+
readonly props: {
|
|
1085
|
+
readonly layouts: readonly ["DescribeLayout"];
|
|
1086
|
+
readonly recordTypeMappings: readonly ["RecordTypeMapping"];
|
|
1087
|
+
readonly recordTypeSelectorRequired: "boolean";
|
|
1088
|
+
};
|
|
1089
|
+
};
|
|
1090
|
+
readonly DescribeLayout: {
|
|
1091
|
+
readonly type: "DescribeLayout";
|
|
1092
|
+
readonly props: {
|
|
1093
|
+
readonly buttonLayoutSection: "?DescribeLayoutButtonSection";
|
|
1094
|
+
readonly detailLayoutSections: readonly ["DescribeLayoutSection"];
|
|
1095
|
+
readonly editLayoutSections: readonly ["DescribeLayoutSection"];
|
|
1096
|
+
readonly feedView: "?DescribeLayoutFeedView";
|
|
1097
|
+
readonly highlightsPanelLayoutSection: "?DescribeLayoutSection";
|
|
1098
|
+
readonly id: "?string";
|
|
1099
|
+
readonly quickActionList: "?DescribeQuickActionListResult";
|
|
1100
|
+
readonly relatedContent: "?RelatedContent";
|
|
1101
|
+
readonly relatedLists: readonly ["RelatedList"];
|
|
1102
|
+
readonly saveOptions: readonly ["DescribeLayoutSaveOption"];
|
|
1103
|
+
};
|
|
1104
|
+
};
|
|
1105
|
+
readonly DescribeQuickActionListResult: {
|
|
1106
|
+
readonly type: "DescribeQuickActionListResult";
|
|
1107
|
+
readonly props: {
|
|
1108
|
+
readonly quickActionListItems: readonly ["DescribeQuickActionListItemResult"];
|
|
1109
|
+
};
|
|
1110
|
+
};
|
|
1111
|
+
readonly DescribeQuickActionListItemResult: {
|
|
1112
|
+
readonly type: "DescribeQuickActionListItemResult";
|
|
1113
|
+
readonly props: {
|
|
1114
|
+
readonly accessLevelRequired: "?string";
|
|
1115
|
+
readonly colors: readonly ["DescribeColor"];
|
|
1116
|
+
readonly iconUrl: "?string";
|
|
1117
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
1118
|
+
readonly label: "string";
|
|
1119
|
+
readonly miniIconUrl: "string";
|
|
1120
|
+
readonly quickActionName: "string";
|
|
1121
|
+
readonly targetSobjectType: "?string";
|
|
1122
|
+
readonly type: "string";
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
readonly DescribeLayoutFeedView: {
|
|
1126
|
+
readonly type: "DescribeLayoutFeedView";
|
|
1127
|
+
readonly props: {
|
|
1128
|
+
readonly feedFilters: readonly ["DescribeLayoutFeedFilter"];
|
|
1129
|
+
};
|
|
1130
|
+
};
|
|
1131
|
+
readonly DescribeLayoutFeedFilter: {
|
|
1132
|
+
readonly type: "DescribeLayoutFeedFilter";
|
|
1133
|
+
readonly props: {
|
|
1134
|
+
readonly label: "string";
|
|
1135
|
+
readonly name: "string";
|
|
1136
|
+
readonly type: "string";
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1139
|
+
readonly DescribeLayoutSaveOption: {
|
|
1140
|
+
readonly type: "DescribeLayoutSaveOption";
|
|
1141
|
+
readonly props: {
|
|
1142
|
+
readonly defaultValue: "boolean";
|
|
1143
|
+
readonly isDisplayed: "boolean";
|
|
1144
|
+
readonly label: "string";
|
|
1145
|
+
readonly name: "string";
|
|
1146
|
+
readonly restHeaderName: "string";
|
|
1147
|
+
readonly soapHeaderName: "string";
|
|
1148
|
+
};
|
|
1149
|
+
};
|
|
1150
|
+
readonly DescribeLayoutSection: {
|
|
1151
|
+
readonly type: "DescribeLayoutSection";
|
|
1152
|
+
readonly props: {
|
|
1153
|
+
readonly collapsed: "boolean";
|
|
1154
|
+
readonly columns: "number";
|
|
1155
|
+
readonly heading: "?string";
|
|
1156
|
+
readonly layoutRows: readonly ["DescribeLayoutRow"];
|
|
1157
|
+
readonly layoutSectionId: "?string";
|
|
1158
|
+
readonly parentLayoutId: "string";
|
|
1159
|
+
readonly rows: "number";
|
|
1160
|
+
readonly tabOrder: "string";
|
|
1161
|
+
readonly useCollapsibleSection: "boolean";
|
|
1162
|
+
readonly useHeading: "boolean";
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
readonly DescribeLayoutButtonSection: {
|
|
1166
|
+
readonly type: "DescribeLayoutButtonSection";
|
|
1167
|
+
readonly props: {
|
|
1168
|
+
readonly detailButtons: readonly ["DescribeLayoutButton"];
|
|
1169
|
+
};
|
|
1170
|
+
};
|
|
1171
|
+
readonly DescribeLayoutRow: {
|
|
1172
|
+
readonly type: "DescribeLayoutRow";
|
|
1173
|
+
readonly props: {
|
|
1174
|
+
readonly layoutItems: readonly ["DescribeLayoutItem"];
|
|
1175
|
+
readonly numItems: "number";
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
readonly DescribeLayoutItem: {
|
|
1179
|
+
readonly type: "DescribeLayoutItem";
|
|
1180
|
+
readonly props: {
|
|
1181
|
+
readonly editableForNew: "boolean";
|
|
1182
|
+
readonly editableForUpdate: "boolean";
|
|
1183
|
+
readonly label: "?string";
|
|
1184
|
+
readonly layoutComponents: readonly ["DescribeLayoutComponent"];
|
|
1185
|
+
readonly placeholder: "boolean";
|
|
1186
|
+
readonly required: "boolean";
|
|
1187
|
+
};
|
|
1188
|
+
};
|
|
1189
|
+
readonly DescribeLayoutButton: {
|
|
1190
|
+
readonly type: "DescribeLayoutButton";
|
|
1191
|
+
readonly props: {
|
|
1192
|
+
readonly behavior: "?string";
|
|
1193
|
+
readonly colors: readonly ["DescribeColor"];
|
|
1194
|
+
readonly content: "?string";
|
|
1195
|
+
readonly contentSource: "?string";
|
|
1196
|
+
readonly custom: "boolean";
|
|
1197
|
+
readonly encoding: "?string";
|
|
1198
|
+
readonly height: "?number";
|
|
1199
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
1200
|
+
readonly label: "?string";
|
|
1201
|
+
readonly menubar: "?boolean";
|
|
1202
|
+
readonly name: "?string";
|
|
1203
|
+
readonly overridden: "boolean";
|
|
1204
|
+
readonly resizeable: "?boolean";
|
|
1205
|
+
readonly scrollbars: "?boolean";
|
|
1206
|
+
readonly showsLocation: "?boolean";
|
|
1207
|
+
readonly showsStatus: "?boolean";
|
|
1208
|
+
readonly toolbar: "?boolean";
|
|
1209
|
+
readonly url: "?string";
|
|
1210
|
+
readonly width: "?number";
|
|
1211
|
+
readonly windowPosition: "?string";
|
|
1212
|
+
};
|
|
1213
|
+
};
|
|
1214
|
+
readonly DescribeLayoutComponent: {
|
|
1215
|
+
readonly type: "DescribeLayoutComponent";
|
|
1216
|
+
readonly props: {
|
|
1217
|
+
readonly displayLines: "number";
|
|
1218
|
+
readonly tabOrder: "number";
|
|
1219
|
+
readonly type: "string";
|
|
1220
|
+
readonly value: "?string";
|
|
1221
|
+
};
|
|
1222
|
+
};
|
|
1223
|
+
readonly FieldComponent: {
|
|
1224
|
+
readonly type: "FieldComponent";
|
|
1225
|
+
readonly props: {
|
|
1226
|
+
readonly field: "Field";
|
|
1227
|
+
};
|
|
1228
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1229
|
+
};
|
|
1230
|
+
readonly FieldLayoutComponent: {
|
|
1231
|
+
readonly type: "FieldLayoutComponent";
|
|
1232
|
+
readonly props: {
|
|
1233
|
+
readonly components: readonly ["DescribeLayoutComponent"];
|
|
1234
|
+
readonly fieldType: "string";
|
|
1235
|
+
};
|
|
1236
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1237
|
+
};
|
|
1238
|
+
readonly VisualforcePage: {
|
|
1239
|
+
readonly type: "VisualforcePage";
|
|
1240
|
+
readonly props: {
|
|
1241
|
+
readonly showLabel: "boolean";
|
|
1242
|
+
readonly showScrollbars: "boolean";
|
|
1243
|
+
readonly suggestedHeight: "string";
|
|
1244
|
+
readonly suggestedWidth: "string";
|
|
1245
|
+
readonly url: "string";
|
|
1246
|
+
};
|
|
1247
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1248
|
+
};
|
|
1249
|
+
readonly Canvas: {
|
|
1250
|
+
readonly type: "Canvas";
|
|
1251
|
+
readonly props: {
|
|
1252
|
+
readonly displayLocation: "string";
|
|
1253
|
+
readonly referenceId: "string";
|
|
1254
|
+
readonly showLabel: "boolean";
|
|
1255
|
+
readonly showScrollbars: "boolean";
|
|
1256
|
+
readonly suggestedHeight: "string";
|
|
1257
|
+
readonly suggestedWidth: "string";
|
|
1258
|
+
};
|
|
1259
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1260
|
+
};
|
|
1261
|
+
readonly ReportChartComponent: {
|
|
1262
|
+
readonly type: "ReportChartComponent";
|
|
1263
|
+
readonly props: {
|
|
1264
|
+
readonly cacheData: "boolean";
|
|
1265
|
+
readonly contextFilterableField: "string";
|
|
1266
|
+
readonly error: "string";
|
|
1267
|
+
readonly hideOnError: "boolean";
|
|
1268
|
+
readonly includeContext: "boolean";
|
|
1269
|
+
readonly showTitle: "boolean";
|
|
1270
|
+
readonly size: "string";
|
|
1271
|
+
};
|
|
1272
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1273
|
+
};
|
|
1274
|
+
readonly AnalyticsCloudComponent: {
|
|
1275
|
+
readonly type: "AnalyticsCloudComponent";
|
|
1276
|
+
readonly props: {
|
|
1277
|
+
readonly error: "string";
|
|
1278
|
+
readonly filter: "string";
|
|
1279
|
+
readonly height: "string";
|
|
1280
|
+
readonly hideOnError: "boolean";
|
|
1281
|
+
readonly showSharing: "boolean";
|
|
1282
|
+
readonly showTitle: "boolean";
|
|
1283
|
+
readonly width: "string";
|
|
1284
|
+
};
|
|
1285
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1286
|
+
};
|
|
1287
|
+
readonly CustomLinkComponent: {
|
|
1288
|
+
readonly type: "CustomLinkComponent";
|
|
1289
|
+
readonly props: {
|
|
1290
|
+
readonly customLink: "DescribeLayoutButton";
|
|
1291
|
+
};
|
|
1292
|
+
readonly extends: "DescribeLayoutComponent";
|
|
1293
|
+
};
|
|
1294
|
+
readonly NamedLayoutInfo: {
|
|
1295
|
+
readonly type: "NamedLayoutInfo";
|
|
1296
|
+
readonly props: {
|
|
1297
|
+
readonly name: "string";
|
|
1298
|
+
};
|
|
1299
|
+
};
|
|
1300
|
+
readonly RecordTypeInfo: {
|
|
1301
|
+
readonly type: "RecordTypeInfo";
|
|
1302
|
+
readonly props: {
|
|
1303
|
+
readonly active: "boolean";
|
|
1304
|
+
readonly available: "boolean";
|
|
1305
|
+
readonly defaultRecordTypeMapping: "boolean";
|
|
1306
|
+
readonly developerName: "string";
|
|
1307
|
+
readonly master: "boolean";
|
|
1308
|
+
readonly name: "string";
|
|
1309
|
+
readonly recordTypeId: "?string";
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
readonly RecordTypeMapping: {
|
|
1313
|
+
readonly type: "RecordTypeMapping";
|
|
1314
|
+
readonly props: {
|
|
1315
|
+
readonly active: "boolean";
|
|
1316
|
+
readonly available: "boolean";
|
|
1317
|
+
readonly defaultRecordTypeMapping: "boolean";
|
|
1318
|
+
readonly developerName: "string";
|
|
1319
|
+
readonly layoutId: "string";
|
|
1320
|
+
readonly master: "boolean";
|
|
1321
|
+
readonly name: "string";
|
|
1322
|
+
readonly picklistsForRecordType: readonly ["?", "PicklistForRecordType"];
|
|
1323
|
+
readonly recordTypeId: "?string";
|
|
1324
|
+
};
|
|
1325
|
+
};
|
|
1326
|
+
readonly PicklistForRecordType: {
|
|
1327
|
+
readonly type: "PicklistForRecordType";
|
|
1328
|
+
readonly props: {
|
|
1329
|
+
readonly picklistName: "string";
|
|
1330
|
+
readonly picklistValues: readonly ["?", "PicklistEntry"];
|
|
1331
|
+
};
|
|
1332
|
+
};
|
|
1333
|
+
readonly RelatedContent: {
|
|
1334
|
+
readonly type: "RelatedContent";
|
|
1335
|
+
readonly props: {
|
|
1336
|
+
readonly relatedContentItems: readonly ["DescribeRelatedContentItem"];
|
|
1337
|
+
};
|
|
1338
|
+
};
|
|
1339
|
+
readonly DescribeRelatedContentItem: {
|
|
1340
|
+
readonly type: "DescribeRelatedContentItem";
|
|
1341
|
+
readonly props: {
|
|
1342
|
+
readonly describeLayoutItem: "DescribeLayoutItem";
|
|
1343
|
+
};
|
|
1344
|
+
};
|
|
1345
|
+
readonly RelatedList: {
|
|
1346
|
+
readonly type: "RelatedList";
|
|
1347
|
+
readonly props: {
|
|
1348
|
+
readonly accessLevelRequiredForCreate: "?string";
|
|
1349
|
+
readonly buttons: readonly ["?", "DescribeLayoutButton"];
|
|
1350
|
+
readonly columns: readonly ["RelatedListColumn"];
|
|
1351
|
+
readonly custom: "boolean";
|
|
1352
|
+
readonly field: "?string";
|
|
1353
|
+
readonly label: "string";
|
|
1354
|
+
readonly limitRows: "number";
|
|
1355
|
+
readonly name: "string";
|
|
1356
|
+
readonly sobject: "?string";
|
|
1357
|
+
readonly sort: readonly ["RelatedListSort"];
|
|
1358
|
+
};
|
|
1359
|
+
};
|
|
1360
|
+
readonly RelatedListColumn: {
|
|
1361
|
+
readonly type: "RelatedListColumn";
|
|
1362
|
+
readonly props: {
|
|
1363
|
+
readonly field: "?string";
|
|
1364
|
+
readonly fieldApiName: "string";
|
|
1365
|
+
readonly format: "?string";
|
|
1366
|
+
readonly label: "string";
|
|
1367
|
+
readonly lookupId: "?string";
|
|
1368
|
+
readonly name: "string";
|
|
1369
|
+
readonly sortable: "boolean";
|
|
1370
|
+
};
|
|
1371
|
+
};
|
|
1372
|
+
readonly RelatedListSort: {
|
|
1373
|
+
readonly type: "RelatedListSort";
|
|
1374
|
+
readonly props: {
|
|
1375
|
+
readonly ascending: "boolean";
|
|
1376
|
+
readonly column: "string";
|
|
1377
|
+
};
|
|
1378
|
+
};
|
|
1379
|
+
readonly EmailFileAttachment: {
|
|
1380
|
+
readonly type: "EmailFileAttachment";
|
|
1381
|
+
readonly props: {
|
|
1382
|
+
readonly body: "?string";
|
|
1383
|
+
readonly contentType: "?string";
|
|
1384
|
+
readonly fileName: "string";
|
|
1385
|
+
readonly id: "?string";
|
|
1386
|
+
readonly inline: "?boolean";
|
|
1387
|
+
};
|
|
1388
|
+
};
|
|
1389
|
+
readonly Email: {
|
|
1390
|
+
readonly type: "Email";
|
|
1391
|
+
readonly props: {
|
|
1392
|
+
readonly bccSender: "?boolean";
|
|
1393
|
+
readonly emailPriority: "?string";
|
|
1394
|
+
readonly replyTo: "?string";
|
|
1395
|
+
readonly saveAsActivity: "?boolean";
|
|
1396
|
+
readonly senderDisplayName: "?string";
|
|
1397
|
+
readonly subject: "?string";
|
|
1398
|
+
readonly useSignature: "?boolean";
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
readonly MassEmailMessage: {
|
|
1402
|
+
readonly type: "MassEmailMessage";
|
|
1403
|
+
readonly props: {
|
|
1404
|
+
readonly description: "?string";
|
|
1405
|
+
readonly targetObjectIds: "?string";
|
|
1406
|
+
readonly templateId: "string";
|
|
1407
|
+
readonly whatIds: "?string";
|
|
1408
|
+
};
|
|
1409
|
+
readonly extends: "Email";
|
|
1410
|
+
};
|
|
1411
|
+
readonly SingleEmailMessage: {
|
|
1412
|
+
readonly type: "SingleEmailMessage";
|
|
1413
|
+
readonly props: {
|
|
1414
|
+
readonly bccAddresses: "?string";
|
|
1415
|
+
readonly ccAddresses: "?string";
|
|
1416
|
+
readonly charset: "?string";
|
|
1417
|
+
readonly documentAttachments: readonly ["string"];
|
|
1418
|
+
readonly entityAttachments: readonly ["string"];
|
|
1419
|
+
readonly fileAttachments: readonly ["EmailFileAttachment"];
|
|
1420
|
+
readonly htmlBody: "?string";
|
|
1421
|
+
readonly inReplyTo: "?string";
|
|
1422
|
+
readonly optOutPolicy: "?string";
|
|
1423
|
+
readonly orgWideEmailAddressId: "?string";
|
|
1424
|
+
readonly plainTextBody: "?string";
|
|
1425
|
+
readonly references: "?string";
|
|
1426
|
+
readonly targetObjectId: "?string";
|
|
1427
|
+
readonly templateId: "?string";
|
|
1428
|
+
readonly templateName: "?string";
|
|
1429
|
+
readonly toAddresses: "?string";
|
|
1430
|
+
readonly treatBodiesAsTemplate: "?boolean";
|
|
1431
|
+
readonly treatTargetObjectAsRecipient: "?boolean";
|
|
1432
|
+
readonly whatId: "?string";
|
|
1433
|
+
};
|
|
1434
|
+
readonly extends: "Email";
|
|
1435
|
+
};
|
|
1436
|
+
readonly SendEmailResult: {
|
|
1437
|
+
readonly type: "SendEmailResult";
|
|
1438
|
+
readonly props: {
|
|
1439
|
+
readonly errors: readonly ["SendEmailError"];
|
|
1440
|
+
readonly success: "boolean";
|
|
1441
|
+
};
|
|
1442
|
+
};
|
|
1443
|
+
readonly ListViewColumn: {
|
|
1444
|
+
readonly type: "ListViewColumn";
|
|
1445
|
+
readonly props: {
|
|
1446
|
+
readonly ascendingLabel: "?string";
|
|
1447
|
+
readonly descendingLabel: "?string";
|
|
1448
|
+
readonly fieldNameOrPath: "string";
|
|
1449
|
+
readonly hidden: "boolean";
|
|
1450
|
+
readonly label: "string";
|
|
1451
|
+
readonly searchable: "boolean";
|
|
1452
|
+
readonly selectListItem: "string";
|
|
1453
|
+
readonly sortDirection: "?string";
|
|
1454
|
+
readonly sortIndex: "?number";
|
|
1455
|
+
readonly sortable: "boolean";
|
|
1456
|
+
readonly type: "string";
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
readonly ListViewOrderBy: {
|
|
1460
|
+
readonly type: "ListViewOrderBy";
|
|
1461
|
+
readonly props: {
|
|
1462
|
+
readonly fieldNameOrPath: "string";
|
|
1463
|
+
readonly nullsPosition: "?string";
|
|
1464
|
+
readonly sortDirection: "?string";
|
|
1465
|
+
};
|
|
1466
|
+
};
|
|
1467
|
+
readonly DescribeSoqlListView: {
|
|
1468
|
+
readonly type: "DescribeSoqlListView";
|
|
1469
|
+
readonly props: {
|
|
1470
|
+
readonly columns: readonly ["ListViewColumn"];
|
|
1471
|
+
readonly id: "string";
|
|
1472
|
+
readonly orderBy: readonly ["ListViewOrderBy"];
|
|
1473
|
+
readonly query: "string";
|
|
1474
|
+
readonly relatedEntityId: "?string";
|
|
1475
|
+
readonly scope: "?string";
|
|
1476
|
+
readonly scopeEntityId: "?string";
|
|
1477
|
+
readonly sobjectType: "string";
|
|
1478
|
+
readonly whereCondition: "?SoqlWhereCondition";
|
|
1479
|
+
};
|
|
1480
|
+
};
|
|
1481
|
+
readonly DescribeSoqlListViewsRequest: {
|
|
1482
|
+
readonly type: "DescribeSoqlListViewsRequest";
|
|
1483
|
+
readonly props: {
|
|
1484
|
+
readonly listViewParams: readonly ["DescribeSoqlListViewParams"];
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
readonly DescribeSoqlListViewParams: {
|
|
1488
|
+
readonly type: "DescribeSoqlListViewParams";
|
|
1489
|
+
readonly props: {
|
|
1490
|
+
readonly developerNameOrId: "string";
|
|
1491
|
+
readonly sobjectType: "?string";
|
|
1492
|
+
};
|
|
1493
|
+
};
|
|
1494
|
+
readonly DescribeSoqlListViewResult: {
|
|
1495
|
+
readonly type: "DescribeSoqlListViewResult";
|
|
1496
|
+
readonly props: {
|
|
1497
|
+
readonly describeSoqlListViews: readonly ["DescribeSoqlListView"];
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1500
|
+
readonly ExecuteListViewRequest: {
|
|
1501
|
+
readonly type: "ExecuteListViewRequest";
|
|
1502
|
+
readonly props: {
|
|
1503
|
+
readonly developerNameOrId: "string";
|
|
1504
|
+
readonly limit: "?number";
|
|
1505
|
+
readonly offset: "?number";
|
|
1506
|
+
readonly orderBy: readonly ["ListViewOrderBy"];
|
|
1507
|
+
readonly sobjectType: "string";
|
|
1508
|
+
};
|
|
1509
|
+
};
|
|
1510
|
+
readonly ExecuteListViewResult: {
|
|
1511
|
+
readonly type: "ExecuteListViewResult";
|
|
1512
|
+
readonly props: {
|
|
1513
|
+
readonly columns: readonly ["ListViewColumn"];
|
|
1514
|
+
readonly developerName: "string";
|
|
1515
|
+
readonly done: "boolean";
|
|
1516
|
+
readonly id: "string";
|
|
1517
|
+
readonly label: "string";
|
|
1518
|
+
readonly records: readonly ["ListViewRecord"];
|
|
1519
|
+
readonly size: "number";
|
|
1520
|
+
};
|
|
1521
|
+
};
|
|
1522
|
+
readonly ListViewRecord: {
|
|
1523
|
+
readonly type: "ListViewRecord";
|
|
1524
|
+
readonly props: {
|
|
1525
|
+
readonly columns: readonly ["ListViewRecordColumn"];
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
readonly ListViewRecordColumn: {
|
|
1529
|
+
readonly type: "ListViewRecordColumn";
|
|
1530
|
+
readonly props: {
|
|
1531
|
+
readonly fieldNameOrPath: "string";
|
|
1532
|
+
readonly value: "?string";
|
|
1533
|
+
};
|
|
1534
|
+
};
|
|
1535
|
+
readonly SoqlWhereCondition: {
|
|
1536
|
+
readonly type: "SoqlWhereCondition";
|
|
1537
|
+
readonly props: {};
|
|
1538
|
+
};
|
|
1539
|
+
readonly SoqlCondition: {
|
|
1540
|
+
readonly type: "SoqlCondition";
|
|
1541
|
+
readonly props: {
|
|
1542
|
+
readonly field: "string";
|
|
1543
|
+
readonly operator: "string";
|
|
1544
|
+
readonly values: readonly ["string"];
|
|
1545
|
+
};
|
|
1546
|
+
readonly extends: "SoqlWhereCondition";
|
|
1547
|
+
};
|
|
1548
|
+
readonly SoqlNotCondition: {
|
|
1549
|
+
readonly type: "SoqlNotCondition";
|
|
1550
|
+
readonly props: {
|
|
1551
|
+
readonly condition: "SoqlWhereCondition";
|
|
1552
|
+
};
|
|
1553
|
+
readonly extends: "SoqlWhereCondition";
|
|
1554
|
+
};
|
|
1555
|
+
readonly SoqlConditionGroup: {
|
|
1556
|
+
readonly type: "SoqlConditionGroup";
|
|
1557
|
+
readonly props: {
|
|
1558
|
+
readonly conditions: readonly ["SoqlWhereCondition"];
|
|
1559
|
+
readonly conjunction: "string";
|
|
1560
|
+
};
|
|
1561
|
+
readonly extends: "SoqlWhereCondition";
|
|
1562
|
+
};
|
|
1563
|
+
readonly SoqlSubQueryCondition: {
|
|
1564
|
+
readonly type: "SoqlSubQueryCondition";
|
|
1565
|
+
readonly props: {
|
|
1566
|
+
readonly field: "string";
|
|
1567
|
+
readonly operator: "string";
|
|
1568
|
+
readonly subQuery: "string";
|
|
1569
|
+
};
|
|
1570
|
+
readonly extends: "SoqlWhereCondition";
|
|
1571
|
+
};
|
|
1572
|
+
readonly DescribeSearchLayoutResult: {
|
|
1573
|
+
readonly type: "DescribeSearchLayoutResult";
|
|
1574
|
+
readonly props: {
|
|
1575
|
+
readonly errorMsg: "?string";
|
|
1576
|
+
readonly label: "?string";
|
|
1577
|
+
readonly limitRows: "?number";
|
|
1578
|
+
readonly objectType: "string";
|
|
1579
|
+
readonly searchColumns: readonly ["?", "DescribeColumn"];
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
readonly DescribeColumn: {
|
|
1583
|
+
readonly type: "DescribeColumn";
|
|
1584
|
+
readonly props: {
|
|
1585
|
+
readonly field: "string";
|
|
1586
|
+
readonly format: "?string";
|
|
1587
|
+
readonly label: "string";
|
|
1588
|
+
readonly name: "string";
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
readonly DescribeSearchScopeOrderResult: {
|
|
1592
|
+
readonly type: "DescribeSearchScopeOrderResult";
|
|
1593
|
+
readonly props: {
|
|
1594
|
+
readonly keyPrefix: "string";
|
|
1595
|
+
readonly name: "string";
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
readonly DescribeSearchableEntityResult: {
|
|
1599
|
+
readonly type: "DescribeSearchableEntityResult";
|
|
1600
|
+
readonly props: {
|
|
1601
|
+
readonly label: "string";
|
|
1602
|
+
readonly name: "string";
|
|
1603
|
+
readonly pluralLabel: "string";
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
readonly DescribeTabSetResult: {
|
|
1607
|
+
readonly type: "DescribeTabSetResult";
|
|
1608
|
+
readonly props: {
|
|
1609
|
+
readonly description: "string";
|
|
1610
|
+
readonly label: "string";
|
|
1611
|
+
readonly logoUrl: "string";
|
|
1612
|
+
readonly namespace: "?string";
|
|
1613
|
+
readonly selected: "boolean";
|
|
1614
|
+
readonly tabSetId: "string";
|
|
1615
|
+
readonly tabs: readonly ["DescribeTab"];
|
|
1616
|
+
};
|
|
1617
|
+
};
|
|
1618
|
+
readonly DescribeTab: {
|
|
1619
|
+
readonly type: "DescribeTab";
|
|
1620
|
+
readonly props: {
|
|
1621
|
+
readonly colors: readonly ["DescribeColor"];
|
|
1622
|
+
readonly custom: "boolean";
|
|
1623
|
+
readonly iconUrl: "string";
|
|
1624
|
+
readonly icons: readonly ["DescribeIcon"];
|
|
1625
|
+
readonly label: "string";
|
|
1626
|
+
readonly miniIconUrl: "string";
|
|
1627
|
+
readonly name: "string";
|
|
1628
|
+
readonly sobjectName: "?string";
|
|
1629
|
+
readonly url: "string";
|
|
1630
|
+
};
|
|
1631
|
+
};
|
|
1632
|
+
readonly DescribeColor: {
|
|
1633
|
+
readonly type: "DescribeColor";
|
|
1634
|
+
readonly props: {
|
|
1635
|
+
readonly color: "string";
|
|
1636
|
+
readonly context: "string";
|
|
1637
|
+
readonly theme: "string";
|
|
1638
|
+
};
|
|
1639
|
+
};
|
|
1640
|
+
readonly DescribeIcon: {
|
|
1641
|
+
readonly type: "DescribeIcon";
|
|
1642
|
+
readonly props: {
|
|
1643
|
+
readonly contentType: "string";
|
|
1644
|
+
readonly height: "?number";
|
|
1645
|
+
readonly theme: "string";
|
|
1646
|
+
readonly url: "string";
|
|
1647
|
+
readonly width: "?number";
|
|
1648
|
+
};
|
|
1649
|
+
};
|
|
1650
|
+
readonly ActionOverride: {
|
|
1651
|
+
readonly type: "ActionOverride";
|
|
1652
|
+
readonly props: {
|
|
1653
|
+
readonly formFactor: "string";
|
|
1654
|
+
readonly isAvailableInTouch: "boolean";
|
|
1655
|
+
readonly name: "string";
|
|
1656
|
+
readonly pageId: "string";
|
|
1657
|
+
readonly url: "?string";
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
readonly RenderEmailTemplateRequest: {
|
|
1661
|
+
readonly type: "RenderEmailTemplateRequest";
|
|
1662
|
+
readonly props: {
|
|
1663
|
+
readonly escapeHtmlInMergeFields: "?boolean";
|
|
1664
|
+
readonly templateBodies: "string";
|
|
1665
|
+
readonly whatId: "?string";
|
|
1666
|
+
readonly whoId: "?string";
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
readonly RenderEmailTemplateBodyResult: {
|
|
1670
|
+
readonly type: "RenderEmailTemplateBodyResult";
|
|
1671
|
+
readonly props: {
|
|
1672
|
+
readonly errors: readonly ["RenderEmailTemplateError"];
|
|
1673
|
+
readonly mergedBody: "?string";
|
|
1674
|
+
readonly success: "boolean";
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
readonly RenderEmailTemplateResult: {
|
|
1678
|
+
readonly type: "RenderEmailTemplateResult";
|
|
1679
|
+
readonly props: {
|
|
1680
|
+
readonly bodyResults: "?RenderEmailTemplateBodyResult";
|
|
1681
|
+
readonly errors: readonly ["Error"];
|
|
1682
|
+
readonly success: "boolean";
|
|
1683
|
+
};
|
|
1684
|
+
};
|
|
1685
|
+
readonly RenderStoredEmailTemplateRequest: {
|
|
1686
|
+
readonly type: "RenderStoredEmailTemplateRequest";
|
|
1687
|
+
readonly props: {
|
|
1688
|
+
readonly attachmentRetrievalOption: "?string";
|
|
1689
|
+
readonly templateId: "string";
|
|
1690
|
+
readonly updateTemplateUsage: "?boolean";
|
|
1691
|
+
readonly whatId: "?string";
|
|
1692
|
+
readonly whoId: "?string";
|
|
1693
|
+
};
|
|
1694
|
+
};
|
|
1695
|
+
readonly RenderStoredEmailTemplateResult: {
|
|
1696
|
+
readonly type: "RenderStoredEmailTemplateResult";
|
|
1697
|
+
readonly props: {
|
|
1698
|
+
readonly errors: readonly ["Error"];
|
|
1699
|
+
readonly renderedEmail: "?SingleEmailMessage";
|
|
1700
|
+
readonly success: "boolean";
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
readonly LimitInfo: {
|
|
1704
|
+
readonly type: "LimitInfo";
|
|
1705
|
+
readonly props: {
|
|
1706
|
+
readonly current: "number";
|
|
1707
|
+
readonly limit: "number";
|
|
1708
|
+
readonly type: "string";
|
|
1709
|
+
};
|
|
1710
|
+
};
|
|
1711
|
+
readonly OwnerChangeOption: {
|
|
1712
|
+
readonly type: "OwnerChangeOption";
|
|
1713
|
+
readonly props: {
|
|
1714
|
+
readonly type: "string";
|
|
1715
|
+
readonly execute: "boolean";
|
|
1716
|
+
};
|
|
1717
|
+
};
|
|
1718
|
+
readonly ApiFault: {
|
|
1719
|
+
readonly type: "ApiFault";
|
|
1720
|
+
readonly props: {
|
|
1721
|
+
readonly exceptionCode: "string";
|
|
1722
|
+
readonly exceptionMessage: "string";
|
|
1723
|
+
readonly extendedErrorDetails: readonly ["?", "ExtendedErrorDetails"];
|
|
1724
|
+
};
|
|
1725
|
+
};
|
|
1726
|
+
readonly ApiQueryFault: {
|
|
1727
|
+
readonly type: "ApiQueryFault";
|
|
1728
|
+
readonly props: {
|
|
1729
|
+
readonly row: "number";
|
|
1730
|
+
readonly column: "number";
|
|
1731
|
+
};
|
|
1732
|
+
readonly extends: "ApiFault";
|
|
1733
|
+
};
|
|
1734
|
+
readonly LoginFault: {
|
|
1735
|
+
readonly type: "LoginFault";
|
|
1736
|
+
readonly props: {};
|
|
1737
|
+
readonly extends: "ApiFault";
|
|
1738
|
+
};
|
|
1739
|
+
readonly InvalidQueryLocatorFault: {
|
|
1740
|
+
readonly type: "InvalidQueryLocatorFault";
|
|
1741
|
+
readonly props: {};
|
|
1742
|
+
readonly extends: "ApiFault";
|
|
1743
|
+
};
|
|
1744
|
+
readonly InvalidNewPasswordFault: {
|
|
1745
|
+
readonly type: "InvalidNewPasswordFault";
|
|
1746
|
+
readonly props: {};
|
|
1747
|
+
readonly extends: "ApiFault";
|
|
1748
|
+
};
|
|
1749
|
+
readonly InvalidOldPasswordFault: {
|
|
1750
|
+
readonly type: "InvalidOldPasswordFault";
|
|
1751
|
+
readonly props: {};
|
|
1752
|
+
readonly extends: "ApiFault";
|
|
1753
|
+
};
|
|
1754
|
+
readonly InvalidIdFault: {
|
|
1755
|
+
readonly type: "InvalidIdFault";
|
|
1756
|
+
readonly props: {};
|
|
1757
|
+
readonly extends: "ApiFault";
|
|
1758
|
+
};
|
|
1759
|
+
readonly UnexpectedErrorFault: {
|
|
1760
|
+
readonly type: "UnexpectedErrorFault";
|
|
1761
|
+
readonly props: {};
|
|
1762
|
+
readonly extends: "ApiFault";
|
|
1763
|
+
};
|
|
1764
|
+
readonly InvalidFieldFault: {
|
|
1765
|
+
readonly type: "InvalidFieldFault";
|
|
1766
|
+
readonly props: {};
|
|
1767
|
+
readonly extends: "ApiQueryFault";
|
|
1768
|
+
};
|
|
1769
|
+
readonly InvalidSObjectFault: {
|
|
1770
|
+
readonly type: "InvalidSObjectFault";
|
|
1771
|
+
readonly props: {};
|
|
1772
|
+
readonly extends: "ApiQueryFault";
|
|
1773
|
+
};
|
|
1774
|
+
readonly MalformedQueryFault: {
|
|
1775
|
+
readonly type: "MalformedQueryFault";
|
|
1776
|
+
readonly props: {};
|
|
1777
|
+
readonly extends: "ApiQueryFault";
|
|
1778
|
+
};
|
|
1779
|
+
readonly MalformedSearchFault: {
|
|
1780
|
+
readonly type: "MalformedSearchFault";
|
|
1781
|
+
readonly props: {};
|
|
1782
|
+
readonly extends: "ApiQueryFault";
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
export type sObject = {
|
|
1786
|
+
type: string;
|
|
1787
|
+
fieldsToNull?: string[] | null | undefined;
|
|
1788
|
+
Id?: string | null | undefined;
|
|
1789
|
+
};
|
|
1790
|
+
export type address = location & {
|
|
1791
|
+
city?: string | null | undefined;
|
|
1792
|
+
country?: string | null | undefined;
|
|
1793
|
+
countryCode?: string | null | undefined;
|
|
1794
|
+
geocodeAccuracy?: string | null | undefined;
|
|
1795
|
+
postalCode?: string | null | undefined;
|
|
1796
|
+
state?: string | null | undefined;
|
|
1797
|
+
stateCode?: string | null | undefined;
|
|
1798
|
+
street?: string | null | undefined;
|
|
1799
|
+
};
|
|
1800
|
+
export type location = {
|
|
1801
|
+
latitude?: number | null | undefined;
|
|
1802
|
+
longitude?: number | null | undefined;
|
|
1803
|
+
};
|
|
1804
|
+
export type QueryResult = {
|
|
1805
|
+
done: boolean;
|
|
1806
|
+
queryLocator?: string | null | undefined;
|
|
1807
|
+
records?: sObject[] | null | undefined;
|
|
1808
|
+
size: number;
|
|
1809
|
+
};
|
|
1810
|
+
export type SearchResult = {
|
|
1811
|
+
queryId: string;
|
|
1812
|
+
searchRecords: SearchRecord[];
|
|
1813
|
+
searchResultsMetadata?: SearchResultsMetadata | null | undefined;
|
|
1814
|
+
};
|
|
1815
|
+
export type SearchRecord = {
|
|
1816
|
+
record: sObject;
|
|
1817
|
+
searchRecordMetadata?: SearchRecordMetadata | null | undefined;
|
|
1818
|
+
snippet?: SearchSnippet | null | undefined;
|
|
1819
|
+
};
|
|
1820
|
+
export type SearchRecordMetadata = {
|
|
1821
|
+
searchPromoted: boolean;
|
|
1822
|
+
spellCorrected: boolean;
|
|
1823
|
+
};
|
|
1824
|
+
export type SearchSnippet = {
|
|
1825
|
+
text?: string | null | undefined;
|
|
1826
|
+
wholeFields: NameValuePair[];
|
|
1827
|
+
};
|
|
1828
|
+
export type SearchResultsMetadata = {
|
|
1829
|
+
entityLabelMetadata: LabelsSearchMetadata[];
|
|
1830
|
+
entityMetadata: EntitySearchMetadata[];
|
|
1831
|
+
};
|
|
1832
|
+
export type LabelsSearchMetadata = {
|
|
1833
|
+
entityFieldLabels: NameValuePair[];
|
|
1834
|
+
entityName: string;
|
|
1835
|
+
};
|
|
1836
|
+
export type EntitySearchMetadata = {
|
|
1837
|
+
entityName: string;
|
|
1838
|
+
errorMetadata?: EntityErrorMetadata | null | undefined;
|
|
1839
|
+
fieldMetadata: FieldLevelSearchMetadata[];
|
|
1840
|
+
intentQueryMetadata?: EntityIntentQueryMetadata | null | undefined;
|
|
1841
|
+
searchPromotionMetadata?: EntitySearchPromotionMetadata | null | undefined;
|
|
1842
|
+
spellCorrectionMetadata?: EntitySpellCorrectionMetadata | null | undefined;
|
|
1843
|
+
};
|
|
1844
|
+
export type FieldLevelSearchMetadata = {
|
|
1845
|
+
label?: string | null | undefined;
|
|
1846
|
+
name: string;
|
|
1847
|
+
type?: string | null | undefined;
|
|
1848
|
+
};
|
|
1849
|
+
export type EntitySpellCorrectionMetadata = {
|
|
1850
|
+
correctedQuery: string;
|
|
1851
|
+
hasNonCorrectedResults: boolean;
|
|
1852
|
+
};
|
|
1853
|
+
export type EntitySearchPromotionMetadata = {
|
|
1854
|
+
promotedResultCount: number;
|
|
1855
|
+
};
|
|
1856
|
+
export type EntityIntentQueryMetadata = {
|
|
1857
|
+
intentQuery: boolean;
|
|
1858
|
+
message?: string | null | undefined;
|
|
1859
|
+
};
|
|
1860
|
+
export type EntityErrorMetadata = {
|
|
1861
|
+
errorCode?: string | null | undefined;
|
|
1862
|
+
message?: string | null | undefined;
|
|
1863
|
+
};
|
|
1864
|
+
export type RelationshipReferenceTo = {
|
|
1865
|
+
referenceTo: string[];
|
|
1866
|
+
};
|
|
1867
|
+
export type RecordTypesSupported = {
|
|
1868
|
+
recordTypeInfos: RecordTypeInfo[];
|
|
1869
|
+
};
|
|
1870
|
+
export type JunctionIdListNames = {
|
|
1871
|
+
names: string[];
|
|
1872
|
+
};
|
|
1873
|
+
export type SearchLayoutButtonsDisplayed = {
|
|
1874
|
+
applicable: boolean;
|
|
1875
|
+
buttons: SearchLayoutButton[];
|
|
1876
|
+
};
|
|
1877
|
+
export type SearchLayoutButton = {
|
|
1878
|
+
apiName: string;
|
|
1879
|
+
label: string;
|
|
1880
|
+
};
|
|
1881
|
+
export type SearchLayoutFieldsDisplayed = {
|
|
1882
|
+
applicable: boolean;
|
|
1883
|
+
fields: SearchLayoutField[];
|
|
1884
|
+
};
|
|
1885
|
+
export type SearchLayoutField = {
|
|
1886
|
+
apiName: string;
|
|
1887
|
+
label: string;
|
|
1888
|
+
sortable: boolean;
|
|
1889
|
+
};
|
|
1890
|
+
export type NameValuePair = {
|
|
1891
|
+
name: string;
|
|
1892
|
+
value: string;
|
|
1893
|
+
};
|
|
1894
|
+
export type NameObjectValuePair = {
|
|
1895
|
+
isVisible?: boolean | null | undefined;
|
|
1896
|
+
name: string;
|
|
1897
|
+
value: any[];
|
|
1898
|
+
};
|
|
1899
|
+
export type GetUpdatedResult = {
|
|
1900
|
+
ids: string[];
|
|
1901
|
+
latestDateCovered: string;
|
|
1902
|
+
};
|
|
1903
|
+
export type GetDeletedResult = {
|
|
1904
|
+
deletedRecords: DeletedRecord[];
|
|
1905
|
+
earliestDateAvailable: string;
|
|
1906
|
+
latestDateCovered: string;
|
|
1907
|
+
};
|
|
1908
|
+
export type DeletedRecord = {
|
|
1909
|
+
deletedDate: string;
|
|
1910
|
+
id: string;
|
|
1911
|
+
};
|
|
1912
|
+
export type GetServerTimestampResult = {
|
|
1913
|
+
timestamp: string;
|
|
1914
|
+
};
|
|
1915
|
+
export type InvalidateSessionsResult = {
|
|
1916
|
+
errors: Error[];
|
|
1917
|
+
success: boolean;
|
|
1918
|
+
};
|
|
1919
|
+
export type SetPasswordResult = {};
|
|
1920
|
+
export type ChangeOwnPasswordResult = {};
|
|
1921
|
+
export type ResetPasswordResult = {
|
|
1922
|
+
password: string;
|
|
1923
|
+
};
|
|
1924
|
+
export type GetUserInfoResult = {
|
|
1925
|
+
accessibilityMode: boolean;
|
|
1926
|
+
chatterExternal: boolean;
|
|
1927
|
+
currencySymbol?: string | null | undefined;
|
|
1928
|
+
orgAttachmentFileSizeLimit: number;
|
|
1929
|
+
orgDefaultCurrencyIsoCode?: string | null | undefined;
|
|
1930
|
+
orgDefaultCurrencyLocale?: string | null | undefined;
|
|
1931
|
+
orgDisallowHtmlAttachments: boolean;
|
|
1932
|
+
orgHasPersonAccounts: boolean;
|
|
1933
|
+
organizationId: string;
|
|
1934
|
+
organizationMultiCurrency: boolean;
|
|
1935
|
+
organizationName: string;
|
|
1936
|
+
profileId: string;
|
|
1937
|
+
roleId?: string | null | undefined;
|
|
1938
|
+
sessionSecondsValid: number;
|
|
1939
|
+
userDefaultCurrencyIsoCode?: string | null | undefined;
|
|
1940
|
+
userEmail: string;
|
|
1941
|
+
userFullName: string;
|
|
1942
|
+
userId: string;
|
|
1943
|
+
userLanguage: string;
|
|
1944
|
+
userLocale: string;
|
|
1945
|
+
userName: string;
|
|
1946
|
+
userTimeZone: string;
|
|
1947
|
+
userType: string;
|
|
1948
|
+
userUiSkin: string;
|
|
1949
|
+
};
|
|
1950
|
+
export type LoginResult = {
|
|
1951
|
+
metadataServerUrl?: string | null | undefined;
|
|
1952
|
+
passwordExpired: boolean;
|
|
1953
|
+
sandbox: boolean;
|
|
1954
|
+
serverUrl?: string | null | undefined;
|
|
1955
|
+
sessionId?: string | null | undefined;
|
|
1956
|
+
userId?: string | null | undefined;
|
|
1957
|
+
userInfo?: GetUserInfoResult | null | undefined;
|
|
1958
|
+
};
|
|
1959
|
+
export type ExtendedErrorDetails = {
|
|
1960
|
+
extendedErrorCode: string;
|
|
1961
|
+
};
|
|
1962
|
+
export type Error = {
|
|
1963
|
+
extendedErrorDetails?: ExtendedErrorDetails[] | null | undefined;
|
|
1964
|
+
fields?: string[] | null | undefined;
|
|
1965
|
+
message: string;
|
|
1966
|
+
statusCode: string;
|
|
1967
|
+
};
|
|
1968
|
+
export type SendEmailError = {
|
|
1969
|
+
fields?: string[] | null | undefined;
|
|
1970
|
+
message: string;
|
|
1971
|
+
statusCode: string;
|
|
1972
|
+
targetObjectId?: string | null | undefined;
|
|
1973
|
+
};
|
|
1974
|
+
export type SaveResult = {
|
|
1975
|
+
errors: Error[];
|
|
1976
|
+
id?: string | null | undefined;
|
|
1977
|
+
success: boolean;
|
|
1978
|
+
};
|
|
1979
|
+
export type RenderEmailTemplateError = {
|
|
1980
|
+
fieldName: string;
|
|
1981
|
+
message: string;
|
|
1982
|
+
offset: number;
|
|
1983
|
+
statusCode: string;
|
|
1984
|
+
};
|
|
1985
|
+
export type UpsertResult = {
|
|
1986
|
+
created: boolean;
|
|
1987
|
+
errors: Error[];
|
|
1988
|
+
id?: string | null | undefined;
|
|
1989
|
+
success: boolean;
|
|
1990
|
+
};
|
|
1991
|
+
export type PerformQuickActionResult = {
|
|
1992
|
+
contextId?: string | null | undefined;
|
|
1993
|
+
created: boolean;
|
|
1994
|
+
errors: Error[];
|
|
1995
|
+
feedItemIds?: string[] | null | undefined;
|
|
1996
|
+
ids?: string[] | null | undefined;
|
|
1997
|
+
success: boolean;
|
|
1998
|
+
successMessage?: string | null | undefined;
|
|
1999
|
+
};
|
|
2000
|
+
export type QuickActionTemplateResult = {
|
|
2001
|
+
contextId?: string | null | undefined;
|
|
2002
|
+
defaultValueFormulas?: sObject | null | undefined;
|
|
2003
|
+
defaultValues?: sObject | null | undefined;
|
|
2004
|
+
errors: Error[];
|
|
2005
|
+
success: boolean;
|
|
2006
|
+
};
|
|
2007
|
+
export type MergeRequest = {
|
|
2008
|
+
additionalInformationMap: AdditionalInformationMap[];
|
|
2009
|
+
masterRecord: sObject;
|
|
2010
|
+
recordToMergeIds: string[];
|
|
2011
|
+
};
|
|
2012
|
+
export type MergeResult = {
|
|
2013
|
+
errors: Error[];
|
|
2014
|
+
id?: string | null | undefined;
|
|
2015
|
+
mergedRecordIds: string[];
|
|
2016
|
+
success: boolean;
|
|
2017
|
+
updatedRelatedIds: string[];
|
|
2018
|
+
};
|
|
2019
|
+
export type ProcessRequest = {
|
|
2020
|
+
comments?: string | null | undefined;
|
|
2021
|
+
nextApproverIds?: string[] | null | undefined;
|
|
2022
|
+
};
|
|
2023
|
+
export type ProcessSubmitRequest = ProcessRequest & {
|
|
2024
|
+
objectId: string;
|
|
2025
|
+
submitterId?: string | null | undefined;
|
|
2026
|
+
processDefinitionNameOrId?: string | null | undefined;
|
|
2027
|
+
skipEntryCriteria?: boolean | null | undefined;
|
|
2028
|
+
};
|
|
2029
|
+
export type ProcessWorkitemRequest = ProcessRequest & {
|
|
2030
|
+
action: string;
|
|
2031
|
+
workitemId: string;
|
|
2032
|
+
};
|
|
2033
|
+
export type PerformQuickActionRequest = {
|
|
2034
|
+
contextId?: string | null | undefined;
|
|
2035
|
+
quickActionName: string;
|
|
2036
|
+
records?: sObject[] | null | undefined;
|
|
2037
|
+
};
|
|
2038
|
+
export type DescribeAvailableQuickActionResult = {
|
|
2039
|
+
actionEnumOrId: string;
|
|
2040
|
+
label: string;
|
|
2041
|
+
name: string;
|
|
2042
|
+
type: string;
|
|
2043
|
+
};
|
|
2044
|
+
export type DescribeQuickActionResult = {
|
|
2045
|
+
accessLevelRequired?: string | null | undefined;
|
|
2046
|
+
actionEnumOrId: string;
|
|
2047
|
+
canvasApplicationId?: string | null | undefined;
|
|
2048
|
+
canvasApplicationName?: string | null | undefined;
|
|
2049
|
+
colors: DescribeColor[];
|
|
2050
|
+
contextSobjectType?: string | null | undefined;
|
|
2051
|
+
defaultValues?: DescribeQuickActionDefaultValue[] | null | undefined;
|
|
2052
|
+
flowDevName?: string | null | undefined;
|
|
2053
|
+
flowRecordIdVar?: string | null | undefined;
|
|
2054
|
+
height?: number | null | undefined;
|
|
2055
|
+
iconName?: string | null | undefined;
|
|
2056
|
+
iconUrl?: string | null | undefined;
|
|
2057
|
+
icons: DescribeIcon[];
|
|
2058
|
+
label: string;
|
|
2059
|
+
layout?: DescribeLayoutSection | null | undefined;
|
|
2060
|
+
lightningComponentBundleId?: string | null | undefined;
|
|
2061
|
+
lightningComponentBundleName?: string | null | undefined;
|
|
2062
|
+
lightningComponentQualifiedName?: string | null | undefined;
|
|
2063
|
+
miniIconUrl?: string | null | undefined;
|
|
2064
|
+
mobileExtensionDisplayMode?: string | null | undefined;
|
|
2065
|
+
mobileExtensionId?: string | null | undefined;
|
|
2066
|
+
name: string;
|
|
2067
|
+
showQuickActionLcHeader: boolean;
|
|
2068
|
+
showQuickActionVfHeader: boolean;
|
|
2069
|
+
targetParentField?: string | null | undefined;
|
|
2070
|
+
targetRecordTypeId?: string | null | undefined;
|
|
2071
|
+
targetSobjectType?: string | null | undefined;
|
|
2072
|
+
type: string;
|
|
2073
|
+
visualforcePageName?: string | null | undefined;
|
|
2074
|
+
visualforcePageUrl?: string | null | undefined;
|
|
2075
|
+
width?: number | null | undefined;
|
|
2076
|
+
};
|
|
2077
|
+
export type DescribeQuickActionDefaultValue = {
|
|
2078
|
+
defaultValue?: string | null | undefined;
|
|
2079
|
+
field: string;
|
|
2080
|
+
};
|
|
2081
|
+
export type DescribeVisualForceResult = {
|
|
2082
|
+
domain: string;
|
|
2083
|
+
};
|
|
2084
|
+
export type ProcessResult = {
|
|
2085
|
+
actorIds: string[];
|
|
2086
|
+
entityId?: string | null | undefined;
|
|
2087
|
+
errors: Error[];
|
|
2088
|
+
instanceId?: string | null | undefined;
|
|
2089
|
+
instanceStatus?: string | null | undefined;
|
|
2090
|
+
newWorkitemIds?: string[] | null | undefined;
|
|
2091
|
+
success: boolean;
|
|
2092
|
+
};
|
|
2093
|
+
export type DeleteResult = {
|
|
2094
|
+
errors?: Error[] | null | undefined;
|
|
2095
|
+
id?: string | null | undefined;
|
|
2096
|
+
success: boolean;
|
|
2097
|
+
};
|
|
2098
|
+
export type UndeleteResult = {
|
|
2099
|
+
errors: Error[];
|
|
2100
|
+
id?: string | null | undefined;
|
|
2101
|
+
success: boolean;
|
|
2102
|
+
};
|
|
2103
|
+
export type DeleteByExampleResult = {
|
|
2104
|
+
entity?: sObject | null | undefined;
|
|
2105
|
+
errors?: Error[] | null | undefined;
|
|
2106
|
+
rowCount: number;
|
|
2107
|
+
success: boolean;
|
|
2108
|
+
};
|
|
2109
|
+
export type EmptyRecycleBinResult = {
|
|
2110
|
+
errors: Error[];
|
|
2111
|
+
id?: string | null | undefined;
|
|
2112
|
+
success: boolean;
|
|
2113
|
+
};
|
|
2114
|
+
export type LeadConvert = {
|
|
2115
|
+
accountId?: string | null | undefined;
|
|
2116
|
+
accountRecord?: sObject | null | undefined;
|
|
2117
|
+
bypassAccountDedupeCheck?: boolean | null | undefined;
|
|
2118
|
+
bypassContactDedupeCheck?: boolean | null | undefined;
|
|
2119
|
+
contactId?: string | null | undefined;
|
|
2120
|
+
contactRecord?: sObject | null | undefined;
|
|
2121
|
+
convertedStatus: string;
|
|
2122
|
+
doNotCreateOpportunity: boolean;
|
|
2123
|
+
leadId: string;
|
|
2124
|
+
opportunityId?: string | null | undefined;
|
|
2125
|
+
opportunityName?: string | null | undefined;
|
|
2126
|
+
opportunityRecord?: sObject | null | undefined;
|
|
2127
|
+
overwriteLeadSource: boolean;
|
|
2128
|
+
ownerId?: string | null | undefined;
|
|
2129
|
+
sendNotificationEmail: boolean;
|
|
2130
|
+
};
|
|
2131
|
+
export type LeadConvertResult = {
|
|
2132
|
+
accountId?: string | null | undefined;
|
|
2133
|
+
contactId?: string | null | undefined;
|
|
2134
|
+
errors: Error[];
|
|
2135
|
+
leadId?: string | null | undefined;
|
|
2136
|
+
opportunityId?: string | null | undefined;
|
|
2137
|
+
success: boolean;
|
|
2138
|
+
};
|
|
2139
|
+
export type DescribeSObjectResult = {
|
|
2140
|
+
actionOverrides?: ActionOverride[] | null | undefined;
|
|
2141
|
+
activateable: boolean;
|
|
2142
|
+
childRelationships: ChildRelationship[];
|
|
2143
|
+
compactLayoutable: boolean;
|
|
2144
|
+
createable: boolean;
|
|
2145
|
+
custom: boolean;
|
|
2146
|
+
customSetting: boolean;
|
|
2147
|
+
dataTranslationEnabled?: boolean | null | undefined;
|
|
2148
|
+
deepCloneable: boolean;
|
|
2149
|
+
defaultImplementation?: string | null | undefined;
|
|
2150
|
+
deletable: boolean;
|
|
2151
|
+
deprecatedAndHidden: boolean;
|
|
2152
|
+
feedEnabled: boolean;
|
|
2153
|
+
fields?: Field[] | null | undefined;
|
|
2154
|
+
hasSubtypes: boolean;
|
|
2155
|
+
idEnabled: boolean;
|
|
2156
|
+
implementedBy?: string | null | undefined;
|
|
2157
|
+
implementsInterfaces?: string | null | undefined;
|
|
2158
|
+
isInterface: boolean;
|
|
2159
|
+
isSubtype: boolean;
|
|
2160
|
+
keyPrefix?: string | null | undefined;
|
|
2161
|
+
label: string;
|
|
2162
|
+
labelPlural: string;
|
|
2163
|
+
layoutable: boolean;
|
|
2164
|
+
mergeable: boolean;
|
|
2165
|
+
mruEnabled: boolean;
|
|
2166
|
+
name: string;
|
|
2167
|
+
namedLayoutInfos: NamedLayoutInfo[];
|
|
2168
|
+
networkScopeFieldName?: string | null | undefined;
|
|
2169
|
+
queryable: boolean;
|
|
2170
|
+
recordTypeInfos: RecordTypeInfo[];
|
|
2171
|
+
replicateable: boolean;
|
|
2172
|
+
retrieveable: boolean;
|
|
2173
|
+
searchLayoutable?: boolean | null | undefined;
|
|
2174
|
+
searchable: boolean;
|
|
2175
|
+
supportedScopes?: ScopeInfo[] | null | undefined;
|
|
2176
|
+
triggerable?: boolean | null | undefined;
|
|
2177
|
+
undeletable: boolean;
|
|
2178
|
+
updateable: boolean;
|
|
2179
|
+
urlDetail?: string | null | undefined;
|
|
2180
|
+
urlEdit?: string | null | undefined;
|
|
2181
|
+
urlNew?: string | null | undefined;
|
|
2182
|
+
};
|
|
2183
|
+
export type DescribeGlobalSObjectResult = {
|
|
2184
|
+
activateable: boolean;
|
|
2185
|
+
createable: boolean;
|
|
2186
|
+
custom: boolean;
|
|
2187
|
+
customSetting: boolean;
|
|
2188
|
+
dataTranslationEnabled?: boolean | null | undefined;
|
|
2189
|
+
deepCloneable: boolean;
|
|
2190
|
+
deletable: boolean;
|
|
2191
|
+
deprecatedAndHidden: boolean;
|
|
2192
|
+
feedEnabled: boolean;
|
|
2193
|
+
hasSubtypes: boolean;
|
|
2194
|
+
idEnabled: boolean;
|
|
2195
|
+
isInterface: boolean;
|
|
2196
|
+
isSubtype: boolean;
|
|
2197
|
+
keyPrefix?: string | null | undefined;
|
|
2198
|
+
label: string;
|
|
2199
|
+
labelPlural: string;
|
|
2200
|
+
layoutable: boolean;
|
|
2201
|
+
mergeable: boolean;
|
|
2202
|
+
mruEnabled: boolean;
|
|
2203
|
+
name: string;
|
|
2204
|
+
queryable: boolean;
|
|
2205
|
+
replicateable: boolean;
|
|
2206
|
+
retrieveable: boolean;
|
|
2207
|
+
searchable: boolean;
|
|
2208
|
+
triggerable: boolean;
|
|
2209
|
+
undeletable: boolean;
|
|
2210
|
+
updateable: boolean;
|
|
2211
|
+
};
|
|
2212
|
+
export type ChildRelationship = {
|
|
2213
|
+
cascadeDelete: boolean;
|
|
2214
|
+
childSObject: string;
|
|
2215
|
+
deprecatedAndHidden: boolean;
|
|
2216
|
+
field: string;
|
|
2217
|
+
junctionIdListNames?: string[] | null | undefined;
|
|
2218
|
+
junctionReferenceTo?: string[] | null | undefined;
|
|
2219
|
+
relationshipName?: string | null | undefined;
|
|
2220
|
+
restrictedDelete?: boolean | null | undefined;
|
|
2221
|
+
};
|
|
2222
|
+
export type DescribeGlobalResult = {
|
|
2223
|
+
encoding?: string | null | undefined;
|
|
2224
|
+
maxBatchSize: number;
|
|
2225
|
+
sobjects: DescribeGlobalSObjectResult[];
|
|
2226
|
+
};
|
|
2227
|
+
export type DescribeGlobalTheme = {
|
|
2228
|
+
global: DescribeGlobalResult;
|
|
2229
|
+
theme: DescribeThemeResult;
|
|
2230
|
+
};
|
|
2231
|
+
export type ScopeInfo = {
|
|
2232
|
+
label: string;
|
|
2233
|
+
name: string;
|
|
2234
|
+
};
|
|
2235
|
+
export type StringList = {
|
|
2236
|
+
values: string[];
|
|
2237
|
+
};
|
|
2238
|
+
export type ChangeEventHeader = {
|
|
2239
|
+
entityName: string;
|
|
2240
|
+
recordIds: string[];
|
|
2241
|
+
commitTimestamp: number;
|
|
2242
|
+
commitNumber: number;
|
|
2243
|
+
commitUser: string;
|
|
2244
|
+
diffFields: string[];
|
|
2245
|
+
changeType: string;
|
|
2246
|
+
changeOrigin: string;
|
|
2247
|
+
transactionKey: string;
|
|
2248
|
+
sequenceNumber: number;
|
|
2249
|
+
nulledFields: string[];
|
|
2250
|
+
changedFields: string[];
|
|
2251
|
+
};
|
|
2252
|
+
export type FilteredLookupInfo = {
|
|
2253
|
+
controllingFields: string[];
|
|
2254
|
+
dependent: boolean;
|
|
2255
|
+
optionalFilter: boolean;
|
|
2256
|
+
};
|
|
2257
|
+
export type Field = {
|
|
2258
|
+
aggregatable: boolean;
|
|
2259
|
+
aiPredictionField: boolean;
|
|
2260
|
+
autoNumber: boolean;
|
|
2261
|
+
byteLength: number;
|
|
2262
|
+
calculated: boolean;
|
|
2263
|
+
calculatedFormula?: string | null | undefined;
|
|
2264
|
+
cascadeDelete?: boolean | null | undefined;
|
|
2265
|
+
caseSensitive: boolean;
|
|
2266
|
+
compoundFieldName?: string | null | undefined;
|
|
2267
|
+
controllerName?: string | null | undefined;
|
|
2268
|
+
createable: boolean;
|
|
2269
|
+
custom: boolean;
|
|
2270
|
+
dataTranslationEnabled?: boolean | null | undefined;
|
|
2271
|
+
defaultValue?: any | null | undefined;
|
|
2272
|
+
defaultValueFormula?: string | null | undefined;
|
|
2273
|
+
defaultedOnCreate: boolean;
|
|
2274
|
+
dependentPicklist?: boolean | null | undefined;
|
|
2275
|
+
deprecatedAndHidden: boolean;
|
|
2276
|
+
digits: number;
|
|
2277
|
+
displayLocationInDecimal?: boolean | null | undefined;
|
|
2278
|
+
encrypted?: boolean | null | undefined;
|
|
2279
|
+
externalId?: boolean | null | undefined;
|
|
2280
|
+
extraTypeInfo?: string | null | undefined;
|
|
2281
|
+
filterable: boolean;
|
|
2282
|
+
filteredLookupInfo?: FilteredLookupInfo | null | undefined;
|
|
2283
|
+
formulaTreatNullNumberAsZero?: boolean | null | undefined;
|
|
2284
|
+
groupable: boolean;
|
|
2285
|
+
highScaleNumber?: boolean | null | undefined;
|
|
2286
|
+
htmlFormatted?: boolean | null | undefined;
|
|
2287
|
+
idLookup: boolean;
|
|
2288
|
+
inlineHelpText?: string | null | undefined;
|
|
2289
|
+
label: string;
|
|
2290
|
+
length: number;
|
|
2291
|
+
mask?: string | null | undefined;
|
|
2292
|
+
maskType?: string | null | undefined;
|
|
2293
|
+
name: string;
|
|
2294
|
+
nameField: boolean;
|
|
2295
|
+
namePointing?: boolean | null | undefined;
|
|
2296
|
+
nillable: boolean;
|
|
2297
|
+
permissionable: boolean;
|
|
2298
|
+
picklistValues?: PicklistEntry[] | null | undefined;
|
|
2299
|
+
polymorphicForeignKey: boolean;
|
|
2300
|
+
precision: number;
|
|
2301
|
+
queryByDistance: boolean;
|
|
2302
|
+
referenceTargetField?: string | null | undefined;
|
|
2303
|
+
referenceTo?: string[] | null | undefined;
|
|
2304
|
+
relationshipName?: string | null | undefined;
|
|
2305
|
+
relationshipOrder?: number | null | undefined;
|
|
2306
|
+
restrictedDelete?: boolean | null | undefined;
|
|
2307
|
+
restrictedPicklist: boolean;
|
|
2308
|
+
scale: number;
|
|
2309
|
+
searchPrefilterable: boolean;
|
|
2310
|
+
soapType: string;
|
|
2311
|
+
sortable?: boolean | null | undefined;
|
|
2312
|
+
type: string;
|
|
2313
|
+
unique: boolean;
|
|
2314
|
+
updateable: boolean;
|
|
2315
|
+
writeRequiresMasterRead?: boolean | null | undefined;
|
|
2316
|
+
};
|
|
2317
|
+
export type PicklistEntry = {
|
|
2318
|
+
active: boolean;
|
|
2319
|
+
defaultValue: boolean;
|
|
2320
|
+
label?: string | null | undefined;
|
|
2321
|
+
validFor?: string | null | undefined;
|
|
2322
|
+
value: string;
|
|
2323
|
+
};
|
|
2324
|
+
export type DescribeDataCategoryGroupResult = {
|
|
2325
|
+
categoryCount: number;
|
|
2326
|
+
description: string;
|
|
2327
|
+
label: string;
|
|
2328
|
+
name: string;
|
|
2329
|
+
sobject: string;
|
|
2330
|
+
};
|
|
2331
|
+
export type DescribeDataCategoryGroupStructureResult = {
|
|
2332
|
+
description: string;
|
|
2333
|
+
label: string;
|
|
2334
|
+
name: string;
|
|
2335
|
+
sobject: string;
|
|
2336
|
+
topCategories: DataCategory[];
|
|
2337
|
+
};
|
|
2338
|
+
export type DataCategoryGroupSobjectTypePair = {
|
|
2339
|
+
dataCategoryGroupName: string;
|
|
2340
|
+
sobject: string;
|
|
2341
|
+
};
|
|
2342
|
+
export type DataCategory = {
|
|
2343
|
+
childCategories: DataCategory[];
|
|
2344
|
+
label: string;
|
|
2345
|
+
name: string;
|
|
2346
|
+
};
|
|
2347
|
+
export type DescribeDataCategoryMappingResult = {
|
|
2348
|
+
dataCategoryGroupId: string;
|
|
2349
|
+
dataCategoryGroupLabel: string;
|
|
2350
|
+
dataCategoryGroupName: string;
|
|
2351
|
+
dataCategoryId: string;
|
|
2352
|
+
dataCategoryLabel: string;
|
|
2353
|
+
dataCategoryName: string;
|
|
2354
|
+
id: string;
|
|
2355
|
+
mappedEntity: string;
|
|
2356
|
+
mappedField: string;
|
|
2357
|
+
};
|
|
2358
|
+
export type KnowledgeSettings = {
|
|
2359
|
+
defaultLanguage?: string | null | undefined;
|
|
2360
|
+
knowledgeEnabled: boolean;
|
|
2361
|
+
languages: KnowledgeLanguageItem[];
|
|
2362
|
+
};
|
|
2363
|
+
export type KnowledgeLanguageItem = {
|
|
2364
|
+
active: boolean;
|
|
2365
|
+
assigneeId?: string | null | undefined;
|
|
2366
|
+
name: string;
|
|
2367
|
+
};
|
|
2368
|
+
export type FieldDiff = {
|
|
2369
|
+
difference: string;
|
|
2370
|
+
name: string;
|
|
2371
|
+
};
|
|
2372
|
+
export type AdditionalInformationMap = {
|
|
2373
|
+
name: string;
|
|
2374
|
+
value: string;
|
|
2375
|
+
};
|
|
2376
|
+
export type MatchRecord = {
|
|
2377
|
+
additionalInformation: AdditionalInformationMap[];
|
|
2378
|
+
fieldDiffs: FieldDiff[];
|
|
2379
|
+
matchConfidence: number;
|
|
2380
|
+
record: sObject;
|
|
2381
|
+
};
|
|
2382
|
+
export type MatchResult = {
|
|
2383
|
+
entityType: string;
|
|
2384
|
+
errors: Error[];
|
|
2385
|
+
matchEngine: string;
|
|
2386
|
+
matchRecords: MatchRecord[];
|
|
2387
|
+
rule: string;
|
|
2388
|
+
size: number;
|
|
2389
|
+
success: boolean;
|
|
2390
|
+
};
|
|
2391
|
+
export type DuplicateResult = {
|
|
2392
|
+
allowSave: boolean;
|
|
2393
|
+
duplicateRule: string;
|
|
2394
|
+
duplicateRuleEntityType: string;
|
|
2395
|
+
errorMessage?: string | null | undefined;
|
|
2396
|
+
matchResults: MatchResult[];
|
|
2397
|
+
};
|
|
2398
|
+
export type DuplicateError = Error & {
|
|
2399
|
+
duplicateResult: DuplicateResult;
|
|
2400
|
+
};
|
|
2401
|
+
export type DescribeNounResult = {
|
|
2402
|
+
caseValues: NameCaseValue[];
|
|
2403
|
+
developerName: string;
|
|
2404
|
+
gender?: string | null | undefined;
|
|
2405
|
+
name: string;
|
|
2406
|
+
pluralAlias?: string | null | undefined;
|
|
2407
|
+
startsWith?: string | null | undefined;
|
|
2408
|
+
};
|
|
2409
|
+
export type NameCaseValue = {
|
|
2410
|
+
article?: string | null | undefined;
|
|
2411
|
+
caseType?: string | null | undefined;
|
|
2412
|
+
number?: string | null | undefined;
|
|
2413
|
+
possessive?: string | null | undefined;
|
|
2414
|
+
value?: string | null | undefined;
|
|
2415
|
+
};
|
|
2416
|
+
export type FindDuplicatesResult = {
|
|
2417
|
+
duplicateResults: DuplicateResult[];
|
|
2418
|
+
errors: Error[];
|
|
2419
|
+
success: boolean;
|
|
2420
|
+
};
|
|
2421
|
+
export type DescribeAppMenuResult = {
|
|
2422
|
+
appMenuItems: DescribeAppMenuItem[];
|
|
2423
|
+
};
|
|
2424
|
+
export type DescribeAppMenuItem = {
|
|
2425
|
+
colors: DescribeColor[];
|
|
2426
|
+
content: string;
|
|
2427
|
+
icons: DescribeIcon[];
|
|
2428
|
+
label: string;
|
|
2429
|
+
name: string;
|
|
2430
|
+
type: string;
|
|
2431
|
+
url: string;
|
|
2432
|
+
};
|
|
2433
|
+
export type DescribeThemeResult = {
|
|
2434
|
+
themeItems: DescribeThemeItem[];
|
|
2435
|
+
};
|
|
2436
|
+
export type DescribeThemeItem = {
|
|
2437
|
+
colors: DescribeColor[];
|
|
2438
|
+
icons: DescribeIcon[];
|
|
2439
|
+
name: string;
|
|
2440
|
+
};
|
|
2441
|
+
export type DescribeSoftphoneLayoutResult = {
|
|
2442
|
+
callTypes: DescribeSoftphoneLayoutCallType[];
|
|
2443
|
+
id: string;
|
|
2444
|
+
name: string;
|
|
2445
|
+
};
|
|
2446
|
+
export type DescribeSoftphoneLayoutCallType = {
|
|
2447
|
+
infoFields: DescribeSoftphoneLayoutInfoField[];
|
|
2448
|
+
name: string;
|
|
2449
|
+
screenPopOptions: DescribeSoftphoneScreenPopOption[];
|
|
2450
|
+
screenPopsOpenWithin?: string | null | undefined;
|
|
2451
|
+
sections: DescribeSoftphoneLayoutSection[];
|
|
2452
|
+
};
|
|
2453
|
+
export type DescribeSoftphoneScreenPopOption = {
|
|
2454
|
+
matchType: string;
|
|
2455
|
+
screenPopData: string;
|
|
2456
|
+
screenPopType: string;
|
|
2457
|
+
};
|
|
2458
|
+
export type DescribeSoftphoneLayoutInfoField = {
|
|
2459
|
+
name: string;
|
|
2460
|
+
};
|
|
2461
|
+
export type DescribeSoftphoneLayoutSection = {
|
|
2462
|
+
entityApiName: string;
|
|
2463
|
+
items: DescribeSoftphoneLayoutItem[];
|
|
2464
|
+
};
|
|
2465
|
+
export type DescribeSoftphoneLayoutItem = {
|
|
2466
|
+
itemApiName: string;
|
|
2467
|
+
};
|
|
2468
|
+
export type DescribeCompactLayoutsResult = {
|
|
2469
|
+
compactLayouts: DescribeCompactLayout[];
|
|
2470
|
+
defaultCompactLayoutId: string;
|
|
2471
|
+
recordTypeCompactLayoutMappings: RecordTypeCompactLayoutMapping[];
|
|
2472
|
+
};
|
|
2473
|
+
export type DescribeCompactLayout = {
|
|
2474
|
+
actions: DescribeLayoutButton[];
|
|
2475
|
+
fieldItems: DescribeLayoutItem[];
|
|
2476
|
+
id: string;
|
|
2477
|
+
imageItems: DescribeLayoutItem[];
|
|
2478
|
+
label: string;
|
|
2479
|
+
name: string;
|
|
2480
|
+
objectType: string;
|
|
2481
|
+
};
|
|
2482
|
+
export type RecordTypeCompactLayoutMapping = {
|
|
2483
|
+
available: boolean;
|
|
2484
|
+
compactLayoutId?: string | null | undefined;
|
|
2485
|
+
compactLayoutName: string;
|
|
2486
|
+
recordTypeId: string;
|
|
2487
|
+
recordTypeName: string;
|
|
2488
|
+
};
|
|
2489
|
+
export type DescribePathAssistantsResult = {
|
|
2490
|
+
pathAssistants: DescribePathAssistant[];
|
|
2491
|
+
};
|
|
2492
|
+
export type DescribePathAssistant = {
|
|
2493
|
+
active: boolean;
|
|
2494
|
+
animationRule?: DescribeAnimationRule[] | null | undefined;
|
|
2495
|
+
apiName: string;
|
|
2496
|
+
label: string;
|
|
2497
|
+
pathPicklistField: string;
|
|
2498
|
+
picklistsForRecordType?: PicklistForRecordType[] | null | undefined;
|
|
2499
|
+
recordTypeId?: string | null | undefined;
|
|
2500
|
+
steps: DescribePathAssistantStep[];
|
|
2501
|
+
};
|
|
2502
|
+
export type DescribePathAssistantStep = {
|
|
2503
|
+
closed: boolean;
|
|
2504
|
+
converted: boolean;
|
|
2505
|
+
fields: DescribePathAssistantField[];
|
|
2506
|
+
info?: string | null | undefined;
|
|
2507
|
+
layoutSection?: DescribeLayoutSection | null | undefined;
|
|
2508
|
+
picklistLabel: string;
|
|
2509
|
+
picklistValue: string;
|
|
2510
|
+
won: boolean;
|
|
2511
|
+
};
|
|
2512
|
+
export type DescribePathAssistantField = {
|
|
2513
|
+
apiName: string;
|
|
2514
|
+
label: string;
|
|
2515
|
+
readOnly: boolean;
|
|
2516
|
+
required: boolean;
|
|
2517
|
+
};
|
|
2518
|
+
export type DescribeAnimationRule = {
|
|
2519
|
+
animationFrequency: string;
|
|
2520
|
+
isActive: boolean;
|
|
2521
|
+
recordTypeContext: string;
|
|
2522
|
+
recordTypeId?: string | null | undefined;
|
|
2523
|
+
targetField: string;
|
|
2524
|
+
targetFieldChangeToValues: string;
|
|
2525
|
+
};
|
|
2526
|
+
export type DescribeApprovalLayoutResult = {
|
|
2527
|
+
approvalLayouts: DescribeApprovalLayout[];
|
|
2528
|
+
};
|
|
2529
|
+
export type DescribeApprovalLayout = {
|
|
2530
|
+
id: string;
|
|
2531
|
+
label: string;
|
|
2532
|
+
layoutItems: DescribeLayoutItem[];
|
|
2533
|
+
name: string;
|
|
2534
|
+
};
|
|
2535
|
+
export type DescribeLayoutResult = {
|
|
2536
|
+
layouts: DescribeLayout[];
|
|
2537
|
+
recordTypeMappings: RecordTypeMapping[];
|
|
2538
|
+
recordTypeSelectorRequired: boolean;
|
|
2539
|
+
};
|
|
2540
|
+
export type DescribeLayout = {
|
|
2541
|
+
buttonLayoutSection?: DescribeLayoutButtonSection | null | undefined;
|
|
2542
|
+
detailLayoutSections: DescribeLayoutSection[];
|
|
2543
|
+
editLayoutSections: DescribeLayoutSection[];
|
|
2544
|
+
feedView?: DescribeLayoutFeedView | null | undefined;
|
|
2545
|
+
highlightsPanelLayoutSection?: DescribeLayoutSection | null | undefined;
|
|
2546
|
+
id?: string | null | undefined;
|
|
2547
|
+
quickActionList?: DescribeQuickActionListResult | null | undefined;
|
|
2548
|
+
relatedContent?: RelatedContent | null | undefined;
|
|
2549
|
+
relatedLists: RelatedList[];
|
|
2550
|
+
saveOptions: DescribeLayoutSaveOption[];
|
|
2551
|
+
};
|
|
2552
|
+
export type DescribeQuickActionListResult = {
|
|
2553
|
+
quickActionListItems: DescribeQuickActionListItemResult[];
|
|
2554
|
+
};
|
|
2555
|
+
export type DescribeQuickActionListItemResult = {
|
|
2556
|
+
accessLevelRequired?: string | null | undefined;
|
|
2557
|
+
colors: DescribeColor[];
|
|
2558
|
+
iconUrl?: string | null | undefined;
|
|
2559
|
+
icons: DescribeIcon[];
|
|
2560
|
+
label: string;
|
|
2561
|
+
miniIconUrl: string;
|
|
2562
|
+
quickActionName: string;
|
|
2563
|
+
targetSobjectType?: string | null | undefined;
|
|
2564
|
+
type: string;
|
|
2565
|
+
};
|
|
2566
|
+
export type DescribeLayoutFeedView = {
|
|
2567
|
+
feedFilters: DescribeLayoutFeedFilter[];
|
|
2568
|
+
};
|
|
2569
|
+
export type DescribeLayoutFeedFilter = {
|
|
2570
|
+
label: string;
|
|
2571
|
+
name: string;
|
|
2572
|
+
type: string;
|
|
2573
|
+
};
|
|
2574
|
+
export type DescribeLayoutSaveOption = {
|
|
2575
|
+
defaultValue: boolean;
|
|
2576
|
+
isDisplayed: boolean;
|
|
2577
|
+
label: string;
|
|
2578
|
+
name: string;
|
|
2579
|
+
restHeaderName: string;
|
|
2580
|
+
soapHeaderName: string;
|
|
2581
|
+
};
|
|
2582
|
+
export type DescribeLayoutSection = {
|
|
2583
|
+
collapsed: boolean;
|
|
2584
|
+
columns: number;
|
|
2585
|
+
heading?: string | null | undefined;
|
|
2586
|
+
layoutRows: DescribeLayoutRow[];
|
|
2587
|
+
layoutSectionId?: string | null | undefined;
|
|
2588
|
+
parentLayoutId: string;
|
|
2589
|
+
rows: number;
|
|
2590
|
+
tabOrder: string;
|
|
2591
|
+
useCollapsibleSection: boolean;
|
|
2592
|
+
useHeading: boolean;
|
|
2593
|
+
};
|
|
2594
|
+
export type DescribeLayoutButtonSection = {
|
|
2595
|
+
detailButtons: DescribeLayoutButton[];
|
|
2596
|
+
};
|
|
2597
|
+
export type DescribeLayoutRow = {
|
|
2598
|
+
layoutItems: DescribeLayoutItem[];
|
|
2599
|
+
numItems: number;
|
|
2600
|
+
};
|
|
2601
|
+
export type DescribeLayoutItem = {
|
|
2602
|
+
editableForNew: boolean;
|
|
2603
|
+
editableForUpdate: boolean;
|
|
2604
|
+
label?: string | null | undefined;
|
|
2605
|
+
layoutComponents: DescribeLayoutComponent[];
|
|
2606
|
+
placeholder: boolean;
|
|
2607
|
+
required: boolean;
|
|
2608
|
+
};
|
|
2609
|
+
export type DescribeLayoutButton = {
|
|
2610
|
+
behavior?: string | null | undefined;
|
|
2611
|
+
colors: DescribeColor[];
|
|
2612
|
+
content?: string | null | undefined;
|
|
2613
|
+
contentSource?: string | null | undefined;
|
|
2614
|
+
custom: boolean;
|
|
2615
|
+
encoding?: string | null | undefined;
|
|
2616
|
+
height?: number | null | undefined;
|
|
2617
|
+
icons: DescribeIcon[];
|
|
2618
|
+
label?: string | null | undefined;
|
|
2619
|
+
menubar?: boolean | null | undefined;
|
|
2620
|
+
name?: string | null | undefined;
|
|
2621
|
+
overridden: boolean;
|
|
2622
|
+
resizeable?: boolean | null | undefined;
|
|
2623
|
+
scrollbars?: boolean | null | undefined;
|
|
2624
|
+
showsLocation?: boolean | null | undefined;
|
|
2625
|
+
showsStatus?: boolean | null | undefined;
|
|
2626
|
+
toolbar?: boolean | null | undefined;
|
|
2627
|
+
url?: string | null | undefined;
|
|
2628
|
+
width?: number | null | undefined;
|
|
2629
|
+
windowPosition?: string | null | undefined;
|
|
2630
|
+
};
|
|
2631
|
+
export type DescribeLayoutComponent = {
|
|
2632
|
+
displayLines: number;
|
|
2633
|
+
tabOrder: number;
|
|
2634
|
+
type: string;
|
|
2635
|
+
value?: string | null | undefined;
|
|
2636
|
+
};
|
|
2637
|
+
export type FieldComponent = DescribeLayoutComponent & {
|
|
2638
|
+
field: Field;
|
|
2639
|
+
};
|
|
2640
|
+
export type FieldLayoutComponent = DescribeLayoutComponent & {
|
|
2641
|
+
components: DescribeLayoutComponent[];
|
|
2642
|
+
fieldType: string;
|
|
2643
|
+
};
|
|
2644
|
+
export type VisualforcePage = DescribeLayoutComponent & {
|
|
2645
|
+
showLabel: boolean;
|
|
2646
|
+
showScrollbars: boolean;
|
|
2647
|
+
suggestedHeight: string;
|
|
2648
|
+
suggestedWidth: string;
|
|
2649
|
+
url: string;
|
|
2650
|
+
};
|
|
2651
|
+
export type Canvas = DescribeLayoutComponent & {
|
|
2652
|
+
displayLocation: string;
|
|
2653
|
+
referenceId: string;
|
|
2654
|
+
showLabel: boolean;
|
|
2655
|
+
showScrollbars: boolean;
|
|
2656
|
+
suggestedHeight: string;
|
|
2657
|
+
suggestedWidth: string;
|
|
2658
|
+
};
|
|
2659
|
+
export type ReportChartComponent = DescribeLayoutComponent & {
|
|
2660
|
+
cacheData: boolean;
|
|
2661
|
+
contextFilterableField: string;
|
|
2662
|
+
error: string;
|
|
2663
|
+
hideOnError: boolean;
|
|
2664
|
+
includeContext: boolean;
|
|
2665
|
+
showTitle: boolean;
|
|
2666
|
+
size: string;
|
|
2667
|
+
};
|
|
2668
|
+
export type AnalyticsCloudComponent = DescribeLayoutComponent & {
|
|
2669
|
+
error: string;
|
|
2670
|
+
filter: string;
|
|
2671
|
+
height: string;
|
|
2672
|
+
hideOnError: boolean;
|
|
2673
|
+
showSharing: boolean;
|
|
2674
|
+
showTitle: boolean;
|
|
2675
|
+
width: string;
|
|
2676
|
+
};
|
|
2677
|
+
export type CustomLinkComponent = DescribeLayoutComponent & {
|
|
2678
|
+
customLink: DescribeLayoutButton;
|
|
2679
|
+
};
|
|
2680
|
+
export type NamedLayoutInfo = {
|
|
2681
|
+
name: string;
|
|
2682
|
+
};
|
|
2683
|
+
export type RecordTypeInfo = {
|
|
2684
|
+
active: boolean;
|
|
2685
|
+
available: boolean;
|
|
2686
|
+
defaultRecordTypeMapping: boolean;
|
|
2687
|
+
developerName: string;
|
|
2688
|
+
master: boolean;
|
|
2689
|
+
name: string;
|
|
2690
|
+
recordTypeId?: string | null | undefined;
|
|
2691
|
+
};
|
|
2692
|
+
export type RecordTypeMapping = {
|
|
2693
|
+
active: boolean;
|
|
2694
|
+
available: boolean;
|
|
2695
|
+
defaultRecordTypeMapping: boolean;
|
|
2696
|
+
developerName: string;
|
|
2697
|
+
layoutId: string;
|
|
2698
|
+
master: boolean;
|
|
2699
|
+
name: string;
|
|
2700
|
+
picklistsForRecordType?: PicklistForRecordType[] | null | undefined;
|
|
2701
|
+
recordTypeId?: string | null | undefined;
|
|
2702
|
+
};
|
|
2703
|
+
export type PicklistForRecordType = {
|
|
2704
|
+
picklistName: string;
|
|
2705
|
+
picklistValues?: PicklistEntry[] | null | undefined;
|
|
2706
|
+
};
|
|
2707
|
+
export type RelatedContent = {
|
|
2708
|
+
relatedContentItems: DescribeRelatedContentItem[];
|
|
2709
|
+
};
|
|
2710
|
+
export type DescribeRelatedContentItem = {
|
|
2711
|
+
describeLayoutItem: DescribeLayoutItem;
|
|
2712
|
+
};
|
|
2713
|
+
export type RelatedList = {
|
|
2714
|
+
accessLevelRequiredForCreate?: string | null | undefined;
|
|
2715
|
+
buttons?: DescribeLayoutButton[] | null | undefined;
|
|
2716
|
+
columns: RelatedListColumn[];
|
|
2717
|
+
custom: boolean;
|
|
2718
|
+
field?: string | null | undefined;
|
|
2719
|
+
label: string;
|
|
2720
|
+
limitRows: number;
|
|
2721
|
+
name: string;
|
|
2722
|
+
sobject?: string | null | undefined;
|
|
2723
|
+
sort: RelatedListSort[];
|
|
2724
|
+
};
|
|
2725
|
+
export type RelatedListColumn = {
|
|
2726
|
+
field?: string | null | undefined;
|
|
2727
|
+
fieldApiName: string;
|
|
2728
|
+
format?: string | null | undefined;
|
|
2729
|
+
label: string;
|
|
2730
|
+
lookupId?: string | null | undefined;
|
|
2731
|
+
name: string;
|
|
2732
|
+
sortable: boolean;
|
|
2733
|
+
};
|
|
2734
|
+
export type RelatedListSort = {
|
|
2735
|
+
ascending: boolean;
|
|
2736
|
+
column: string;
|
|
2737
|
+
};
|
|
2738
|
+
export type EmailFileAttachment = {
|
|
2739
|
+
body?: string | null | undefined;
|
|
2740
|
+
contentType?: string | null | undefined;
|
|
2741
|
+
fileName: string;
|
|
2742
|
+
id?: string | null | undefined;
|
|
2743
|
+
inline?: boolean | null | undefined;
|
|
2744
|
+
};
|
|
2745
|
+
export type Email = {
|
|
2746
|
+
bccSender?: boolean | null | undefined;
|
|
2747
|
+
emailPriority?: string | null | undefined;
|
|
2748
|
+
replyTo?: string | null | undefined;
|
|
2749
|
+
saveAsActivity?: boolean | null | undefined;
|
|
2750
|
+
senderDisplayName?: string | null | undefined;
|
|
2751
|
+
subject?: string | null | undefined;
|
|
2752
|
+
useSignature?: boolean | null | undefined;
|
|
2753
|
+
};
|
|
2754
|
+
export type MassEmailMessage = Email & {
|
|
2755
|
+
description?: string | null | undefined;
|
|
2756
|
+
targetObjectIds?: string | null | undefined;
|
|
2757
|
+
templateId: string;
|
|
2758
|
+
whatIds?: string | null | undefined;
|
|
2759
|
+
};
|
|
2760
|
+
export type SingleEmailMessage = Email & {
|
|
2761
|
+
bccAddresses?: string | null | undefined;
|
|
2762
|
+
ccAddresses?: string | null | undefined;
|
|
2763
|
+
charset?: string | null | undefined;
|
|
2764
|
+
documentAttachments: string[];
|
|
2765
|
+
entityAttachments: string[];
|
|
2766
|
+
fileAttachments: EmailFileAttachment[];
|
|
2767
|
+
htmlBody?: string | null | undefined;
|
|
2768
|
+
inReplyTo?: string | null | undefined;
|
|
2769
|
+
optOutPolicy?: string | null | undefined;
|
|
2770
|
+
orgWideEmailAddressId?: string | null | undefined;
|
|
2771
|
+
plainTextBody?: string | null | undefined;
|
|
2772
|
+
references?: string | null | undefined;
|
|
2773
|
+
targetObjectId?: string | null | undefined;
|
|
2774
|
+
templateId?: string | null | undefined;
|
|
2775
|
+
templateName?: string | null | undefined;
|
|
2776
|
+
toAddresses?: string | null | undefined;
|
|
2777
|
+
treatBodiesAsTemplate?: boolean | null | undefined;
|
|
2778
|
+
treatTargetObjectAsRecipient?: boolean | null | undefined;
|
|
2779
|
+
whatId?: string | null | undefined;
|
|
2780
|
+
};
|
|
2781
|
+
export type SendEmailResult = {
|
|
2782
|
+
errors: SendEmailError[];
|
|
2783
|
+
success: boolean;
|
|
2784
|
+
};
|
|
2785
|
+
export type ListViewColumn = {
|
|
2786
|
+
ascendingLabel?: string | null | undefined;
|
|
2787
|
+
descendingLabel?: string | null | undefined;
|
|
2788
|
+
fieldNameOrPath: string;
|
|
2789
|
+
hidden: boolean;
|
|
2790
|
+
label: string;
|
|
2791
|
+
searchable: boolean;
|
|
2792
|
+
selectListItem: string;
|
|
2793
|
+
sortDirection?: string | null | undefined;
|
|
2794
|
+
sortIndex?: number | null | undefined;
|
|
2795
|
+
sortable: boolean;
|
|
2796
|
+
type: string;
|
|
2797
|
+
};
|
|
2798
|
+
export type ListViewOrderBy = {
|
|
2799
|
+
fieldNameOrPath: string;
|
|
2800
|
+
nullsPosition?: string | null | undefined;
|
|
2801
|
+
sortDirection?: string | null | undefined;
|
|
2802
|
+
};
|
|
2803
|
+
export type DescribeSoqlListView = {
|
|
2804
|
+
columns: ListViewColumn[];
|
|
2805
|
+
id: string;
|
|
2806
|
+
orderBy: ListViewOrderBy[];
|
|
2807
|
+
query: string;
|
|
2808
|
+
relatedEntityId?: string | null | undefined;
|
|
2809
|
+
scope?: string | null | undefined;
|
|
2810
|
+
scopeEntityId?: string | null | undefined;
|
|
2811
|
+
sobjectType: string;
|
|
2812
|
+
whereCondition?: SoqlWhereCondition | null | undefined;
|
|
2813
|
+
};
|
|
2814
|
+
export type DescribeSoqlListViewsRequest = {
|
|
2815
|
+
listViewParams: DescribeSoqlListViewParams[];
|
|
2816
|
+
};
|
|
2817
|
+
export type DescribeSoqlListViewParams = {
|
|
2818
|
+
developerNameOrId: string;
|
|
2819
|
+
sobjectType?: string | null | undefined;
|
|
2820
|
+
};
|
|
2821
|
+
export type DescribeSoqlListViewResult = {
|
|
2822
|
+
describeSoqlListViews: DescribeSoqlListView[];
|
|
2823
|
+
};
|
|
2824
|
+
export type ExecuteListViewRequest = {
|
|
2825
|
+
developerNameOrId: string;
|
|
2826
|
+
limit?: number | null | undefined;
|
|
2827
|
+
offset?: number | null | undefined;
|
|
2828
|
+
orderBy: ListViewOrderBy[];
|
|
2829
|
+
sobjectType: string;
|
|
2830
|
+
};
|
|
2831
|
+
export type ExecuteListViewResult = {
|
|
2832
|
+
columns: ListViewColumn[];
|
|
2833
|
+
developerName: string;
|
|
2834
|
+
done: boolean;
|
|
2835
|
+
id: string;
|
|
2836
|
+
label: string;
|
|
2837
|
+
records: ListViewRecord[];
|
|
2838
|
+
size: number;
|
|
2839
|
+
};
|
|
2840
|
+
export type ListViewRecord = {
|
|
2841
|
+
columns: ListViewRecordColumn[];
|
|
2842
|
+
};
|
|
2843
|
+
export type ListViewRecordColumn = {
|
|
2844
|
+
fieldNameOrPath: string;
|
|
2845
|
+
value?: string | null | undefined;
|
|
2846
|
+
};
|
|
2847
|
+
export type SoqlWhereCondition = {};
|
|
2848
|
+
export type SoqlCondition = SoqlWhereCondition & {
|
|
2849
|
+
field: string;
|
|
2850
|
+
operator: string;
|
|
2851
|
+
values: string[];
|
|
2852
|
+
};
|
|
2853
|
+
export type SoqlNotCondition = SoqlWhereCondition & {
|
|
2854
|
+
condition: SoqlWhereCondition;
|
|
2855
|
+
};
|
|
2856
|
+
export type SoqlConditionGroup = SoqlWhereCondition & {
|
|
2857
|
+
conditions: SoqlWhereCondition[];
|
|
2858
|
+
conjunction: string;
|
|
2859
|
+
};
|
|
2860
|
+
export type SoqlSubQueryCondition = SoqlWhereCondition & {
|
|
2861
|
+
field: string;
|
|
2862
|
+
operator: string;
|
|
2863
|
+
subQuery: string;
|
|
2864
|
+
};
|
|
2865
|
+
export type DescribeSearchLayoutResult = {
|
|
2866
|
+
errorMsg?: string | null | undefined;
|
|
2867
|
+
label?: string | null | undefined;
|
|
2868
|
+
limitRows?: number | null | undefined;
|
|
2869
|
+
objectType: string;
|
|
2870
|
+
searchColumns?: DescribeColumn[] | null | undefined;
|
|
2871
|
+
};
|
|
2872
|
+
export type DescribeColumn = {
|
|
2873
|
+
field: string;
|
|
2874
|
+
format?: string | null | undefined;
|
|
2875
|
+
label: string;
|
|
2876
|
+
name: string;
|
|
2877
|
+
};
|
|
2878
|
+
export type DescribeSearchScopeOrderResult = {
|
|
2879
|
+
keyPrefix: string;
|
|
2880
|
+
name: string;
|
|
2881
|
+
};
|
|
2882
|
+
export type DescribeSearchableEntityResult = {
|
|
2883
|
+
label: string;
|
|
2884
|
+
name: string;
|
|
2885
|
+
pluralLabel: string;
|
|
2886
|
+
};
|
|
2887
|
+
export type DescribeTabSetResult = {
|
|
2888
|
+
description: string;
|
|
2889
|
+
label: string;
|
|
2890
|
+
logoUrl: string;
|
|
2891
|
+
namespace?: string | null | undefined;
|
|
2892
|
+
selected: boolean;
|
|
2893
|
+
tabSetId: string;
|
|
2894
|
+
tabs: DescribeTab[];
|
|
2895
|
+
};
|
|
2896
|
+
export type DescribeTab = {
|
|
2897
|
+
colors: DescribeColor[];
|
|
2898
|
+
custom: boolean;
|
|
2899
|
+
iconUrl: string;
|
|
2900
|
+
icons: DescribeIcon[];
|
|
2901
|
+
label: string;
|
|
2902
|
+
miniIconUrl: string;
|
|
2903
|
+
name: string;
|
|
2904
|
+
sobjectName?: string | null | undefined;
|
|
2905
|
+
url: string;
|
|
2906
|
+
};
|
|
2907
|
+
export type DescribeColor = {
|
|
2908
|
+
color: string;
|
|
2909
|
+
context: string;
|
|
2910
|
+
theme: string;
|
|
2911
|
+
};
|
|
2912
|
+
export type DescribeIcon = {
|
|
2913
|
+
contentType: string;
|
|
2914
|
+
height?: number | null | undefined;
|
|
2915
|
+
theme: string;
|
|
2916
|
+
url: string;
|
|
2917
|
+
width?: number | null | undefined;
|
|
2918
|
+
};
|
|
2919
|
+
export type ActionOverride = {
|
|
2920
|
+
formFactor: string;
|
|
2921
|
+
isAvailableInTouch: boolean;
|
|
2922
|
+
name: string;
|
|
2923
|
+
pageId: string;
|
|
2924
|
+
url?: string | null | undefined;
|
|
2925
|
+
};
|
|
2926
|
+
export type RenderEmailTemplateRequest = {
|
|
2927
|
+
escapeHtmlInMergeFields?: boolean | null | undefined;
|
|
2928
|
+
templateBodies: string;
|
|
2929
|
+
whatId?: string | null | undefined;
|
|
2930
|
+
whoId?: string | null | undefined;
|
|
2931
|
+
};
|
|
2932
|
+
export type RenderEmailTemplateBodyResult = {
|
|
2933
|
+
errors: RenderEmailTemplateError[];
|
|
2934
|
+
mergedBody?: string | null | undefined;
|
|
2935
|
+
success: boolean;
|
|
2936
|
+
};
|
|
2937
|
+
export type RenderEmailTemplateResult = {
|
|
2938
|
+
bodyResults?: RenderEmailTemplateBodyResult | null | undefined;
|
|
2939
|
+
errors: Error[];
|
|
2940
|
+
success: boolean;
|
|
2941
|
+
};
|
|
2942
|
+
export type RenderStoredEmailTemplateRequest = {
|
|
2943
|
+
attachmentRetrievalOption?: string | null | undefined;
|
|
2944
|
+
templateId: string;
|
|
2945
|
+
updateTemplateUsage?: boolean | null | undefined;
|
|
2946
|
+
whatId?: string | null | undefined;
|
|
2947
|
+
whoId?: string | null | undefined;
|
|
2948
|
+
};
|
|
2949
|
+
export type RenderStoredEmailTemplateResult = {
|
|
2950
|
+
errors: Error[];
|
|
2951
|
+
renderedEmail?: SingleEmailMessage | null | undefined;
|
|
2952
|
+
success: boolean;
|
|
2953
|
+
};
|
|
2954
|
+
export type LimitInfo = {
|
|
2955
|
+
current: number;
|
|
2956
|
+
limit: number;
|
|
2957
|
+
type: string;
|
|
2958
|
+
};
|
|
2959
|
+
export type OwnerChangeOption = {
|
|
2960
|
+
type: string;
|
|
2961
|
+
execute: boolean;
|
|
2962
|
+
};
|
|
2963
|
+
export type ApiFault = {
|
|
2964
|
+
exceptionCode: string;
|
|
2965
|
+
exceptionMessage: string;
|
|
2966
|
+
extendedErrorDetails?: ExtendedErrorDetails[] | null | undefined;
|
|
2967
|
+
};
|
|
2968
|
+
export type ApiQueryFault = ApiFault & {
|
|
2969
|
+
row: number;
|
|
2970
|
+
column: number;
|
|
2971
|
+
};
|
|
2972
|
+
export type LoginFault = ApiFault & {};
|
|
2973
|
+
export type InvalidQueryLocatorFault = ApiFault & {};
|
|
2974
|
+
export type InvalidNewPasswordFault = ApiFault & {};
|
|
2975
|
+
export type InvalidOldPasswordFault = ApiFault & {};
|
|
2976
|
+
export type InvalidIdFault = ApiFault & {};
|
|
2977
|
+
export type UnexpectedErrorFault = ApiFault & {};
|
|
2978
|
+
export type InvalidFieldFault = ApiQueryFault & {};
|
|
2979
|
+
export type InvalidSObjectFault = ApiQueryFault & {};
|
|
2980
|
+
export type MalformedQueryFault = ApiQueryFault & {};
|
|
2981
|
+
export type MalformedSearchFault = ApiQueryFault & {};
|
|
2982
|
+
export type ApiSchemaTypes = {
|
|
2983
|
+
sObject: sObject;
|
|
2984
|
+
address: address;
|
|
2985
|
+
location: location;
|
|
2986
|
+
QueryResult: QueryResult;
|
|
2987
|
+
SearchResult: SearchResult;
|
|
2988
|
+
SearchRecord: SearchRecord;
|
|
2989
|
+
SearchRecordMetadata: SearchRecordMetadata;
|
|
2990
|
+
SearchSnippet: SearchSnippet;
|
|
2991
|
+
SearchResultsMetadata: SearchResultsMetadata;
|
|
2992
|
+
LabelsSearchMetadata: LabelsSearchMetadata;
|
|
2993
|
+
EntitySearchMetadata: EntitySearchMetadata;
|
|
2994
|
+
FieldLevelSearchMetadata: FieldLevelSearchMetadata;
|
|
2995
|
+
EntitySpellCorrectionMetadata: EntitySpellCorrectionMetadata;
|
|
2996
|
+
EntitySearchPromotionMetadata: EntitySearchPromotionMetadata;
|
|
2997
|
+
EntityIntentQueryMetadata: EntityIntentQueryMetadata;
|
|
2998
|
+
EntityErrorMetadata: EntityErrorMetadata;
|
|
2999
|
+
RelationshipReferenceTo: RelationshipReferenceTo;
|
|
3000
|
+
RecordTypesSupported: RecordTypesSupported;
|
|
3001
|
+
JunctionIdListNames: JunctionIdListNames;
|
|
3002
|
+
SearchLayoutButtonsDisplayed: SearchLayoutButtonsDisplayed;
|
|
3003
|
+
SearchLayoutButton: SearchLayoutButton;
|
|
3004
|
+
SearchLayoutFieldsDisplayed: SearchLayoutFieldsDisplayed;
|
|
3005
|
+
SearchLayoutField: SearchLayoutField;
|
|
3006
|
+
NameValuePair: NameValuePair;
|
|
3007
|
+
NameObjectValuePair: NameObjectValuePair;
|
|
3008
|
+
GetUpdatedResult: GetUpdatedResult;
|
|
3009
|
+
GetDeletedResult: GetDeletedResult;
|
|
3010
|
+
DeletedRecord: DeletedRecord;
|
|
3011
|
+
GetServerTimestampResult: GetServerTimestampResult;
|
|
3012
|
+
InvalidateSessionsResult: InvalidateSessionsResult;
|
|
3013
|
+
SetPasswordResult: SetPasswordResult;
|
|
3014
|
+
ChangeOwnPasswordResult: ChangeOwnPasswordResult;
|
|
3015
|
+
ResetPasswordResult: ResetPasswordResult;
|
|
3016
|
+
GetUserInfoResult: GetUserInfoResult;
|
|
3017
|
+
LoginResult: LoginResult;
|
|
3018
|
+
ExtendedErrorDetails: ExtendedErrorDetails;
|
|
3019
|
+
Error: Error;
|
|
3020
|
+
SendEmailError: SendEmailError;
|
|
3021
|
+
SaveResult: SaveResult;
|
|
3022
|
+
RenderEmailTemplateError: RenderEmailTemplateError;
|
|
3023
|
+
UpsertResult: UpsertResult;
|
|
3024
|
+
PerformQuickActionResult: PerformQuickActionResult;
|
|
3025
|
+
QuickActionTemplateResult: QuickActionTemplateResult;
|
|
3026
|
+
MergeRequest: MergeRequest;
|
|
3027
|
+
MergeResult: MergeResult;
|
|
3028
|
+
ProcessRequest: ProcessRequest;
|
|
3029
|
+
ProcessSubmitRequest: ProcessSubmitRequest;
|
|
3030
|
+
ProcessWorkitemRequest: ProcessWorkitemRequest;
|
|
3031
|
+
PerformQuickActionRequest: PerformQuickActionRequest;
|
|
3032
|
+
DescribeAvailableQuickActionResult: DescribeAvailableQuickActionResult;
|
|
3033
|
+
DescribeQuickActionResult: DescribeQuickActionResult;
|
|
3034
|
+
DescribeQuickActionDefaultValue: DescribeQuickActionDefaultValue;
|
|
3035
|
+
DescribeVisualForceResult: DescribeVisualForceResult;
|
|
3036
|
+
ProcessResult: ProcessResult;
|
|
3037
|
+
DeleteResult: DeleteResult;
|
|
3038
|
+
UndeleteResult: UndeleteResult;
|
|
3039
|
+
DeleteByExampleResult: DeleteByExampleResult;
|
|
3040
|
+
EmptyRecycleBinResult: EmptyRecycleBinResult;
|
|
3041
|
+
LeadConvert: LeadConvert;
|
|
3042
|
+
LeadConvertResult: LeadConvertResult;
|
|
3043
|
+
DescribeSObjectResult: DescribeSObjectResult;
|
|
3044
|
+
DescribeGlobalSObjectResult: DescribeGlobalSObjectResult;
|
|
3045
|
+
ChildRelationship: ChildRelationship;
|
|
3046
|
+
DescribeGlobalResult: DescribeGlobalResult;
|
|
3047
|
+
DescribeGlobalTheme: DescribeGlobalTheme;
|
|
3048
|
+
ScopeInfo: ScopeInfo;
|
|
3049
|
+
StringList: StringList;
|
|
3050
|
+
ChangeEventHeader: ChangeEventHeader;
|
|
3051
|
+
FilteredLookupInfo: FilteredLookupInfo;
|
|
3052
|
+
Field: Field;
|
|
3053
|
+
PicklistEntry: PicklistEntry;
|
|
3054
|
+
DescribeDataCategoryGroupResult: DescribeDataCategoryGroupResult;
|
|
3055
|
+
DescribeDataCategoryGroupStructureResult: DescribeDataCategoryGroupStructureResult;
|
|
3056
|
+
DataCategoryGroupSobjectTypePair: DataCategoryGroupSobjectTypePair;
|
|
3057
|
+
DataCategory: DataCategory;
|
|
3058
|
+
DescribeDataCategoryMappingResult: DescribeDataCategoryMappingResult;
|
|
3059
|
+
KnowledgeSettings: KnowledgeSettings;
|
|
3060
|
+
KnowledgeLanguageItem: KnowledgeLanguageItem;
|
|
3061
|
+
FieldDiff: FieldDiff;
|
|
3062
|
+
AdditionalInformationMap: AdditionalInformationMap;
|
|
3063
|
+
MatchRecord: MatchRecord;
|
|
3064
|
+
MatchResult: MatchResult;
|
|
3065
|
+
DuplicateResult: DuplicateResult;
|
|
3066
|
+
DuplicateError: DuplicateError;
|
|
3067
|
+
DescribeNounResult: DescribeNounResult;
|
|
3068
|
+
NameCaseValue: NameCaseValue;
|
|
3069
|
+
FindDuplicatesResult: FindDuplicatesResult;
|
|
3070
|
+
DescribeAppMenuResult: DescribeAppMenuResult;
|
|
3071
|
+
DescribeAppMenuItem: DescribeAppMenuItem;
|
|
3072
|
+
DescribeThemeResult: DescribeThemeResult;
|
|
3073
|
+
DescribeThemeItem: DescribeThemeItem;
|
|
3074
|
+
DescribeSoftphoneLayoutResult: DescribeSoftphoneLayoutResult;
|
|
3075
|
+
DescribeSoftphoneLayoutCallType: DescribeSoftphoneLayoutCallType;
|
|
3076
|
+
DescribeSoftphoneScreenPopOption: DescribeSoftphoneScreenPopOption;
|
|
3077
|
+
DescribeSoftphoneLayoutInfoField: DescribeSoftphoneLayoutInfoField;
|
|
3078
|
+
DescribeSoftphoneLayoutSection: DescribeSoftphoneLayoutSection;
|
|
3079
|
+
DescribeSoftphoneLayoutItem: DescribeSoftphoneLayoutItem;
|
|
3080
|
+
DescribeCompactLayoutsResult: DescribeCompactLayoutsResult;
|
|
3081
|
+
DescribeCompactLayout: DescribeCompactLayout;
|
|
3082
|
+
RecordTypeCompactLayoutMapping: RecordTypeCompactLayoutMapping;
|
|
3083
|
+
DescribePathAssistantsResult: DescribePathAssistantsResult;
|
|
3084
|
+
DescribePathAssistant: DescribePathAssistant;
|
|
3085
|
+
DescribePathAssistantStep: DescribePathAssistantStep;
|
|
3086
|
+
DescribePathAssistantField: DescribePathAssistantField;
|
|
3087
|
+
DescribeAnimationRule: DescribeAnimationRule;
|
|
3088
|
+
DescribeApprovalLayoutResult: DescribeApprovalLayoutResult;
|
|
3089
|
+
DescribeApprovalLayout: DescribeApprovalLayout;
|
|
3090
|
+
DescribeLayoutResult: DescribeLayoutResult;
|
|
3091
|
+
DescribeLayout: DescribeLayout;
|
|
3092
|
+
DescribeQuickActionListResult: DescribeQuickActionListResult;
|
|
3093
|
+
DescribeQuickActionListItemResult: DescribeQuickActionListItemResult;
|
|
3094
|
+
DescribeLayoutFeedView: DescribeLayoutFeedView;
|
|
3095
|
+
DescribeLayoutFeedFilter: DescribeLayoutFeedFilter;
|
|
3096
|
+
DescribeLayoutSaveOption: DescribeLayoutSaveOption;
|
|
3097
|
+
DescribeLayoutSection: DescribeLayoutSection;
|
|
3098
|
+
DescribeLayoutButtonSection: DescribeLayoutButtonSection;
|
|
3099
|
+
DescribeLayoutRow: DescribeLayoutRow;
|
|
3100
|
+
DescribeLayoutItem: DescribeLayoutItem;
|
|
3101
|
+
DescribeLayoutButton: DescribeLayoutButton;
|
|
3102
|
+
DescribeLayoutComponent: DescribeLayoutComponent;
|
|
3103
|
+
FieldComponent: FieldComponent;
|
|
3104
|
+
FieldLayoutComponent: FieldLayoutComponent;
|
|
3105
|
+
VisualforcePage: VisualforcePage;
|
|
3106
|
+
Canvas: Canvas;
|
|
3107
|
+
ReportChartComponent: ReportChartComponent;
|
|
3108
|
+
AnalyticsCloudComponent: AnalyticsCloudComponent;
|
|
3109
|
+
CustomLinkComponent: CustomLinkComponent;
|
|
3110
|
+
NamedLayoutInfo: NamedLayoutInfo;
|
|
3111
|
+
RecordTypeInfo: RecordTypeInfo;
|
|
3112
|
+
RecordTypeMapping: RecordTypeMapping;
|
|
3113
|
+
PicklistForRecordType: PicklistForRecordType;
|
|
3114
|
+
RelatedContent: RelatedContent;
|
|
3115
|
+
DescribeRelatedContentItem: DescribeRelatedContentItem;
|
|
3116
|
+
RelatedList: RelatedList;
|
|
3117
|
+
RelatedListColumn: RelatedListColumn;
|
|
3118
|
+
RelatedListSort: RelatedListSort;
|
|
3119
|
+
EmailFileAttachment: EmailFileAttachment;
|
|
3120
|
+
Email: Email;
|
|
3121
|
+
MassEmailMessage: MassEmailMessage;
|
|
3122
|
+
SingleEmailMessage: SingleEmailMessage;
|
|
3123
|
+
SendEmailResult: SendEmailResult;
|
|
3124
|
+
ListViewColumn: ListViewColumn;
|
|
3125
|
+
ListViewOrderBy: ListViewOrderBy;
|
|
3126
|
+
DescribeSoqlListView: DescribeSoqlListView;
|
|
3127
|
+
DescribeSoqlListViewsRequest: DescribeSoqlListViewsRequest;
|
|
3128
|
+
DescribeSoqlListViewParams: DescribeSoqlListViewParams;
|
|
3129
|
+
DescribeSoqlListViewResult: DescribeSoqlListViewResult;
|
|
3130
|
+
ExecuteListViewRequest: ExecuteListViewRequest;
|
|
3131
|
+
ExecuteListViewResult: ExecuteListViewResult;
|
|
3132
|
+
ListViewRecord: ListViewRecord;
|
|
3133
|
+
ListViewRecordColumn: ListViewRecordColumn;
|
|
3134
|
+
SoqlWhereCondition: SoqlWhereCondition;
|
|
3135
|
+
SoqlCondition: SoqlCondition;
|
|
3136
|
+
SoqlNotCondition: SoqlNotCondition;
|
|
3137
|
+
SoqlConditionGroup: SoqlConditionGroup;
|
|
3138
|
+
SoqlSubQueryCondition: SoqlSubQueryCondition;
|
|
3139
|
+
DescribeSearchLayoutResult: DescribeSearchLayoutResult;
|
|
3140
|
+
DescribeColumn: DescribeColumn;
|
|
3141
|
+
DescribeSearchScopeOrderResult: DescribeSearchScopeOrderResult;
|
|
3142
|
+
DescribeSearchableEntityResult: DescribeSearchableEntityResult;
|
|
3143
|
+
DescribeTabSetResult: DescribeTabSetResult;
|
|
3144
|
+
DescribeTab: DescribeTab;
|
|
3145
|
+
DescribeColor: DescribeColor;
|
|
3146
|
+
DescribeIcon: DescribeIcon;
|
|
3147
|
+
ActionOverride: ActionOverride;
|
|
3148
|
+
RenderEmailTemplateRequest: RenderEmailTemplateRequest;
|
|
3149
|
+
RenderEmailTemplateBodyResult: RenderEmailTemplateBodyResult;
|
|
3150
|
+
RenderEmailTemplateResult: RenderEmailTemplateResult;
|
|
3151
|
+
RenderStoredEmailTemplateRequest: RenderStoredEmailTemplateRequest;
|
|
3152
|
+
RenderStoredEmailTemplateResult: RenderStoredEmailTemplateResult;
|
|
3153
|
+
LimitInfo: LimitInfo;
|
|
3154
|
+
OwnerChangeOption: OwnerChangeOption;
|
|
3155
|
+
ApiFault: ApiFault;
|
|
3156
|
+
ApiQueryFault: ApiQueryFault;
|
|
3157
|
+
LoginFault: LoginFault;
|
|
3158
|
+
InvalidQueryLocatorFault: InvalidQueryLocatorFault;
|
|
3159
|
+
InvalidNewPasswordFault: InvalidNewPasswordFault;
|
|
3160
|
+
InvalidOldPasswordFault: InvalidOldPasswordFault;
|
|
3161
|
+
InvalidIdFault: InvalidIdFault;
|
|
3162
|
+
UnexpectedErrorFault: UnexpectedErrorFault;
|
|
3163
|
+
InvalidFieldFault: InvalidFieldFault;
|
|
3164
|
+
InvalidSObjectFault: InvalidSObjectFault;
|
|
3165
|
+
MalformedQueryFault: MalformedQueryFault;
|
|
3166
|
+
MalformedSearchFault: MalformedSearchFault;
|
|
3167
|
+
};
|