@camunda/connectors-element-templates 1.0.14 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/connectors-element-templates",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Camunda Connectors Store with all out of the box connectors",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -11,7 +11,7 @@
11
11
  "license": "Camunda License 1.0",
12
12
  "devDependencies": {
13
13
  "mocha": "^11.7.1",
14
- "prettier": "3.7.4"
14
+ "prettier": "3.8.1"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
@@ -626,8 +626,8 @@
626
626
  "label": "Operation"
627
627
  },
628
628
  {
629
- "id": "tools",
630
- "label": "Tools",
629
+ "id": "filters",
630
+ "label": "Filters",
631
631
  "openByDefault": false
632
632
  },
633
633
  {
@@ -724,17 +724,33 @@
724
724
  },
725
725
  "type": "Dropdown",
726
726
  "choices": [
727
- {
728
- "name": "Call Tool",
729
- "value": "tools/call"
730
- },
731
727
  {
732
728
  "name": "List Tools",
733
729
  "value": "tools/list"
734
730
  },
731
+ {
732
+ "name": "Call Tool",
733
+ "value": "tools/call"
734
+ },
735
735
  {
736
736
  "name": "List Resources",
737
737
  "value": "resources/list"
738
+ },
739
+ {
740
+ "name": "List Resource Templates",
741
+ "value": "resources/templates/list"
742
+ },
743
+ {
744
+ "name": "Read Resource",
745
+ "value": "resources/read"
746
+ },
747
+ {
748
+ "name": "List Prompts",
749
+ "value": "prompts/list"
750
+ },
751
+ {
752
+ "name": "Get Prompt",
753
+ "value": "prompts/get"
738
754
  }
739
755
  ]
740
756
  },
@@ -795,6 +811,93 @@
795
811
  },
796
812
  "type": "String"
797
813
  },
814
+ {
815
+ "id": "data.connectorMode.operation.resourceUri",
816
+ "label": "Resource URI",
817
+ "description": "The URI of the resource to read.",
818
+ "optional": false,
819
+ "constraints": {
820
+ "notEmpty": true
821
+ },
822
+ "feel": "optional",
823
+ "group": "operation",
824
+ "binding": {
825
+ "name": "data.connectorMode.operation.resourceUri",
826
+ "type": "zeebe:input"
827
+ },
828
+ "condition": {
829
+ "allMatch": [
830
+ {
831
+ "property": "data.connectorMode.operation.type",
832
+ "equals": "resources/read",
833
+ "type": "simple"
834
+ },
835
+ {
836
+ "property": "data.connectorMode.type",
837
+ "equals": "standalone",
838
+ "type": "simple"
839
+ }
840
+ ]
841
+ },
842
+ "type": "String"
843
+ },
844
+ {
845
+ "id": "data.connectorMode.operation.promptName",
846
+ "label": "Prompt name",
847
+ "description": "The name of the prompt to get.",
848
+ "optional": false,
849
+ "constraints": {
850
+ "notEmpty": true
851
+ },
852
+ "feel": "optional",
853
+ "group": "operation",
854
+ "binding": {
855
+ "name": "data.connectorMode.operation.promptName",
856
+ "type": "zeebe:input"
857
+ },
858
+ "condition": {
859
+ "allMatch": [
860
+ {
861
+ "property": "data.connectorMode.operation.type",
862
+ "equals": "prompts/get",
863
+ "type": "simple"
864
+ },
865
+ {
866
+ "property": "data.connectorMode.type",
867
+ "equals": "standalone",
868
+ "type": "simple"
869
+ }
870
+ ]
871
+ },
872
+ "type": "String"
873
+ },
874
+ {
875
+ "id": "data.connectorMode.operation.promptArguments",
876
+ "label": "Prompt arguments",
877
+ "description": "The arguments to pass to the prompt generation.",
878
+ "optional": true,
879
+ "feel": "required",
880
+ "group": "operation",
881
+ "binding": {
882
+ "name": "data.connectorMode.operation.promptArguments",
883
+ "type": "zeebe:input"
884
+ },
885
+ "condition": {
886
+ "allMatch": [
887
+ {
888
+ "property": "data.connectorMode.operation.type",
889
+ "equals": "prompts/get",
890
+ "type": "simple"
891
+ },
892
+ {
893
+ "property": "data.connectorMode.type",
894
+ "equals": "standalone",
895
+ "type": "simple"
896
+ }
897
+ ]
898
+ },
899
+ "type": "String"
900
+ },
798
901
  {
799
902
  "id": "data.connectorMode.toolOperation.method",
800
903
  "label": "Method",
@@ -839,29 +942,209 @@
839
942
  "type": "String"
840
943
  },
