@camunda/connectors-element-templates 1.0.10 → 1.0.11

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.
@@ -0,0 +1,832 @@
1
+ [
2
+ {
3
+ "$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
4
+ "name": "A2A Client (early access)",
5
+ "id": "io.camunda.connectors.agenticai.a2a.client.v0",
6
+ "description": "Agent-to-Agent (A2A) client, enabling discovering remote agents' Agent Cards as well as sending messages to remote agents.",
7
+ "metadata": {
8
+ "keywords": []
9
+ },
10
+ "version": 0,
11
+ "category": {
12
+ "id": "connectors",
13
+ "name": "Connectors"
14
+ },
15
+ "appliesTo": ["bpmn:Task"],
16
+ "elementType": {
17
+ "value": "bpmn:ServiceTask"
18
+ },
19
+ "engines": {
20
+ "camunda": "^8.9"
21
+ },
22
+ "groups": [
23
+ {
24
+ "id": "connection",
25
+ "label": "HTTP Connection",
26
+ "tooltip": "Configure the HTTP connection to the remote A2A server for retrieving the Agent Card. Setting authentication headers is not supported yet."
27
+ },
28
+ {
29
+ "id": "connectorMode",
30
+ "label": "Connector mode",
31
+ "tooltip": "Select how this connector is used. When the connector is used as an AI agent tool, select the <code>AI Agent tool</code> mode."
32
+ },
33
+ {
34
+ "id": "operation",
35
+ "label": "Operation"
36
+ },
37
+ {
38
+ "id": "connector",
39
+ "label": "Connector"
40
+ },
41
+ {
42
+ "id": "output",
43
+ "label": "Output mapping"
44
+ },
45
+ {
46
+ "id": "error",
47
+ "label": "Error handling"
48
+ },
49
+ {
50
+ "id": "retries",
51
+ "label": "Retries"
52
+ }
53
+ ],
54
+ "properties": [
55
+ {
56
+ "value": "io.camunda.agenticai:a2aclient:0",
57
+ "binding": {
58
+ "property": "type",
59
+ "type": "zeebe:taskDefinition"
60
+ },
61
+ "type": "Hidden"
62
+ },
63
+ {
64
+ "value": "a2aClient",
65
+ "binding": {
66
+ "name": "io.camunda.agenticai.gateway.type",
67
+ "type": "zeebe:property"
68
+ },
69
+ "condition": {
70
+ "property": "data.connectorMode.type",
71
+ "equals": "aiAgentTool",
72
+ "type": "simple"
73
+ },
74
+ "type": "Hidden"
75
+ },
76
+ {
77
+ "id": "data.connection.url",
78
+ "label": "A2A server URL",
79
+ "description": "The base URL of the A2A server.",
80
+ "optional": false,
81
+ "constraints": {
82
+ "notEmpty": true
83
+ },
84
+ "feel": "optional",
85
+ "group": "connection",
86
+ "binding": {
87
+ "name": "data.connection.url",
88
+ "type": "zeebe:input"
89
+ },
90
+ "type": "String"
91
+ },
92
+ {
93
+ "id": "data.connection.agentCardLocation",
94
+ "label": "Agent card location",
95
+ "description": "Optional path to the agent card endpoint relative to the base server URL, defaults to <code>.well-known/agent-card.json</code>.",
96
+ "optional": true,
97
+ "feel": "optional",
98
+ "group": "connection",
99
+ "binding": {
100
+ "name": "data.connection.agentCardLocation",
101
+ "type": "zeebe:input"
102
+ },
103
+ "type": "String"
104
+ },
105
+ {
106
+ "id": "data.connectorMode.type",
107
+ "label": "Connector mode",
108
+ "description": "Select how this connector is used.",
109
+ "value": "aiAgentTool",
110
+ "group": "connectorMode",
111
+ "binding": {
112
+ "name": "data.connectorMode.type",
113
+ "type": "zeebe:input"
114
+ },
115
+ "type": "Dropdown",
116
+ "choices": [
117
+ {
118
+ "name": "Standalone",
119
+ "value": "standalone"
120
+ },
121
+ {
122
+ "name": "AI Agent tool",
123
+ "value": "aiAgentTool"
124
+ }
125
+ ]
126
+ },
127
+ {
128
+ "id": "data.connectorMode.operation.type",
129
+ "label": "Operation",
130
+ "description": "The type of operation to perform.",
131
+ "value": "fetchAgentCard",
132
+ "group": "operation",
133
+ "binding": {
134
+ "name": "data.connectorMode.operation.type",
135
+ "type": "zeebe:input"
136
+ },
137
+ "condition": {
138
+ "property": "data.connectorMode.type",
139
+ "equals": "standalone",
140
+ "type": "simple"
141
+ },
142
+ "type": "Dropdown",
143
+ "choices": [
144
+ {
145
+ "name": "Fetch Agent Card",
146
+ "value": "fetchAgentCard"
147
+ },
148
+ {
149
+ "name": "Send message",
150
+ "value": "sendMessage"
151
+ }
152
+ ]
153
+ },
154
+ {
155
+ "id": "data.connectorMode.operation.params.text",
156
+ "label": "Text",
157
+ "description": "The text to to be included in the message.",
158
+ "optional": false,
159
+ "constraints": {
160
+ "notEmpty": true
161
+ },
162
+ "feel": "optional",
163
+ "group": "operation",
164
+ "binding": {
165
+ "name": "data.connectorMode.operation.params.text",
166
+ "type": "zeebe:input"
167
+ },
168
+ "condition": {
169
+ "allMatch": [
170
+ {
171
+ "property": "data.connectorMode.operation.type",
172
+ "equals": "sendMessage",
173
+ "type": "simple"
174
+ },
175
+ {
176
+ "property": "data.connectorMode.type",
177
+ "equals": "standalone",
178
+ "type": "simple"
179
+ }
180
+ ]
181
+ },
182
+ "type": "Text"
183
+ },
184
+ {
185
+ "id": "data.connectorMode.operation.params.contextId",
186
+ "label": "Context ID",
187
+ "description": "The context ID for this message, used to group related interactions.",
188
+ "optional": true,
189
+ "feel": "optional",
190
+ "group": "operation",
191
+ "binding": {
192
+ "name": "data.connectorMode.operation.params.contextId",
193
+ "type": "zeebe:input"
194
+ },
195
+ "condition": {
196
+ "allMatch": [
197
+ {
198
+ "property": "data.connectorMode.operation.type",
199
+ "equals": "sendMessage",
200
+ "type": "simple"
201
+ },
202
+ {
203
+ "property": "data.connectorMode.type",
204
+ "equals": "standalone",
205
+ "type": "simple"
206
+ }
207
+ ]
208
+ },
209
+ "tooltip": "Context IDs are generated by the remote server. Omit if this is the first message or if this message starts a new context.",
210
+ "type": "String"
211
+ },
212
+ {
213
+ "id": "data.connectorMode.operation.params.taskId",
214
+ "label": "Task ID",
215
+ "description": "The ID of the task this message is part of.",
216
+ "optional": true,
217
+ "feel": "optional",
218
+ "group": "operation",
219
+ "binding": {
220
+ "name": "data.connectorMode.operation.params.taskId",
221
+ "type": "zeebe:input"
222
+ },
223
+ "condition": {
224
+ "allMatch": [
225
+ {
226
+ "property": "data.connectorMode.operation.type",
227
+ "equals": "sendMessage",
228
+ "type": "simple"
229
+ },
230
+ {
231
+ "property": "data.connectorMode.type",
232
+ "equals": "standalone",
233
+ "type": "simple"
234
+ }
235
+ ]
236
+ },
237
+ "tooltip": "Task IDs are generated by the remote server. Omit if the message is not yet part of a specific task.",
238
+ "type": "String"
239
+ },
240
+ {
241
+ "id": "data.connectorMode.operation.params.referenceTaskIds",
242
+ "label": "Reference Task IDs",
243
+ "description": "A list of task IDs that this message references for additional context.",
244
+ "optional": true,
245
+ "feel": "required",
246
+ "group": "operation",
247
+ "binding": {
248
+ "name": "data.connectorMode.operation.params.referenceTaskIds",
249
+ "type": "zeebe:input"
250
+ },
251
+ "condition": {
252
+ "allMatch": [
253
+ {
254
+ "property": "data.connectorMode.operation.type",
255
+ "equals": "sendMessage",
256
+ "type": "simple"
257
+ },
258
+ {
259
+ "property": "data.connectorMode.type",
260
+ "equals": "standalone",
261
+ "type": "simple"
262
+ }
263
+ ]
264
+ },
265
+ "type": "String"
266
+ },
267
+ {
268
+ "id": "data.connectorMode.operation.params.documents",
269
+ "label": "Documents",
270
+ "description": "Documents to be included in the message.",
271
+ "optional": true,
272
+ "feel": "required",
273
+ "group": "operation",
274
+ "binding": {
275
+ "name": "data.connectorMode.operation.params.documents",
276
+ "type": "zeebe:input"
277
+ },
278
+ "condition": {
279
+ "allMatch": [
280
+ {
281
+ "property": "data.connectorMode.operation.type",
282
+ "equals": "sendMessage",
283
+ "type": "simple"
284
+ },
285
+ {
286
+ "property": "data.connectorMode.type",
287
+ "equals": "standalone",
288
+ "type": "simple"
289
+ }
290
+ ]
291
+ },
292
+ "tooltip": "Referenced documents that will be added to the message.",
293
+ "type": "String"
294
+ },
295
+ {
296
+ "id": "data.connectorMode.operation.settings.responseRetrievalMode.type",
297
+ "label": "Response retrieval",
298
+ "description": "How to receive the final response from the remote agent.",
299
+ "value": "polling",
300
+ "group": "operation",
301
+ "binding": {
302
+ "name": "data.connectorMode.operation.settings.responseRetrievalMode.type",
303
+ "type": "zeebe:input"
304
+ },
305
+ "condition": {
306
+ "allMatch": [
307
+ {
308
+ "property": "data.connectorMode.operation.type",
309
+ "equals": "sendMessage",
310
+ "type": "simple"
311
+ },
312
+ {
313
+ "property": "data.connectorMode.type",
314
+ "equals": "standalone",
315
+ "type": "simple"
316
+ }
317
+ ]
318
+ },
319
+ "type": "Dropdown",
320
+ "choices": [
321
+ {
322
+ "name": "Blocking",
323
+ "value": "blocking"
324
+ },
325
+ {
326
+ "name": "Polling",
327
+ "value": "polling"
328
+ },
329
+ {
330
+ "name": "Notification",
331
+ "value": "notification"
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "id": "data.connectorMode.operation.settings.responseRetrievalMode.webhookUrl",
337
+ "label": "Webhook URL",
338
+ "description": "The webhook URL where the remote agent will send the response.",
339
+ "optional": false,
340
+ "constraints": {
341
+ "notEmpty": true
342
+ },
343
+ "feel": "optional",
344
+ "group": "operation",
345
+ "binding": {
346
+ "name": "data.connectorMode.operation.settings.responseRetrievalMode.webhookUrl",
347
+ "type": "zeebe:input"
348
+ },
349
+ "condition": {
350
+ "allMatch": [
351
+ {
352
+ "property": "data.connectorMode.operation.settings.responseRetrievalMode.type",
353
+ "equals": "notification",
354
+ "type": "simple"
355
+ },
356
+ {
357
+ "property": "data.connectorMode.operation.type",
358
+ "equals": "sendMessage",
359
+ "type": "simple"
360
+ },
361
+ {
362
+ "property": "data.connectorMode.type",
363
+ "equals": "standalone",
364
+ "type": "simple"
365
+ }
366
+ ]
367
+ },
368
+ "type": "String"
369
+ },
370
+ {
371
+ "id": "data.connectorMode.operation.settings.responseRetrievalMode.token",
372
+ "label": "Token",
373
+ "description": "A unique token for the task or session to validate incoming push notifications",
374
+ "optional": true,
375
+ "feel": "optional",
376
+ "group": "operation",
377
+ "binding": {
378
+ "name": "data.connectorMode.operation.settings.responseRetrievalMode.token",
379
+ "type": "zeebe:input"
380
+ },
381
+ "condition": {
382
+ "allMatch": [
383
+ {
384
+ "property": "data.connectorMode.operation.settings.responseRetrievalMode.type",
385
+ "equals": "notification",
386
+ "type": "simple"
387
+ },
388
+ {
389
+ "property": "data.connectorMode.operation.type",
390
+ "equals": "sendMessage",
391
+ "type": "simple"
392
+ },
393
+ {
394
+ "property": "data.connectorMode.type",
395
+ "equals": "standalone",
396
+ "type": "simple"
397
+ }
398
+ ]
399
+ },
400
+ "type": "String"
401
+ },
402
+ {
403
+ "id": "data.connectorMode.operation.settings.responseRetrievalMode.authenticationSchemes",
404
+ "label": "Authentication schemes",
405
+ "description": "A list of authentication schemes required by the webhook.",
406
+ "optional": false,
407
+ "feel": "required",
408
+ "group": "operation",
409
+ "binding": {
410
+ "name": "data.connectorMode.operation.settings.responseRetrievalMode.authenticationSchemes",
411
+ "type": "zeebe:input"
412
+ },
413
+ "condition": {
414
+ "allMatch": [
415
+ {
416
+ "property": "data.connectorMode.operation.settings.responseRetrievalMode.type",
417
+ "equals": "notification",
418
+ "type": "simple"
419
+ },
420
+ {
421
+ "property": "data.connectorMode.operation.type",
422
+ "equals": "sendMessage",
423
+ "type": "simple"
424
+ },
425
+ {
426
+ "property": "data.connectorMode.type",
427
+ "equals": "standalone",
428
+ "type": "simple"
429
+ }
430
+ ]
431
+ },
432
+ "type": "String"
433
+ },
434
+ {
435
+ "id": "data.connectorMode.operation.settings.responseRetrievalMode.credentials",
436
+ "label": "Authentication credentials",
437
+ "description": "Credentials to authenticate the webhook request.",
438
+ "optional": false,
439
+ "feel": "optional",
440
+ "group": "operation",
441
+ "binding": {
442
+ "name": "data.connectorMode.operation.settings.responseRetrievalMode.credentials",
443
+ "type": "zeebe:input"
444
+ },
445
+ "condition": {
446
+ "allMatch": [
447
+ {
448
+ "property": "data.connectorMode.operation.settings.responseRetrievalMode.type",
449
+ "equals": "notification",
450
+ "type": "simple"
451
+ },
452
+ {
453
+ "property": "data.connectorMode.operation.type",
454
+ "equals": "sendMessage",
455
+ "type": "simple"
456
+ },
457
+ {
458
+ "property": "data.connectorMode.type",
459
+ "equals": "standalone",
460
+ "type": "simple"
461
+ }
462
+ ]
463
+ },
464
+ "type": "String"
465
+ },
466
+ {
467
+ "id": "data.connectorMode.operation.settings.historyLength",
468
+ "label": "History length",
469
+ "description": "The number of most recent messages from the task's history to retrieve in the response.",
470
+ "optional": false,
471
+ "value": 3,
472
+ "feel": "optional",
473
+ "group": "operation",
474
+ "binding": {
475
+ "name": "data.connectorMode.operation.settings.historyLength",
476
+ "type": "zeebe:input"
477
+ },
478
+ "condition": {
479
+ "allMatch": [
480
+ {
481
+ "property": "data.connectorMode.operation.type",
482
+ "equals": "sendMessage",
483
+ "type": "simple"
484
+ },
485
+ {
486
+ "property": "data.connectorMode.type",
487
+ "equals": "standalone",
488
+ "type": "simple"
489
+ }
490
+ ]
491
+ },
492
+ "type": "Number"
493
+ },
494
+ {
495
+ "id": "data.connectorMode.operation.settings.timeout",
496
+ "label": "Response timeout",
497
+ "description": "How long to wait for the remote agent response as ISO-8601 duration (example: <code>PT1M</code>).",
498
+ "optional": false,
499
+ "value": "PT1M",
500
+ "feel": "optional",
501
+ "group": "operation",
502
+ "binding": {
503
+ "name": "data.connectorMode.operation.settings.timeout",
504
+ "type": "zeebe:input"
505
+ },
506
+ "condition": {
507
+ "allMatch": [
508
+ {
509
+ "property": "data.connectorMode.operation.type",
510
+ "equals": "sendMessage",
511
+ "type": "simple"
512
+ },
513
+ {
514
+ "property": "data.connectorMode.type",
515
+ "equals": "standalone",
516
+ "type": "simple"
517
+ }
518
+ ]
519
+ },
520
+ "type": "String"
521
+ },
522
+ {
523
+ "id": "data.connectorMode.toolOperation.operation",
524
+ "label": "Operation",
525
+ "description": "The action to perform. Possible values are <code>fetchAgentCard</code> and <code>sendMessage</code>.",
526
+ "optional": false,
527
+ "value": "=toolCall.operation",
528
+ "constraints": {
529
+ "notEmpty": true
530
+ },
531
+ "feel": "required",
532
+ "group": "operation",
533
+ "binding": {
534
+ "name": "data.connectorMode.toolOperation.operation",
535
+ "type": "zeebe:input"
536
+ },
537
+ "condition": {
538
+ "property": "data.connectorMode.type",
539
+ "equals": "aiAgentTool",
540
+ "type": "simple"
541
+ },
542
+ "type": "String"
543
+ },
544
+ {
545
+ "id": "data.connectorMode.toolOperation.params",
546
+ "label": "Parameters",
547
+ "description": "The parameters used to build the message that will be sent to the remote agent.",
548
+ "optional": true,
549
+ "value": "=toolCall.params",
550
+ "feel": "required",
551
+ "group": "operation",
552
+ "binding": {
553
+ "name": "data.connectorMode.toolOperation.params",
554
+ "type": "zeebe:input"
555
+ },
556
+ "condition": {
557
+ "property": "data.connectorMode.type",
558
+ "equals": "aiAgentTool",
559
+ "type": "simple"
560
+ },
561
+ "type": "Text"
562
+ },
563
+ {
564
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
565
+ "label": "Response retrieval",
566
+ "description": "How to receive the final response from the remote agent.",
567
+ "value": "polling",
568
+ "group": "operation",
569
+ "binding": {
570
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
571
+ "type": "zeebe:input"
572
+ },
573
+ "condition": {
574
+ "property": "data.connectorMode.type",
575
+ "equals": "aiAgentTool",
576
+ "type": "simple"
577
+ },
578
+ "type": "Dropdown",
579
+ "choices": [
580
+ {
581
+ "name": "Blocking",
582
+ "value": "blocking"
583
+ },
584
+ {
585
+ "name": "Polling",
586
+ "value": "polling"
587
+ },
588
+ {
589
+ "name": "Notification",
590
+ "value": "notification"
591
+ }
592
+ ]
593
+ },
594
+ {
595
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.webhookUrl",
596
+ "label": "Webhook URL",
597
+ "description": "The webhook URL where the remote agent will send the response.",
598
+ "optional": false,
599
+ "constraints": {
600
+ "notEmpty": true
601
+ },
602
+ "feel": "optional",
603
+ "group": "operation",
604
+ "binding": {
605
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.webhookUrl",
606
+ "type": "zeebe:input"
607
+ },
608
+ "condition": {
609
+ "allMatch": [
610
+ {
611
+ "property": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
612
+ "equals": "notification",
613
+ "type": "simple"
614
+ },
615
+ {
616
+ "property": "data.connectorMode.type",
617
+ "equals": "aiAgentTool",
618
+ "type": "simple"
619
+ }
620
+ ]
621
+ },
622
+ "type": "String"
623
+ },
624
+ {
625
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.token",
626
+ "label": "Token",
627
+ "description": "A unique token for the task or session to validate incoming push notifications",
628
+ "optional": true,
629
+ "feel": "optional",
630
+ "group": "operation",
631
+ "binding": {
632
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.token",
633
+ "type": "zeebe:input"
634
+ },
635
+ "condition": {
636
+ "allMatch": [
637
+ {
638
+ "property": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
639
+ "equals": "notification",
640
+ "type": "simple"
641
+ },
642
+ {
643
+ "property": "data.connectorMode.type",
644
+ "equals": "aiAgentTool",
645
+ "type": "simple"
646
+ }
647
+ ]
648
+ },
649
+ "type": "String"
650
+ },
651
+ {
652
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.authenticationSchemes",
653
+ "label": "Authentication schemes",
654
+ "description": "A list of authentication schemes required by the webhook.",
655
+ "optional": false,
656
+ "feel": "required",
657
+ "group": "operation",
658
+ "binding": {
659
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.authenticationSchemes",
660
+ "type": "zeebe:input"
661
+ },
662
+ "condition": {
663
+ "allMatch": [
664
+ {
665
+ "property": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
666
+ "equals": "notification",
667
+ "type": "simple"
668
+ },
669
+ {
670
+ "property": "data.connectorMode.type",
671
+ "equals": "aiAgentTool",
672
+ "type": "simple"
673
+ }
674
+ ]
675
+ },
676
+ "type": "String"
677
+ },
678
+ {
679
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.credentials",
680
+ "label": "Authentication credentials",
681
+ "description": "Credentials to authenticate the webhook request.",
682
+ "optional": false,
683
+ "feel": "optional",
684
+ "group": "operation",
685
+ "binding": {
686
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.credentials",
687
+ "type": "zeebe:input"
688
+ },
689
+ "condition": {
690
+ "allMatch": [
691
+ {
692
+ "property": "data.connectorMode.toolOperation.sendMessageSettings.responseRetrievalMode.type",
693
+ "equals": "notification",
694
+ "type": "simple"
695
+ },
696
+ {
697
+ "property": "data.connectorMode.type",
698
+ "equals": "aiAgentTool",
699
+ "type": "simple"
700
+ }
701
+ ]
702
+ },
703
+ "type": "String"
704
+ },
705
+ {
706
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.historyLength",
707
+ "label": "History length",
708
+ "description": "The number of most recent messages from the task's history to retrieve in the response.",
709
+ "optional": false,
710
+ "value": 3,
711
+ "feel": "optional",
712
+ "group": "operation",
713
+ "binding": {
714
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.historyLength",
715
+ "type": "zeebe:input"
716
+ },
717
+ "condition": {
718
+ "property": "data.connectorMode.type",
719
+ "equals": "aiAgentTool",
720
+ "type": "simple"
721
+ },
722
+ "type": "Number"
723
+ },
724
+ {
725
+ "id": "data.connectorMode.toolOperation.sendMessageSettings.timeout",
726
+ "label": "Response timeout",
727
+ "description": "How long to wait for the remote agent response as ISO-8601 duration (example: <code>PT1M</code>).",
728
+ "optional": false,
729
+ "value": "PT1M",
730
+ "feel": "optional",
731
+ "group": "operation",
732
+ "binding": {
733
+ "name": "data.connectorMode.toolOperation.sendMessageSettings.timeout",
734
+ "type": "zeebe:input"
735
+ },
736
+ "condition": {
737
+ "property": "data.connectorMode.type",
738
+ "equals": "aiAgentTool",
739
+ "type": "simple"
740
+ },
741
+ "type": "String"
742
+ },
743
+ {
744
+ "id": "version",
745
+ "label": "Version",
746
+ "description": "Version of the element template",
747
+ "value": "0",
748
+ "group": "connector",
749
+ "binding": {
750
+ "key": "elementTemplateVersion",
751
+ "type": "zeebe:taskHeader"
752
+ },
753
+ "type": "Hidden"
754
+ },
755
+ {
756
+ "id": "id",
757
+ "label": "ID",
758
+ "description": "ID of the element template",
759
+ "value": "io.camunda.connectors.agenticai.a2a.client.v0",
760
+ "group": "connector",
761
+ "binding": {
762
+ "key": "elementTemplateId",
763
+ "type": "zeebe:taskHeader"
764
+ },
765
+ "type": "Hidden"
766
+ },
767
+ {
768
+ "id": "resultVariable",
769
+ "label": "Result variable",
770
+ "description": "Name of variable to store the response in",
771
+ "group": "output",
772
+ "binding": {
773
+ "key": "resultVariable",
774
+ "type": "zeebe:taskHeader"
775
+ },
776
+ "type": "String"
777
+ },
778
+ {
779
+ "id": "resultExpression",
780
+ "label": "Result expression",
781
+ "description": "Expression to map the response into process variables",
782
+ "feel": "required",
783
+ "group": "output",
784
+ "binding": {
785
+ "key": "resultExpression",
786
+ "type": "zeebe:taskHeader"
787
+ },
788
+ "type": "Text"
789
+ },
790
+ {
791
+ "id": "errorExpression",
792
+ "label": "Error expression",
793
+ "description": "Expression to handle errors. Details in the <a href=\"https://docs.camunda.io/docs/components/connectors/use-connectors/\" target=\"_blank\">documentation</a>.",
794
+ "feel": "required",
795
+ "group": "error",
796
+ "binding": {
797
+ "key": "errorExpression",
798
+ "type": "zeebe:taskHeader"
799
+ },
800
+ "type": "Text"
801
+ },
802
+ {
803
+ "id": "retryCount",
804
+ "label": "Retries",
805
+ "description": "Number of retries",
806
+ "value": "3",
807
+ "feel": "optional",
808
+ "group": "retries",
809
+ "binding": {
810
+ "property": "retries",
811
+ "type": "zeebe:taskDefinition"
812
+ },
813
+ "type": "String"
814
+ },
815
+ {
816
+ "id": "retryBackoff",
817
+ "label": "Retry backoff",
818
+ "description": "ISO-8601 duration to wait between retries",
819
+ "value": "PT0S",
820
+ "group": "retries",
821
+ "binding": {
822
+ "key": "retryBackoff",
823
+ "type": "zeebe:taskHeader"
824
+ },
825
+ "type": "String"
826
+ }
827
+ ],
828
+ "icon": {
829
+ "contents": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMTguNSIgdmlld0JveD0iMyA5IDMwIDE4LjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTguNyAxNC43MjVDOC41MTY2NyAxNC45MDgzIDguMjgzMzMgMTUgOCAxNUM3LjcxNjY3IDE1IDcuNDc1IDE0LjkwODMgNy4yNzUgMTQuNzI1QzcuMDkxNjcgMTQuNTI1IDcgMTQuMjgzMyA3IDE0QzcgMTMuNzE2NyA3LjA5MTY3IDEzLjQ4MzMgNy4yNzUgMTMuM0M3LjQ3NSAxMy4xIDcuNzE2NjcgMTMgOCAxM0M4LjI4MzMzIDEzIDguNTE2NjcgMTMuMSA4LjcgMTMuM0M4LjkgMTMuNDgzMyA5IDEzLjcxNjcgOSAxNEM5IDE0LjI4MzMgOC45IDE0LjUyNSA4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMTQuNyAxNC43MjVDMTQuNTE2NyAxNC45MDgzIDE0LjI4MzMgMTUgMTQgMTVDMTMuNzE2NyAxNSAxMy40NzUgMTQuOTA4MyAxMy4yNzUgMTQuNzI1QzEzLjA5MTcgMTQuNTI1IDEzIDE0LjI4MzMgMTMgMTRDMTMgMTMuNzE2NyAxMy4wOTE3IDEzLjQ4MzMgMTMuMjc1IDEzLjNDMTMuNDc1IDEzLjEgMTMuNzE2NyAxMyAxNCAxM0MxNC4yODMzIDEzIDE0LjUxNjcgMTMuMSAxNC43IDEzLjNDMTQuOSAxMy40ODMzIDE1IDEzLjcxNjcgMTUgMTRDMTUgMTQuMjgzMyAxNC45IDE0LjUyNSAxNC43IDE0LjcyNVoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTIyLjcgMTQuNzI1QzIyLjUxNjcgMTQuOTA4MyAyMi4yODMzIDE1IDIyIDE1QzIxLjcxNjcgMTUgMjEuNDc1IDE0LjkwODMgMjEuMjc1IDE0LjcyNUMyMS4wOTE3IDE0LjUyNSAyMSAxNC4yODMzIDIxIDE0QzIxIDEzLjcxNjcgMjEuMDkxNyAxMy40ODMzIDIxLjI3NSAxMy4zQzIxLjQ3NSAxMy4xIDIxLjcxNjcgMTMgMjIgMTNDMjIuMjgzMyAxMyAyMi41MTY3IDEzLjEgMjIuNyAxMy4zQzIyLjkgMTMuNDgzMyAyMyAxMy43MTY3IDIzIDE0QzIzIDE0LjI4MzMgMjIuOSAxNC41MjUgMjIuNyAxNC43MjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0yOC43IDE0LjcyNUMyOC41MTY3IDE0LjkwODMgMjguMjgzMyAxNSAyOCAxNUMyNy43MTY3IDE1IDI3LjQ3NSAxNC45MDgzIDI3LjI3NSAxNC43MjVDMjcuMDkxNyAxNC41MjUgMjcgMTQuMjgzMyAyNyAxNEMyNyAxMy43MTY3IDI3LjA5MTcgMTMuNDgzMyAyNy4yNzUgMTMuM0MyNy40NzUgMTMuMSAyNy43MTY3IDEzIDI4IDEzQzI4LjI4MzMgMTMgMjguNTE2NyAxMy4xIDI4LjcgMTMuM0MyOC45IDEzLjQ4MzMgMjkgMTMuNzE2NyAyOSAxNEMyOSAxNC4yODMzIDI4LjkgMTQuNTI1IDI4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTUgMTRDNSAxMi4zNDMxIDYuMzQzMTUgMTEgOCAxMUgxNEMxNC43NzYgMTEgMTUuMjg0IDExLjE1MzcgMTUuNjQgMTEuMzgxOEMxNS44NTg5IDEwLjc5NCAxNi4xNTE3IDEwLjE3MDkgMTYuNTU1IDkuNTk3OTVDMTUuODc5NyA5LjIxMTUzIDE1LjAzODYgOSAxNCA5SDhDNS4yMzg1OCA5IDMgMTEuMjM4NiAzIDE0QzMgMTYuNzYxMiA1LjIzNzU5IDE5IDcuOTk5MjYgMTlIMTRDMTUuNzYzNCAxOSAxNi45NTczIDE4LjM5MDIgMTcuNzM3NSAxNy4zNUMxOC40MjI4IDE2LjQzNjMgMTguNzE0OCAxNS4yNjYgMTguOTQ4MyAxNC4zMjk5TDE4Ljk3MDEgMTQuMjQyNUMxOS4yMzI3IDEzLjE5MjQgMTkuNDQ0MiAxMi40MDc3IDE5Ljg2MjUgMTEuODVDMjAuMjA3MyAxMS4zOTAyIDIwLjc2MzQgMTEgMjIgMTFIMjguMDAwNUMyOS42NTcyIDExIDMxIDEyLjM0MyAzMSAxNEMzMSAxNS42NTY5IDI5LjY1NjkgMTcgMjggMTdIMjJDMjEuMjI0IDE3IDIwLjcxNiAxNi44NDYzIDIwLjM2IDE2LjYxODJDMjAuMTQxMSAxNy4yMDYgMTkuODQ4MyAxNy44MjkxIDE5LjQ0NSAxOC40MDJDMjAuMTIwMyAxOC43ODg1IDIwLjk2MTQgMTkgMjIgMTlIMjhDMzAuNzYxNCAxOSAzMyAxNi43NjE0IDMzIDE0QzMzIDExLjIzODggMzAuNzYyMSA5IDI4LjAwMDUgOUgyMkMyMC4yMzY2IDkgMTkuMDQyNyA5LjYwOTc5IDE4LjI2MjUgMTAuNjVDMTcuNTc3MiAxMS41NjM3IDE3LjI4NTIgMTIuNzM0IDE3LjA1MTcgMTMuNjcwMUwxNy4wMjk5IDEzLjc1NzVDMTYuNzY3MyAxNC44MDc2IDE2LjU1NTggMTUuNTkyMyAxNi4xMzc1IDE2LjE1QzE1Ljc5MjcgMTYuNjA5OCAxNS4yMzY2IDE3IDE0IDE3SDcuOTk5MjZDNi4zNDI2NSAxNyA1IDE1LjY1NzEgNSAxNFoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTcgMjMuNUM2LjcxNjY3IDIzLjUgNi40NzUgMjMuNDA4MyA2LjI3NSAyMy4yMjVDNi4wOTE2NyAyMy4wMjUgNiAyMi43ODMzIDYgMjIuNUM2IDIyLjIxNjcgNi4wOTE2NyAyMS45ODMzIDYuMjc1IDIxLjhDNi40NzUgMjEuNiA2LjcxNjY3IDIxLjUgNyAyMS41SDEyQzEyLjI4MzMgMjEuNSAxMi41MTY3IDIxLjYgMTIuNyAyMS44QzEyLjkgMjEuOTgzMyAxMyAyMi4yMTY3IDEzIDIyLjVDMTMgMjIuNzgzMyAxMi45IDIzLjAyNSAxMi43IDIzLjIyNUMxMi41MTY3IDIzLjQwODMgMTIuMjgzMyAyMy41IDEyIDIzLjVIN1pNNSAyNy41QzQuNzE2NjcgMjcuNSA0LjQ3NSAyNy40MDgzIDQuMjc1IDI3LjIyNUM0LjA5MTY3IDI3LjAyNSA0IDI2Ljc4MzMgNCAyNi41QzQgMjYuMjE2NyA0LjA5MTY3IDI1Ljk4MzMgNC4yNzUgMjUuOEM0LjQ3NSAyNS42IDQuNzE2NjcgMjUuNSA1IDI1LjVIOEM4LjI4MzMzIDI1LjUgOC41MTY2NyAyNS42IDguNyAyNS44QzguOSAyNS45ODMzIDkgMjYuMjE2NyA5IDI2LjVDOSAyNi43ODMzIDguOSAyNy4wMjUgOC43IDI3LjIyNUM4LjUxNjY3IDI3LjQwODMgOC4yODMzMyAyNy41IDggMjcuNUg1Wk0xMiAyNy41QzExLjcxNjcgMjcuNSAxMS40NzUgMjcuNDA4MyAxMS4yNzUgMjcuMjI1QzExLjA5MTcgMjcuMDI1IDExIDI2Ljc4MzMgMTEgMjYuNUMxMSAyNi4yMTY3IDExLjA5MTcgMjUuOTgzMyAxMS4yNzUgMjUuOEMxMS40NzUgMjUuNiAxMS43MTY3IDI1LjUgMTIgMjUuNUgyMEMyMC4yODMzIDI1LjUgMjAuNTE2NyAyNS42IDIwLjcgMjUuOEMyMC45IDI1Ljk4MzMgMjEgMjYuMjE2NyAyMSAyNi41QzIxIDI2Ljc4MzMgMjAuOSAyNy4wMjUgMjAuNyAyNy4yMjVDMjAuNTE2NyAyNy40MDgzIDIwLjI4MzMgMjcuNSAyMCAyNy41SDEyWk0yOCAyNy41QzI3LjcxNjcgMjcuNSAyNy40NzUgMjcuNDA4MyAyNy4yNzUgMjcuMjI1QzI3LjA5MTcgMjcuMDI1IDI3IDI2Ljc4MzMgMjcgMjYuNUMyNyAyNi4yMTY3IDI3LjA5MTcgMjUuOTgzMyAyNy4yNzUgMjUuOEMyNy40NzUgMjUuNiAyNy43MTY3IDI1LjUgMjggMjUuNUgzMkMzMi4yODMzIDI1LjUgMzIuNTE2NyAyNS42IDMyLjcgMjUuOEMzMi45IDI1Ljk4MzMgMzMgMjYuMjE2NyAzMyAyNi41QzMzIDI2Ljc4MzMzMi45IDI3LjAyNSAzMi43IDI3LjIyNUMzMi41MTY3IDI3LjQwODMgMzIuMjgzMyAyNy41IDMyIDI3LjVIMjhaTTE2IDIzLjVDMTUuNzE2NyAyMy41IDE1LjQ3NSAyMy40MDgzIDE1LjI3NSAyMy4yMjVDMTUuMDkxNyAyMy4wMjUgMTUgMjIuNzgzMyAxNSAyMi41QzE1IDIyLjIxNjcgMTUuMDkxNyAyMS45ODMzIDE1LjI3NSAyMS44QzE1LjQ3NSAyMS42IDE1LjcxNjcgMjEuNSAxNiAyMS41QzE2LjI4MzMgMjEuNSAxNi41MTY3IDIxLjYgMTYuNyAyMS44QzE2LjkgMjEuOTgzMyAxNyAyMi4yMTY3IDE3IDIyLjVDMTcgMjIuNzgzMyAxNi45IDIzLjAyNSAxNi43IDIzLjIyNUMxNi41MTY3IDIzLjQwODMgMTYuMjgzMyAyMy41IDE2IDIzLjVaTTI0IDI3LjVDMjMuNzE2NyAyNy41IDIzLjQ3NSAyNy40MDgzIDIzLjI3NSAyNy4yMjVDMjMuMDkxNyAyNy4wMjUgMjMgMjYuNzgzMyAyMyAyNi41QzIzIDI2LjIxNjcgMjMuMDkxNyAyNS45ODMzIDIzLjI3NSAyNS44QzIzLjQ3NSAyNS42IDIzLjcxNjcgMjUuNSAyNCAyNS41QzI0LjI4MzMgMjUuNSAyNC41MTY3IDI1LjYgMjQuNyAyNS44QzI0LjkgMjUuOTgzMyAyNSAyNi4yMTY3IDI1IDI2LjVDMjUgMjYuNzgzMyAyNC45IDI3LjAyNSAyNC43IDI3LjIyNUMyNC41MTY3IDI3LjQwODMgMjQuMjgzMyAyNy41IDI0IDI3LjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0xOS4yNzUgMjMuMjI1QzE5LjQ3NSAyMy40MDgzIDE5LjcxNjcgMjMuNSAyMCAyMy41SDIzQzIzLjI4MzMgMjMuNSAyMy41MTY3IDIzLjQwODMgMjMuNyAyMy4yMjVDMjMuOSAyMy4wMjUgMjQgMjIuNzgzMyAyNCAyMi41QzI0IDIyLjIxNjcgMjMuOSAyMS45ODMzIDIzLjcgMjEuOEMyMy41MTY3IDIxLjYgMjMuMjgzMyAyMS41IDIzIDIxLjVIMjBDMTkuNzE2NyAyMS41IDE5LjQ3NSAyMS42IDE5LjI3NSAyMS44QzE5LjA5MTcgMjEuOTgzMyAxOSAyMi4yMTY3IDE5IDIyLjVDMTkgMjIuNzgzMyAxOS4wOTE3IDIzLjAyNSAxOS4yNzUgMjMuMjI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMjYuMjc1IDIzLjIyNUMyNi40NzUgMjMuNDA4MyAyNi43MTY3IDIzLjUgMjcgMjMuNUgzMEMzMC4yODMzIDIzLjUgMzAuNTE2NyAyMy40MDgzIDMwLjcgMjMuMjI1QzMwLjkgMjMuMDI1IDMxIDIyLjc4MzMgMzEgMjIuNUMzMSAyMi4yMTY3IDMwLjkgMjEuOTgzMyAzMC43IDIxLjhDMzAuNTE2NyAyMS42IDMwLjI4MzMgMjEuNSAzMCAyMS41SDI3QzI2LjcxNjcgMjEuNSAyNi40NzUgMjEuNiAyNi4yNzUgMjEuOEMyNi4wOTE3IDIxLjk4MzMgMjYgMjIuMjE2NyAyNiAyMi41QzI2IDIyLjc4MzMgMjYuMDkxNyAyMy4wMjUgMjYuMjc1IDIzLjIyNVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg=="
830
+ }
831
+ }
832
+ ]