@uipath/maestro-builder-sdk 5.2.0

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.
Files changed (238) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +322 -0
  3. package/dist/bindings-v2.d.ts +37 -0
  4. package/dist/bindings-v2.js +155 -0
  5. package/dist/bindings.d.ts +6 -0
  6. package/dist/bindings.js +6 -0
  7. package/dist/bpmn/bpmn-expr-check.d.ts +41 -0
  8. package/dist/bpmn/bpmn-expr-check.js +218 -0
  9. package/dist/bpmn/bpmn-sdk.d.ts +2257 -0
  10. package/dist/bpmn/bpmn-sdk.js +1476 -0
  11. package/dist/bpmn/check-cli.d.ts +3 -0
  12. package/dist/bpmn/check-cli.js +32 -0
  13. package/dist/bpmn/check.d.ts +25 -0
  14. package/dist/bpmn/check.js +430 -0
  15. package/dist/bpmn/compile-cli.d.ts +3 -0
  16. package/dist/bpmn/compile-cli.js +60 -0
  17. package/dist/bpmn/connector.d.ts +56 -0
  18. package/dist/bpmn/connector.js +199 -0
  19. package/dist/bpmn/decompile-cli.d.ts +8 -0
  20. package/dist/bpmn/decompile-cli.js +54 -0
  21. package/dist/bpmn/decompile.d.ts +6 -0
  22. package/dist/bpmn/decompile.js +1108 -0
  23. package/dist/bpmn/format-profile.d.ts +27 -0
  24. package/dist/bpmn/format-profile.js +11 -0
  25. package/dist/bpmn/intsvc.d.ts +77 -0
  26. package/dist/bpmn/intsvc.js +155 -0
  27. package/dist/bpmn/load.d.ts +4 -0
  28. package/dist/bpmn/load.js +22 -0
  29. package/dist/bpmn/merge-cli.d.ts +3 -0
  30. package/dist/bpmn/merge-cli.js +45 -0
  31. package/dist/bpmn/merge.d.ts +19 -0
  32. package/dist/bpmn/merge.js +293 -0
  33. package/dist/bpmn/registry-types.json +1869 -0
  34. package/dist/bpmn/serialize.d.ts +28 -0
  35. package/dist/bpmn/serialize.js +757 -0
  36. package/dist/bpmn/tidy-cli.d.ts +2 -0
  37. package/dist/bpmn/tidy-cli.js +39 -0
  38. package/dist/bpmn/typed-node.d.ts +382 -0
  39. package/dist/bpmn/typed-node.js +551 -0
  40. package/dist/bpmn/uipath-moddle.v1.json +823 -0
  41. package/dist/bpmn/xml-ranges.d.ts +45 -0
  42. package/dist/bpmn/xml-ranges.js +151 -0
  43. package/dist/case/case-expr-check.d.ts +35 -0
  44. package/dist/case/case-expr-check.js +85 -0
  45. package/dist/case/case-sdk.d.ts +1282 -0
  46. package/dist/case/case-sdk.js +923 -0
  47. package/dist/case/check-cli.d.ts +3 -0
  48. package/dist/case/check-cli.js +31 -0
  49. package/dist/case/check.d.ts +18 -0
  50. package/dist/case/check.js +456 -0
  51. package/dist/case/compile-cli.d.ts +3 -0
  52. package/dist/case/compile-cli.js +291 -0
  53. package/dist/case/decompile-cli.d.ts +9 -0
  54. package/dist/case/decompile-cli.js +117 -0
  55. package/dist/case/decompile.d.ts +187 -0
  56. package/dist/case/decompile.js +1170 -0
  57. package/dist/case/entry-points.d.ts +79 -0
  58. package/dist/case/entry-points.js +118 -0
  59. package/dist/case/format-profile.d.ts +60 -0
  60. package/dist/case/format-profile.js +79 -0
  61. package/dist/case/ids.d.ts +24 -0
  62. package/dist/case/ids.js +76 -0
  63. package/dist/case/load.d.ts +12 -0
  64. package/dist/case/load.js +32 -0
  65. package/dist/case/preserve.d.ts +133 -0
  66. package/dist/case/preserve.js +105 -0
  67. package/dist/case/serialize.d.ts +10 -0
  68. package/dist/case/serialize.js +1414 -0
  69. package/dist/check-cli.d.ts +3 -0
  70. package/dist/check-cli.js +118 -0
  71. package/dist/check.d.ts +146 -0
  72. package/dist/check.js +4898 -0
  73. package/dist/cli/commands/bpmn.d.ts +2 -0
  74. package/dist/cli/commands/bpmn.js +73 -0
  75. package/dist/cli/commands/case.d.ts +2 -0
  76. package/dist/cli/commands/case.js +60 -0
  77. package/dist/cli/commands/flow.d.ts +2 -0
  78. package/dist/cli/commands/flow.js +99 -0
  79. package/dist/cli/commands/registry.d.ts +10 -0
  80. package/dist/cli/commands/registry.js +170 -0
  81. package/dist/cli/common.d.ts +30 -0
  82. package/dist/cli/common.js +92 -0
  83. package/dist/cli/index.d.ts +2 -0
  84. package/dist/cli/index.js +18 -0
  85. package/dist/cli-run.d.ts +2 -0
  86. package/dist/cli-run.js +42 -0
  87. package/dist/compile-cli.d.ts +3 -0
  88. package/dist/compile-cli.js +160 -0
  89. package/dist/config.d.ts +47 -0
  90. package/dist/config.js +201 -0
  91. package/dist/core/actions.d.ts +3244 -0
  92. package/dist/core/actions.js +1062 -0
  93. package/dist/core/binding-messages.d.ts +1 -0
  94. package/dist/core/binding-messages.js +16 -0
  95. package/dist/core/bindings.d.ts +12 -0
  96. package/dist/core/bindings.js +67 -0
  97. package/dist/core/ceql.d.ts +73 -0
  98. package/dist/core/ceql.js +272 -0
  99. package/dist/core/cli-spelling.d.ts +39 -0
  100. package/dist/core/cli-spelling.js +62 -0
  101. package/dist/core/connector-raw-node.d.ts +21 -0
  102. package/dist/core/connector-raw-node.js +47 -0
  103. package/dist/core/connectors.d.ts +184 -0
  104. package/dist/core/connectors.js +128 -0
  105. package/dist/core/expr-check.d.ts +93 -0
  106. package/dist/core/expr-check.js +186 -0
  107. package/dist/core/expr.d.ts +323 -0
  108. package/dist/core/expr.js +400 -0
  109. package/dist/core/index.d.ts +10 -0
  110. package/dist/core/index.js +10 -0
  111. package/dist/core/library.d.ts +440 -0
  112. package/dist/core/library.js +1183 -0
  113. package/dist/core/list-envelope.d.ts +45 -0
  114. package/dist/core/list-envelope.js +97 -0
  115. package/dist/core/lookup-store.d.ts +22 -0
  116. package/dist/core/lookup-store.js +85 -0
  117. package/dist/core/lookups.d.ts +227 -0
  118. package/dist/core/lookups.js +231 -0
  119. package/dist/core/node-classes.d.ts +234 -0
  120. package/dist/core/node-classes.js +158 -0
  121. package/dist/core/script-return.d.ts +68 -0
  122. package/dist/core/script-return.js +197 -0
  123. package/dist/core/stable-id.d.ts +28 -0
  124. package/dist/core/stable-id.js +37 -0
  125. package/dist/core-definitions.json +16249 -0
  126. package/dist/decompile-cli.d.ts +3 -0
  127. package/dist/decompile-cli.js +131 -0
  128. package/dist/decompile.d.ts +138 -0
  129. package/dist/decompile.js +2482 -0
  130. package/dist/emit.d.ts +10 -0
  131. package/dist/emit.js +60 -0
  132. package/dist/event-filters.d.ts +130 -0
  133. package/dist/event-filters.js +137 -0
  134. package/dist/flow-expr-check.d.ts +17 -0
  135. package/dist/flow-expr-check.js +193 -0
  136. package/dist/flow-sdk.d.ts +1341 -0
  137. package/dist/flow-sdk.js +1164 -0
  138. package/dist/flow-variables.d.ts +13 -0
  139. package/dist/flow-variables.js +42 -0
  140. package/dist/format-profile.d.ts +72 -0
  141. package/dist/format-profile.js +97 -0
  142. package/dist/generators/_connections.py +287 -0
  143. package/dist/generators/_events.py +355 -0
  144. package/dist/generators/_lookups.py +114 -0
  145. package/dist/generators/_naming.py +185 -0
  146. package/dist/generators/_objects.py +299 -0
  147. package/dist/generators/_resolve.py +273 -0
  148. package/dist/generators/convert_library_to_md.py +1441 -0
  149. package/dist/generators/extract_library.py +125 -0
  150. package/dist/generators/generate_connectors_ts.py +936 -0
  151. package/dist/generators/generate_library_json.py +2527 -0
  152. package/dist/generators/generate_triggers_ts.py +110 -0
  153. package/dist/generators/materialize_registry.py +155 -0
  154. package/dist/generators/prepare_connector.py +1688 -0
  155. package/dist/index.d.ts +35 -0
  156. package/dist/index.js +35 -0
  157. package/dist/ixp-definition.json +1982 -0
  158. package/dist/library.d.ts +6 -0
  159. package/dist/library.js +6 -0
  160. package/dist/load.d.ts +16 -0
  161. package/dist/load.js +95 -0
  162. package/dist/merge-cli.d.ts +3 -0
  163. package/dist/merge-cli.js +47 -0
  164. package/dist/merge.d.ts +125 -0
  165. package/dist/merge.js +0 -0
  166. package/dist/migrate.d.ts +15 -0
  167. package/dist/migrate.js +245 -0
  168. package/dist/node-runtime.d.ts +3 -0
  169. package/dist/node-runtime.js +22 -0
  170. package/dist/package-name.d.ts +17 -0
  171. package/dist/package-name.js +17 -0
  172. package/dist/ref-resolve.d.ts +77 -0
  173. package/dist/ref-resolve.js +170 -0
  174. package/dist/registry/cache.d.ts +55 -0
  175. package/dist/registry/cache.js +134 -0
  176. package/dist/registry/curated-overlay.d.ts +16 -0
  177. package/dist/registry/curated-overlay.js +62 -0
  178. package/dist/registry/extractor.d.ts +22 -0
  179. package/dist/registry/extractor.js +18 -0
  180. package/dist/registry/materialize-bin.d.ts +2 -0
  181. package/dist/registry/materialize-bin.js +7 -0
  182. package/dist/registry/materialize-cli.d.ts +1 -0
  183. package/dist/registry/materialize-cli.js +46 -0
  184. package/dist/registry/materializer.d.ts +23 -0
  185. package/dist/registry/materializer.js +34 -0
  186. package/dist/registry/path-cli.d.ts +1 -0
  187. package/dist/registry/path-cli.js +56 -0
  188. package/dist/registry/prepare-cli.d.ts +62 -0
  189. package/dist/registry/prepare-cli.js +185 -0
  190. package/dist/registry/pull-cli.d.ts +1 -0
  191. package/dist/registry/pull-cli.js +274 -0
  192. package/dist/registry/python.d.ts +26 -0
  193. package/dist/registry/python.js +46 -0
  194. package/dist/registry/search-cli.d.ts +52 -0
  195. package/dist/registry/search-cli.js +159 -0
  196. package/dist/schema-version.d.ts +165 -0
  197. package/dist/schema-version.js +148 -0
  198. package/dist/serialize.d.ts +64 -0
  199. package/dist/serialize.js +6398 -0
  200. package/lib/README.md +112 -0
  201. package/lib/library-json.samples/index.json +158 -0
  202. package/lib/library-json.samples/invariant-collections.json +83 -0
  203. package/lib/library-json.samples/list-envelopes.json +123 -0
  204. package/lib/library-json.samples/uipath-atlassian-jira/create-issue@1.0.0.json +131 -0
  205. package/lib/library-json.samples/uipath-atlassian-jira/create-issue@1.0.0.v1def.json +306 -0
  206. package/lib/library-json.samples/uipath-atlassian-jira/generic/create_issue/create@1.0.0.json +86 -0
  207. package/lib/library-json.samples/uipath-atlassian-jira/generic/create_issue/create@1.0.0.v1def.json +208 -0
  208. package/lib/library-json.samples/uipath-atlassian-jira/get-issue@1.0.0.json +2040 -0
  209. package/lib/library-json.samples/uipath-atlassian-jira/get-issue@1.0.0.v1def.json +195 -0
  210. package/lib/library-json.samples/uipath-google-vertex/execute-google-vertex-agent@1.0.0.json +169 -0
  211. package/lib/library-json.samples/uipath-google-vertex/execute-google-vertex-agent@1.0.0.v1def.json +209 -0
  212. package/lib/library-json.samples/uipath-http-webhook/event-http-webhook@1.0.0.json +63 -0
  213. package/lib/library-json.samples/uipath-http-webhook/event-http-webhook@1.0.0.v1def.json +262 -0
  214. package/lib/library-json.samples/uipath-http-webhook/trigger-http-webhook@1.0.0.json +63 -0
  215. package/lib/library-json.samples/uipath-http-webhook/trigger-http-webhook@1.0.0.v1def.json +213 -0
  216. package/lib/library-json.samples/uipath-microsoft-azureactivedirectory/list-groups@1.0.0.json +227 -0
  217. package/lib/library-json.samples/uipath-microsoft-azureactivedirectory/list-groups@1.0.0.v1def.json +373 -0
  218. package/lib/library-json.samples/uipath-microsoft-onedrive/event-file-created@1.0.0.json +116 -0
  219. package/lib/library-json.samples/uipath-microsoft-onedrive/event-file-created@1.0.0.v1def.json +369 -0
  220. package/lib/library-json.samples/uipath-microsoft-onedrive/event-list-item-added@1.0.0.json +56 -0
  221. package/lib/library-json.samples/uipath-microsoft-onedrive/event-list-item-added@1.0.0.v1def.json +256 -0
  222. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-file-created@1.0.0.json +116 -0
  223. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-file-created@1.0.0.v1def.json +320 -0
  224. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-list-item-added@1.0.0.json +56 -0
  225. package/lib/library-json.samples/uipath-microsoft-onedrive/trigger-list-item-added@1.0.0.v1def.json +207 -0
  226. package/lib/library-json.samples/uipath-microsoft-outlook365/event-email-received@1.0.0.json +107 -0
  227. package/lib/library-json.samples/uipath-microsoft-outlook365/event-email-received@1.0.0.v1def.json +264 -0
  228. package/lib/library-json.samples/uipath-microsoft-outlook365/send-email@1.0.0.json +142 -0
  229. package/lib/library-json.samples/uipath-microsoft-outlook365/send-email@1.0.0.v1def.json +306 -0
  230. package/lib/library-json.samples/uipath-microsoft-outlook365/trigger-email-received@1.0.0.json +107 -0
  231. package/lib/library-json.samples/uipath-microsoft-outlook365/trigger-email-received@1.0.0.v1def.json +217 -0
  232. package/lib/library-json.samples/uipath-microsoft-powerautomate/invoke-a-microsoft-power-automate-flow@1.0.0.json +85 -0
  233. package/lib/library-json.samples/uipath-microsoft-powerautomate/invoke-a-microsoft-power-automate-flow@1.0.0.v1def.json +209 -0
  234. package/lib/library-json.samples/uipath-salesforce-slack/send-message-to-user@1.0.0.json +755 -0
  235. package/lib/library-json.samples/uipath-salesforce-slack/send-message-to-user@1.0.0.v1def.json +513 -0
  236. package/lib/library-json.samples/uipath-uipath-dataservice/query-entity-records@1.0.0.json +122 -0
  237. package/lib/library-json.samples/uipath-uipath-dataservice/query-entity-records@1.0.0.v1def.json +227 -0
  238. package/package.json +85 -0