841
944
  {
842
- "id": "data.tools.included",
945
+ "id": "data.connectorMode.standaloneModeFilters.tools.included",
843
946
  "label": "Included tools",
844
947
  "description": "List of tools that can be used by the MCP client. By default, all tools are allowed.",
845
948
  "optional": true,
846
949
  "feel": "required",
847
- "group": "tools",
950
+ "group": "filters",
848
951
  "binding": {
849
- "name": "data.tools.included",
952
+ "name": "data.connectorMode.standaloneModeFilters.tools.included",
850
953
  "type": "zeebe:input"
851
954
  },
955
+ "condition": {
956
+ "allMatch": [
957
+ {
958
+ "property": "data.connectorMode.operation.type",
959
+ "oneOf": ["tools/call", "tools/list"],
960
+ "type": "simple"
961
+ },
962
+ {
963
+ "property": "data.connectorMode.type",
964
+ "equals": "standalone",
965
+ "type": "simple"
966
+ }
967
+ ]
968
+ },
852
969
  "type": "Text"
853
970
  },
854
971
  {
855
- "id": "data.tools.excluded",
972
+ "id": "data.connectorMode.standaloneModeFilters.tools.excluded",
856
973
  "label": "Excluded tools",
857
974
  "description": "List of tools that are not allowed to be used by the MCP client. Will override any included tools.",
858
975
  "optional": true,
859
976
  "feel": "required",
860
- "group": "tools",
977
+ "group": "filters",
861
978
  "binding": {
862
- "name": "data.tools.excluded",
979
+ "name": "data.connectorMode.standaloneModeFilters.tools.excluded",
980
+ "type": "zeebe:input"
981
+ },
982
+ "condition": {
983
+ "allMatch": [
984
+ {
985
+ "property": "data.connectorMode.operation.type",
986
+ "oneOf": ["tools/call", "tools/list"],
987
+ "type": "simple"
988
+ },
989
+ {
990
+ "property": "data.connectorMode.type",
991
+ "equals": "standalone",
992
+ "type": "simple"
993
+ }
994
+ ]
995
+ },
996
+ "type": "Text"
997
+ },
998
+ {
999
+ "id": "data.connectorMode.standaloneModeFilters.resources.included",
1000
+ "label": "Included resources",
1001
+ "description": "List of resources that can be accessed by the MCP client. By default, all resources are allowed.",
1002
+ "optional": true,
1003
+ "feel": "required",
1004
+ "group": "filters",
1005
+ "binding": {
1006
+ "name": "data.connectorMode.standaloneModeFilters.resources.included",
1007
+ "type": "zeebe:input"
1008
+ },
1009
+ "condition": {
1010
+ "allMatch": [
1011
+ {
1012
+ "property": "data.connectorMode.operation.type",
1013
+ "oneOf": [
1014
+ "resources/read",
1015
+ "resources/list",
1016
+ "resources/templates/list"
1017
+ ],
1018
+ "type": "simple"
1019
+ },
1020
+ {
1021
+ "property": "data.connectorMode.type",
1022
+ "equals": "standalone",
1023
+ "type": "simple"
1024
+ }
1025
+ ]
1026
+ },
1027
+ "type": "Text"
1028
+ },
1029
+ {
1030
+ "id": "data.connectorMode.standaloneModeFilters.resources.excluded",
1031
+ "label": "Excluded resources",
1032
+ "description": "List of resources that are not allowed to be accessed by the MCP client. Will override any included resources.",
1033
+ "optional": true,
1034
+ "feel": "required",
1035
+ "group": "filters",
1036
+ "binding": {
1037
+ "name": "data.connectorMode.standaloneModeFilters.resources.excluded",
1038
+ "type": "zeebe:input"
1039
+ },
1040
+ "condition": {
1041
+ "allMatch": [
1042
+ {
1043
+ "property": "data.connectorMode.operation.type",
1044
+ "oneOf": [
1045
+ "resources/read",
1046
+ "resources/list",
1047
+ "resources/templates/list"
1048
+ ],
1049
+ "type": "simple"
1050
+ },
1051
+ {
1052
+ "property": "data.connectorMode.type",
1053
+ "equals": "standalone",
1054
+ "type": "simple"
1055
+ }
1056
+ ]
1057
+ },
1058
+ "type": "Text"
1059
+ },
1060
+ {
1061
+ "id": "data.connectorMode.standaloneModeFilters.prompts.included",
1062
+ "label": "Included prompts",
1063
+ "description": "List of prompts that can be accessed by the MCP client. By default, all prompts are allowed.",
1064
+ "optional": true,
1065
+ "feel": "required",
1066
+ "group": "filters",
1067
+ "binding": {
1068
+ "name": "data.connectorMode.standaloneModeFilters.prompts.included",
1069
+ "type": "zeebe:input"
1070
+ },
1071
+ "condition": {
1072
+ "allMatch": [
1073
+ {
1074
+ "property": "data.connectorMode.operation.type",
1075
+ "oneOf": ["prompts/get", "prompts/list"],
1076
+ "type": "simple"
1077
+ },
1078
+ {
1079
+ "property": "data.connectorMode.type",
1080
+ "equals": "standalone",
1081
+ "type": "simple"
1082
+ }
1083
+ ]
1084
+ },
1085
+ "type": "Text"
1086
+ },
1087
+ {
1088
+ "id": "data.connectorMode.standaloneModeFilters.prompts.excluded",
1089
+ "label": "Excluded prompts",
1090
+ "description": "List of prompts that are not allowed to be accessed by the MCP client. Will override any included prompts.",
1091
+ "optional": true,
1092
+ "feel": "required",
1093
+ "group": "filters",
1094
+ "binding": {
1095
+ "name": "data.connectorMode.standaloneModeFilters.prompts.excluded",
863
1096
  "type": "zeebe:input"
864
1097
  },
1098
+ "condition": {
1099
+ "allMatch": [
1100
+ {
1101
+ "property": "data.connectorMode.operation.type",
1102
+ "oneOf": ["prompts/get", "prompts/list"],
1103
+ "type": "simple"
1104
+ },
1105
+ {
1106
+ "property": "data.connectorMode.type",
1107
+ "equals": "standalone",
1108
+ "type": "simple"
1109
+ }
1110
+ ]
1111
+ },
1112
+ "type": "Text"
1113
+ },
1114
+ {
1115
+ "id": "data.connectorMode.toolModeFilters.tools.included",
1116
+ "label": "Included tools",
1117
+ "description": "List of tools that can be used by the MCP client. By default, all tools are allowed.",
1118
+ "optional": true,
1119
+ "feel": "required",
1120
+ "group": "filters",
1121
+ "binding": {
1122
+ "name": "data.connectorMode.toolModeFilters.tools.included",
1123
+ "type": "zeebe:input"
1124
+ },
1125
+ "condition": {
1126
+ "property": "data.connectorMode.type",
1127
+ "equals": "aiAgentTool",
1128
+ "type": "simple"
1129
+ },
1130
+ "type": "Text"
1131
+ },
1132
+ {
1133
+ "id": "data.connectorMode.toolModeFilters.tools.excluded",
1134
+ "label": "Excluded tools",
1135
+ "description": "List of tools that are not allowed to be used by the MCP client. Will override any included tools.",
1136
+ "optional": true,
1137
+ "feel": "required",
1138
+ "group": "filters",
1139
+ "binding": {
1140
+ "name": "data.connectorMode.toolModeFilters.tools.excluded",
1141
+ "type": "zeebe:input"
1142
+ },
1143
+ "condition": {
1144
+ "property": "data.connectorMode.type",
1145
+ "equals": "aiAgentTool",
1146
+ "type": "simple"
1147
+ },
865
1148
  "type": "Text"
866
1149
  },
