@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.
- 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/hubspot-outbound-connector.json +2347 -0
|
@@ -0,0 +1,557 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"$schema": "https://unpkg.com/@camunda/zeebe-element-templates-json-schema/resources/schema.json",
|
|
4
|
+
"name": "A2A Client Webhook Receive Task Connector (early access)",
|
|
5
|
+
"id": "io.camunda.connectors.agenticai.a2a.client.webhook.receive.v0",
|
|
6
|
+
"description": "Agent-to-Agent (A2A) webhook inbound connector that can be used to receive callbacks from remote A2A servers.",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"keywords": []
|
|
9
|
+
},
|
|
10
|
+
"version": 0,
|
|
11
|
+
"category": {
|
|
12
|
+
"id": "connectors",
|
|
13
|
+
"name": "Connectors"
|
|
14
|
+
},
|
|
15
|
+
"appliesTo": ["bpmn:ReceiveTask"],
|
|
16
|
+
"elementType": {
|
|
17
|
+
"value": "bpmn:ReceiveTask"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"camunda": "^8.9"
|
|
21
|
+
},
|
|
22
|
+
"groups": [
|
|
23
|
+
{
|
|
24
|
+
"id": "endpoint",
|
|
25
|
+
"label": "Webhook configuration"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "clientResponse",
|
|
29
|
+
"label": "Client Response"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "authentication",
|
|
33
|
+
"label": "Authentication"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "authorization",
|
|
37
|
+
"label": "Authorization"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "activation",
|
|
41
|
+
"label": "Activation"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "correlation",
|
|
45
|
+
"label": "Correlation",
|
|
46
|
+
"tooltip": "Learn more about message correlation in the <a href=\"https://docs.camunda.io/docs/components/concepts/messages/#message-correlation-overview\">documentation</a>."
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "deduplication",
|
|
50
|
+
"label": "Deduplication",
|
|
51
|
+
"tooltip": "Deduplication allows you to configure multiple inbound connector elements to reuse the same backend (consumer/thread/endpoint) by sharing the same deduplication ID."
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "output",
|
|
55
|
+
"label": "Output mapping"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"properties": [
|
|
59
|
+
{
|
|
60
|
+
"value": "io.camunda.agenticai:a2aclient:webhook:0",
|
|
61
|
+
"binding": {
|
|
62
|
+
"name": "inbound.type",
|
|
63
|
+
"type": "zeebe:property"
|
|
64
|
+
},
|
|
65
|
+
"type": "Hidden"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "inbound.context",
|
|
69
|
+
"label": "Webhook ID",
|
|
70
|
+
"description": "The webhook ID is a part of the URL",
|
|
71
|
+
"optional": false,
|
|
72
|
+
"constraints": {
|
|
73
|
+
"notEmpty": true,
|
|
74
|
+
"pattern": {
|
|
75
|
+
"value": "^[a-zA-Z0-9]+([-_][a-zA-Z0-9]+)*$",
|
|
76
|
+
"message": "can only contain letters, numbers, or single underscores/hyphens and cannot begin or end with an underscore/hyphen"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"feel": "optional",
|
|
80
|
+
"group": "endpoint",
|
|
81
|
+
"binding": {
|
|
82
|
+
"name": "inbound.context",
|
|
83
|
+
"type": "zeebe:property"
|
|
84
|
+
},
|
|
85
|
+
"type": "String"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "internal_clientResponse",
|
|
89
|
+
"label": "A2A Client Response",
|
|
90
|
+
"description": "The response returned by the A2A client connector. Should contain a task.",
|
|
91
|
+
"optional": false,
|
|
92
|
+
"constraints": {
|
|
93
|
+
"notEmpty": true
|
|
94
|
+
},
|
|
95
|
+
"feel": "required",
|
|
96
|
+
"group": "clientResponse",
|
|
97
|
+
"binding": {
|
|
98
|
+
"name": "internal_clientResponse",
|
|
99
|
+
"type": "zeebe:input"
|
|
100
|
+
},
|
|
101
|
+
"type": "String"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "inbound.clientResponse",
|
|
105
|
+
"value": "=internal_clientResponse",
|
|
106
|
+
"binding": {
|
|
107
|
+
"name": "inbound.clientResponse",
|
|
108
|
+
"type": "zeebe:property"
|
|
109
|
+
},
|
|
110
|
+
"type": "Hidden"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"id": "inbound.shouldValidateHmac",
|
|
114
|
+
"label": "HMAC authentication",
|
|
115
|
+
"description": "Choose whether HMAC verification is enabled. <a href='https://docs.camunda.io/docs/components/connectors/protocol/http-webhook/#make-your-http-webhook-connector-for-receiving-messages-executable' target='_blank'>See documentation</a> and <a href='https://docs.camunda.io/docs/components/connectors/protocol/http-webhook/#example' target='_blank'>example</a> that explains how to use HMAC-related fields",
|
|
116
|
+
"optional": false,
|
|
117
|
+
"value": "disabled",
|
|
118
|
+
"group": "authentication",
|
|
119
|
+
"binding": {
|
|
120
|
+
"name": "inbound.shouldValidateHmac",
|
|
121
|
+
"type": "zeebe:property"
|
|
122
|
+
},
|
|
123
|
+
"type": "Dropdown",
|
|
124
|
+
"choices": [
|
|
125
|
+
{
|
|
126
|
+
"name": "Enabled",
|
|
127
|
+
"value": "enabled"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "Disabled",
|
|
131
|
+
"value": "disabled"
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "inbound.hmacSecret",
|
|
137
|
+
"label": "HMAC secret key",
|
|
138
|
+
"description": "Shared secret key",
|
|
139
|
+
"optional": true,
|
|
140
|
+
"feel": "optional",
|
|
141
|
+
"group": "authentication",
|
|
142
|
+
"binding": {
|
|
143
|
+
"name": "inbound.hmacSecret",
|
|
144
|
+
"type": "zeebe:property"
|
|
145
|
+
},
|
|
146
|
+
"condition": {
|
|
147
|
+
"property": "inbound.shouldValidateHmac",
|
|
148
|
+
"equals": "enabled",
|
|
149
|
+
"type": "simple"
|
|
150
|
+
},
|
|
151
|
+
"type": "String"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "inbound.hmacHeader",
|
|
155
|
+
"label": "HMAC header",
|
|
156
|
+
"description": "Name of header attribute that will contain the HMAC value",
|
|
157
|
+
"optional": true,
|
|
158
|
+
"feel": "optional",
|
|
159
|
+
"group": "authentication",
|
|
160
|
+
"binding": {
|
|
161
|
+
"name": "inbound.hmacHeader",
|
|
162
|
+
"type": "zeebe:property"
|
|
163
|
+
},
|
|
164
|
+
"condition": {
|
|
165
|
+
"property": "inbound.shouldValidateHmac",
|
|
166
|
+
"equals": "enabled",
|
|
167
|
+
"type": "simple"
|
|
168
|
+
},
|
|
169
|
+
"type": "String"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "inbound.hmacAlgorithm",
|
|
173
|
+
"label": "HMAC algorithm",
|
|
174
|
+
"description": "Choose HMAC algorithm",
|
|
175
|
+
"optional": false,
|
|
176
|
+
"value": "sha_256",
|
|
177
|
+
"group": "authentication",
|
|
178
|
+
"binding": {
|
|
179
|
+
"name": "inbound.hmacAlgorithm",
|
|
180
|
+
"type": "zeebe:property"
|
|
181
|
+
},
|
|
182
|
+
"condition": {
|
|
183
|
+
"property": "inbound.shouldValidateHmac",
|
|
184
|
+
"equals": "enabled",
|
|
185
|
+
"type": "simple"
|
|
186
|
+
},
|
|
187
|
+
"type": "Dropdown",
|
|
188
|
+
"choices": [
|
|
189
|
+
{
|
|
190
|
+
"name": "SHA-1",
|
|
191
|
+
"value": "sha_1"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "SHA-256",
|
|
195
|
+
"value": "sha_256"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "SHA-512",
|
|
199
|
+
"value": "sha_512"
|
|
200
|
+
}
|
|
201
|
+
]
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "inbound.hmacScopes",
|
|
205
|
+
"label": "HMAC scopes",
|
|
206
|
+
"description": "Set HMAC scopes for calculating signature data. See <a href='https://docs.camunda.io/docs/components/connectors/protocol/http-webhook/' target='_blank'>documentation</a>",
|
|
207
|
+
"optional": true,
|
|
208
|
+
"feel": "required",
|
|
209
|
+
"group": "authentication",
|
|
210
|
+
"binding": {
|
|
211
|
+
"name": "inbound.hmacScopes",
|
|
212
|
+
"type": "zeebe:property"
|
|
213
|
+
},
|
|
214
|
+
"condition": {
|
|
215
|
+
"property": "inbound.shouldValidateHmac",
|
|
216
|
+
"equals": "enabled",
|
|
217
|
+
"type": "simple"
|
|
218
|
+
},
|
|
219
|
+
"type": "String"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "inbound.auth.type",
|
|
223
|
+
"label": "Authorization type",
|
|
224
|
+
"description": "Choose the authorization type",
|
|
225
|
+
"value": "NONE",
|
|
226
|
+
"group": "authorization",
|
|
227
|
+
"binding": {
|
|
228
|
+
"name": "inbound.auth.type",
|
|
229
|
+
"type": "zeebe:property"
|
|
230
|
+
},
|
|
231
|
+
"type": "Dropdown",
|
|
232
|
+
"choices": [
|
|
233
|
+
{
|
|
234
|
+
"name": "None",
|
|
235
|
+
"value": "NONE"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "Basic",
|
|
239
|
+
"value": "BASIC"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "API key",
|
|
243
|
+
"value": "APIKEY"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "JWT",
|
|
247
|
+
"value": "JWT"
|
|
248
|
+
}
|
|
249
|
+
]
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "inbound.auth.username",
|
|
253
|
+
"label": "Username",
|
|
254
|
+
"description": "Username for basic authentication",
|
|
255
|
+
"optional": false,
|
|
256
|
+
"feel": "optional",
|
|
257
|
+
"group": "authorization",
|
|
258
|
+
"binding": {
|
|
259
|
+
"name": "inbound.auth.username",
|
|
260
|
+
"type": "zeebe:property"
|
|
261
|
+
},
|
|
262
|
+
"condition": {
|
|
263
|
+
"property": "inbound.auth.type",
|
|
264
|
+
"equals": "BASIC",
|
|
265
|
+
"type": "simple"
|
|
266
|
+
},
|
|
267
|
+
"type": "String"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "inbound.auth.password",
|
|
271
|
+
"label": "Password",
|
|
272
|
+
"description": "Password for basic authentication",
|
|
273
|
+
"optional": false,
|
|
274
|
+
"feel": "optional",
|
|
275
|
+
"group": "authorization",
|
|
276
|
+
"binding": {
|
|
277
|
+
"name": "inbound.auth.password",
|
|
278
|
+
"type": "zeebe:property"
|
|
279
|
+
},
|
|
280
|
+
"condition": {
|
|
281
|
+
"property": "inbound.auth.type",
|
|
282
|
+
"equals": "BASIC",
|
|
283
|
+
"type": "simple"
|
|
284
|
+
},
|
|
285
|
+
"type": "String"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "inbound.auth.apiKey",
|
|
289
|
+
"label": "API key",
|
|
290
|
+
"description": "Expected API key",
|
|
291
|
+
"optional": false,
|
|
292
|
+
"feel": "optional",
|
|
293
|
+
"group": "authorization",
|
|
294
|
+
"binding": {
|
|
295
|
+
"name": "inbound.auth.apiKey",
|
|
296
|
+
"type": "zeebe:property"
|
|
297
|
+
},
|
|
298
|
+
"condition": {
|
|
299
|
+
"property": "inbound.auth.type",
|
|
300
|
+
"equals": "APIKEY",
|
|
301
|
+
"type": "simple"
|
|
302
|
+
},
|
|
303
|
+
"type": "String"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"id": "inbound.auth.apiKeyLocator",
|
|
307
|
+
"label": "API key locator",
|
|
308
|
+
"description": "A FEEL expression that extracts API key from the request. <a href='https://docs.camunda.io/docs/components/connectors/protocol/http-webhook/#how-to-configure-api-key-authorization'>See documentation</a>",
|
|
309
|
+
"optional": false,
|
|
310
|
+
"value": "=split(request.headers.authorization, \" \")[2]",
|
|
311
|
+
"constraints": {
|
|
312
|
+
"notEmpty": true
|
|
313
|
+
},
|
|
314
|
+
"feel": "required",
|
|
315
|
+
"group": "authorization",
|
|
316
|
+
"binding": {
|
|
317
|
+
"name": "inbound.auth.apiKeyLocator",
|
|
318
|
+
"type": "zeebe:property"
|
|
319
|
+
},
|
|
320
|
+
"condition": {
|
|
321
|
+
"property": "inbound.auth.type",
|
|
322
|
+
"equals": "APIKEY",
|
|
323
|
+
"type": "simple"
|
|
324
|
+
},
|
|
325
|
+
"type": "String"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"id": "inbound.auth.jwt.jwkUrl",
|
|
329
|
+
"label": "JWK URL",
|
|
330
|
+
"description": "Well-known URL of JWKs",
|
|
331
|
+
"optional": false,
|
|
332
|
+
"feel": "optional",
|
|
333
|
+
"group": "authorization",
|
|
334
|
+
"binding": {
|
|
335
|
+
"name": "inbound.auth.jwt.jwkUrl",
|
|
336
|
+
"type": "zeebe:property"
|
|
337
|
+
},
|
|
338
|
+
"condition": {
|
|
339
|
+
"property": "inbound.auth.type",
|
|
340
|
+
"equals": "JWT",
|
|
341
|
+
"type": "simple"
|
|
342
|
+
},
|
|
343
|
+
"type": "String"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "inbound.auth.jwt.permissionsExpression",
|
|
347
|
+
"label": "JWT role property expression",
|
|
348
|
+
"description": "Expression to extract the roles from the JWT token. <a href='https://docs.camunda.io/docs/components/connectors/protocol/http-webhook/#how-to-extract-roles-from-jwt-data'>See documentation</a>",
|
|
349
|
+
"optional": false,
|
|
350
|
+
"feel": "required",
|
|
351
|
+
"group": "authorization",
|
|
352
|
+
"binding": {
|
|
353
|
+
"name": "inbound.auth.jwt.permissionsExpression",
|
|
354
|
+
"type": "zeebe:property"
|
|
355
|
+
},
|
|
356
|
+
"condition": {
|
|
357
|
+
"property": "inbound.auth.type",
|
|
358
|
+
"equals": "JWT",
|
|
359
|
+
"type": "simple"
|
|
360
|
+
},
|
|
361
|
+
"type": "String"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "inbound.auth.jwt.requiredPermissions",
|
|
365
|
+
"label": "Required roles",
|
|
366
|
+
"description": "List of roles to test JWT roles against",
|
|
367
|
+
"optional": false,
|
|
368
|
+
"feel": "required",
|
|
369
|
+
"group": "authorization",
|
|
370
|
+
"binding": {
|
|
371
|
+
"name": "inbound.auth.jwt.requiredPermissions",
|
|
372
|
+
"type": "zeebe:property"
|
|
373
|
+
},
|
|
374
|
+
"condition": {
|
|
375
|
+
"property": "inbound.auth.type",
|
|
376
|
+
"equals": "JWT",
|
|
377
|
+
"type": "simple"
|
|
378
|
+
},
|
|
379
|
+
"type": "String"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "activationCondition",
|
|
383
|
+
"label": "Activation condition",
|
|
384
|
+
"description": "Condition under which the Connector triggers. Leave empty to catch all events",
|
|
385
|
+
"optional": true,
|
|
386
|
+
"feel": "required",
|
|
387
|
+
"group": "activation",
|
|
388
|
+
"binding": {
|
|
389
|
+
"name": "activationCondition",
|
|
390
|
+
"type": "zeebe:property"
|
|
391
|
+
},
|
|
392
|
+
"type": "String",
|
|
393
|
+
"value": "=is defined(request.body.status.state) and not(list contains([\"submitted\", \"working\"], request.body.status.state))"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": "correlationKeyProcess",
|
|
397
|
+
"label": "Correlation key (process)",
|
|
398
|
+
"description": "Sets up the correlation key from process variables",
|
|
399
|
+
"group": "correlation",
|
|
400
|
+
"binding": {
|
|
401
|
+
"name": "correlationKey",
|
|
402
|
+
"type": "bpmn:Message#zeebe:subscription#property"
|
|
403
|
+
},
|
|
404
|
+
"type": "Hidden",
|
|
405
|
+
"value": "=internal_clientResponse.result.id + (if is defined(internal_clientResponse.pushNotificationData.token) then (\"-\" + internal_clientResponse.pushNotificationData.token) else \"\")"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"id": "correlationKeyPayload",
|
|
409
|
+
"label": "Correlation key (payload)",
|
|
410
|
+
"description": "Extracts the correlation key from the incoming message payload",
|
|
411
|
+
"group": "correlation",
|
|
412
|
+
"binding": {
|
|
413
|
+
"name": "correlationKeyExpression",
|
|
414
|
+
"type": "zeebe:property"
|
|
415
|
+
},
|
|
416
|
+
"type": "Hidden",
|
|
417
|
+
"value": "=request.body.id + (if is defined(request.headers.`x-a2a-notification-token`) then (\"-\" + request.headers.`x-a2a-notification-token`) else \"\")"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"id": "messageIdExpression",
|
|
421
|
+
"label": "Message ID expression",
|
|
422
|
+
"description": "Expression to extract unique identifier of a message",
|
|
423
|
+
"optional": true,
|
|
424
|
+
"feel": "required",
|
|
425
|
+
"group": "correlation",
|
|
426
|
+
"binding": {
|
|
427
|
+
"name": "messageIdExpression",
|
|
428
|
+
"type": "zeebe:property"
|
|
429
|
+
},
|
|
430
|
+
"type": "String"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"id": "messageTtl",
|
|
434
|
+
"label": "Message TTL",
|
|
435
|
+
"description": "Time-to-live for the message in the broker (ISO-8601 duration)",
|
|
436
|
+
"optional": true,
|
|
437
|
+
"constraints": {
|
|
438
|
+
"notEmpty": false,
|
|
439
|
+
"pattern": {
|
|
440
|
+
"value": "^(PT.*|)$",
|
|
441
|
+
"message": "must be an ISO-8601 duration"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"feel": "optional",
|
|
445
|
+
"group": "correlation",
|
|
446
|
+
"binding": {
|
|
447
|
+
"name": "messageTtl",
|
|
448
|
+
"type": "zeebe:property"
|
|
449
|
+
},
|
|
450
|
+
"type": "String"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"id": "messageNameUuid",
|
|
454
|
+
"generatedValue": {
|
|
455
|
+
"type": "uuid"
|
|
456
|
+
},
|
|
457
|
+
"group": "correlation",
|
|
458
|
+
"binding": {
|
|
459
|
+
"name": "name",
|
|
460
|
+
"type": "bpmn:Message#property"
|
|
461
|
+
},
|
|
462
|
+
"type": "Hidden"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"id": "deduplicationModeManualFlag",
|
|
466
|
+
"label": "Manual mode",
|
|
467
|
+
"description": "By default, similar connectors receive the same deduplication ID. Customize by activating manual mode",
|
|
468
|
+
"value": false,
|
|
469
|
+
"group": "deduplication",
|
|
470
|
+
"binding": {
|
|
471
|
+
"name": "deduplicationModeManualFlag",
|
|
472
|
+
"type": "zeebe:property"
|
|
473
|
+
},
|
|
474
|
+
"type": "Boolean"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"id": "deduplicationId",
|
|
478
|
+
"label": "Deduplication ID",
|
|
479
|
+
"constraints": {
|
|
480
|
+
"notEmpty": true,
|
|
481
|
+
"pattern": {
|
|
482
|
+
"value": "^[a-zA-Z0-9_-]+$",
|
|
483
|
+
"message": "can only contain alphanumeric characters, dashes, and underscores"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"group": "deduplication",
|
|
487
|
+
"binding": {
|
|
488
|
+
"name": "deduplicationId",
|
|
489
|
+
"type": "zeebe:property"
|
|
490
|
+
},
|
|
491
|
+
"condition": {
|
|
492
|
+
"property": "deduplicationModeManualFlag",
|
|
493
|
+
"equals": true,
|
|
494
|
+
"type": "simple"
|
|
495
|
+
},
|
|
496
|
+
"type": "String"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "deduplicationModeManual",
|
|
500
|
+
"value": "MANUAL",
|
|
501
|
+
"group": "deduplication",
|
|
502
|
+
"binding": {
|
|
503
|
+
"name": "deduplicationMode",
|
|
504
|
+
"type": "zeebe:property"
|
|
505
|
+
},
|
|
506
|
+
"condition": {
|
|
507
|
+
"property": "deduplicationId",
|
|
508
|
+
"isActive": true,
|
|
509
|
+
"type": "simple"
|
|
510
|
+
},
|
|
511
|
+
"type": "Hidden"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"id": "deduplicationModeAuto",
|
|
515
|
+
"value": "AUTO",
|
|
516
|
+
"group": "deduplication",
|
|
517
|
+
"binding": {
|
|
518
|
+
"name": "deduplicationMode",
|
|
519
|
+
"type": "zeebe:property"
|
|
520
|
+
},
|
|
521
|
+
"condition": {
|
|
522
|
+
"property": "deduplicationId",
|
|
523
|
+
"isActive": false,
|
|
524
|
+
"type": "simple"
|
|
525
|
+
},
|
|
526
|
+
"type": "Hidden"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"id": "resultVariable",
|
|
530
|
+
"label": "Result variable",
|
|
531
|
+
"description": "Name of variable to store the response in",
|
|
532
|
+
"group": "output",
|
|
533
|
+
"binding": {
|
|
534
|
+
"name": "resultVariable",
|
|
535
|
+
"type": "zeebe:property"
|
|
536
|
+
},
|
|
537
|
+
"type": "String"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"id": "resultExpression",
|
|
541
|
+
"label": "Result expression",
|
|
542
|
+
"description": "Expression to map the response into process variables",
|
|
543
|
+
"feel": "required",
|
|
544
|
+
"group": "output",
|
|
545
|
+
"binding": {
|
|
546
|
+
"name": "resultExpression",
|
|
547
|
+
"type": "zeebe:property"
|
|
548
|
+
},
|
|
549
|
+
"type": "Text",
|
|
550
|
+
"value": "={response: request.body}"
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"icon": {
|
|
554
|
+
"contents": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMTguNSIgdmlld0JveD0iMyA5IDMwIDE4LjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTguNyAxNC43MjVDOC41MTY2NyAxNC45MDgzIDguMjgzMzMgMTUgOCAxNUM3LjcxNjY3IDE1IDcuNDc1IDE0LjkwODMgNy4yNzUgMTQuNzI1QzcuMDkxNjcgMTQuNTI1IDcgMTQuMjgzMyA3IDE0QzcgMTMuNzE2NyA3LjA5MTY3IDEzLjQ4MzMgNy4yNzUgMTMuM0M3LjQ3NSAxMy4xIDcuNzE2NjcgMTMgOCAxM0M4LjI4MzMzIDEzIDguNTE2NjcgMTMuMSA4LjcgMTMuM0M4LjkgMTMuNDgzMyA5IDEzLjcxNjcgOSAxNEM5IDE0LjI4MzMgOC45IDE0LjUyNSA4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMTQuNyAxNC43MjVDMTQuNTE2NyAxNC45MDgzIDE0LjI4MzMgMTUgMTQgMTVDMTMuNzE2NyAxNSAxMy40NzUgMTQuOTA4MyAxMy4yNzUgMTQuNzI1QzEzLjA5MTcgMTQuNTI1IDEzIDE0LjI4MzMgMTMgMTRDMTMgMTMuNzE2NyAxMy4wOTE3IDEzLjQ4MzMgMTMuMjc1IDEzLjNDMTMuNDc1IDEzLjEgMTMuNzE2NyAxMyAxNCAxM0MxNC4yODMzIDEzIDE0LjUxNjcgMTMuMSAxNC43IDEzLjNDMTQuOSAxMy40ODMzIDE1IDEzLjcxNjcgMTUgMTRDMTUgMTQuMjgzMyAxNC45IDE0LjUyNSAxNC43IDE0LjcyNVoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTIyLjcgMTQuNzI1QzIyLjUxNjcgMTQuOTA4MyAyMi4yODMzIDE1IDIyIDE1QzIxLjcxNjcgMTUgMjEuNDc1IDE0LjkwODMgMjEuMjc1IDE0LjcyNUMyMS4wOTE3IDE0LjUyNSAyMSAxNC4yODMzIDIxIDE0QzIxIDEzLjcxNjcgMjEuMDkxNyAxMy40ODMzIDIxLjI3NSAxMy4zQzIxLjQ3NSAxMy4xIDIxLjcxNjcgMTMgMjIgMTNDMjIuMjgzMyAxMyAyMi41MTY3IDEzLjEgMjIuNyAxMy4zQzIyLjkgMTMuNDgzMyAyMyAxMy43MTY3IDIzIDE0QzIzIDE0LjI4MzMgMjIuOSAxNC41MjUgMjIuNyAxNC43MjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0yOC43IDE0LjcyNUMyOC41MTY3IDE0LjkwODMgMjguMjgzMyAxNSAyOCAxNUMyNy43MTY3IDE1IDI3LjQ3NSAxNC45MDgzIDI3LjI3NSAxNC43MjVDMjcuMDkxNyAxNC41MjUgMjcgMTQuMjgzMyAyNyAxNEMyNyAxMy43MTY3IDI3LjA5MTcgMTMuNDgzMyAyNy4yNzUgMTMuM0MyNy40NzUgMTMuMSAyNy43MTY3IDEzIDI4IDEzQzI4LjI4MzMgMTMgMjguNTE2NyAxMy4xIDI4LjcgMTMuM0MyOC45IDEzLjQ4MzMgMjkgMTMuNzE2NyAyOSAxNEMyOSAxNC4yODMzIDI4LjkgMTQuNTI1IDI4LjcgMTQuNzI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTUgMTRDNSAxMi4zNDMxIDYuMzQzMTUgMTEgOCAxMUgxNEMxNC43NzYgMTEgMTUuMjg0IDExLjE1MzcgMTUuNjQgMTEuMzgxOEMxNS44NTg5IDEwLjc5NCAxNi4xNTE3IDEwLjE3MDkgMTYuNTU1IDkuNTk3OTVDMTUuODc5NyA5LjIxMTUzIDE1LjAzODYgOSAxNCA5SDhDNS4yMzg1OCA5IDMgMTEuMjM4NiAzIDE0QzMgMTYuNzYxMiA1LjIzNzU5IDE5IDcuOTk5MjYgMTlIMTRDMTUuNzYzNCAxOSAxNi45NTczIDE4LjM5MDIgMTcuNzM3NSAxNy4zNUMxOC40MjI4IDE2LjQzNjMgMTguNzE0OCAxNS4yNjYgMTguOTQ4MyAxNC4zMjk5TDE4Ljk3MDEgMTQuMjQyNUMxOS4yMzI3IDEzLjE5MjQgMTkuNDQ0MiAxMi40MDc3IDE5Ljg2MjUgMTEuODVDMjAuMjA3MyAxMS4zOTAyIDIwLjc2MzQgMTEgMjIgMTFIMjguMDAwNUMyOS42NTcyIDExIDMxIDEyLjM0MyAzMSAxNEMzMSAxNS42NTY5IDI5LjY1NjkgMTcgMjggMTdIMjJDMjEuMjI0IDE3IDIwLjcxNiAxNi44NDYzIDIwLjM2IDE2LjYxODJDMjAuMTQxMSAxNy4yMDYgMTkuODQ4MyAxNy44MjkxIDE5LjQ0NSAxOC40MDJDMjAuMTIwMyAxOC43ODg1IDIwLjk2MTQgMTkgMjIgMTlIMjhDMzAuNzYxNCAxOSAzMyAxNi43NjE0IDMzIDE0QzMzIDExLjIzODggMzAuNzYyMSA5IDI4LjAwMDUgOUgyMkMyMC4yMzY2IDkgMTkuMDQyNyA5LjYwOTc5IDE4LjI2MjUgMTAuNjVDMTcuNTc3MiAxMS41NjM3IDE3LjI4NTIgMTIuNzM0IDE3LjA1MTcgMTMuNjcwMUwxNy4wMjk5IDEzLjc1NzVDMTYuNzY3MyAxNC44MDc2IDE2LjU1NTggMTUuNTkyMyAxNi4xMzc1IDE2LjE1QzE1Ljc5MjcgMTYuNjA5OCAxNS4yMzY2IDE3IDE0IDE3SDcuOTk5MjZDNi4zNDI2NSAxNyA1IDE1LjY1NzEgNSAxNFoiIGZpbGw9ImJsYWNrIi8+CiAgPHBhdGggZD0iTTcgMjMuNUM2LjcxNjY3IDIzLjUgNi40NzUgMjMuNDA4MyA2LjI3NSAyMy4yMjVDNi4wOTE2NyAyMy4wMjUgNiAyMi43ODMzIDYgMjIuNUM2IDIyLjIxNjcgNi4wOTE2NyAyMS45ODMzIDYuMjc1IDIxLjhDNi40NzUgMjEuNiA2LjcxNjY3IDIxLjUgNyAyMS41SDEyQzEyLjI4MzMgMjEuNSAxMi41MTY3IDIxLjYgMTIuNyAyMS44QzEyLjkgMjEuOTgzMyAxMyAyMi4yMTY3IDEzIDIyLjVDMTMgMjIuNzgzMyAxMi45IDIzLjAyNSAxMi43IDIzLjIyNUMxMi41MTY3IDIzLjQwODMgMTIuMjgzMyAyMy41IDEyIDIzLjVIN1pNNSAyNy41QzQuNzE2NjcgMjcuNSA0LjQ3NSAyNy40MDgzIDQuMjc1IDI3LjIyNUM0LjA5MTY3IDI3LjAyNSA0IDI2Ljc4MzMgNCAyNi41QzQgMjYuMjE2NyA0LjA5MTY3IDI1Ljk4MzMgNC4yNzUgMjUuOEM0LjQ3NSAyNS42IDQuNzE2NjcgMjUuNSA1IDI1LjVIOEM4LjI4MzMzIDI1LjUgOC41MTY2NyAyNS42IDguNyAyNS44QzguOSAyNS45ODMzIDkgMjYuMjE2NyA5IDI2LjVDOSAyNi43ODMzIDguOSAyNy4wMjUgOC43IDI3LjIyNUM4LjUxNjY3IDI3LjQwODMgOC4yODMzMyAyNy41IDggMjcuNUg1Wk0xMiAyNy41QzExLjcxNjcgMjcuNSAxMS40NzUgMjcuNDA4MyAxMS4yNzUgMjcuMjI1QzExLjA5MTcgMjcuMDI1IDExIDI2Ljc4MzMgMTEgMjYuNUMxMSAyNi4yMTY3IDExLjA5MTcgMjUuOTgzMyAxMS4yNzUgMjUuOEMxMS40NzUgMjUuNiAxMS43MTY3IDI1LjUgMTIgMjUuNUgyMEMyMC4yODMzIDI1LjUgMjAuNTE2NyAyNS42IDIwLjcgMjUuOEMyMC45IDI1Ljk4MzMgMjEgMjYuMjE2NyAyMSAyNi41QzIxIDI2Ljc4MzMgMjAuOSAyNy4wMjUgMjAuNyAyNy4yMjVDMjAuNTE2NyAyNy40MDgzIDIwLjI4MzMgMjcuNSAyMCAyNy41SDEyWk0yOCAyNy41QzI3LjcxNjcgMjcuNSAyNy40NzUgMjcuNDA4MyAyNy4yNzUgMjcuMjI1QzI3LjA5MTcgMjcuMDI1IDI3IDI2Ljc4MzMgMjcgMjYuNUMyNyAyNi4yMTY3IDI3LjA5MTcgMjUuOTgzMyAyNy4yNzUgMjUuOEMyNy40NzUgMjUuNiAyNy43MTY3IDI1LjUgMjggMjUuNUgzMkMzMi4yODMzIDI1LjUgMzIuNTE2NyAyNS42IDMyLjcgMjUuOEMzMi45IDI1Ljk4MzMgMzMgMjYuMjE2NyAzMyAyNi41QzMzIDI2Ljc4MzMzMi45IDI3LjAyNSAzMi43IDI3LjIyNUMzMi41MTY3IDI3LjQwODMgMzIuMjgzMyAyNy41IDMyIDI3LjVIMjhaTTE2IDIzLjVDMTUuNzE2NyAyMy41IDE1LjQ3NSAyMy40MDgzIDE1LjI3NSAyMy4yMjVDMTUuMDkxNyAyMy4wMjUgMTUgMjIuNzgzMyAxNSAyMi41QzE1IDIyLjIxNjcgMTUuMDkxNyAyMS45ODMzIDE1LjI3NSAyMS44QzE1LjQ3NSAyMS42IDE1LjcxNjcgMjEuNSAxNiAyMS41QzE2LjI4MzMgMjEuNSAxNi41MTY3IDIxLjYgMTYuNyAyMS44QzE2LjkgMjEuOTgzMyAxNyAyMi4yMTY3IDE3IDIyLjVDMTcgMjIuNzgzMyAxNi45IDIzLjAyNSAxNi43IDIzLjIyNUMxNi41MTY3IDIzLjQwODMgMTYuMjgzMyAyMy41IDE2IDIzLjVaTTI0IDI3LjVDMjMuNzE2NyAyNy41IDIzLjQ3NSAyNy40MDgzIDIzLjI3NSAyNy4yMjVDMjMuMDkxNyAyNy4wMjUgMjMgMjYuNzgzMyAyMyAyNi41QzIzIDI2LjIxNjcgMjMuMDkxNyAyNS45ODMzIDIzLjI3NSAyNS44QzIzLjQ3NSAyNS42IDIzLjcxNjcgMjUuNSAyNCAyNS41QzI0LjI4MzMgMjUuNSAyNC41MTY3IDI1LjYgMjQuNyAyNS44QzI0LjkgMjUuOTgzMyAyNSAyNi4yMTY3IDI1IDI2LjVDMjUgMjYuNzgzMyAyNC45IDI3LjAyNSAyNC43IDI3LjIyNUMyNC41MTY3IDI3LjQwODMgMjQuMjgzMyAyNy41IDI0IDI3LjVaIiBmaWxsPSJibGFjayIvPgogIDxwYXRoIGQ9Ik0xOS4yNzUgMjMuMjI1QzE5LjQ3NSAyMy40MDgzIDE5LjcxNjcgMjMuNSAyMCAyMy41SDIzQzIzLjI4MzMgMjMuNSAyMy41MTY3IDIzLjQwODMgMjMuNyAyMy4yMjVDMjMuOSAyMy4wMjUgMjQgMjIuNzgzMyAyNCAyMi41QzI0IDIyLjIxNjcgMjMuOSAyMS45ODMzIDIzLjcgMjEuOEMyMy41MTY3IDIxLjYgMjMuMjgzMyAyMS41IDIzIDIxLjVIMjBDMTkuNzE2NyAyMS41IDE5LjQ3NSAyMS42IDE5LjI3NSAyMS44QzE5LjA5MTcgMjEuOTgzMyAxOSAyMi4yMTY3IDE5IDIyLjVDMTkgMjIuNzgzMyAxOS4wOTE3IDIzLjAyNSAxOS4yNzUgMjMuMjI1WiIgZmlsbD0iYmxhY2siLz4KICA8cGF0aCBkPSJNMjYuMjc1IDIzLjIyNUMyNi40NzUgMjMuNDA4MyAyNi43MTY3IDIzLjUgMjcgMjMuNUgzMEMzMC4yODMzIDIzLjUgMzAuNTE2NyAyMy40MDgzIDMwLjcgMjMuMjI1QzMwLjkgMjMuMDI1IDMxIDIyLjc4MzMgMzEgMjIuNUMzMSAyMi4yMTY3IDMwLjkgMjEuOTgzMyAzMC43IDIxLjhDMzAuNTE2NyAyMS42IDMwLjI4MzMgMjEuNSAzMCAyMS41SDI3QzI2LjcxNjcgMjEuNSAyNi40NzUgMjEuNiAyNi4yNzUgMjEuOEMyNi4wOTE3IDIxLjk4MzMgMjYgMjIuMjE2NyAyNiAyMi41QzI2IDIyLjc4MzMgMjYuMDkxNyAyMy4wMjUgMjYuMjc1IDIzLjIyNVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPg=="
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
]
|