@camunda/connectors-element-templates 1.0.9 → 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.
- package/package.json +2 -2
- package/src/connectors.js +10 -0
- package/src/element-templates/agenticai-a2a-client-outbound-connector.json +832 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-intermediate.json +340 -0
- package/src/element-templates/agenticai-a2a-client-polling-inbound-connector-receive.json +339 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-intermediate.json +558 -0
- package/src/element-templates/agenticai-a2a-client-webhook-inbound-connector-receive.json +557 -0
- package/src/element-templates/agenticai-aiagent-job-worker.json +3273 -9
- package/src/element-templates/agenticai-aiagent-outbound-connector.json +3366 -140
- package/src/element-templates/agenticai-mcp-client-outbound-connector.json +360 -1
- package/src/element-templates/agenticai-mcp-remote-client-outbound-connector.json +1123 -1
- package/src/element-templates/aws-textract-outbound-connector.json +627 -0
- package/src/element-templates/azure-blobstorage-outbound-connector.json +463 -0
- package/src/element-templates/email-outbound-connector.json +1532 -4
- package/src/element-templates/embeddings-vector-database-outbound-connector.json +4 -1
- package/src/element-templates/http-polling-boundary-catch-event-connector.json +22 -0
- package/src/element-templates/http-polling-connector.json +22 -0
- package/src/element-templates/hubspot-outbound-connector.json +2347 -0
- package/src/element-templates/servicenow-connector.json +1 -1
- package/src/element-templates/servicenow-flow-starter-connector.json +1 -1
- package/src/element-templates/servicenow-incident-connector.json +1 -1
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
},
|
|
10
10
|
"documentationRef": "https://docs.camunda.io/docs/8.8/components/connectors/out-of-the-box-connectors/embeddings-vector-db/",
|
|
11
11
|
"version": 1,
|
|
12
|
+
"deprecated": {
|
|
13
|
+
"message": "Replace with version >= 2 of the Embeddings Vector DB Outbound Connector template."
|
|
14
|
+
},
|
|
12
15
|
"category": {
|
|
13
16
|
"id": "connectors",
|
|
14
17
|
"name": "Connectors"
|
|
@@ -18,7 +21,7 @@
|
|
|
18
21
|
"value": "bpmn:ServiceTask"
|
|
19
22
|
},
|
|
20
23
|
"engines": {
|
|
21
|
-
"camunda": "^8.
|
|
24
|
+
"camunda": "^8.8"
|
|
22
25
|
},
|
|
23
26
|
"groups": [
|
|
24
27
|
{
|
|
@@ -1437,6 +1437,10 @@
|
|
|
1437
1437
|
"id": "endpoint",
|
|
1438
1438
|
"label": "HTTP Polling configuration"
|
|
1439
1439
|
},
|
|
1440
|
+
{
|
|
1441
|
+
"id": "payload",
|
|
1442
|
+
"label": "Payload"
|
|
1443
|
+
},
|
|
1440
1444
|
{
|
|
1441
1445
|
"id": "interval",
|
|
1442
1446
|
"label": "HTTP Polling Interval"
|
|
@@ -1850,6 +1854,24 @@
|
|
|
1850
1854
|
},
|
|
1851
1855
|
"type": "Hidden"
|
|
1852
1856
|
},
|
|
1857
|
+
{
|
|
1858
|
+
"id": "body",
|
|
1859
|
+
"label": "Request body",
|
|
1860
|
+
"description": "Payload to send with the request",
|
|
1861
|
+
"optional": true,
|
|
1862
|
+
"feel": "optional",
|
|
1863
|
+
"group": "payload",
|
|
1864
|
+
"binding": {
|
|
1865
|
+
"name": "body",
|
|
1866
|
+
"type": "zeebe:property"
|
|
1867
|
+
},
|
|
1868
|
+
"condition": {
|
|
1869
|
+
"property": "method",
|
|
1870
|
+
"oneOf": ["POST", "PUT", "PATCH"],
|
|
1871
|
+
"type": "simple"
|
|
1872
|
+
},
|
|
1873
|
+
"type": "Text"
|
|
1874
|
+
},
|
|
1853
1875
|
{
|
|
1854
1876
|
"id": "httpRequestInterval",
|
|
1855
1877
|
"label": "Http request interval",
|
|
@@ -1437,6 +1437,10 @@
|
|
|
1437
1437
|
"id": "endpoint",
|
|
1438
1438
|
"label": "HTTP Polling configuration"
|
|
1439
1439
|
},
|
|
1440
|
+
{
|
|
1441
|
+
"id": "payload",
|
|
1442
|
+
"label": "Payload"
|
|
1443
|
+
},
|
|
1440
1444
|
{
|
|
1441
1445
|
"id": "interval",
|
|
1442
1446
|
"label": "HTTP Polling Interval"
|
|
@@ -1850,6 +1854,24 @@
|
|
|
1850
1854
|
},
|
|
1851
1855
|
"type": "Hidden"
|
|
1852
1856
|
},
|
|
1857
|
+
{
|
|
1858
|
+
"id": "body",
|
|
1859
|
+
"label": "Request body",
|
|
1860
|
+
"description": "Payload to send with the request",
|
|
1861
|
+
"optional": true,
|
|
1862
|
+
"feel": "optional",
|
|
1863
|
+
"group": "payload",
|
|
1864
|
+
"binding": {
|
|
1865
|
+
"name": "body",
|
|
1866
|
+
"type": "zeebe:property"
|
|
1867
|
+
},
|
|
1868
|
+
"condition": {
|
|
1869
|
+
"property": "method",
|
|
1870
|
+
"oneOf": ["POST", "PUT", "PATCH"],
|
|
1871
|
+
"type": "simple"
|
|
1872
|
+
},
|
|
1873
|
+
"type": "Text"
|
|
1874
|
+
},
|
|
1853
1875
|
{
|
|
1854
1876
|
"id": "httpRequestInterval",
|
|
1855
1877
|
"label": "Http request interval",
|