867
1150
  {
@@ -1422,8 +1422,8 @@
1422
1422
  "label": "Operation"
1423
1423
  },
1424
1424
  {
1425
- "id": "tools",
1426
- "label": "Tools",
1425
+ "id": "filters",
1426
+ "label": "Filters",
1427
1427
  "openByDefault": false
1428
1428
  },
1429
1429
  {
@@ -2274,17 +2274,33 @@
2274
2274
  },
2275
2275
  "type": "Dropdown",
2276
2276
  "choices": [
2277
- {
2278
- "name": "Call Tool",
2279
- "value": "tools/call"
2280
- },
2281
2277
  {
2282
2278
  "name": "List Tools",
2283
2279
  "value": "tools/list"
2284
2280
  },
2281
+ {
2282
+ "name": "Call Tool",
2283
+ "value": "tools/call"
2284
+ },
2285
2285
  {
2286
2286
  "name": "List Resources",
2287
2287
  "value": "resources/list"
2288
+ },
2289
+ {
2290
+ "name": "List Resource Templates",
2291
+ "value": "resources/templates/list"
2292
+ },
2293
+ {
2294
+ "name": "Read Resource",
2295
+ "value": "resources/read"
2296
+ },
2297
+ {
2298
+ "name": "List Prompts",
2299
+ "value": "prompts/list"
2300
+ },
2301
+ {
2302
+ "name": "Get Prompt",
2303
+ "value": "prompts/get"
2288
2304
  }
2289
2305
  ]
