4
4
"docsUrl" : " https://github.com/elasticio/salesforce-component-v2" ,
5
5
"url" : " http://www.salesforce.com/" ,
6
6
"buildType" : " docker" ,
7
- "version" : " 2.2.2" ,
8
- "authClientTypes" : [" oauth2" ],
7
+ "version" : " 2.2.3" ,
8
+ "authClientTypes" : [
9
+ " oauth2"
10
+ ],
9
11
"envVars" : {
10
12
"SALESFORCE_API_VERSION" : {
11
13
"required" : true ,
34
36
"title" : " Get New and Updated Objects Polling" ,
35
37
"main" : " ./lib/entry.js" ,
36
38
"order" : 99 ,
37
- "help" : {
39
+ "help" : {
38
40
"description" : " Will poll for existing and updated objects where you can select any custom or build-in object for your Salesforce instance" ,
39
41
"link" : " /components/salesforce/triggers#get-new-and-updated-objects-polling-trigger"
40
42
},
52
54
"label" : " Include linked objects" ,
53
55
"viewClass" : " MultiSelectView" ,
54
56
"required" : false ,
55
- "require" : [" sobject" ],
57
+ "require" : [
58
+ " sobject"
59
+ ],
56
60
"model" : " linkedObjectTypes" ,
57
61
"prompt" : " Please select any linked objects that should be included in the query"
58
62
},
111
115
"main" : " ./lib/triggers/query.js" ,
112
116
"type" : " polling" ,
113
117
"order" : 98 ,
114
- "help" : {
118
+ "help" : {
115
119
"description" : " Will continuously run the same SOQL Query and emit results" ,
116
120
"link" : " /components/salesforce/triggers#query-trigger"
117
121
},
139
143
"streamPlatformEvents" : {
140
144
"title" : " Subscribe to platform events (REALTIME FLOWS ONLY)" ,
141
145
"order" : 97 ,
142
- "help" : {
146
+ "help" : {
143
147
"description" : " Can be used for subscription to the specified in the configuration Platform Event object. Can be used only for Realtime flows" ,
144
148
"link" : " /components/salesforce/triggers#subscribe-to-platform-events-trigger"
145
149
},
161
165
"title" : " Bulk Create/Update/Delete/Upsert" ,
162
166
"main" : " ./lib/actions/bulk_cud.js" ,
163
167
"order" : 99 ,
164
- "help" : {
168
+ "help" : {
165
169
"description" : " Bulk operations on objects in CSV file" ,
166
170
"link" : " /components/salesforce/actions#bulk-createupdatedeleteupsert-action"
167
171
},
170
174
"viewClass" : " SelectView" ,
171
175
"label" : " Operation" ,
172
176
"required" : true ,
173
- "model" : {
177
+ "model" : {
174
178
"insert" : " Create" ,
175
179
"update" : " Update" ,
176
180
"delete" : " Delete" ,
182
186
"viewClass" : " SelectView" ,
183
187
"label" : " Object" ,
184
188
"required" : true ,
185
- "require" : [" operation" ],
189
+ "require" : [
190
+ " operation"
191
+ ],
186
192
"model" : " objectTypes" ,
187
193
"prompt" : " Please select a Salesforce Object"
188
194
},
200
206
"title" : " Bulk Query" ,
201
207
"main" : " ./lib/actions/bulk_q.js" ,
202
208
"order" : 98 ,
203
- "help" : {
209
+ "help" : {
204
210
"description" : " Bulk query with the results in CSV file" ,
205
211
"link" : " /components/salesforce/actions#bulk-query-action"
206
212
},
213
219
"title" : " Create Object" ,
214
220
"main" : " ./lib/actions/createObject.js" ,
215
221
"order" : 97 ,
216
- "help" : {
222
+ "help" : {
217
223
"description" : " Creates new Selected Object" ,
218
224
"link" : " /components/salesforce/actions#create-object-action"
219
225
},
236
242
"title" : " Delete Object (at most 1)" ,
237
243
"main" : " ./lib/actions/deleteObject.js" ,
238
244
"order" : 96 ,
239
- "help" : {
245
+ "help" : {
240
246
"description" : " Delete Selected Object" ,
241
247
"link" : " /components/salesforce/actions#delete-object-action-at-most-1"
242
248
},
263
269
"viewClass" : " SelectView" ,
264
270
"label" : " Lookup by field" ,
265
271
"required" : false ,
266
- "require" : [" sobject" ],
272
+ "require" : [
273
+ " sobject"
274
+ ],
267
275
"model" : " getLookupFieldsModel" ,
268
276
"prompt" : " Please select the field which you want to use for lookup. By default - Object ID"
269
277
}
273
281
"title" : " Lookup Object (at most 1)" ,
274
282
"main" : " ./lib/actions/lookupObject.js" ,
275
283
"order" : 95 ,
276
- "help" : {
284
+ "help" : {
277
285
"description" : " Lookup object (at most 1) by selected field" ,
278
286
"link" : " /components/salesforce/actions#lookup-object-action-at-most-1"
279
287
},
302
310
"viewClass" : " SelectView" ,
303
311
"label" : " Lookup by field" ,
304
312
"required" : true ,
305
- "require" : [" sobject" , " typeOfSearch" ],
313
+ "require" : [
314
+ " sobject" ,
315
+ " typeOfSearch"
316
+ ],
306
317
"model" : " getLookupFieldsModel" ,
307
318
"prompt" : " Please select the field which you want to use for lookup" ,
308
319
"order" : 6
309
320
},
310
321
"linkedObjects" : {
311
322
"viewClass" : " MultiSelectView" ,
312
- "require" : [" sobject" ],
323
+ "require" : [
324
+ " sobject"
325
+ ],
313
326
"label" : " Include referenced objects" ,
314
327
"model" : " getLinkedObjectsModel" ,
315
328
"order" : 5 ,
341
354
"title" : " Lookup Objects" ,
342
355
"main" : " ./lib/actions/lookupObjects.js" ,
343
356
"order" : 94 ,
344
- "help" : {
357
+ "help" : {
345
358
"description" : " Look for objects satisfying specified criteria" ,
346
359
"link" : " /components/salesforce/actions#lookup-objects-action"
347
360
},
393
406
"title" : " Query" ,
394
407
"main" : " ./lib/actions/query.js" ,
395
408
"order" : 93 ,
396
- "help" : {
409
+ "help" : {
397
410
"description" : " Executing an SOQL Query that may return many objects. Each resulting object is emitted one-by-one" ,
398
411
"link" : " /components/salesforce/actions#query-action"
399
412
},
454
467
"title" : " Upsert Object" ,
455
468
"main" : " ./lib/actions/upsert.js" ,
456
469
"order" : 50 ,
457
- "help" : {
470
+ "help" : {
458
471
"description" : " Create or Update Selected Object"
459
472
},
460
473
"dynamicMetadata" : true ,
483
496
"title" : " Upsert Object" ,
484
497
"main" : " ./lib/actions/upsert_v2.js" ,
485
498
"order" : 90 ,
486
- "help" : {
487
- "description" : " Create or Update seleced Object" ,
499
+ "help" : {
500
+ "description" : " Create or Update selected Object" ,
488
501
"link" : " /components/salesforce/actions#upsert-object-action"
489
502
},
490
503
"dynamicMetadata" : true ,
501
514
"viewClass" : " SelectView" ,
502
515
"label" : " Type Of Search" ,
503
516
"required" : true ,
504
- "require" : [" sobject" ],
517
+ "require" : [
518
+ " sobject"
519
+ ],
505
520
"model" : {
506
521
"uniqueFields" : " Unique Fields" ,
507
522
"allFields" : " All Fields"
513
528
"viewClass" : " SelectView" ,
514
529
"label" : " Lookup by field" ,
515
530
"required" : true ,
516
- "require" : [" sobject" , " typeOfSearch" ],
531
+ "require" : [
532
+ " sobject" ,
533
+ " typeOfSearch"
534
+ ],
517
535
"model" : " getLookupFieldsModel" ,
518
536
"prompt" : " Please select the field which you want to use for lookup" ,
519
537
"order" : 6
520
538
}
521
539
}
522
540
}
523
541
}
524
- }
542
+ }
0 commit comments