@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,823 @@
1
+ {
2
+ "name": "UiPath",
3
+ "uri": "http://uipath.org/schema/bpmn",
4
+ "prefix": "uipath",
5
+ "xml": {
6
+ "tagAlias": "lowerCase"
7
+ },
8
+ "associations": [],
9
+ "types": [
10
+ {
11
+ "name": "Variables",
12
+ "superClass": ["Element"],
13
+ "properties": [
14
+ {
15
+ "name": "version",
16
+ "isAttr": true,
17
+ "type": "String"
18
+ },
19
+ {
20
+ "name": "input",
21
+ "type": "Variable",
22
+ "isMany": true,
23
+ "xml": {
24
+ "serialize": "input"
25
+ }
26
+ },
27
+ {
28
+ "name": "inputOutput",
29
+ "type": "Variable",
30
+ "isMany": true,
31
+ "xml": {
32
+ "serialize": "inputOutput"
33
+ }
34
+ },
35
+ {
36
+ "name": "output",
37
+ "type": "Variable",
38
+ "isMany": true,
39
+ "xml": {
40
+ "serialize": "output"
41
+ }
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "Variable",
47
+ "superClass": ["Element"],
48
+ "properties": [
49
+ {
50
+ "name": "id",
51
+ "isAttr": true,
52
+ "isId": true,
53
+ "type": "String"
54
+ },
55
+ {
56
+ "name": "name",
57
+ "isAttr": true,
58
+ "type": "String"
59
+ },
60
+ {
61
+ "name": "type",
62
+ "isAttr": true,
63
+ "type": "String"
64
+ },
65
+ {
66
+ "name": "subType",
67
+ "isAttr": true,
68
+ "type": "String"
69
+ },
70
+ {
71
+ "name": "description",
72
+ "isAttr": true,
73
+ "type": "String"
74
+ },
75
+ {
76
+ "name": "elementId",
77
+ "isAttr": true,
78
+ "type": "String"
79
+ },
80
+ {
81
+ "name": "canonicalId",
82
+ "isAttr": true,
83
+ "type": "String"
84
+ },
85
+ {
86
+ "name": "default",
87
+ "isAttr": true,
88
+ "type": "String"
89
+ },
90
+ {
91
+ "name": "body",
92
+ "type": "String",
93
+ "isBody": true
94
+ },
95
+ {
96
+ "name": "custom",
97
+ "isAttr": true,
98
+ "type": "String"
99
+ },
100
+ {
101
+ "name": "internal",
102
+ "isAttr": true,
103
+ "type": "String"
104
+ },
105
+ {
106
+ "name": "required",
107
+ "isAttr": true,
108
+ "type": "Boolean"
109
+ },
110
+ {
111
+ "name": "reference",
112
+ "isAttr": true,
113
+ "type": "String"
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "name": "CaseVariables",
119
+ "superClass": ["Element"],
120
+ "properties": [
121
+ {
122
+ "name": "version",
123
+ "isAttr": true,
124
+ "type": "String"
125
+ },
126
+ {
127
+ "name": "inputOutput",
128
+ "type": "CaseVariable",
129
+ "isMany": true,
130
+ "xml": {
131
+ "serialize": "inputOutput"
132
+ }
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "name": "CaseVariable",
138
+ "superClass": ["Element"],
139
+ "properties": [
140
+ {
141
+ "name": "id",
142
+ "isAttr": true,
143
+ "isId": true,
144
+ "type": "String"
145
+ },
146
+ {
147
+ "name": "name",
148
+ "isAttr": true,
149
+ "type": "String"
150
+ },
151
+ {
152
+ "name": "type",
153
+ "isAttr": true,
154
+ "type": "String"
155
+ },
156
+ {
157
+ "name": "subType",
158
+ "isAttr": true,
159
+ "type": "String"
160
+ },
161
+ {
162
+ "name": "description",
163
+ "isAttr": true,
164
+ "type": "String"
165
+ },
166
+ {
167
+ "name": "value",
168
+ "isAttr": true,
169
+ "type": "String"
170
+ },
171
+ {
172
+ "name": "variableType",
173
+ "isAttr": true,
174
+ "type": "String"
175
+ },
176
+ {
177
+ "name": "dynamic",
178
+ "isAttr": true,
179
+ "type": "Boolean"
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "name": "Binding",
185
+ "superClass": ["Variable"],
186
+ "properties": [
187
+ {
188
+ "name": "resource",
189
+ "isAttr": true,
190
+ "type": "String"
191
+ },
192
+ {
193
+ "name": "resourceSubType",
194
+ "isAttr": true,
195
+ "type": "String"
196
+ },
197
+ {
198
+ "name": "resourceKey",
199
+ "isAttr": true,
200
+ "type": "String"
201
+ },
202
+ {
203
+ "name": "propertyAttribute",
204
+ "isAttr": true,
205
+ "type": "String"
206
+ }
207
+ ]
208
+ },
209
+ {
210
+ "name": "Bindings",
211
+ "superClass": ["Element"],
212
+ "properties": [
213
+ {
214
+ "name": "version",
215
+ "isAttr": true,
216
+ "type": "String"
217
+ },
218
+ {
219
+ "name": "binding",
220
+ "type": "Binding",
221
+ "isMany": true,
222
+ "xml": {
223
+ "name": "binding"
224
+ }
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "name": "EntryPointId",
230
+ "superClass": ["Element"],
231
+ "properties": [
232
+ {
233
+ "name": "value",
234
+ "isAttr": true,
235
+ "type": "String"
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "name": "Event",
241
+ "superClass": ["Element"],
242
+ "properties": [
243
+ {
244
+ "name": "version",
245
+ "isAttr": true,
246
+ "type": "String"
247
+ },
248
+ {
249
+ "name": "type",
250
+ "type": "Type"
251
+ },
252
+ {
253
+ "name": "context",
254
+ "type": "Context"
255
+ },
256
+ {
257
+ "name": "input",
258
+ "type": "Input",
259
+ "isMany": true
260
+ },
261
+ {
262
+ "name": "output",
263
+ "type": "Output",
264
+ "isMany": true
265
+ },
266
+ {
267
+ "name": "skipCondition",
268
+ "isAttr": true,
269
+ "type": "String"
270
+ }
271
+ ]
272
+ },
273
+ {
274
+ "name": "Activity",
275
+ "superClass": ["Element"],
276
+ "properties": [
277
+ {
278
+ "name": "version",
279
+ "isAttr": true,
280
+ "type": "String"
281
+ },
282
+ {
283
+ "name": "type",
284
+ "type": "Type"
285
+ },
286
+ {
287
+ "name": "context",
288
+ "type": "Context"
289
+ },
290
+ {
291
+ "name": "input",
292
+ "type": "Input",
293
+ "isMany": true
294
+ },
295
+ {
296
+ "name": "output",
297
+ "type": "Output",
298
+ "isMany": true
299
+ },
300
+ {
301
+ "name": "skipCondition",
302
+ "isAttr": true,
303
+ "type": "String"
304
+ }
305
+ ]
306
+ },
307
+ {
308
+ "name": "Mapping",
309
+ "superClass": ["Element"],
310
+ "properties": [
311
+ {
312
+ "name": "version",
313
+ "isAttr": true,
314
+ "type": "String"
315
+ },
316
+ {
317
+ "name": "type",
318
+ "type": "Type"
319
+ },
320
+ {
321
+ "name": "context",
322
+ "type": "Context"
323
+ },
324
+ {
325
+ "name": "input",
326
+ "type": "Input",
327
+ "isMany": true
328
+ },
329
+ {
330
+ "name": "output",
331
+ "type": "Output",
332
+ "isMany": true
333
+ }
334
+ ]
335
+ },
336
+ {
337
+ "name": "ScriptVersion",
338
+ "superClass": ["Element"],
339
+ "properties": [
340
+ {
341
+ "name": "value",
342
+ "isAttr": true,
343
+ "type": "String"
344
+ }
345
+ ]
346
+ },
347
+ {
348
+ "name": "MigrationVersion",
349
+ "superClass": ["Element"],
350
+ "properties": [
351
+ {
352
+ "name": "version",
353
+ "isAttr": true,
354
+ "type": "String"
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "name": "IntsvcActivityConfig",
360
+ "superClass": ["Element"],
361
+ "properties": [
362
+ {
363
+ "name": "version",
364
+ "isAttr": true,
365
+ "type": "String"
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "name": "Type",
371
+ "properties": [
372
+ {
373
+ "name": "value",
374
+ "isAttr": true,
375
+ "type": "String"
376
+ },
377
+ {
378
+ "name": "version",
379
+ "isAttr": true,
380
+ "type": "String"
381
+ }
382
+ ]
383
+ },
384
+ {
385
+ "name": "Context",
386
+ "superClass": ["Element"],
387
+ "properties": [
388
+ {
389
+ "name": "input",
390
+ "type": "Input",
391
+ "isMany": true
392
+ },
393
+ {
394
+ "name": "inputSchema",
395
+ "type": "InputSchema"
396
+ },
397
+ {
398
+ "name": "outputSchema",
399
+ "type": "OutputSchema"
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "name": "Input",
405
+ "superClass": ["Element"],
406
+ "properties": [
407
+ {
408
+ "name": "name",
409
+ "isAttr": true,
410
+ "type": "String"
411
+ },
412
+ {
413
+ "name": "displayName",
414
+ "isAttr": true,
415
+ "type": "String"
416
+ },
417
+ {
418
+ "name": "type",
419
+ "isAttr": true,
420
+ "type": "String"
421
+ },
422
+ {
423
+ "name": "subType",
424
+ "isAttr": true,
425
+ "type": "String"
426
+ },
427
+ {
428
+ "name": "description",
429
+ "isAttr": true,
430
+ "type": "String"
431
+ },
432
+ {
433
+ "name": "value",
434
+ "isAttr": true,
435
+ "type": "String"
436
+ },
437
+ {
438
+ "name": "target",
439
+ "isAttr": true,
440
+ "type": "String"
441
+ },
442
+ {
443
+ "name": "required",
444
+ "isAttr": true,
445
+ "type": "Boolean"
446
+ },
447
+ {
448
+ "name": "body",
449
+ "type": "String",
450
+ "isBody": true
451
+ },
452
+ {
453
+ "name": "options",
454
+ "isAttr": true,
455
+ "type": "String"
456
+ }
457
+ ]
458
+ },
459
+ {
460
+ "name": "Output",
461
+ "properties": [
462
+ {
463
+ "name": "name",
464
+ "isAttr": true,
465
+ "type": "String"
466
+ },
467
+ {
468
+ "name": "type",
469
+ "isAttr": true,
470
+ "type": "String"
471
+ },
472
+ {
473
+ "name": "subType",
474
+ "isAttr": true,
475
+ "type": "String"
476
+ },
477
+ {
478
+ "name": "description",
479
+ "isAttr": true,
480
+ "type": "String"
481
+ },
482
+ {
483
+ "name": "source",
484
+ "isAttr": true,
485
+ "type": "String"
486
+ },
487
+ {
488
+ "name": "var",
489
+ "isAttr": true,
490
+ "type": "String"
491
+ },
492
+ {
493
+ "name": "body",
494
+ "type": "String",
495
+ "isBody": true
496
+ },
497
+ {
498
+ "name": "custom",
499
+ "isAttr": true,
500
+ "type": "String"
501
+ },
502
+ {
503
+ "name": "internal",
504
+ "isAttr": true,
505
+ "type": "String"
506
+ },
507
+ {
508
+ "name": "required",
509
+ "isAttr": true,
510
+ "type": "Boolean"
511
+ },
512
+ {
513
+ "name": "target",
514
+ "isAttr": true,
515
+ "type": "String"
516
+ },
517
+ {
518
+ "name": "action",
519
+ "isAttr": true,
520
+ "type": "String"
521
+ },
522
+ {
523
+ "name": "entitytype",
524
+ "isAttr": true,
525
+ "type": "String"
526
+ },
527
+ {
528
+ "name": "options",
529
+ "isAttr": true,
530
+ "type": "String"
531
+ },
532
+ {
533
+ "name": "originalVar",
534
+ "isAttr": true,
535
+ "type": "String"
536
+ },
537
+ {
538
+ "name": "renamed",
539
+ "isAttr": true,
540
+ "type": "String"
541
+ },
542
+ {
543
+ "name": "reference",
544
+ "isAttr": true,
545
+ "type": "String"
546
+ }
547
+ ]
548
+ },
549
+ {
550
+ "name": "InputOutput",
551
+ "properties": [
552
+ {
553
+ "name": "name",
554
+ "isAttr": true,
555
+ "type": "String"
556
+ },
557
+ {
558
+ "name": "type",
559
+ "isAttr": true,
560
+ "type": "String"
561
+ },
562
+ {
563
+ "name": "subType",
564
+ "isAttr": true,
565
+ "type": "String"
566
+ },
567
+ {
568
+ "name": "description",
569
+ "isAttr": true,
570
+ "type": "String"
571
+ },
572
+ {
573
+ "name": "source",
574
+ "isAttr": true,
575
+ "type": "String"
576
+ },
577
+ {
578
+ "name": "elementId",
579
+ "isAttr": true,
580
+ "type": "String"
581
+ },
582
+ {
583
+ "name": "default",
584
+ "isAttr": true,
585
+ "type": "String"
586
+ }
587
+ ]
588
+ },
589
+ {
590
+ "name": "InputSchema",
591
+ "superClass": ["Element"],
592
+ "properties": [
593
+ {
594
+ "name": "body",
595
+ "type": "String",
596
+ "isBody": true
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "name": "OutputSchema",
602
+ "superClass": ["Element"],
603
+ "properties": [
604
+ {
605
+ "name": "body",
606
+ "type": "String",
607
+ "isBody": true
608
+ }
609
+ ]
610
+ },
611
+ {
612
+ "name": "LoopCharacteristics",
613
+ "superClass": ["Element"],
614
+ "properties": [
615
+ {
616
+ "name": "inputCollection",
617
+ "isAttr": true,
618
+ "type": "String"
619
+ },
620
+ {
621
+ "name": "inputElement",
622
+ "isAttr": true,
623
+ "type": "String"
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ "name": "CaseManagement",
629
+ "superClass": ["Element"],
630
+ "properties": [
631
+ {
632
+ "name": "version",
633
+ "isAttr": true,
634
+ "type": "String"
635
+ },
636
+ {
637
+ "name": "value",
638
+ "type": "String",
639
+ "isBody": true
640
+ }
641
+ ]
642
+ },
643
+ {
644
+ "name": "Retry",
645
+ "superClass": ["Element"],
646
+ "properties": [
647
+ {
648
+ "name": "maxRetryCount",
649
+ "isAttr": true,
650
+ "type": "String"
651
+ },
652
+ {
653
+ "name": "retryBackoff",
654
+ "isAttr": true,
655
+ "type": "String"
656
+ },
657
+ {
658
+ "name": "retryAllErrors",
659
+ "isAttr": true,
660
+ "type": "String"
661
+ },
662
+ {
663
+ "name": "retryBackoffType",
664
+ "isAttr": true,
665
+ "type": "String"
666
+ },
667
+ {
668
+ "name": "maxDuration",
669
+ "isAttr": true,
670
+ "type": "String"
671
+ },
672
+ {
673
+ "name": "exponentialBase",
674
+ "isAttr": true,
675
+ "type": "String"
676
+ }
677
+ ]
678
+ },
679
+ {
680
+ "name": "ErrorMapping",
681
+ "superClass": ["Element"],
682
+ "properties": [
683
+ {
684
+ "name": "version",
685
+ "isAttr": true,
686
+ "type": "String"
687
+ },
688
+ {
689
+ "name": "error",
690
+ "type": "Error",
691
+ "isMany": true,
692
+ "xml": {
693
+ "name": "error"
694
+ }
695
+ }
696
+ ]
697
+ },
698
+ {
699
+ "name": "Error",
700
+ "superClass": ["Element"],
701
+ "properties": [
702
+ {
703
+ "name": "id",
704
+ "isAttr": true,
705
+ "type": "String"
706
+ },
707
+ {
708
+ "name": "errorRef",
709
+ "isAttr": true,
710
+ "type": "String"
711
+ },
712
+ {
713
+ "name": "priority",
714
+ "isAttr": true,
715
+ "type": "String"
716
+ },
717
+ {
718
+ "name": "condition",
719
+ "isAttr": true,
720
+ "type": "String"
721
+ },
722
+ {
723
+ "name": "detail",
724
+ "isAttr": true,
725
+ "type": "String"
726
+ },
727
+ {
728
+ "name": "retryable",
729
+ "isAttr": true,
730
+ "type": "String"
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "name": "Tags",
736
+ "superClass": ["Element"],
737
+ "properties": [
738
+ {
739
+ "name": "tags",
740
+ "type": "Tag",
741
+ "isMany": true,
742
+ "xml": {
743
+ "name": "tag"
744
+ }
745
+ }
746
+ ]
747
+ },
748
+ {
749
+ "name": "Tag",
750
+ "properties": [
751
+ {
752
+ "name": "key",
753
+ "isAttr": true,
754
+ "type": "String"
755
+ },
756
+ {
757
+ "name": "value",
758
+ "type": "String",
759
+ "isBody": true
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "name": "IsTransactionRoot",
765
+ "superClass": ["Element"],
766
+ "properties": [
767
+ {
768
+ "name": "version",
769
+ "isAttr": true,
770
+ "type": "String"
771
+ },
772
+ {
773
+ "name": "value",
774
+ "type": "Boolean",
775
+ "isAttr": true
776
+ }
777
+ ]
778
+ },
779
+ {
780
+ "name": "SkipPause",
781
+ "superClass": ["Element"],
782
+ "properties": [
783
+ {
784
+ "name": "enabled",
785
+ "type": "Boolean",
786
+ "isAttr": true
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "name": "PausableTimer",
792
+ "superClass": ["Element"],
793
+ "properties": []
794
+ },
795
+ {
796
+ "name": "SkipObservability",
797
+ "superClass": ["Element"],
798
+ "properties": [
799
+ {
800
+ "name": "enabled",
801
+ "type": "Boolean",
802
+ "isAttr": true
803
+ }
804
+ ]
805
+ },
806
+ {
807
+ "name": "ExtractionScaffold",
808
+ "superClass": ["Element"],
809
+ "properties": [
810
+ {
811
+ "name": "enabled",
812
+ "type": "Boolean",
813
+ "isAttr": true
814
+ },
815
+ {
816
+ "name": "ownerId",
817
+ "type": "String",
818
+ "isAttr": true
819
+ }
820
+ ]
821
+ }
822
+ ]
823
+ }