2290
2306
  },
@@ -2345,6 +2361,93 @@
2345
2361
  },
2346
2362
  "type": "String"
2347
2363
  },
2364
+ {
2365
+ "id": "data.connectorMode.operation.resourceUri",
2366
+ "label": "Resource URI",
2367
+ "description": "The URI of the resource to read.",
2368
+ "optional": false,
2369
+ "constraints": {
2370
+ "notEmpty": true
2371
+ },
2372
+ "feel": "optional",
2373
+ "group": "operation",
2374
+ "binding": {
2375
+ "name": "data.connectorMode.operation.resourceUri",
2376
+ "type": "zeebe:input"
2377
+ },
2378
+ "condition": {
2379
+ "allMatch": [
2380
+ {
2381
+ "property": "data.connectorMode.operation.type",
2382
+ "equals": "resources/read",
2383
+ "type": "simple"
2384
+ },
2385
+ {
2386
+ "property": "data.connectorMode.type",
2387
+ "equals": "standalone",
2388
+ "type": "simple"
2389
+ }
2390
+ ]
2391
+ },
2392
+ "type": "String"
2393
+ },
2394
+ {
2395
+ "id": "data.connectorMode.operation.promptName",
2396
+ "label": "Prompt name",
2397
+ "description": "The name of the prompt to get.",
2398
+ "optional": false,
2399
+ "constraints": {
2400
+ "notEmpty": true
2401
+ },
2402
+ "feel": "optional",
2403
+ "group": "operation",
2404
+ "binding": {
2405
+ "name": "data.connectorMode.operation.promptName",
2406
+ "type": "zeebe:input"
2407
+ },
2408
+ "condition": {
2409
+ "allMatch": [
2410
+ {
2411
+ "property": "data.connectorMode.operation.type",
2412
+ "equals": "prompts/get",
2413
+ "type": "simple"
2414
+ },
2415
+ {
2416
+ "property": "data.connectorMode.type",
2417
+ "equals": "standalone",
2418
+ "type": "simple"
2419
+ }
2420
+ ]
2421
+ },
2422
+ "type": "String"
2423
+ },
2424
+ {
2425
+ "id": "data.connectorMode.operation.promptArguments",
2426
+ "label": "Prompt arguments",
2427
+ "description": "The arguments to pass to the prompt generation.",
2428
+ "optional": true,
2429
+ "feel": "required",
2430
+ "group": "operation",
2431
+ "binding": {
2432
+ "name": "data.connectorMode.operation.promptArguments",
2433
+ "type": "zeebe:input"
2434
+ },
2435
+ "condition": {
2436
+ "allMatch": [
2437
+ {
2438
+ "property": "data.connectorMode.operation.type",
2439
+ "equals": "prompts/get",
2440
+ "type": "simple"
2441
+ },
2442
+ {
2443
+ "property": "data.connectorMode.type",
2444
+ "equals": "standalone",
2445
+ "type": "simple"
2446
+ }
2447
+ ]
2448
+ },
2449
+ "type": "String"
2450
+ },
2348
2451
  {
2349
2452
  "id": "data.connectorMode.toolOperation.method",
2350
2453
  "label": "Method",
@@ -2389,29 +2492,209 @@
2389
2492
  "type": "String"
2390
2493
  },
