@camunda/connectors-element-templates 0.0.1-alpha8 → 1.0.1
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 +2 -2
- package/src/element-templates/agenticai-mcp-client-outbound-connector.json +8 -0
- package/src/element-templates/agenticai-mcp-remote-client-outbound-connector.json +8 -0
- package/src/element-templates/embeddings-vector-database-outbound-connector.json +88 -0
- package/src/element-templates/google-maps-platform-connector.json +2 -19
- package/src/element-templates/{http-polling-connector-boundary.json → http-polling-boundary-catch-event-connector.json} +766 -0
- package/src/element-templates/http-polling-connector.json +772 -6
package/package.json
CHANGED
package/src/connectors.js
CHANGED
|
@@ -56,7 +56,7 @@ import google_maps_platform_connector from "./element-templates/google-maps-plat
|
|
|
56
56
|
import google_sheets_outbound_connector from "./element-templates/google-sheets-outbound-connector.json" with { type: "json" };
|
|
57
57
|
import graphql_outbound_connector from "./element-templates/graphql-outbound-connector.json" with { type: "json" };
|
|
58
58
|
import http_json_connector from "./element-templates/http-json-connector.json" with { type: "json" };
|
|
59
|
-
import
|
|
59
|
+
import http_polling_boundary_catch_event_connector from "./element-templates/http-polling-boundary-catch-event-connector.json" with { type: "json" };
|
|
60
60
|
import http_polling_connector from "./element-templates/http-polling-connector.json" with { type: "json" };
|
|
61
61
|
import hubspot_outbound_connector from "./element-templates/hubspot-outbound-connector.json" with { type: "json" };
|
|
62
62
|
import hugging_face_connector from "./element-templates/hugging-face-connector.json" with { type: "json" };
|
|
@@ -150,7 +150,7 @@ const allConnectors = [
|
|
|
150
150
|
google_sheets_outbound_connector,
|
|
151
151
|
graphql_outbound_connector,
|
|
152
152
|
http_json_connector,
|
|
153
|
-
|
|
153
|
+
http_polling_boundary_catch_event_connector,
|
|
154
154
|
http_polling_connector,
|
|
155
155
|
hubspot_outbound_connector,
|
|
156
156
|
hugging_face_connector,
|
|
@@ -59,6 +59,14 @@
|
|
|
59
59
|
},
|
|
60
60
|
"type": "Hidden"
|
|
61
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"value": "mcpClient",
|
|
64
|
+
"binding": {
|
|
65
|
+
"name": "io.camunda.agenticai.gateway.type",
|
|
66
|
+
"type": "zeebe:property"
|
|
67
|
+
},
|
|
68
|
+
"type": "Hidden"
|
|
69
|
+
},
|
|
62
70
|
{
|
|
63
71
|
"id": "data.client.clientId",
|
|
64
72
|
"label": "Client ID",
|
|
@@ -59,6 +59,14 @@
|
|
|
59
59
|
},
|
|
60
60
|
"type": "Hidden"
|
|
61
61
|
},
|
|
62
|
+
{
|
|
63
|
+
"value": "mcpClient",
|
|
64
|
+
"binding": {
|
|
65
|
+
"name": "io.camunda.agenticai.gateway.type",
|
|
66
|
+
"type": "zeebe:property"
|
|
67
|
+
},
|
|
68
|
+
"type": "Hidden"
|
|
69
|
+
},
|
|
62
70
|
{
|
|
63
71
|
"id": "data.connection.sseUrl",
|
|
64
72
|
"label": "SSE URL",
|
|
@@ -410,6 +410,10 @@
|
|
|
410
410
|
{
|
|
411
411
|
"name": "Elasticsearch",
|
|
412
412
|
"value": "STORE_ELASTICSEARCH"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "OpenSearch",
|
|
416
|
+
"value": "STORE_OPENSEARCH"
|
|
413
417
|
}
|
|
414
418
|
]
|
|
415
419
|
},
|
|
@@ -602,6 +606,90 @@
|
|
|
602
606
|
},
|
|
603
607
|
"type": "String"
|
|
604
608
|
},
|
|
609
|
+
{
|
|
610
|
+
"id": "vectorStore.embeddingsStore.opensearch.baseUrl",
|
|
611
|
+
"label": "Base URL",
|
|
612
|
+
"description": "OpenSearch base URL, i.e. http(s)://host:port",
|
|
613
|
+
"optional": false,
|
|
614
|
+
"constraints": {
|
|
615
|
+
"notEmpty": true
|
|
616
|
+
},
|
|
617
|
+
"feel": "optional",
|
|
618
|
+
"group": "embeddingsStore",
|
|
619
|
+
"binding": {
|
|
620
|
+
"name": "vectorStore.baseUrl",
|
|
621
|
+
"type": "zeebe:input"
|
|
622
|
+
},
|
|
623
|
+
"condition": {
|
|
624
|
+
"property": "vectorStore.vectorStore",
|
|
625
|
+
"equals": "STORE_OPENSEARCH",
|
|
626
|
+
"type": "simple"
|
|
627
|
+
},
|
|
628
|
+
"type": "String"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"id": "vectorStore.embeddingsStore.opensearch.username",
|
|
632
|
+
"label": "Username",
|
|
633
|
+
"description": "OpenSearch username",
|
|
634
|
+
"optional": false,
|
|
635
|
+
"constraints": {
|
|
636
|
+
"notEmpty": true
|
|
637
|
+
},
|
|
638
|
+
"feel": "optional",
|
|
639
|
+
"group": "embeddingsStore",
|
|
640
|
+
"binding": {
|
|
641
|
+
"name": "vectorStore.userName",
|
|
642
|
+
"type": "zeebe:input"
|
|
643
|
+
},
|
|
644
|
+
"condition": {
|
|
645
|
+
"property": "vectorStore.vectorStore",
|
|
646
|
+
"equals": "STORE_OPENSEARCH",
|
|
647
|
+
"type": "simple"
|
|
648
|
+
},
|
|
649
|
+
"type": "String"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": "vectorStore.embeddingsStore.opensearch.password",
|
|
653
|
+
"label": "Password",
|
|
654
|
+
"description": "OpenSearch password",
|
|
655
|
+
"optional": false,
|
|
656
|
+
"constraints": {
|
|
657
|
+
"notEmpty": true
|
|
658
|
+
},
|
|
659
|
+
"feel": "optional",
|
|
660
|
+
"group": "embeddingsStore",
|
|
661
|
+
"binding": {
|
|
662
|
+
"name": "vectorStore.password",
|
|
663
|
+
"type": "zeebe:input"
|
|
664
|
+
},
|
|
665
|
+
"condition": {
|
|
666
|
+
"property": "vectorStore.vectorStore",
|
|
667
|
+
"equals": "STORE_OPENSEARCH",
|
|
668
|
+
"type": "simple"
|
|
669
|
+
},
|
|
670
|
+
"type": "String"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"id": "vectorStore.embeddingsStore.opensearch.indexName",
|
|
674
|
+
"label": "Index name",
|
|
675
|
+
"description": "OpenSearch index",
|
|
676
|
+
"optional": false,
|
|
677
|
+
"constraints": {
|
|
678
|
+
"notEmpty": true
|
|
679
|
+
},
|
|
680
|
+
"feel": "optional",
|
|
681
|
+
"group": "embeddingsStore",
|
|
682
|
+
"binding": {
|
|
683
|
+
"name": "vectorStore.indexName",
|
|
684
|
+
"type": "zeebe:input"
|
|
685
|
+
},
|
|
686
|
+
"condition": {
|
|
687
|
+
"property": "vectorStore.vectorStore",
|
|
688
|
+
"equals": "STORE_OPENSEARCH",
|
|
689
|
+
"type": "simple"
|
|
690
|
+
},
|
|
691
|
+
"type": "String"
|
|
692
|
+
},
|
|
605
693
|
{
|
|
606
694
|
"id": "vectorDatabaseConnectorOperation.documentSource",
|
|
607
695
|
"label": "Document source",
|
|
@@ -1470,7 +1470,7 @@
|
|
|
1470
1470
|
"$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
|
|
1471
1471
|
"name": "Google Maps Platform Outbound Connector",
|
|
1472
1472
|
"id": "io.camunda.connectors.GoogleMapsPlatform.v1",
|
|
1473
|
-
"version":
|
|
1473
|
+
"version": 5,
|
|
1474
1474
|
"engines": {
|
|
1475
1475
|
"camunda": "^8.3"
|
|
1476
1476
|
},
|
|
@@ -1640,7 +1640,7 @@
|
|
|
1640
1640
|
"optional": false,
|
|
1641
1641
|
"binding": {
|
|
1642
1642
|
"type": "zeebe:input",
|
|
1643
|
-
"name": "
|
|
1643
|
+
"name": "body.address.addressLines"
|
|
1644
1644
|
},
|
|
1645
1645
|
"constraints": {
|
|
1646
1646
|
"notEmpty": true
|
|
@@ -1797,23 +1797,6 @@
|
|
|
1797
1797
|
"oneOf": ["calculateDistance"]
|
|
1798
1798
|
}
|
|
1799
1799
|
},
|
|
1800
|
-
{
|
|
1801
|
-
"group": "input",
|
|
1802
|
-
"type": "Hidden",
|
|
1803
|
-
"optional": false,
|
|
1804
|
-
"value": "=\"[\"+addressValue+\"]\"",
|
|
1805
|
-
"binding": {
|
|
1806
|
-
"type": "zeebe:input",
|
|
1807
|
-
"name": "body.address.addressLines"
|
|
1808
|
-
},
|
|
1809
|
-
"constraints": {
|
|
1810
|
-
"notEmpty": true
|
|
1811
|
-
},
|
|
1812
|
-
"condition": {
|
|
1813
|
-
"property": "operationType",
|
|
1814
|
-
"oneOf": ["validateAddress"]
|
|
1815
|
-
}
|
|
1816
|
-
},
|
|
1817
1800
|
{
|
|
1818
1801
|
"type": "Hidden",
|
|
1819
1802
|
"optional": false,
|