@camunda/connectors-element-templates 1.0.12 → 1.0.14
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 +1 -1
- package/src/connectors.js +6 -0
- package/src/element-templates/agenticai-aiagent-job-worker.json +108 -0
- package/src/element-templates/agenticai-aiagent-outbound-connector.json +108 -0
- package/src/element-templates/agenticai-mcp-client-outbound-connector.json +367 -4
- package/src/element-templates/agenticai-mcp-remote-client-outbound-connector.json +1130 -4
- package/src/element-templates/github-connector.json +3194 -7
- package/src/element-templates/idp-classification-outbound-connector.json +1141 -0
- package/src/element-templates/idp-structured-extraction-outbound-connector.json +656 -0
- package/src/element-templates/idp-unstructured-extraction-outbound-connector.json +1115 -0
package/package.json
CHANGED
package/src/connectors.js
CHANGED
|
@@ -72,6 +72,9 @@ import http_polling_boundary_catch_event_connector from "./element-templates/htt
|
|
|
72
72
|
import http_polling_connector from "./element-templates/http-polling-connector.json" with { type: "json" };
|
|
73
73
|
import hubspot_outbound_connector from "./element-templates/hubspot-outbound-connector.json" with { type: "json" };
|
|
74
74
|
import hugging_face_connector from "./element-templates/hugging-face-connector.json" with { type: "json" };
|
|
75
|
+
import idp_classification_outbound_connector from "./element-templates/idp-classification-outbound-connector.json" with { type: "json" };
|
|
76
|
+
import idp_structured_extraction_outbound_connector from "./element-templates/idp-structured-extraction-outbound-connector.json" with { type: "json" };
|
|
77
|
+
import idp_unstructured_extraction_outbound_connector from "./element-templates/idp-unstructured-extraction-outbound-connector.json" with { type: "json" };
|
|
75
78
|
import jdbc_outbound_connector from "./element-templates/jdbc-outbound-connector.json" with { type: "json" };
|
|
76
79
|
import kafka_inbound_connector_boundary from "./element-templates/kafka-inbound-connector-boundary.json" with { type: "json" };
|
|
77
80
|
import kafka_inbound_connector_intermediate from "./element-templates/kafka-inbound-connector-intermediate.json" with { type: "json" };
|
|
@@ -187,6 +190,9 @@ const allConnectors = [
|
|
|
187
190
|
http_polling_connector,
|
|
188
191
|
hubspot_outbound_connector,
|
|
189
192
|
hugging_face_connector,
|
|
193
|
+
idp_classification_outbound_connector,
|
|
194
|
+
idp_structured_extraction_outbound_connector,
|
|
195
|
+
idp_unstructured_extraction_outbound_connector,
|
|
190
196
|
jdbc_outbound_connector,
|
|
191
197
|
kafka_inbound_connector_boundary,
|
|
192
198
|
kafka_inbound_connector_intermediate,
|
|
@@ -5087,6 +5087,24 @@
|
|
|
5087
5087
|
},
|
|
5088
5088
|
"type": "String"
|
|
5089
5089
|
},
|
|
5090
|
+
{
|
|
5091
|
+
"id": "provider.anthropic.timeouts.timeout",
|
|
5092
|
+
"label": "Timeout",
|
|
5093
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
5094
|
+
"optional": true,
|
|
5095
|
+
"feel": "optional",
|
|
5096
|
+
"group": "provider",
|
|
5097
|
+
"binding": {
|
|
5098
|
+
"name": "provider.anthropic.timeouts.timeout",
|
|
5099
|
+
"type": "zeebe:input"
|
|
5100
|
+
},
|
|
5101
|
+
"condition": {
|
|
5102
|
+
"property": "provider.type",
|
|
5103
|
+
"equals": "anthropic",
|
|
5104
|
+
"type": "simple"
|
|
5105
|
+
},
|
|
5106
|
+
"type": "String"
|
|
5107
|
+
},
|
|
5090
5108
|
{
|
|
5091
5109
|
"id": "provider.bedrock.region",
|
|
5092
5110
|
"label": "Region",
|
|
@@ -5247,6 +5265,24 @@
|
|
|
5247
5265
|
},
|
|
5248
5266
|
"type": "String"
|
|
5249
5267
|
},
|
|
5268
|
+
{
|
|
5269
|
+
"id": "provider.bedrock.timeouts.timeout",
|
|
5270
|
+
"label": "Timeout",
|
|
5271
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
5272
|
+
"optional": true,
|
|
5273
|
+
"feel": "optional",
|
|
5274
|
+
"group": "provider",
|
|
5275
|
+
"binding": {
|
|
5276
|
+
"name": "provider.bedrock.timeouts.timeout",
|
|
5277
|
+
"type": "zeebe:input"
|
|
5278
|
+
},
|
|
5279
|
+
"condition": {
|
|
5280
|
+
"property": "provider.type",
|
|
5281
|
+
"equals": "bedrock",
|
|
5282
|
+
"type": "simple"
|
|
5283
|
+
},
|
|
5284
|
+
"type": "String"
|
|
5285
|
+
},
|
|
5250
5286
|
{
|
|
5251
5287
|
"id": "provider.azureOpenAi.endpoint",
|
|
5252
5288
|
"label": "Endpoint",
|
|
@@ -5441,6 +5477,24 @@
|
|
|
5441
5477
|
},
|
|
5442
5478
|
"type": "String"
|
|
5443
5479
|
},
|
|
5480
|
+
{
|
|
5481
|
+
"id": "provider.azureOpenAi.timeouts.timeout",
|
|
5482
|
+
"label": "Timeout",
|
|
5483
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
5484
|
+
"optional": true,
|
|
5485
|
+
"feel": "optional",
|
|
5486
|
+
"group": "provider",
|
|
5487
|
+
"binding": {
|
|
5488
|
+
"name": "provider.azureOpenAi.timeouts.timeout",
|
|
5489
|
+
"type": "zeebe:input"
|
|
5490
|
+
},
|
|
5491
|
+
"condition": {
|
|
5492
|
+
"property": "provider.type",
|
|
5493
|
+
"equals": "azureOpenAi",
|
|
5494
|
+
"type": "simple"
|
|
5495
|
+
},
|
|
5496
|
+
"type": "String"
|
|
5497
|
+
},
|
|
5444
5498
|
{
|
|
5445
5499
|
"id": "provider.googleVertexAi.projectId",
|
|
5446
5500
|
"label": "Project ID",
|
|
@@ -5596,6 +5650,24 @@
|
|
|
5596
5650
|
},
|
|
5597
5651
|
"type": "String"
|
|
5598
5652
|
},
|
|
5653
|
+
{
|
|
5654
|
+
"id": "provider.openai.timeouts.timeout",
|
|
5655
|
+
"label": "Timeout",
|
|
5656
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
5657
|
+
"optional": true,
|
|
5658
|
+
"feel": "optional",
|
|
5659
|
+
"group": "provider",
|
|
5660
|
+
"binding": {
|
|
5661
|
+
"name": "provider.openai.timeouts.timeout",
|
|
5662
|
+
"type": "zeebe:input"
|
|
5663
|
+
},
|
|
5664
|
+
"condition": {
|
|
5665
|
+
"property": "provider.type",
|
|
5666
|
+
"equals": "openai",
|
|
5667
|
+
"type": "simple"
|
|
5668
|
+
},
|
|
5669
|
+
"type": "String"
|
|
5670
|
+
},
|
|
5599
5671
|
{
|
|
5600
5672
|
"id": "provider.openaiCompatible.endpoint",
|
|
5601
5673
|
"label": "API endpoint",
|
|
@@ -5653,6 +5725,42 @@
|
|
|
5653
5725
|
},
|
|
5654
5726
|
"type": "String"
|
|
5655
5727
|
},
|
|
5728
|
+
{
|
|
5729
|
+
"id": "provider.openaiCompatible.queryParameters",
|
|
5730
|
+
"label": "Query Parameters",
|
|
5731
|
+
"description": "Map of query parameters to add to the request URL.",
|
|
5732
|
+
"optional": true,
|
|
5733
|
+
"feel": "required",
|
|
5734
|
+
"group": "provider",
|
|
5735
|
+
"binding": {
|
|
5736
|
+
"name": "provider.openaiCompatible.queryParameters",
|
|
5737
|
+
"type": "zeebe:input"
|
|
5738
|
+
},
|
|
5739
|
+
"condition": {
|
|
5740
|
+
"property": "provider.type",
|
|
5741
|
+
"equals": "openaiCompatible",
|
|
5742
|
+
"type": "simple"
|
|
5743
|
+
},
|
|
5744
|
+
"type": "String"
|
|
5745
|
+
},
|
|
5746
|
+
{
|
|
5747
|
+
"id": "provider.openaiCompatible.timeouts.timeout",
|
|
5748
|
+
"label": "Timeout",
|
|
5749
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
5750
|
+
"optional": true,
|
|
5751
|
+
"feel": "optional",
|
|
5752
|
+
"group": "provider",
|
|
5753
|
+
"binding": {
|
|
5754
|
+
"name": "provider.openaiCompatible.timeouts.timeout",
|
|
5755
|
+
"type": "zeebe:input"
|
|
5756
|
+
},
|
|
5757
|
+
"condition": {
|
|
5758
|
+
"property": "provider.type",
|
|
5759
|
+
"equals": "openaiCompatible",
|
|
5760
|
+
"type": "simple"
|
|
5761
|
+
},
|
|
5762
|
+
"type": "String"
|
|
5763
|
+
},
|
|
5656
5764
|
{
|
|
5657
5765
|
"id": "provider.anthropic.model.model",
|
|
5658
5766
|
"label": "Model",
|
|
@@ -8324,6 +8324,24 @@
|
|
|
8324
8324
|
},
|
|
8325
8325
|
"type": "String"
|
|
8326
8326
|
},
|
|
8327
|
+
{
|
|
8328
|
+
"id": "provider.anthropic.timeouts.timeout",
|
|
8329
|
+
"label": "Timeout",
|
|
8330
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
8331
|
+
"optional": true,
|
|
8332
|
+
"feel": "optional",
|
|
8333
|
+
"group": "provider",
|
|
8334
|
+
"binding": {
|
|
8335
|
+
"name": "provider.anthropic.timeouts.timeout",
|
|
8336
|
+
"type": "zeebe:input"
|
|
8337
|
+
},
|
|
8338
|
+
"condition": {
|
|
8339
|
+
"property": "provider.type",
|
|
8340
|
+
"equals": "anthropic",
|
|
8341
|
+
"type": "simple"
|
|
8342
|
+
},
|
|
8343
|
+
"type": "String"
|
|
8344
|
+
},
|
|
8327
8345
|
{
|
|
8328
8346
|
"id": "provider.bedrock.region",
|
|
8329
8347
|
"label": "Region",
|
|
@@ -8484,6 +8502,24 @@
|
|
|
8484
8502
|
},
|
|
8485
8503
|
"type": "String"
|
|
8486
8504
|
},
|
|
8505
|
+
{
|
|
8506
|
+
"id": "provider.bedrock.timeouts.timeout",
|
|
8507
|
+
"label": "Timeout",
|
|
8508
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
8509
|
+
"optional": true,
|
|
8510
|
+
"feel": "optional",
|
|
8511
|
+
"group": "provider",
|
|
8512
|
+
"binding": {
|
|
8513
|
+
"name": "provider.bedrock.timeouts.timeout",
|
|
8514
|
+
"type": "zeebe:input"
|
|
8515
|
+
},
|
|
8516
|
+
"condition": {
|
|
8517
|
+
"property": "provider.type",
|
|
8518
|
+
"equals": "bedrock",
|
|
8519
|
+
"type": "simple"
|
|
8520
|
+
},
|
|
8521
|
+
"type": "String"
|
|
8522
|
+
},
|
|
8487
8523
|
{
|
|
8488
8524
|
"id": "provider.azureOpenAi.endpoint",
|
|
8489
8525
|
"label": "Endpoint",
|
|
@@ -8678,6 +8714,24 @@
|
|
|
8678
8714
|
},
|
|
8679
8715
|
"type": "String"
|
|
8680
8716
|
},
|
|
8717
|
+
{
|
|
8718
|
+
"id": "provider.azureOpenAi.timeouts.timeout",
|
|
8719
|
+
"label": "Timeout",
|
|
8720
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
8721
|
+
"optional": true,
|
|
8722
|
+
"feel": "optional",
|
|
8723
|
+
"group": "provider",
|
|
8724
|
+
"binding": {
|
|
8725
|
+
"name": "provider.azureOpenAi.timeouts.timeout",
|
|
8726
|
+
"type": "zeebe:input"
|
|
8727
|
+
},
|
|
8728
|
+
"condition": {
|
|
8729
|
+
"property": "provider.type",
|
|
8730
|
+
"equals": "azureOpenAi",
|
|
8731
|
+
"type": "simple"
|
|
8732
|
+
},
|
|
8733
|
+
"type": "String"
|
|
8734
|
+
},
|
|
8681
8735
|
{
|
|
8682
8736
|
"id": "provider.googleVertexAi.projectId",
|
|
8683
8737
|
"label": "Project ID",
|
|
@@ -8833,6 +8887,24 @@
|
|
|
8833
8887
|
},
|
|
8834
8888
|
"type": "String"
|
|
8835
8889
|
},
|
|
8890
|
+
{
|
|
8891
|
+
"id": "provider.openai.timeouts.timeout",
|
|
8892
|
+
"label": "Timeout",
|
|
8893
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
8894
|
+
"optional": true,
|
|
8895
|
+
"feel": "optional",
|
|
8896
|
+
"group": "provider",
|
|
8897
|
+
"binding": {
|
|
8898
|
+
"name": "provider.openai.timeouts.timeout",
|
|
8899
|
+
"type": "zeebe:input"
|
|
8900
|
+
},
|
|
8901
|
+
"condition": {
|
|
8902
|
+
"property": "provider.type",
|
|
8903
|
+
"equals": "openai",
|
|
8904
|
+
"type": "simple"
|
|
8905
|
+
},
|
|
8906
|
+
"type": "String"
|
|
8907
|
+
},
|
|
8836
8908
|
{
|
|
8837
8909
|
"id": "provider.openaiCompatible.endpoint",
|
|
8838
8910
|
"label": "API endpoint",
|
|
@@ -8890,6 +8962,42 @@
|
|
|
8890
8962
|
},
|
|
8891
8963
|
"type": "String"
|
|
8892
8964
|
},
|
|
8965
|
+
{
|
|
8966
|
+
"id": "provider.openaiCompatible.queryParameters",
|
|
8967
|
+
"label": "Query Parameters",
|
|
8968
|
+
"description": "Map of query parameters to add to the request URL.",
|
|
8969
|
+
"optional": true,
|
|
8970
|
+
"feel": "required",
|
|
8971
|
+
"group": "provider",
|
|
8972
|
+
"binding": {
|
|
8973
|
+
"name": "provider.openaiCompatible.queryParameters",
|
|
8974
|
+
"type": "zeebe:input"
|
|
8975
|
+
},
|
|
8976
|
+
"condition": {
|
|
8977
|
+
"property": "provider.type",
|
|
8978
|
+
"equals": "openaiCompatible",
|
|
8979
|
+
"type": "simple"
|
|
8980
|
+
},
|
|
8981
|
+
"type": "String"
|
|
8982
|
+
},
|
|
8983
|
+
{
|
|
8984
|
+
"id": "provider.openaiCompatible.timeouts.timeout",
|
|
8985
|
+
"label": "Timeout",
|
|
8986
|
+
"description": "Timeout specification for API calls to the model provider defined as ISO-8601 duration (example: <code>PT60S</code>).",
|
|
8987
|
+
"optional": true,
|
|
8988
|
+
"feel": "optional",
|
|
8989
|
+
"group": "provider",
|
|
8990
|
+
"binding": {
|
|
8991
|
+
"name": "provider.openaiCompatible.timeouts.timeout",
|
|
8992
|
+
"type": "zeebe:input"
|
|
8993
|
+
},
|
|
8994
|
+
"condition": {
|
|
8995
|
+
"property": "provider.type",
|
|
8996
|
+
"equals": "openaiCompatible",
|
|
8997
|
+
"type": "simple"
|
|
8998
|
+
},
|
|
8999
|
+
"type": "String"
|
|
9000
|
+
},
|
|
8893
9001
|
{
|
|
8894
9002
|
"id": "provider.anthropic.model.model",
|
|
8895
9003
|
"label": "Model",
|