@@ -0,0 +1,1869 @@
1
+ {
2
+ "//": [
3
+ "GENERATED by scripts/materialize-bpmn-registry.mjs — do not hand-edit.",
4
+ "The Maestro BPMN registry, trimmed to what the SDK emits from. Committed so",
5
+ "the SDK compiles offline and so a spec change is a reviewable diff.",
6
+ "Refresh: node scripts/materialize-bpmn-registry.mjs (needs `uip`, pulls --force)."
7
+ ],
8
+ "provenance": {
9
+ "typeCount": 30,
10
+ "uipVersion": "1.201.0-preview.122"
11
+ },
12
+ "types": {
13
+ "A2A.AgentExecution": {
14
+ "element": "bpmn:ServiceTask",
15
+ "tag": "uipath:activity",
16
+ "inputPattern": "mergedBody",
17
+ "inputName": "body",
18
+ "inputTarget": "body",
19
+ "context": [],
20
+ "inputs": [
21
+ {
22
+ "name": "agentUrl",
23
+ "displayName": "Agent URL",
24
+ "type": "string",
25
+ "required": true,
26
+ "hidden": false,
27
+ "target": null,
28
+ "default": null
29
+ },
30
+ {
31
+ "name": "skillId",
32
+ "displayName": "Skill ID",
33
+ "type": "string",
34
+ "required": true,
35
+ "hidden": false,
36
+ "target": null,
37
+ "default": null
38
+ },
39
+ {
40
+ "name": "input",
41
+ "displayName": "Input",
42
+ "type": "string",
43
+ "required": true,
44
+ "hidden": false,
45
+ "target": null,
46
+ "default": null
47
+ },
48
+ {
49
+ "name": "authToken",
50
+ "displayName": "Auth Token",
51
+ "type": "string",
52
+ "required": true,
53
+ "hidden": false,
54
+ "target": null,
55
+ "default": null
56
+ },
57
+ {
58
+ "name": "agentName",
59
+ "displayName": "Agent Name",
60
+ "type": "string",
61
+ "required": true,
62
+ "hidden": false,
63
+ "target": null,
64
+ "default": null
65
+ }
66
+ ],
67
+ "output": {
68
+ "name": "a2aResponse",
69
+ "type": "A2A.AgentExecution",
70
+ "source": null,
71
+ "relative": true
72
+ },
73
+ "eventDefinition": null,
74
+ "requiresDiscovery": false,
75
+ "bindingPattern": "none"
76
+ },
77
+ "Actions.HITL": {
78
+ "element": "bpmn:UserTask",
79
+ "tag": "uipath:activity",
80
+ "inputPattern": "mergedBody",
81
+ "inputName": "HitlTaskArguments",
82
+ "inputTarget": "bodyField",
83
+ "context": [
84
+ {
85
+ "name": "appId",
86
+ "displayName": null,
87
+ "type": "string",
88
+ "required": false,
89
+ "hidden": true,
90
+ "binding": false,
91
+ "default": null,
92
+ "bindingInfo": null
93
+ },
94
+ {
95
+ "name": "appVersion",
96
+ "displayName": null,
97
+ "type": "number",
98
+ "required": false,
99
+ "hidden": true,
100
+ "binding": false,
101
+ "default": null,
102
+ "bindingInfo": null
103
+ },
104
+ {
105
+ "name": "actions",
106
+ "displayName": null,
107
+ "type": "string",
108
+ "required": false,
109
+ "hidden": true,
110
+ "binding": false,
111
+ "default": null,
112
+ "bindingInfo": null
113
+ },
114
+ {
115
+ "name": "key",
116
+ "displayName": null,
117
+ "type": "string",
118
+ "required": false,
119
+ "hidden": true,
120
+ "binding": false,
121
+ "default": null,
122
+ "bindingInfo": null
123
+ },
124
+ {
125
+ "name": "taskTitle",
126
+ "displayName": null,
127
+ "type": "string",
128
+ "required": false,
129
+ "hidden": false,
130
+ "binding": false,
131
+ "default": null,
132
+ "bindingInfo": null
133
+ }
134
+ ],
135
+ "inputs": [],
136
+ "output": {
137
+ "name": "Process response",
138
+ "type": "Actions.HITL",
139
+ "source": null,
140
+ "relative": true
141
+ },
142
+ "eventDefinition": null,
143
+ "requiresDiscovery": true,
144
+ "bindingPattern": "none"
145
+ },
146
+ "BPMN.ScriptTask": {
147
+ "element": "bpmn:ScriptTask",
148
+ "tag": "uipath:mapping",
149
+ "inputPattern": "scriptArgs",
150
+ "inputName": "args",
151
+ "inputTarget": "bodyField",
152
+ "context": [],
153
+ "inputs": [],
154
+ "output": null,
155
+ "eventDefinition": null,
156
+ "requiresDiscovery": false,
157
+ "bindingPattern": "none"
158
+ },
159
+ "BPMN.Variables": {
160
+ "element": "bpmn:Task",
161
+ "tag": "uipath:mapping",
162
+ "inputPattern": "none",
163
+ "inputName": null,
164
+ "inputTarget": null,
165
+ "context": [],
166
+ "inputs": [],
167
+ "output": null,
168
+ "eventDefinition": null,
169
+ "requiresDiscovery": false,
170
+ "bindingPattern": "none"
171
+ },
172
+ "Intsvc.ActivityExecution": {
173
+ "element": "bpmn:SendTask",
174
+ "tag": "uipath:activity",
175
+ "inputPattern": "separateInputs",
176
+ "inputName": "body",
177
+ "inputTarget": "body",
178
+ "context": [
179
+ {
180
+ "name": "activityConfigurationVersion",
181
+ "displayName": "Activity configuration version",
182
+ "type": "string",
183
+ "required": false,
184
+ "hidden": true,
185
+ "binding": false,
186
+ "default": "v1",
187
+ "bindingInfo": null
188
+ },
189
+ {
190
+ "name": "connectorKey",
191
+ "displayName": "Connector key",
192
+ "type": "string",
193
+ "required": true,
194
+ "hidden": true,
195
+ "binding": false,
196
+ "default": null,
197
+ "bindingInfo": null
198
+ },
199
+ {
200
+ "name": "connection",
201
+ "displayName": "Connection",
202
+ "type": "string",
203
+ "required": false,
204
+ "hidden": true,
205
+ "binding": true,
206
+ "default": null,
207
+ "bindingInfo": {
208
+ "resource": "Connection",
209
+ "propertyAttribute": "ConnectionId"
210
+ }
211
+ },
212
+ {
213
+ "name": "folderKey",
214
+ "displayName": "Folder key",
215
+ "type": "string",
216
+ "required": false,
217
+ "hidden": true,
218
+ "binding": true,
219
+ "default": null,
220
+ "bindingInfo": {
221
+ "resource": "Connection",
222
+ "propertyAttribute": "folderKey"
223
+ }
224
+ },
225
+ {
226
+ "name": "operation",
227
+ "displayName": "Operation",
228
+ "type": "string",
229
+ "required": true,
230
+ "hidden": true,
231
+ "binding": false,
232
+ "default": null,
233
+ "bindingInfo": null
234
+ },
235
+ {
236
+ "name": "objectName",
237
+ "displayName": "Object name",
238
+ "type": "string",
239
+ "required": true,
240
+ "hidden": true,
241
+ "binding": false,
242
+ "default": null,
243
+ "bindingInfo": null
244
+ },
245
+ {
246
+ "name": "method",
247
+ "displayName": "Method",
248
+ "type": "string",
249
+ "required": true,
250
+ "hidden": true,
251
+ "binding": false,
252
+ "default": null,
253
+ "bindingInfo": null
254
+ },
255
+ {
256
+ "name": "path",
257
+ "displayName": "Path",
258
+ "type": "string",
259
+ "required": true,
260
+ "hidden": true,
261
+ "binding": false,
262
+ "default": null,
263
+ "bindingInfo": null
264
+ },
265
+ {
266
+ "name": "metadata",
267
+ "displayName": "Metadata",
268
+ "type": "json",
269
+ "required": false,
270
+ "hidden": true,
271
+ "binding": false,
272
+ "default": {},
273
+ "bindingInfo": null
274
+ }
275
+ ],
276
+ "inputs": [],
277
+ "output": {
278
+ "name": "response",
279
+ "type": "jsonSchema",
280
+ "source": "=response",
281
+ "relative": false
282
+ },
283
+ "eventDefinition": null,
284
+ "requiresDiscovery": true,
285
+ "bindingPattern": "connection"
286
+ },
287
+ "Intsvc.AsyncAgentExecution": {
288
+ "element": "bpmn:ServiceTask",
289
+ "tag": "uipath:activity",
290
+ "inputPattern": "separateInputs",
291
+ "inputName": "body",
292
+ "inputTarget": "body",
293
+ "context": [
294
+ {
295
+ "name": "activity",
296
+ "displayName": "Activity",
297
+ "type": "string",
298
+ "required": true,
299
+ "hidden": false,
300
+ "binding": false,
301
+ "default": null,
302
+ "bindingInfo": null
303
+ },
304
+ {
305
+ "name": "connectorKey",
306
+ "displayName": "Connector key",
307
+ "type": "string",
308
+ "required": false,
309
+ "hidden": true,
310
+ "binding": false,
311
+ "default": null,
312
+ "bindingInfo": null
313
+ },
314
+ {
315
+ "name": "connection",
316
+ "displayName": "Connection",
317
+ "type": "string",
318
+ "required": false,
319
+ "hidden": true,
320
+ "binding": true,
321
+ "default": null,
322
+ "bindingInfo": null
323
+ },
324
+ {
325
+ "name": "folderKey",
326
+ "displayName": "Folder key",
327
+ "type": "string",
328
+ "required": false,
329
+ "hidden": true,
330
+ "binding": false,
331
+ "default": null,
332
+ "bindingInfo": null
333
+ },
334
+ {
335
+ "name": "method",
336
+ "displayName": "Method",
337
+ "type": "string",
338
+ "required": false,
339
+ "hidden": true,
340
+ "binding": false,
341
+ "default": null,
342
+ "bindingInfo": null
343
+ },
344
+ {
345
+ "name": "path",
346
+ "displayName": "Path",
347
+ "type": "string",
348
+ "required": false,
349
+ "hidden": true,
350
+ "binding": false,
351
+ "default": null,
352
+ "bindingInfo": null
353
+ }
354
+ ],
355
+ "inputs": [],
356
+ "output": {
357
+ "name": "response",
358
+ "type": "custom",
359
+ "source": ".",
360
+ "relative": false
361
+ },
362
+ "eventDefinition": null,
363
+ "requiresDiscovery": true,
364
+ "bindingPattern": "connection"
365
+ },
366
+ "Intsvc.AsyncExecution": {
367
+ "element": "bpmn:ServiceTask",
368
+ "tag": "uipath:activity",
369
+ "inputPattern": "separateInputs",
370
+ "inputName": "body",
371
+ "inputTarget": "body",
372
+ "context": [
373
+ {
374
+ "name": "activity",
375
+ "displayName": "Activity",
376
+ "type": "string",
377
+ "required": true,
378
+ "hidden": false,
379
+ "binding": false,
380
+ "default": null,
381
+ "bindingInfo": null
382
+ },
383
+ {
384
+ "name": "connectorKey",
385
+ "displayName": "Connector key",
386
+ "type": "string",
387
+ "required": false,
388
+ "hidden": true,
389
+ "binding": false,
390
+ "default": null,
391
+ "bindingInfo": null
392
+ },
393
+ {
394
+ "name": "connection",
395
+ "displayName": "Connection",
396
+ "type": "string",
397
+ "required": false,
398
+ "hidden": true,
399
+ "binding": true,
400
+ "default": null,
401
+ "bindingInfo": null
402
+ },
403
+ {
404
+ "name": "folderKey",
405
+ "displayName": "Folder key",
406
+ "type": "string",
407
+ "required": false,
408
+ "hidden": true,
409
+ "binding": false,
410
+ "default": null,
411
+ "bindingInfo": null
412
+ },
413
+ {
414
+ "name": "method",
415
+ "displayName": "Method",
416
+ "type": "string",
417
+ "required": false,
418
+ "hidden": true,
419
+ "binding": false,
420
+ "default": null,
421
+ "bindingInfo": null
422
+ },
423
+ {
424
+ "name": "path",
425
+ "displayName": "Path",
426
+ "type": "string",
427
+ "required": false,
428
+ "hidden": true,
429
+ "binding": false,
430
+ "default": null,
431
+ "bindingInfo": null
432
+ }
433
+ ],
434
+ "inputs": [],
435
+ "output": {
436
+ "name": "response",
437
+ "type": "custom",
438
+ "source": ".",
439
+ "relative": false
440
+ },
441
+ "eventDefinition": null,
442
+ "requiresDiscovery": true,
443
+ "bindingPattern": "connection"
444
+ },
445
+ "Intsvc.AsyncWorkflowExecution": {
446
+ "element": "bpmn:ServiceTask",
447
+ "tag": "uipath:activity",
448
+ "inputPattern": "separateInputs",
449
+ "inputName": "body",
450
+ "inputTarget": "body",
451
+ "context": [
452
+ {
453
+ "name": "activity",
454
+ "displayName": "Activity",
455
+ "type": "string",
456
+ "required": true,
457
+ "hidden": false,
458
+ "binding": false,
459
+ "default": null,
460
+ "bindingInfo": null
461
+ },
462
+ {
463
+ "name": "connectorKey",
464
+ "displayName": "Connector key",
465
+ "type": "string",
466
+ "required": false,
467
+ "hidden": true,
468
+ "binding": false,
469
+ "default": null,
470
+ "bindingInfo": null
471
+ },
472
+ {
473
+ "name": "connection",
474
+ "displayName": "Connection",
475
+ "type": "string",
476
+ "required": false,
477
+ "hidden": true,
478
+ "binding": true,
479
+ "default": null,
480
+ "bindingInfo": null
481
+ },
482
+ {
483
+ "name": "folderKey",
484
+ "displayName": "Folder key",
485
+ "type": "string",
486
+ "required": false,
487
+ "hidden": true,
488
+ "binding": false,
489
+ "default": null,
490
+ "bindingInfo": null
491
+ },
492
+ {
493
+ "name": "method",
494
+ "displayName": "Method",
495
+ "type": "string",
496
+ "required": false,
497
+ "hidden": true,
498
+ "binding": false,
499
+ "default": null,
500
+ "bindingInfo": null
501
+ },
502
+ {
503
+ "name": "path",
504
+ "displayName": "Path",
505
+ "type": "string",
506
+ "required": false,
507
+ "hidden": true,
508
+ "binding": false,
509
+ "default": null,
510
+ "bindingInfo": null
511
+ }
512
+ ],
513
+ "inputs": [],
514
+ "output": {
515
+ "name": "response",
516
+ "type": "custom",
517
+ "source": ".",
518
+ "relative": false
519
+ },
520
+ "eventDefinition": null,
521
+ "requiresDiscovery": true,
522
+ "bindingPattern": "connection"
523
+ },
524
+ "Intsvc.EventTrigger": {
525
+ "element": "bpmn:StartEvent",
526
+ "tag": "uipath:event",
527
+ "inputPattern": "separateInputs",
528
+ "inputName": null,
529
+ "inputTarget": null,
530
+ "context": [],
531
+ "inputs": [
532
+ {
533
+ "name": "connectionId",
534
+ "displayName": "Connection ID",
535
+ "type": "string",
536
+ "required": true,
537
+ "hidden": false,
538
+ "target": null,
539
+ "default": null
540
+ },
541
+ {
542
+ "name": "connectorKey",
543
+ "displayName": "Connector key",
544
+ "type": "string",
545
+ "required": true,
546
+ "hidden": false,
547
+ "target": null,
548
+ "default": null
549
+ },
550
+ {
551
+ "name": "folderId",
552
+ "displayName": "Folder ID",
553
+ "type": "string",
554
+ "required": true,
555
+ "hidden": false,
556
+ "target": null,
557
+ "default": null
558
+ },
559
+ {
560
+ "name": "folderPath",
561
+ "displayName": "Folder path",
562
+ "type": "string",
563
+ "required": true,
564
+ "hidden": false,
565
+ "target": null,
566
+ "default": null
567
+ },
568
+ {
569
+ "name": "folderKey",
570
+ "displayName": "Folder key",
571
+ "type": "string",
572
+ "required": true,
573
+ "hidden": false,
574
+ "target": null,
575
+ "default": null
576
+ },
577
+ {
578
+ "name": "operation",
579
+ "displayName": "Operation",
580
+ "type": "string",
581
+ "required": true,
582
+ "hidden": true,
583
+ "target": null,
584
+ "default": null
585
+ },
586
+ {
587
+ "name": "objectName",
588
+ "displayName": "Object name",
589
+ "type": "string",
590
+ "required": true,
591
+ "hidden": true,
592
+ "target": null,
593
+ "default": null
594
+ },
595
+ {
596
+ "name": "filter",
597
+ "displayName": "Filter",
598
+ "type": "object",
599
+ "required": false,
600
+ "hidden": false,
601
+ "target": null,
602
+ "default": {}
603
+ },
604
+ {
605
+ "name": "parameters",
606
+ "displayName": "Parameters",
607
+ "type": "object",
608
+ "required": false,
609
+ "hidden": false,
610
+ "target": null,
611
+ "default": {}
612
+ }
613
+ ],
614
+ "output": {
615
+ "name": "result",
616
+ "type": "custom",
617
+ "source": ".",
618
+ "relative": false
619
+ },
620
+ "eventDefinition": "bpmn:messageEventDefinition",
621
+ "requiresDiscovery": true,
622
+ "bindingPattern": "connection"
623
+ },
624
+ "Intsvc.HttpExecution": {
625
+ "element": "bpmn:SendTask",
626
+ "tag": "uipath:activity",
627
+ "inputPattern": "none",
628
+ "inputName": null,
629
+ "inputTarget": null,
630
+ "context": [
631
+ {
632
+ "name": "mode",
633
+ "displayName": "Mode",
634
+ "type": "string",
635
+ "required": true,
636
+ "hidden": true,
637
+ "binding": false,
638
+ "default": "manual",
639
+ "bindingInfo": null
640
+ },
641
+ {
642
+ "name": "method",
643
+ "displayName": "HTTP Method",
644
+ "type": "string",
645
+ "required": true,
646
+ "hidden": false,
647
+ "binding": false,
648
+ "default": "GET",
649
+ "bindingInfo": null
650
+ },
651
+ {
652
+ "name": "url",
653
+ "displayName": "URL",
654
+ "type": "string",
655
+ "required": true,
656
+ "hidden": false,
657
+ "binding": true,
658
+ "default": "",
659
+ "bindingInfo": null
660
+ },
661
+ {
662
+ "name": "headers",
663
+ "displayName": "Headers",
664
+ "type": "json",
665
+ "required": false,
666
+ "hidden": false,
667
+ "binding": true,
668
+ "default": "{}",
669
+ "bindingInfo": null
670
+ },
671
+ {
672
+ "name": "parameters",
673
+ "displayName": "Query Parameters",
674
+ "type": "json",
675
+ "required": false,
676
+ "hidden": false,
677
+ "binding": true,
678
+ "default": "{}",
679
+ "bindingInfo": null
680
+ },
681
+ {
682
+ "name": "body",
683
+ "displayName": "Request Body",
684
+ "type": "json",
685
+ "required": false,
686
+ "hidden": false,
687
+ "binding": true,
688
+ "default": "null",
689
+ "bindingInfo": null
690
+ }
691
+ ],
692
+ "inputs": [],
693
+ "output": {
694
+ "name": "response",
695
+ "type": "jsonSchema",
696
+ "source": "=response",
697
+ "relative": false
698
+ },
699
+ "eventDefinition": null,
700
+ "requiresDiscovery": false,
701
+ "bindingPattern": "none"
702
+ },
703
+ "Intsvc.SyncAgentExecution": {
704
+ "element": "bpmn:ServiceTask",
705
+ "tag": "uipath:activity",
706
+ "inputPattern": "separateInputs",
707
+ "inputName": "body",
708
+ "inputTarget": "body",
709
+ "context": [
710
+ {
711
+ "name": "activity",
712
+ "displayName": "Activity",
713
+ "type": "string",
714
+ "required": true,
715
+ "hidden": false,
716
+ "binding": false,
717
+ "default": null,
718
+ "bindingInfo": null
719
+ },
720
+ {
721
+ "name": "connectorKey",
722
+ "displayName": "Connector key",
723
+ "type": "string",
724
+ "required": false,
725
+ "hidden": true,
726
+ "binding": false,
727
+ "default": null,
728
+ "bindingInfo": null
729
+ },
730
+ {
731
+ "name": "connection",
732
+ "displayName": "Connection",
733
+ "type": "string",
734
+ "required": false,
735
+ "hidden": true,
736
+ "binding": true,
737
+ "default": null,
738
+ "bindingInfo": null
739
+ },
740
+ {
741
+ "name": "folderKey",
742
+ "displayName": "Folder key",
743
+ "type": "string",
744
+ "required": false,
745
+ "hidden": true,
746
+ "binding": false,
747
+ "default": null,
748
+ "bindingInfo": null
749
+ },
750
+ {
751
+ "name": "method",
752
+ "displayName": "Method",
753
+ "type": "string",
754
+ "required": false,
755
+ "hidden": true,
756
+ "binding": false,
757
+ "default": null,
758
+ "bindingInfo": null
759
+ },
760
+ {
761
+ "name": "path",
762
+ "displayName": "Path",
763
+ "type": "string",
764
+ "required": false,
765
+ "hidden": true,
766
+ "binding": false,
767
+ "default": null,
768
+ "bindingInfo": null
769
+ }
770
+ ],
771
+ "inputs": [],
772
+ "output": {
773
+ "name": "response",
774
+ "type": "custom",
775
+ "source": ".",
776
+ "relative": false
777
+ },
778
+ "eventDefinition": null,
779
+ "requiresDiscovery": true,
780
+ "bindingPattern": "connection"
781
+ },
782
+ "Intsvc.SyncWorkflowExecution": {
783
+ "element": "bpmn:ServiceTask",
784
+ "tag": "uipath:activity",
785
+ "inputPattern": "separateInputs",
786
+ "inputName": "body",
787
+ "inputTarget": "body",
788
+ "context": [
789
+ {
790
+ "name": "activity",
791
+ "displayName": "Activity",
792
+ "type": "string",
793
+ "required": true,
794
+ "hidden": false,
795
+ "binding": false,
796
+ "default": null,
797
+ "bindingInfo": null
798
+ },
799
+ {
800
+ "name": "connectorKey",
801
+ "displayName": "Connector key",
802
+ "type": "string",
803
+ "required": false,
804
+ "hidden": true,
805
+ "binding": false,
806
+ "default": null,
807
+ "bindingInfo": null
808
+ },
809
+ {
810
+ "name": "connection",
811
+ "displayName": "Connection",
812
+ "type": "string",
813
+ "required": false,
814
+ "hidden": true,
815
+ "binding": true,
816
+ "default": null,
817
+ "bindingInfo": null
818
+ },
819
+ {
820
+ "name": "folderKey",
821
+ "displayName": "Folder key",
822
+ "type": "string",
823
+ "required": false,
824
+ "hidden": true,
825
+ "binding": false,
826
+ "default": null,
827
+ "bindingInfo": null
828
+ },
829
+ {
830
+ "name": "method",
831
+ "displayName": "Method",
832
+ "type": "string",
833
+ "required": false,
834
+ "hidden": true,
835
+ "binding": false,
836
+ "default": null,
837
+ "bindingInfo": null
838
+ },
839
+ {
840
+ "name": "path",
841
+ "displayName": "Path",
842
+ "type": "string",
843
+ "required": false,
844
+ "hidden": true,
845
+ "binding": false,
846
+ "default": null,
847
+ "bindingInfo": null
848
+ }
849
+ ],
850
+ "inputs": [],
851
+ "output": {
852
+ "name": "response",
853
+ "type": "custom",
854
+ "source": ".",
855
+ "relative": false
856
+ },
857
+ "eventDefinition": null,
858
+ "requiresDiscovery": true,
859
+ "bindingPattern": "connection"
860
+ },
861
+ "Intsvc.TimerTrigger": {
862
+ "element": "bpmn:StartEvent",
863
+ "tag": "uipath:activity",
864
+ "inputPattern": "none",
865
+ "inputName": null,
866
+ "inputTarget": null,
867
+ "context": [],
868
+ "inputs": [],
869
+ "output": {
870
+ "name": "result",
871
+ "type": "custom",
872
+ "source": ".",
873
+ "relative": false
874
+ },
875
+ "eventDefinition": "bpmn:timerEventDefinition",
876
+ "requiresDiscovery": false,
877
+ "bindingPattern": "none"
878
+ },
879
+ "Intsvc.UnifiedHttpRequest": {
880
+ "element": "bpmn:SendTask",
881
+ "tag": "uipath:activity",
882
+ "inputPattern": "separateInputs",
883
+ "inputName": null,
884
+ "inputTarget": null,
885
+ "context": [
886
+ {
887
+ "name": "mode",
888
+ "displayName": "Mode",
889
+ "type": "string",
890
+ "required": true,
891
+ "hidden": true,
892
+ "binding": false,
893
+ "default": "manual",
894
+ "bindingInfo": null
895
+ },
896
+ {
897
+ "name": "method",
898
+ "displayName": "HTTP Method",
899
+ "type": "string",
900
+ "required": true,
901
+ "hidden": false,
902
+ "binding": false,
903
+ "default": "GET",
904
+ "bindingInfo": null
905
+ },
906
+ {
907
+ "name": "url",
908
+ "displayName": "URL",
909
+ "type": "string",
910
+ "required": true,
911
+ "hidden": false,
912
+ "binding": true,
913
+ "default": "",
914
+ "bindingInfo": null
915
+ },
916
+ {
917
+ "name": "headers",
918
+ "displayName": "Headers",
919
+ "type": "json",
920
+ "required": false,
921
+ "hidden": false,
922
+ "binding": true,
923
+ "default": "{}",
924
+ "bindingInfo": null
925
+ },
926
+ {
927
+ "name": "parameters",
928
+ "displayName": "Query Parameters",
929
+ "type": "json",
930
+ "required": false,
931
+ "hidden": false,
932
+ "binding": true,
933
+ "default": "{}",
934
+ "bindingInfo": null
935
+ },
936
+ {
937
+ "name": "body",
938
+ "displayName": "Request Body",
939
+ "type": "json",
940
+ "required": false,
941
+ "hidden": false,
942
+ "binding": true,
943
+ "default": "null",
944
+ "bindingInfo": null
945
+ }
946
+ ],
947
+ "inputs": [],
948
+ "output": {
949
+ "name": "response",
950
+ "type": "jsonSchema",
951
+ "source": "=response",
952
+ "relative": false
953
+ },
954
+ "eventDefinition": null,
955
+ "requiresDiscovery": false,
956
+ "bindingPattern": "none"
957
+ },
958
+ "Intsvc.WaitForEvent": {
959
+ "element": "bpmn:ReceiveTask",
960
+ "tag": "uipath:event",
961
+ "inputPattern": "separateInputs",
962
+ "inputName": null,
963
+ "inputTarget": null,
964
+ "context": [],
965
+ "inputs": [
966
+ {
967
+ "name": "connectionId",
968
+ "displayName": "Connection ID",
969
+ "type": "string",
970
+ "required": true,
971
+ "hidden": false,
972
+ "target": null,
973
+ "default": null
974
+ },
975
+ {
976
+ "name": "connectorKey",
977
+ "displayName": "Connector key",
978
+ "type": "string",
979
+ "required": true,
980
+ "hidden": false,
981
+ "target": null,
982
+ "default": null
983
+ },
984
+ {
985
+ "name": "folderId",
986
+ "displayName": "Folder ID",
987
+ "type": "string",
988
+ "required": true,
989
+ "hidden": false,
990
+ "target": null,
991
+ "default": null
992
+ },
993
+ {
994
+ "name": "folderPath",
995
+ "displayName": "Folder path",
996
+ "type": "string",
997
+ "required": true,
998
+ "hidden": false,
999
+ "target": null,
1000
+ "default": null
1001
+ },
1002
+ {
1003
+ "name": "folderKey",
1004
+ "displayName": "Folder key",
1005
+ "type": "string",
1006
+ "required": true,
1007
+ "hidden": false,
1008
+ "target": null,
1009
+ "default": null
1010
+ },
1011
+ {
1012
+ "name": "operation",
1013
+ "displayName": "Operation",
1014
+ "type": "string",
1015
+ "required": true,
1016
+ "hidden": true,
1017
+ "target": null,
1018
+ "default": null
1019
+ },
1020
+ {
1021
+ "name": "objectName",
1022
+ "displayName": "Object name",
1023
+ "type": "string",
1024
+ "required": true,
1025
+ "hidden": true,
1026
+ "target": null,
1027
+ "default": null
1028
+ },
1029
+ {
1030
+ "name": "filter",
1031
+ "displayName": "Filter",
1032
+ "type": "object",
1033
+ "required": false,
1034
+ "hidden": false,
1035
+ "target": null,
1036
+ "default": {}
1037
+ },
1038
+ {
1039
+ "name": "parameters",
1040
+ "displayName": "Parameters",
1041
+ "type": "object",
1042
+ "required": false,
1043
+ "hidden": false,
1044
+ "target": null,
1045
+ "default": {}
1046
+ }
1047
+ ],
1048
+ "output": {
1049
+ "name": "result",
1050
+ "type": "custom",
1051
+ "source": ".",
1052
+ "relative": false
1053
+ },
1054
+ "eventDefinition": null,
1055
+ "requiresDiscovery": true,
1056
+ "bindingPattern": "connection"
1057
+ },
1058
+ "Maestro.CaseManagerGuardrails": {
1059
+ "element": "bpmn:ServiceTask",
1060
+ "tag": "uipath:activity",
1061
+ "inputPattern": "mergedBody",
1062
+ "inputName": "body",
1063
+ "inputTarget": "body",
1064
+ "context": [
1065
+ {
1066
+ "name": "decisions",
1067
+ "displayName": "Decisions",
1068
+ "type": "json",
1069
+ "required": true,
1070
+ "hidden": false,
1071
+ "binding": false,
1072
+ "default": null,
1073
+ "bindingInfo": null
1074
+ },
1075
+ {
1076
+ "name": "_label",
1077
+ "displayName": null,
1078
+ "type": "string",
1079
+ "required": false,
1080
+ "hidden": true,
1081
+ "binding": false,
1082
+ "default": null,
1083
+ "bindingInfo": null
1084
+ }
1085
+ ],
1086
+ "inputs": [],
1087
+ "output": {
1088
+ "name": "guardrailsOutput",
1089
+ "type": "Maestro.CaseManagerGuardrails",
1090
+ "source": null,
1091
+ "relative": true
1092
+ },
1093
+ "eventDefinition": null,
1094
+ "requiresDiscovery": false,
1095
+ "bindingPattern": "none"
1096
+ },
1097
+ "Maestro.CaseRulesEvaluator": {
1098
+ "element": "bpmn:ServiceTask",
1099
+ "tag": "uipath:activity",
1100
+ "inputPattern": "mergedBody",
1101
+ "inputName": "caseManagerInput",
1102
+ "inputTarget": "body",
1103
+ "context": [
1104
+ {
1105
+ "name": "caseDeterministicRules",
1106
+ "displayName": "Case deterministic rules",
1107
+ "type": "json",
1108
+ "required": true,
1109
+ "hidden": false,
1110
+ "binding": false,
1111
+ "default": null,
1112
+ "bindingInfo": null
1113
+ },
1114
+ {
1115
+ "name": "caseCurrentExecutionState",
1116
+ "displayName": "Case current execution state",
1117
+ "type": "json",
1118
+ "required": true,
1119
+ "hidden": false,
1120
+ "binding": false,
1121
+ "default": null,
1122
+ "bindingInfo": null
1123
+ },
1124
+ {
1125
+ "name": "_label",
1126
+ "displayName": null,
1127
+ "type": "string",
1128
+ "required": false,
1129
+ "hidden": true,
1130
+ "binding": false,
1131
+ "default": null,
1132
+ "bindingInfo": null
1133
+ }
1134
+ ],
1135
+ "inputs": [],
1136
+ "output": {
1137
+ "name": "schedulerOutput",
1138
+ "type": "Maestro.CaseRulesEvaluator",
1139
+ "source": null,
1140
+ "relative": true
1141
+ },
1142
+ "eventDefinition": null,
1143
+ "requiresDiscovery": false,
1144
+ "bindingPattern": "none"
1145
+ },
1146
+ "Maestro.ReceiveMessageEvent": {
1147
+ "element": "bpmn:IntermediateCatchEvent",
1148
+ "tag": "uipath:event",
1149
+ "inputPattern": "separateInputs",
1150
+ "inputName": "ItemData",
1151
+ "inputTarget": "body",
1152
+ "context": [
1153
+ {
1154
+ "name": "name",
1155
+ "displayName": "Message name",
1156
+ "type": "string",
1157
+ "required": true,
1158
+ "hidden": false,
1159
+ "binding": false,
1160
+ "default": null,
1161
+ "bindingInfo": null
1162
+ },
1163
+ {
1164
+ "name": "_label",
1165
+ "displayName": null,
1166
+ "type": "string",
1167
+ "required": false,
1168
+ "hidden": true,
1169
+ "binding": false,
1170
+ "default": null,
1171
+ "bindingInfo": null
1172
+ }
1173
+ ],
1174
+ "inputs": [
1175
+ {
1176
+ "name": "Reference",
1177
+ "displayName": "Reference",
1178
+ "type": "string",
1179
+ "required": true,
1180
+ "hidden": false,
1181
+ "target": "bodyField",
1182
+ "default": null
1183
+ }
1184
+ ],
1185
+ "output": {
1186
+ "name": "response",
1187
+ "type": "Maestro.ReceiveMessageEvent",
1188
+ "source": null,
1189
+ "relative": true
1190
+ },
1191
+ "eventDefinition": "bpmn:messageEventDefinition",
1192
+ "requiresDiscovery": false,
1193
+ "bindingPattern": "none"
1194
+ },
1195
+ "Maestro.SendMessageEvent": {
1196
+ "element": "bpmn:IntermediateThrowEvent",
1197
+ "tag": "uipath:event",
1198
+ "inputPattern": "splitInputsItemData",
1199
+ "inputName": "ItemData",
1200
+ "inputTarget": "body",
1201
+ "context": [
1202
+ {
1203
+ "name": "name",
1204
+ "displayName": "Message name",
1205
+ "type": "string",
1206
+ "required": true,
1207
+ "hidden": false,
1208
+ "binding": false,
1209
+ "default": null,
1210
+ "bindingInfo": null
1211
+ },
1212
+ {
1213
+ "name": "_label",
1214
+ "displayName": null,
1215
+ "type": "string",
1216
+ "required": false,
1217
+ "hidden": true,
1218
+ "binding": false,
1219
+ "default": null,
1220
+ "bindingInfo": null
1221
+ },
1222
+ {
1223
+ "name": "inputSchema",
1224
+ "displayName": "Input schema",
1225
+ "type": "jsonSchema",
1226
+ "required": true,
1227
+ "hidden": true,
1228
+ "binding": false,
1229
+ "default": null,
1230
+ "bindingInfo": null
1231
+ }
1232
+ ],
1233
+ "inputs": [
1234
+ {
1235
+ "name": "Reference",
1236
+ "displayName": "Reference",
1237
+ "type": "string",
1238
+ "required": true,
1239
+ "hidden": false,
1240
+ "target": "body",
1241
+ "default": null
1242
+ },
1243
+ {
1244
+ "name": "SpecificContent",
1245
+ "displayName": "Item information",
1246
+ "type": "json",
1247
+ "required": false,
1248
+ "hidden": false,
1249
+ "target": "body",
1250
+ "default": null
1251
+ },
1252
+ {
1253
+ "name": "TimeToLive",
1254
+ "displayName": "Time to live",
1255
+ "type": "duration",
1256
+ "required": false,
1257
+ "hidden": false,
1258
+ "target": "body",
1259
+ "default": null
1260
+ }
1261
+ ],
1262
+ "output": {
1263
+ "name": "response",
1264
+ "type": "Maestro.SendMessageEvent",
1265
+ "source": null,
1266
+ "relative": true
1267
+ },
1268
+ "eventDefinition": "bpmn:messageEventDefinition",
1269
+ "requiresDiscovery": false,
1270
+ "bindingPattern": "none"
1271
+ },
1272
+ "Orchestrator.BusinessRules": {
1273
+ "element": "bpmn:BusinessRuleTask",
1274
+ "tag": "uipath:activity",
1275
+ "inputPattern": "mergedBody",
1276
+ "inputName": "JobArguments",
1277
+ "inputTarget": "bodyField",
1278
+ "context": [
1279
+ {
1280
+ "name": "releaseKey",
1281
+ "displayName": "Process",
1282
+ "type": "string",
1283
+ "required": false,
1284
+ "hidden": true,
1285
+ "binding": false,
1286
+ "default": null,
1287
+ "bindingInfo": {
1288
+ "resource": "process",
1289
+ "propertyAttribute": "Key"
1290
+ }
1291
+ },
1292
+ {
1293
+ "name": "folderId",
1294
+ "displayName": null,
1295
+ "type": "string",
1296
+ "required": false,
1297
+ "hidden": true,
1298
+ "binding": false,
1299
+ "default": null,
1300
+ "bindingInfo": null
1301
+ },
1302
+ {
1303
+ "name": "folderPath",
1304
+ "displayName": null,
1305
+ "type": "string",
1306
+ "required": false,
1307
+ "hidden": true,
1308
+ "binding": false,
1309
+ "default": null,
1310
+ "bindingInfo": null
1311
+ },
1312
+ {
1313
+ "name": "name",
1314
+ "displayName": null,
1315
+ "type": "string",
1316
+ "required": false,
1317
+ "hidden": true,
1318
+ "binding": false,
1319
+ "default": null,
1320
+ "bindingInfo": null
1321
+ }
1322
+ ],
1323
+ "inputs": [],
1324
+ "output": {
1325
+ "name": "Execute business rule [Preview]",
1326
+ "type": "Orchestrator.BusinessRules",
1327
+ "source": null,
1328
+ "relative": true
1329
+ },
1330
+ "eventDefinition": null,
1331
+ "requiresDiscovery": true,
1332
+ "bindingPattern": "businessRule"
1333
+ },
1334
+ "Orchestrator.CreateAndWaitForQueueItem": {
1335
+ "element": "bpmn:ServiceTask",
1336
+ "tag": "uipath:activity",
1337
+ "inputPattern": "mergedBody",
1338
+ "inputName": "ItemData",
1339
+ "inputTarget": "body",
1340
+ "context": [
1341
+ {
1342
+ "name": "queueName",
1343
+ "displayName": "Queue name",
1344
+ "type": "string",
1345
+ "required": false,
1346
+ "hidden": true,
1347
+ "binding": false,
1348
+ "default": null,
1349
+ "bindingInfo": {
1350
+ "resource": "queue",
1351
+ "propertyAttribute": "Key"
1352
+ }
1353
+ },
1354
+ {
1355
+ "name": "folderId",
1356
+ "displayName": null,
1357
+ "type": "string",
1358
+ "required": false,
1359
+ "hidden": true,
1360
+ "binding": false,
1361
+ "default": null,
1362
+ "bindingInfo": null
1363
+ },
1364
+ {
1365
+ "name": "folderPath",
1366
+ "displayName": null,
1367
+ "type": "string",
1368
+ "required": false,
1369
+ "hidden": true,
1370
+ "binding": false,
1371
+ "default": null,
1372
+ "bindingInfo": null
1373
+ }
1374
+ ],
1375
+ "inputs": [],
1376
+ "output": {
1377
+ "name": "response",
1378
+ "type": "Orchestrator.CreateQueueItem",
1379
+ "source": null,
1380
+ "relative": true
1381
+ },
1382
+ "eventDefinition": null,
1383
+ "requiresDiscovery": true,
1384
+ "bindingPattern": "queue"
1385
+ },
1386
+ "Orchestrator.CreateQueueItem": {
1387
+ "element": "bpmn:SendTask",
1388
+ "tag": "uipath:activity",
1389
+ "inputPattern": "mergedBody",
1390
+ "inputName": "ItemData",
1391
+ "inputTarget": "body",
1392
+ "context": [
1393
+ {
1394
+ "name": "queueName",
1395
+ "displayName": "Queue name",
1396
+ "type": "string",
1397
+ "required": false,
1398
+ "hidden": true,
1399
+ "binding": false,
1400
+ "default": null,
1401
+ "bindingInfo": {
1402
+ "resource": "queue",
1403
+ "propertyAttribute": "Key"
1404
+ }
1405
+ },
1406
+ {
1407
+ "name": "folderId",
1408
+ "displayName": null,
1409
+ "type": "string",
1410
+ "required": false,
1411
+ "hidden": true,
1412
+ "binding": false,
1413
+ "default": null,
1414
+ "bindingInfo": null
1415
+ },
1416
+ {
1417
+ "name": "folderPath",
1418
+ "displayName": null,
1419
+ "type": "string",
1420
+ "required": false,
1421
+ "hidden": true,
1422
+ "binding": false,
1423
+ "default": null,
1424
+ "bindingInfo": null
1425
+ }
1426
+ ],
1427
+ "inputs": [],
1428
+ "output": {
1429
+ "name": "response",
1430
+ "type": "Orchestrator.CreateQueueItem",
1431
+ "source": null,
1432
+ "relative": true
1433
+ },
1434
+ "eventDefinition": null,
1435
+ "requiresDiscovery": true,
1436
+ "bindingPattern": "queue"
1437
+ },
1438
+ "Orchestrator.ExecuteApiWorkflowAsync": {
1439
+ "element": "bpmn:ServiceTask",
1440
+ "tag": "uipath:activity",
1441
+ "inputPattern": "mergedBody",
1442
+ "inputName": "JobArguments",
1443
+ "inputTarget": "bodyField",
1444
+ "context": [
1445
+ {
1446
+ "name": "releaseKey",
1447
+ "displayName": "Process",
1448
+ "type": "string",
1449
+ "required": false,
1450
+ "hidden": true,
1451
+ "binding": false,
1452
+ "default": null,
1453
+ "bindingInfo": {
1454
+ "resource": "process",
1455
+ "propertyAttribute": "Key"
1456
+ }
1457
+ },
1458
+ {
1459
+ "name": "folderId",
1460
+ "displayName": null,
1461
+ "type": "string",
1462
+ "required": false,
1463
+ "hidden": true,
1464
+ "binding": false,
1465
+ "default": null,
1466
+ "bindingInfo": null
1467
+ },
1468
+ {
1469
+ "name": "folderPath",
1470
+ "displayName": null,
1471
+ "type": "string",
1472
+ "required": false,
1473
+ "hidden": true,
1474
+ "binding": false,
1475
+ "default": null,
1476
+ "bindingInfo": null
1477
+ },
1478
+ {
1479
+ "name": "name",
1480
+ "displayName": null,
1481
+ "type": "string",
1482
+ "required": false,
1483
+ "hidden": true,
1484
+ "binding": false,
1485
+ "default": null,
1486
+ "bindingInfo": null
1487
+ }
1488
+ ],
1489
+ "inputs": [],
1490
+ "output": {
1491
+ "name": "Process response",
1492
+ "type": "Orchestrator.RunJob",
1493
+ "source": null,
1494
+ "relative": true
1495
+ },
1496
+ "eventDefinition": null,
1497
+ "requiresDiscovery": true,
1498
+ "bindingPattern": "process"
1499
+ },
1500
+ "Orchestrator.StartAgentJob": {
1501
+ "element": "bpmn:ServiceTask",
1502
+ "tag": "uipath:activity",
1503
+ "inputPattern": "mergedBody",
1504
+ "inputName": "JobArguments",
1505
+ "inputTarget": "bodyField",
1506
+ "context": [
1507
+ {
1508
+ "name": "name",
1509
+ "displayName": "Agent",
1510
+ "type": "string",
1511
+ "required": true,
1512
+ "hidden": true,
1513
+ "binding": true,
1514
+ "default": null,
1515
+ "bindingInfo": {
1516
+ "resource": "process",
1517
+ "propertyAttribute": "name"
1518
+ }
1519
+ },
1520
+ {
1521
+ "name": "folderPath",
1522
+ "displayName": null,
1523
+ "type": "string",
1524
+ "required": true,
1525
+ "hidden": true,
1526
+ "binding": true,
1527
+ "default": null,
1528
+ "bindingInfo": {
1529
+ "resource": "process",
1530
+ "propertyAttribute": "folderPath"
1531
+ }
1532
+ }
1533
+ ],
1534
+ "inputs": [],
1535
+ "output": {
1536
+ "name": "Process response",
1537
+ "type": "Orchestrator.RunJob",
1538
+ "source": null,
1539
+ "relative": true
1540
+ },
1541
+ "eventDefinition": null,
1542
+ "requiresDiscovery": true,
1543
+ "bindingPattern": "process"
1544
+ },
1545
+ "Orchestrator.StartAgenticProcess": {
1546
+ "element": "bpmn:CallActivity",
1547
+ "tag": "uipath:activity",
1548
+ "inputPattern": "mergedBody",
1549
+ "inputName": "JobArguments",
1550
+ "inputTarget": "bodyField",
1551
+ "context": [
1552
+ {
1553
+ "name": "releaseKey",
1554
+ "displayName": "Process",
1555
+ "type": "string",
1556
+ "required": false,
1557
+ "hidden": true,
1558
+ "binding": false,
1559
+ "default": null,
1560
+ "bindingInfo": {
1561
+ "resource": "process",
1562
+ "propertyAttribute": "Key"
1563
+ }
1564
+ },
1565
+ {
1566
+ "name": "folderId",
1567
+ "displayName": null,
1568
+ "type": "string",
1569
+ "required": false,
1570
+ "hidden": true,
1571
+ "binding": false,
1572
+ "default": null,
1573
+ "bindingInfo": null
1574
+ },
1575
+ {
1576
+ "name": "folderPath",
1577
+ "displayName": null,
1578
+ "type": "string",
1579
+ "required": false,
1580
+ "hidden": true,
1581
+ "binding": false,
1582
+ "default": null,
1583
+ "bindingInfo": null
1584
+ },
1585
+ {
1586
+ "name": "name",
1587
+ "displayName": null,
1588
+ "type": "string",
1589
+ "required": false,
1590
+ "hidden": true,
1591
+ "binding": false,
1592
+ "default": null,
1593
+ "bindingInfo": null
1594
+ }
1595
+ ],
1596
+ "inputs": [],
1597
+ "output": {
1598
+ "name": "Process response",
1599
+ "type": "Orchestrator.RunJob",
1600
+ "source": null,
1601
+ "relative": true
1602
+ },
1603
+ "eventDefinition": null,
1604
+ "requiresDiscovery": true,
1605
+ "bindingPattern": "process"
1606
+ },
1607
+ "Orchestrator.StartAgenticProcessAsync": {
1608
+ "element": "bpmn:CallActivity",
1609
+ "tag": "uipath:activity",
1610
+ "inputPattern": "mergedBody",
1611
+ "inputName": "JobArguments",
1612
+ "inputTarget": "bodyField",
1613
+ "context": [
1614
+ {
1615
+ "name": "releaseKey",
1616
+ "displayName": "Process",
1617
+ "type": "string",
1618
+ "required": false,
1619
+ "hidden": true,
1620
+ "binding": false,
1621
+ "default": null,
1622
+ "bindingInfo": {
1623
+ "resource": "process",
1624
+ "propertyAttribute": "Key"
1625
+ }
1626
+ },
1627
+ {
1628
+ "name": "folderId",
1629
+ "displayName": null,
1630
+ "type": "string",
1631
+ "required": false,
1632
+ "hidden": true,
1633
+ "binding": false,
1634
+ "default": null,
1635
+ "bindingInfo": null
1636
+ },
1637
+ {
1638
+ "name": "folderPath",
1639
+ "displayName": null,
1640
+ "type": "string",
1641
+ "required": false,
1642
+ "hidden": true,
1643
+ "binding": false,
1644
+ "default": null,
1645
+ "bindingInfo": null
1646
+ },
1647
+ {
1648
+ "name": "name",
1649
+ "displayName": null,
1650
+ "type": "string",
1651
+ "required": false,
1652
+ "hidden": true,
1653
+ "binding": false,
1654
+ "default": null,
1655
+ "bindingInfo": null
1656
+ }
1657
+ ],
1658
+ "inputs": [],
1659
+ "output": {
1660
+ "name": "Process response",
1661
+ "type": "Orchestrator.RunJob",
1662
+ "source": null,
1663
+ "relative": true
1664
+ },
1665
+ "eventDefinition": null,
1666
+ "requiresDiscovery": true,
1667
+ "bindingPattern": "process"
1668
+ },
1669
+ "Orchestrator.StartCaseMgmtProcess": {
1670
+ "element": "bpmn:CallActivity",
1671
+ "tag": "uipath:activity",
1672
+ "inputPattern": "mergedBody",
1673
+ "inputName": "JobArguments",
1674
+ "inputTarget": "bodyField",
1675
+ "context": [
1676
+ {
1677
+ "name": "releaseKey",
1678
+ "displayName": "Process",
1679
+ "type": "string",
1680
+ "required": false,
1681
+ "hidden": true,
1682
+ "binding": false,
1683
+ "default": null,
1684
+ "bindingInfo": {
1685
+ "resource": "process",
1686
+ "propertyAttribute": "Key"
1687
+ }
1688
+ },
1689
+ {
1690
+ "name": "folderId",
1691
+ "displayName": null,
1692
+ "type": "string",
1693
+ "required": false,
1694
+ "hidden": true,
1695
+ "binding": false,
1696
+ "default": null,
1697
+ "bindingInfo": null
1698
+ },
1699
+ {
1700
+ "name": "folderPath",
1701
+ "displayName": null,
1702
+ "type": "string",
1703
+ "required": false,
1704
+ "hidden": true,
1705
+ "binding": false,
1706
+ "default": null,
1707
+ "bindingInfo": null
1708
+ },
1709
+ {
1710
+ "name": "name",
1711
+ "displayName": null,
1712
+ "type": "string",
1713
+ "required": false,
1714
+ "hidden": true,
1715
+ "binding": false,
1716
+ "default": null,
1717
+ "bindingInfo": null
1718
+ }
1719
+ ],
1720
+ "inputs": [],
1721
+ "output": {
1722
+ "name": "Process response",
1723
+ "type": "Orchestrator.RunJob",
1724
+ "source": null,
1725
+ "relative": true
1726
+ },
1727
+ "eventDefinition": null,
1728
+ "requiresDiscovery": true,
1729
+ "bindingPattern": "process"
1730
+ },
1731
+ "Orchestrator.StartCaseMgmtProcessAsync": {
1732
+ "element": "bpmn:CallActivity",
1733
+ "tag": "uipath:activity",
1734
+ "inputPattern": "mergedBody",
1735
+ "inputName": "JobArguments",
1736
+ "inputTarget": "bodyField",
1737
+ "context": [
1738
+ {
1739
+ "name": "releaseKey",
1740
+ "displayName": "Process",
1741
+ "type": "string",
1742
+ "required": false,
1743
+ "hidden": true,
1744
+ "binding": false,
1745
+ "default": null,
1746
+ "bindingInfo": {
1747
+ "resource": "process",
1748
+ "propertyAttribute": "Key"
1749
+ }
1750
+ },
1751
+ {
1752
+ "name": "folderId",
1753
+ "displayName": null,
1754
+ "type": "string",
1755
+ "required": false,
1756
+ "hidden": true,
1757
+ "binding": false,
1758
+ "default": null,
1759
+ "bindingInfo": null
1760
+ },
1761
+ {
1762
+ "name": "folderPath",
1763
+ "displayName": null,
1764
+ "type": "string",
1765
+ "required": false,
1766
+ "hidden": true,
1767
+ "binding": false,
1768
+ "default": null,
1769
+ "bindingInfo": null
1770
+ },
1771
+ {
1772
+ "name": "name",
1773
+ "displayName": null,
1774
+ "type": "string",
1775
+ "required": false,
1776
+ "hidden": true,
1777
+ "binding": false,
1778
+ "default": null,
1779
+ "bindingInfo": null
1780
+ }
1781
+ ],
1782
+ "inputs": [],
1783
+ "output": {
1784
+ "name": "Process response",
1785
+ "type": "Orchestrator.RunJob",
1786
+ "source": null,
1787
+ "relative": true
1788
+ },
1789
+ "eventDefinition": null,
1790
+ "requiresDiscovery": true,
1791
+ "bindingPattern": "process"
1792
+ },
1793
+ "Orchestrator.StartJob": {
1794
+ "element": "bpmn:ServiceTask",
1795
+ "tag": "uipath:activity",
1796
+ "inputPattern": "mergedBody",
1797
+ "inputName": "JobArguments",
1798
+ "inputTarget": "bodyField",
1799
+ "context": [
1800
+ {
1801
+ "name": "releaseKey",
1802
+ "displayName": "Process",
1803
+ "type": "string",
1804
+ "required": false,
1805
+ "hidden": true,
1806
+ "binding": false,
1807
+ "default": null,
1808
+ "bindingInfo": {
1809
+ "resource": "process",
1810
+ "propertyAttribute": "Key"
1811
+ }
1812
+ },
1813
+ {
1814
+ "name": "folderId",
1815
+ "displayName": null,
1816
+ "type": "string",
1817
+ "required": false,
1818
+ "hidden": true,
1819
+ "binding": false,
1820
+ "default": null,
1821
+ "bindingInfo": null
1822
+ },
1823
+ {
1824
+ "name": "folderPath",
1825
+ "displayName": null,
1826
+ "type": "string",
1827
+ "required": false,
1828
+ "hidden": true,
1829
+ "binding": false,
1830
+ "default": null,
1831
+ "bindingInfo": null
1832
+ },
1833
+ {
1834
+ "name": "name",
1835
+ "displayName": null,
1836
+ "type": "string",
1837
+ "required": false,
1838
+ "hidden": true,
1839
+ "binding": false,
1840
+ "default": null,
1841
+ "bindingInfo": null
1842
+ }
1843
+ ],
1844
+ "inputs": [],
1845
+ "output": {
1846
+ "name": "Process response",
1847
+ "type": "Orchestrator.RunJob",
1848
+ "source": null,
1849
+ "relative": true
1850
+ },
1851
+ "eventDefinition": null,
1852
+ "requiresDiscovery": true,
1853
+ "bindingPattern": "process"
1854
+ },
1855
+ "uipath:Activity": {
1856
+ "element": "bpmn:ServiceTask",
1857
+ "tag": "uipath:activity",
1858
+ "inputPattern": "none",
1859
+ "inputName": null,
1860
+ "inputTarget": null,
1861
+ "context": [],
1862
+ "inputs": [],
1863
+ "output": null,
1864
+ "eventDefinition": null,
1865
+ "requiresDiscovery": false,
1866
+ "bindingPattern": "none"
1867
+ }
1868
+ }
1869
+ }