2391
2494
  {
2392
- "id": "data.tools.included",
2495
+ "id": "data.connectorMode.standaloneModeFilters.tools.included",
2393
2496
  "label": "Included tools",
2394
2497
  "description": "List of tools that can be used by the MCP client. By default, all tools are allowed.",
2395
2498
  "optional": true,
2396
2499
  "feel": "required",
2397
- "group": "tools",
2500
+ "group": "filters",
2398
2501
  "binding": {
2399
- "name": "data.tools.included",
2502
+ "name": "data.connectorMode.standaloneModeFilters.tools.included",
2400
2503
  "type": "zeebe:input"
2401
2504
  },
2505
+ "condition": {
2506
+ "allMatch": [
2507
+ {
2508
+ "property": "data.connectorMode.operation.type",
2509
+ "oneOf": ["tools/call", "tools/list"],
2510
+ "type": "simple"
2511
+ },
2512
+ {
2513
+ "property": "data.connectorMode.type",
2514
+ "equals": "standalone",
2515
+ "type": "simple"
2516
+ }
2517
+ ]
2518
+ },
2402
2519
  "type": "Text"
2403
2520
  },
2404
2521
  {
2405
- "id": "data.tools.excluded",
2522
+ "id": "data.connectorMode.standaloneModeFilters.tools.excluded",
2406
2523
  "label": "Excluded tools",
2407
2524
  "description": "List of tools that are not allowed to be used by the MCP client. Will override any included tools.",
2408
2525
  "optional": true,
2409
2526
  "feel": "required",
2410
- "group": "tools",
2527
+ "group": "filters",
2411
2528
  "binding": {
2412
- "name": "data.tools.excluded",
2529
+ "name": "data.connectorMode.standaloneModeFilters.tools.excluded",
2530
+ "type": "zeebe:input"
2531
+ },
2532
+ "condition": {
2533
+ "allMatch": [
2534
+ {
2535
+ "property": "data.connectorMode.operation.type",
2536
+ "oneOf": ["tools/call", "tools/list"],
2537
+ "type": "simple"
2538
+ },
2539
+ {
2540
+ "property": "data.connectorMode.type",
2541
+ "equals": "standalone",
2542
+ "type": "simple"
2543
+ }
2544
+ ]
2545
+ },
2546
+ "type": "Text"
2547
+ },
2548
+ {
2549
+ "id": "data.connectorMode.standaloneModeFilters.resources.included",
2550
+ "label": "Included resources",
2551
+ "description": "List of resources that can be accessed by the MCP client. By default, all resources are allowed.",
2552
+ "optional": true,
2553
+ "feel": "required",
2554
+ "group": "filters",
2555
+ "binding": {
2556
+ "name": "data.connectorMode.standaloneModeFilters.resources.included",
2557
+ "type": "zeebe:input"
2558
+ },
2559
+ "condition": {
2560
+ "allMatch": [
2561
+ {
2562
+ "property": "data.connectorMode.operation.type",
2563
+ "oneOf": [
2564
+ "resources/read",
2565
+ "resources/list",
2566
+ "resources/templates/list"
2567
+ ],
2568
+ "type": "simple"
2569
+ },
2570
+ {
2571
+ "property": "data.connectorMode.type",
2572
+ "equals": "standalone",
2573
+ "type": "simple"
2574
+ }
2575
+ ]
2576
+ },
2577
+ "type": "Text"
2578
+ },
2579
+ {
2580
+ "id": "data.connectorMode.standaloneModeFilters.resources.excluded",
2581
+ "label": "Excluded resources",
2582
+ "description": "List of resources that are not allowed to be accessed by the MCP client. Will override any included resources.",
2583
+ "optional": true,
2584
+ "feel": "required",
2585
+ "group": "filters",
2586
+ "binding": {
2587
+ "name": "data.connectorMode.standaloneModeFilters.resources.excluded",
2588
+ "type": "zeebe:input"
2589
+ },
2590
+ "condition": {
2591
+ "allMatch": [
2592
+ {
2593
+ "property": "data.connectorMode.operation.type",
2594
+ "oneOf": [
2595
+ "resources/read",
2596
+ "resources/list",
2597
+ "resources/templates/list"
2598
+ ],
2599
+ "type": "simple"
2600
+ },
2601
+ {
2602
+ "property": "data.connectorMode.type",
2603
+ "equals": "standalone",
2604
+ "type": "simple"
2605
+ }
2606
+ ]
2607
+ },
2608
+ "type": "Text"
2609
+ },
2610
+ {
2611
+ "id": "data.connectorMode.standaloneModeFilters.prompts.included",
2612
+ "label": "Included prompts",
2613
+ "description": "List of prompts that can be accessed by the MCP client. By default, all prompts are allowed.",
2614
+ "optional": true,
2615
+ "feel": "required",
2616
+ "group": "filters",
2617
+ "binding": {
2618
+ "name": "data.connectorMode.standaloneModeFilters.prompts.included",
2619
+ "type": "zeebe:input"
2620
+ },
2621
+ "condition": {
2622
+ "allMatch": [
2623
+ {
2624
+ "property": "data.connectorMode.operation.type",
2625
+ "oneOf": ["prompts/get", "prompts/list"],
2626
+ "type": "simple"
2627
+ },
2628
+ {
2629
+ "property": "data.connectorMode.type",
2630
+ "equals": "standalone",
2631
+ "type": "simple"
2632
+ }
2633
+ ]
2634
+ },
2635
+ "type": "Text"
2636
+ },
2637
+ {
2638
+ "id": "data.connectorMode.standaloneModeFilters.prompts.excluded",
2639
+ "label": "Excluded prompts",
2640
+ "description": "List of prompts that are not allowed to be accessed by the MCP client. Will override any included prompts.",
2641
+ "optional": true,
2642
+ "feel": "required",
2643
+ "group": "filters",
2644
+ "binding": {
2645
+ "name": "data.connectorMode.standaloneModeFilters.prompts.excluded",
2413
2646
  "type": "zeebe:input"
2414
2647
  },
2648
+ "condition": {
2649
+ "allMatch": [
2650
+ {
2651
+ "property": "data.connectorMode.operation.type",
2652
+ "oneOf": ["prompts/get", "prompts/list"],
2653
+ "type": "simple"
2654
+ },
2655
+ {
2656
+ "property": "data.connectorMode.type",
2657
+ "equals": "standalone",
2658
+ "type": "simple"
2659
+ }
2660
+ ]
2661
+ },
2662
+ "type": "Text"
2663
+ },
2664
+ {
2665
+ "id": "data.connectorMode.toolModeFilters.tools.included",
2666
+ "label": "Included tools",
2667
+ "description": "List of tools that can be used by the MCP client. By default, all tools are allowed.",
2668
+ "optional": true,
2669
+ "feel": "required",
2670
+ "group": "filters",
2671
+ "binding": {
2672
+ "name": "data.connectorMode.toolModeFilters.tools.included",
2673
+ "type": "zeebe:input"
2674
+ },
2675
+ "condition": {
2676
+ "property": "data.connectorMode.type",
2677
+ "equals": "aiAgentTool",
2678
+ "type": "simple"
2679
+ },
2680
+ "type": "Text"
2681
+ },
2682
+ {
2683
+ "id": "data.connectorMode.toolModeFilters.tools.excluded",
2684
+ "label": "Excluded tools",
2685
+ "description": "List of tools that are not allowed to be used by the MCP client. Will override any included tools.",
2686
+ "optional": true,
2687
+ "feel": "required",
2688
+ "group": "filters",
2689
+ "binding": {
2690
+ "name": "data.connectorMode.toolModeFilters.tools.excluded",
2691
+ "type": "zeebe:input"
2692
+ },
2693
+ "condition": {
2694
+ "property": "data.connectorMode.type",
2695
+ "equals": "aiAgentTool",
2696
+ "type": "simple"
2697
+ },
2415
2698
  "type": "Text"
2416
2699
  },
