-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathconnector-templates.json
1890 lines (1890 loc) · 79.6 KB
/
connector-templates.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"com.camunda.consulting:soap" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/c0abc89b2f8d779e28cd15e6300d02922d76b469/connectors/soap/element-templates/soap-connector.json",
"engine" : {
"camunda" : "^8.5"
}
} ],
"io.camunda.connector.IdpExtractionOutBoundTemplate.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/idp-extraction/element-templates/idp-extraction-outbound-connector.json",
"engine" : {
"camunda" : "^8.7"
}
} ],
"io.camunda.connectors.AWSCOMPREHEND.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-comprehend/element-templates/aws-comprehend-outbound-connector.json",
"engine" : {
"camunda" : "^8.7"
}
} ],
"io.camunda.connectors.AWSDynamoDB.v1" : [ {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/01e8955aed6c4cc1ae97f5228f9719189252fae3/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/58ebdc9b96a704a2a4603ca159437fbb436d1868/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/aws/aws-dynamodb/element-templates/aws-dynamodb-connector.json",
"engine" : {
"camunda" : "^0.9"
}
} ],
"io.camunda.connectors.AWSEventBridge.MessageStart.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-message-start.json",
"engine" : {
"camunda" : "^0.24"
}
} ],
"io.camunda.connectors.AWSEventBridge.boundary.v1" : [ {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-boundary.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ce8879120825c1474d2ffd5efcef00cf6f81941d/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-boundary.json",
"engine" : {
"camunda" : "^8.4"
}
} ],
"io.camunda.connectors.AWSEventBridge.intermediate.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-intermediate.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ce8879120825c1474d2ffd5efcef00cf6f81941d/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-intermediate.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-intermediate.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.AWSEventBridge.startEvent.v1" : [ {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-start-event.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector-start-event.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.AWSEventBridge.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/e100e648148d22dd3f357ea29019298515a69790/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/58ebdc9b96a704a2a4603ca159437fbb436d1868/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-eventbridge/element-templates/aws-eventbridge-connector.json",
"engine" : {
"camunda" : "^0.11"
}
} ],
"io.camunda.connectors.AWSLAMBDA.v2" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-lambda/element-templates/aws-lambda-outbound-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/8a0c4447908150b494c848923d7ad46a8d0262d4/connectors/aws/aws-lambda/element-templates/aws-lambda-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-lambda/element-templates/aws-lambda-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-lambda/element-templates/aws-lambda-connector.json",
"engine" : {
"camunda" : "^0.9"
}
} ],
"io.camunda.connectors.AWSSAGEMAKER.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sagemaker/element-templates/aws-sagemaker-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
} ],
"io.camunda.connectors.AWSSNS.v1" : [ {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sns/element-templates/aws-sns-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/1d44eb1eb10af52bd42a4d0457bcad7e7423c995/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^0.23"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/6b4137979b3d9249dea7a6848e1994bbb2a30856/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/83edb60bd5d4884e5048d9ebeced83fc3444cb18/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/417c1d30ea52ce6b619a98b94843d2f552c9b130/connectors/aws/aws-sns/element-templates/aws-sns-connector.json",
"engine" : {
"camunda" : "^0.2"
}
} ],
"io.camunda.connectors.AWSSQS.StartEvent.v1" : [ {
"version" : 9,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/b3a776ff99a7e585008cb1218d69de4b8c6d9e59/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/0fb62532db5fbfc34520401adec1f3b9a56e2cb1/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/754ebb785c53ca8cf5772b2db39b33499769969e/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/417c1d30ea52ce6b619a98b94843d2f552c9b130/connectors/aws/aws-sqs/element-templates/aws-sqs-start-event-connector.json",
"engine" : {
"camunda" : "^0.9"
}
} ],
"io.camunda.connectors.AWSSQS.boundary.v1" : [ {
"version" : 9,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sqs/element-templates/aws-sqs-boundary-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/b3a776ff99a7e585008cb1218d69de4b8c6d9e59/connectors/aws/aws-sqs/element-templates/aws-sqs-boundary-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ce8879120825c1474d2ffd5efcef00cf6f81941d/connectors/aws/aws-sqs/element-templates/aws-sqs-boundary-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sqs/element-templates/aws-sqs-boundary-connector.json",
"engine" : {
"camunda" : "^0.24"
}
} ],
"io.camunda.connectors.AWSSQS.intermediate.v1" : [ {
"version" : 9,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 8,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/b3a776ff99a7e585008cb1218d69de4b8c6d9e59/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ce8879120825c1474d2ffd5efcef00cf6f81941d/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/0fb62532db5fbfc34520401adec1f3b9a56e2cb1/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/754ebb785c53ca8cf5772b2db39b33499769969e/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/417c1d30ea52ce6b619a98b94843d2f552c9b130/connectors/aws/aws-sqs/element-templates/aws-sqs-inbound-intermediate-connector.json",
"engine" : {
"camunda" : "^0.10"
}
} ],
"io.camunda.connectors.AWSSQS.startmessage.v1" : [ {
"version" : 9,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sqs/element-templates/aws-sqs-start-message.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/b3a776ff99a7e585008cb1218d69de4b8c6d9e59/connectors/aws/aws-sqs/element-templates/aws-sqs-start-message.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sqs/element-templates/aws-sqs-start-message.json",
"engine" : {
"camunda" : "^0.24"
}
} ],
"io.camunda.connectors.AWSSQS.v1" : [ {
"version" : 10,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-sqs/element-templates/aws-sqs-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 9,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/77d79825cf96bce4d50170c1cc89ed866bcf87de/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 8,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c1c3b904506b5e1877c1ce76399d828950d5898/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.23"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/6b4137979b3d9249dea7a6848e1994bbb2a30856/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/754ebb785c53ca8cf5772b2db39b33499769969e/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.11"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/417c1d30ea52ce6b619a98b94843d2f552c9b130/connectors/aws/aws-sqs/element-templates/aws-sqs-connector.json",
"engine" : {
"camunda" : "^0.8"
}
} ],
"io.camunda.connectors.AWSTEXTRACT.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/aws/aws-textract/element-templates/aws-textract-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
} ],
"io.camunda.connectors.Asana.v1" : [ {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/asana/element-templates/asana-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/asana/element-templates/asana-connector.json",
"engine" : {
"camunda" : "^0.8"
}
} ],
"io.camunda.connectors.AutomationAnywhere" : [ {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/automation-anywhere/element-templates/automation-anywhere-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f244525865dcb4ea52ed869faee458ab611791e6/connectors/automation-anywhere/element-templates/automation-anywhere-outbound-connector.json",
"engine" : {
"camunda" : "^8.4"
}
} ],
"io.camunda.connectors.AutomationAnywhere.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/faa4bf5bfac4790e9d33bd2f89b05f573fb302c2/connectors/automation-anywhere/element-templates/automation-anywhere-connector-deprecated.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ae6dc3aa0381b5191c96dd396d651b8d48bf4d69/connectors/automation-anywhere/element-templates/automation-anywhere-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/58ebdc9b96a704a2a4603ca159437fbb436d1868/connectors/automation-anywhere/element-templates/automation-anywhere-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/automation-anywhere/element-templates/automation-anywhere-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/automation-anywhere/element-templates/automation-anywhere-connector.json",
"engine" : {
"camunda" : "^0.6"
}
} ],
"io.camunda.connectors.AzureOpenAI.outbound.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/microsoft/azure-open-ai/element-templates/azure-open-ai-connector.json",
"engine" : {
"camunda" : "^8.6"
}
} ],
"io.camunda.connectors.BluePrism.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/blue-prism/element-templates/blue-prism-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/blue-prism/element-templates/blue-prism-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/blue-prism/element-templates/blue-prism-connector.json",
"engine" : {
"camunda" : "^0.6"
}
} ],
"io.camunda.connectors.CamundaOperate.v1" : [ {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/operate/element-templates/operate-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/58ebdc9b96a704a2a4603ca159437fbb436d1868/connectors/operate/element-templates/operate-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/operate/element-templates/operate-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/operate/element-templates/operate-connector.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.EasyPost.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dbad682a29bbb6bfa83fa311b5d959cd856518e8/connectors/easy-post/element-templates/easy-post-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/easy-post/element-templates/easy-post-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ea80345f22b87f474b80a1acdd1939ea63c48e3a/connectors/easy-post/element-templates/easy-post-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/easy-post/element-templates/easy-post-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/easy-post/element-templates/easy-post-connector.json",
"engine" : {
"camunda" : "^0.7"
}
} ],
"io.camunda.connectors.GitHub.v1" : [ {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/eeb0248c199333d78ec20dbe6d15080f37e49663/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/5e855531a0cccd14cfec31a63ab803e9133a6f22/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/c80b73a9c07b6e74e825b95e611ecc2718ab37fc/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f47bde52d4bbf175ced0da2e867705369fbe619c/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/github/element-templates/github-connector.json",
"engine" : {
"camunda" : "^0.7"
}
} ],
"io.camunda.connectors.GitLab.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/gitlab/element-templates/gitlab-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/7f7604500a064461b07fb1ccba41cae12eff7fa2/connectors/gitlab/element-templates/gitlab-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c8831200969f597215317a86294a331dabd524b/connectors/gitlab/element-templates/gitlab-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/gitlab/element-templates/gitlab-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/gitlab/element-templates/gitlab-connector.json",
"engine" : {
"camunda" : "^0.8"
}
} ],
"io.camunda.connectors.GoogleDrive.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/google/google-drive/element-templates/google-drive-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/8db04931a8782c73476ad27f1f10f326ec5ee269/connectors/google/google-drive/element-templates/google-drive-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/google/google-drive/element-templates/google-drive-connector.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.GoogleMapsPlatform.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/google-maps-platform/element-templates/google-maps-platform-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/google-maps-platform/element-templates/google-maps-platform-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/google-maps-platform/element-templates/google-maps-platform-connector.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.GoogleSheets.v1" : [ {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/google/google-sheets/element-templates/google-sheets-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/223e5604653c5e19bea8b2712a59d0328b2f98ca/connectors/google/google-sheets/element-templates/google-sheets-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/60abf9524b7780fcfaec80a7c199e920fc0e21c0/connectors/google/google-sheets/element-templates/google-sheets-outbound-connector-hybrid.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/google/google-sheets/element-templates/google-sheets-connector.json",
"engine" : {
"camunda" : "^0.10"
}
} ],
"io.camunda.connectors.GraphQL.v1" : [ {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/http/graphql/element-templates/graphql-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/e4087fc8679730d20d20861862f65bee17232d67/connectors/http/graphql/element-templates/graphql-outbound-connector-hybrid.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/bd90e78604edf4c9404945485537f0b1d67e97cf/connectors/http/graphql/element-templates/graphql-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/41f0abb73cfb5cea6cbf1961c8f0b1187fada801/connectors/http/graphql/element-templates/graphql-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/http/graphql/element-templates/graphql-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/graphql/element-templates/graphql-connector.json",
"engine" : {
"camunda" : "^0.6"
}
} ],
"io.camunda.connectors.HttpJson.v2" : [ {
"version" : 8,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/http/rest/element-templates/http-json-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 7,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/325d77552c18842c94ccf0da4f82d8445085ab77/connectors/http/rest/element-templates/http-json-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 6,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/31b3fcc1667fab264cc37a25636d5d6e29d85495/connectors/http/rest/element-templates/http-json-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f244525865dcb4ea52ed869faee458ab611791e6/connectors/http/rest/element-templates/http-json-connector-hybrid.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/5c5d43d3c45b60ac99dec1be665a4ae1768b39f1/connectors/http/rest/element-templates/http-json-connector-hybrid.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/58ebdc9b96a704a2a4603ca159437fbb436d1868/connectors/http/rest/element-templates/http-json-connector-hybrid.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/e4cfae31d9fd04045b503bdc3c03c33d69a6ff9c/connectors/http/rest/element-templates/http-json-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/e4cfae31d9fd04045b503bdc3c03c33d69a6ff9c/connectors/http/rest/element-templates/http-json-connector-hybrid.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.HuggingFace.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/hugging-face/element-templates/hugging-face-connector.json",
"engine" : {
"camunda" : "^8.6"
}
} ],
"io.camunda.connectors.Jdbc.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/jdbc/element-templates/jdbc-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
} ],
"io.camunda.connectors.KAFKA.avro-v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c6bdaa024c8fbef85ccafa02c6f065eb84d1b8a/connectors/kafka/element-templates/avro/kafka-connector.json",
"engine" : {
"camunda" : "^0.24"
}
} ],
"io.camunda.connectors.KAFKA.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/kafka/element-templates/kafka-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9c6bdaa024c8fbef85ccafa02c6f065eb84d1b8a/connectors/kafka/element-templates/kafka-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/7161c09f061de620f557cbbba9072d92648d5309/connectors/kafka/element-templates/kafka-connector.json",
"engine" : {
"camunda" : "^8.4"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/b149de64ac6759c8d82dda521c21431ff85c0b17/connectors/kafka/element-templates/kafka-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/kafka/element-templates/kafka-connector.json",
"engine" : {
"camunda" : "^0.4"
}
} ],
"io.camunda.connectors.MSFT.O365.Mail.v1" : [ {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/microsoft/mail/element-templates/microsoft-office365-mail-connector.json",
"engine" : {
"camunda" : "^8.4"
}
} ],
"io.camunda.connectors.MSTeams.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/microsoft-teams/element-templates/microsoft-teams-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/9551a4b0215d85b004973b22b007ee09ee216f59/connectors/microsoft-teams/element-templates/microsoft-teams-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/microsoft-teams/element-templates/microsoft-teams-connector.json",
"engine" : {
"camunda" : ""
}
} ],
"io.camunda.connectors.OpenAI.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/openai/element-templates/openai-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f4ca332f0c4abbb34a456162c21f4852aa54261e/connectors/openai/element-templates/openai-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/967e2bf6857db31303d9bdfbf0fb36cf3ce02ee1/connectors/openai/element-templates/openai-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/openai/element-templates/openai-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/openai/element-templates/openai-connector.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.PowerAutomate.v1" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/2b4997bfc2219e5f3f7f6e18ef1bb48b602e482e/connectors/power-automate/element-templates/power-automate-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/power-automate/element-templates/power-automate-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/power-automate/element-templates/power-automate-connector.json",
"engine" : {
"camunda" : "^0.7"
}
} ],
"io.camunda.connectors.RabbitMQ.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/rabbitmq/element-templates/rabbitmq-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/414a076ea938a1851921bb720fa5e06c6d2b1d36/connectors/rabbitmq/element-templates/rabbitmq-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/e2454985d332d33c3f1c796b99feaea81b787c1a/connectors/rabbitmq/element-templates/rabbitmq-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/rabbitmq/element-templates/rabbitmq-connector.json",
"engine" : {
"camunda" : "^0.22"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/ccae1908b124c08e11fe67e83ce0822bcf69a30a/connectors/rabbitmq/element-templates/rabbitmq-connector.json",
"engine" : {
"camunda" : "^0.2"
}
} ],
"io.camunda.connectors.Salesforce.v1" : [ {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/salesforce/element-templates/salesforce-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/salesforce/element-templates/salesforce-connector.json",
"engine" : {
"camunda" : "^0.23"
}
} ],
"io.camunda.connectors.SendGrid.v2" : [ {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/sendgrid/element-templates/sendgrid-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/209e64cc9929d4843029d68d916ed0546cd77956/connectors/sendgrid/element-templates/sendgrid-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/dcf6f25504b8c029e93cae94ff14a5a09093db4f/connectors/sendgrid/element-templates/sendgrid-connector.json",
"engine" : {
"camunda" : "^0.12"
}
} ],
"io.camunda.connectors.Slack.v1" : [ {
"version" : 5,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/f614a32d460029f0b9719de5e02bf206c1157eaa/connectors/slack/element-templates/slack-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 4,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/faa11edb6b3db87d1e080cd1bdd87d1add9796cd/connectors/slack/element-templates/slack-outbound-connector.json",
"engine" : {
"camunda" : "^8.6"
}
}, {
"version" : 3,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/6234b28c6bc19f5a3f7af27097da7d3ae9e85485/connectors/slack/element-templates/slack-outbound-connector.json",
"engine" : {
"camunda" : "^8.5"
}
}, {
"version" : 2,
"ref" : "https://raw.githubusercontent.com/camunda/connectors/1d1716888210ea640243fa760451020550c95432/connectors/slack/element-templates/slack-connector.json",
"engine" : {
"camunda" : "^0.24"
}
}, {
"version" : 1,