2417
2700
  {
@@ -129,9 +129,6 @@
129
129
  "id": "authentication.password",
130
130
  "label": "Password",
131
131
  "optional": false,
132
- "constraints": {
133
- "notEmpty": true
134
- },
135
132
  "feel": "optional",
136
133
  "group": "authentication",
137
134
  "binding": {
@@ -176,7 +173,7 @@
176
173
  },
177
174
  {
178
175
  "id": "authentication.certificate.certificateType",
179
- "label": "Authentication",
176
+ "label": "Certificate type",
180
177
  "description": "From where the certificate is obtained",
181
178
  "group": "authentication",
182
179
  "binding": {
@@ -265,6 +262,9 @@
265
262
  "label": "Keystore location",
266
263
  "description": "The keystore to use",
267
264
  "optional": false,
265
+ "constraints": {
266
+ "notEmpty": true
267
+ },
268
268
  "feel": "optional",
269
269
  "group": "authentication",
270
270
  "binding": {
@@ -292,6 +292,9 @@
292
292
  "label": "Keystore password",
293
293
  "description": "The password to access the keystore",
294
294
  "optional": false,
295
+ "constraints": {
296
+ "notEmpty": true
297
+ },
295
298
  "feel": "optional",
296
299
  "group": "authentication",
297
300
  "binding": {
@@ -319,6 +322,9 @@
319
322
  "label": "Certificate alias",
320
323
  "description": "The alias for the certificate in the keystore",
321
324
  "optional": false,
325
+ "constraints": {
326
+ "notEmpty": true
327
+ },
322
328
  "feel": "optional",
323
329
  "group": "authentication",
324
330
  "binding": {
@@ -346,6 +352,9 @@
346
352
  "label": "Certificate password",
347
353
  "description": "The password to access the certificate",
348
354
  "optional": false,
355
+ "constraints": {
356
+ "notEmpty": true
357
+ },
349
358
  "feel": "optional",
350
359
  "group": "authentication",
351
360
  "binding": {
@@ -368,36 +377,6 @@
368
377
  },
369
378
  "type": "String"
370
379
  },
371
- {
372
- "id": "authentication.useBinarySecurityToken",
373
- "label": "Use binary security token",
374
- "description": "Whether a binary security token should be inserted",
375
- "optional": false,
376
- "constraints": {
377
- "notEmpty": true
378
- },
379
- "group": "authentication",
380
- "binding": {
381
- "name": "authentication.useBinarySecurityToken",
382
- "type": "zeebe:input"
383
- },
384
- "condition": {
385
- "property": "authentication.authentication",
386
- "equals": "signature",
387
- "type": "simple"
388
- },
389
- "type": "Dropdown",
390
- "choices": [
391
- {
392
- "name": "Yes",
393
- "value": "Yes"
394
- },
395
- {
396
- "name": "No",
397
- "value": "No"
398
- }
399
- ]
400
- },
401
380
  {
402
381
  "id": "authentication.signatureAlgorithm",
403
382
  "label": "Signature algorithm",
@@ -434,24 +413,6 @@
434
413
  },
435
414
  "type": "String"
436
415
  },
437
- {
438
- "id": "authentication.canonicalizationAlgorithm",
439
- "label": "Canonicalization algorithm",
440
- "description": "Fully qualified name of an alternative canonicalization algorithm (this field has no effect)",
441
- "optional": true,
442
- "feel": "optional",
443
- "group": "authentication",
444
- "binding": {
445
- "name": "authentication.canonicalizationAlgorithm",
446
- "type": "zeebe:input"
447
- },
448
- "condition": {
449
- "property": "authentication.authentication",
450
- "equals": "signature",
451
- "type": "simple"
452
- },
453
- "type": "String"
454
- },
455
416
  {
456
417
  "id": "authentication.timestamp",
457
418
  "label": "Timestamp timeout in seconds",
@@ -473,7 +434,7 @@
473
434
  {
474
435
  "id": "authentication.encryptionParts",
475
436
  "label": "Signature parts",
476
- "description": "Array of signature parts with namespace, localName, encryptionModifier and id. If ID is given, namespace and localName are ignored. The encryptionModifier can be omitted",
437
+ "description": "Array of signature parts with namespace and localName",
477
438
  "optional": true,
478
439
  "feel": "required",
479
440
  "group": "authentication",