@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,56 @@
1
+ {
2
+ "schemaVersion": "1",
3
+ "nodeType": "uipath.connector.trigger.uipath-microsoft-onedrive.list-item-added",
4
+ "version": "1.0.0",
5
+ "category": "trigger.196549",
6
+ "tags": [
7
+ "connector",
8
+ "trigger",
9
+ "Trigger.Integrated"
10
+ ],
11
+ "connector": {
12
+ "key": "uipath-microsoft-onedrive",
13
+ "name": "Microsoft OneDrive & SharePoint"
14
+ },
15
+ "operation": {
16
+ "name": "ListItemAdded",
17
+ "objectName": "ListItem",
18
+ "objectDisplayName": "ListItem",
19
+ "eventOperation": "LIST_ITEM_ADDED",
20
+ "eventMode": "polling",
21
+ "supportsStreaming": false,
22
+ "httpMethod": "",
23
+ "path": "",
24
+ "pathTemplate": "",
25
+ "subType": "event",
26
+ "parameters": [],
27
+ "activityType": "CuratedTrigger"
28
+ },
29
+ "display": {
30
+ "label": "List Item Added",
31
+ "description": "When a new item is added to a SharePoint List",
32
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/446b7cebc39ca4493877cbc53272aa7c685bfa43b8b4af6eb2dca0f39e2d1fc1.svg"
33
+ },
34
+ "runtime": {
35
+ "bpmnType": "bpmn:StartEvent",
36
+ "serviceType": "Intsvc.EventTrigger",
37
+ "activityConfigurationVersion": "v1",
38
+ "requiresConnection": true,
39
+ "requiresFolderKey": true,
40
+ "requiresConnectionForSchema": true
41
+ },
42
+ "inputSchema": {
43
+ "fields": [],
44
+ "note": "Event-parameter fields measured from `uip is triggers describe uipath-microsoft-onedrive LIST_ITEM_ADDED ListItem --connection-id <id>`; this declaration distinguishes a measured empty list from missing enrichment. Payload filters remain declared in the v1 definition's `filterFields`."
45
+ },
46
+ "outputSchema": {
47
+ "fields": [
48
+ {
49
+ "name": "ReferenceID",
50
+ "type": "string",
51
+ "displayName": "Reference ID"
52
+ }
53
+ ],
54
+ "note": "Complete connection-enriched payload measured from two agreeing sources: `uip is triggers describe uipath-microsoft-onedrive LIST_ITEM_ADDED ListItem --connection-id <id>` and the `.trigger.` registry response both report exactly 1 fields (ReferenceID). The `.event.` registry response is unenriched (`outputResponseDefinition.fields` is empty even with the connection), so its payload is copied from the trigger sibling; Integration Service enrichment is per node type while this schema is an operation contract."
55
+ }
56
+ }
@@ -0,0 +1,207 @@
1
+ {
2
+ "nodeType": "uipath.connector.trigger.uipath-microsoft-onedrive.list-item-added",
3
+ "version": "1.0.0",
4
+ "category": "trigger.196549",
5
+ "tags": [
6
+ "connector",
7
+ "trigger",
8
+ "Trigger.Integrated"
9
+ ],
10
+ "sortOrder": 540,
11
+ "description": "When a new item is added to a SharePoint List",
12
+ "display": {
13
+ "label": "List Item Added",
14
+ "description": "When a new item is added to a SharePoint List",
15
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/446b7cebc39ca4493877cbc53272aa7c685bfa43b8b4af6eb2dca0f39e2d1fc1.svg",
16
+ "sourceDisplayName": "Microsoft OneDrive & SharePoint",
17
+ "shape": "circle"
18
+ },
19
+ "handleConfiguration": [
20
+ {
21
+ "position": "right",
22
+ "handles": [
23
+ {
24
+ "id": "output",
25
+ "type": "source",
26
+ "handleType": "output",
27
+ "showButton": true,
28
+ "constraints": {
29
+ "forbiddenTargetCategories": [
30
+ "trigger"
31
+ ]
32
+ }
33
+ }
34
+ ],
35
+ "visible": true
36
+ }
37
+ ],
38
+ "model": {
39
+ "type": "bpmn:StartEvent",
40
+ "entryPointId": true,
41
+ "serviceType": "Intsvc.EventTrigger",
42
+ "eventDefinition": "bpmn:MessageEventDefinition",
43
+ "bindings": {
44
+ "resource": "connection",
45
+ "resourceKey": "",
46
+ "values": [
47
+ {
48
+ "name": "uipath-microsoft-onedrive connection",
49
+ "propertyAttribute": "ConnectionId"
50
+ },
51
+ {
52
+ "name": "FolderKey",
53
+ "propertyAttribute": "FolderKey"
54
+ }
55
+ ]
56
+ },
57
+ "context": [
58
+ {
59
+ "name": "connectorKey",
60
+ "type": "string",
61
+ "value": "uipath-microsoft-onedrive"
62
+ },
63
+ {
64
+ "name": "operation",
65
+ "value": "LIST_ITEM_ADDED",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "name": "objectName",
70
+ "value": "ListItem",
71
+ "type": "string"
72
+ },
73
+ {
74
+ "name": "method",
75
+ "type": "string"
76
+ },
77
+ {
78
+ "name": "connection",
79
+ "type": "string",
80
+ "value": "<bindings.uipath-microsoft-onedrive connection>"
81
+ },
82
+ {
83
+ "name": "folderKey",
84
+ "type": "string",
85
+ "value": "<bindings.FolderKey>"
86
+ },
87
+ {
88
+ "name": "activityConfigurationVersion",
89
+ "type": "string",
90
+ "value": "v1"
91
+ },
92
+ {
93
+ "name": "metadata",
94
+ "body": {
95
+ "telemetryData": {
96
+ "connectorKey": "uipath-microsoft-onedrive",
97
+ "connectorName": "List Item Added"
98
+ },
99
+ "inputMetadata": {},
100
+ "errorState": {
101
+ "hasError": true
102
+ }
103
+ },
104
+ "type": "json"
105
+ }
106
+ ]
107
+ },
108
+ "form": {
109
+ "id": "connector-properties",
110
+ "title": "Connector configuration",
111
+ "sections": [
112
+ {
113
+ "id": "connector",
114
+ "title": "Connector",
115
+ "collapsible": true,
116
+ "defaultExpanded": true,
117
+ "fields": [
118
+ {
119
+ "label": "",
120
+ "name": "inputs.detail",
121
+ "type": "custom",
122
+ "component": "dap-config",
123
+ "componentProps": {
124
+ "connectorDetail": {
125
+ "type": "Integrated",
126
+ "packageId": "196549",
127
+ "svgIconUrl": "icons/446b7cebc39ca4493877cbc53272aa7c685bfa43b8b4af6eb2dca0f39e2d1fc1.svg",
128
+ "displayName": "List Item Added",
129
+ "assemblyQualifiedName": "UiPath.IntegrationService.Activities.Runtime.Activities.ConnectorTriggerActivity, UiPath.IntegrationService.Activities.Runtime, Version=1.30.0.0, Culture=neutral, PublicKeyToken=null",
130
+ "description": "When a new item is added to a SharePoint List",
131
+ "category": "Microsoft OneDrive & SharePoint.Triggers",
132
+ "activityColor": "#00A3EE",
133
+ "configuration": "{\"connectorKey\":\"uipath-microsoft-onedrive\",\"objectName\":\"ListItem\",\"activityType\":\"CuratedTrigger\",\"version\":\"1.0.0\",\"eventOperation\":\"LIST_ITEM_ADDED\",\"eventMode\":\"polling\",\"supportsStreaming\":false}",
134
+ "uiPathActivityTypeId": "21583850-9473-337c-9618-5049a26f9791",
135
+ "isExperimental": false,
136
+ "helpUrlTemplate": "https://docs.uipath.com/{0}/activities/other/latest/integration-service/uipath-microsoft-onedrive-List-Item-Added",
137
+ "isEnabled": true,
138
+ "targetPlatform": "CrossPlatform",
139
+ "isAdvanced": false,
140
+ "isRestricted": false,
141
+ "hasWpfOnlyDesigner": false,
142
+ "tags": [
143
+ "Trigger.Integrated"
144
+ ]
145
+ }
146
+ }
147
+ }
148
+ ]
149
+ }
150
+ ]
151
+ },
152
+ "inputDefinition": {},
153
+ "outputDefinition": {
154
+ "output": {
155
+ "type": "object",
156
+ "description": "The return value of the connector trigger.",
157
+ "source": "=result.response",
158
+ "var": "output"
159
+ }
160
+ },
161
+ "toolbarExtensions": {
162
+ "design": {
163
+ "actions": [
164
+ {
165
+ "id": "change-trigger-type",
166
+ "icon": "square-mouse-pointer",
167
+ "label": "Change trigger type"
168
+ }
169
+ ]
170
+ }
171
+ },
172
+ "eventMode": "polling",
173
+ "eventParameters": {
174
+ "fields": [],
175
+ "note": "Operation metadata measured from `uip is triggers describe uipath-microsoft-onedrive LIST_ITEM_ADDED ListItem --connection-id <id>`. The `.event.` registry response is unenriched, so `eventParameters`, `filterFields`, and `eventMode` are copied from the `.trigger.` sibling after agreement with the operation description."
176
+ },
177
+ "filterFields": {
178
+ "fields": [
179
+ {
180
+ "name": "ReferenceID",
181
+ "displayName": "Reference ID",
182
+ "type": "string",
183
+ "dataType": "string",
184
+ "required": false,
185
+ "reference": {
186
+ "objectName": "CuratedSharepointList",
187
+ "lookupValue": "ReferenceID",
188
+ "lookupNames": [
189
+ "FullName"
190
+ ],
191
+ "path": "/CuratedSharepointList",
192
+ "childPath": "/CuratedSharepointList?ParentID={ID}"
193
+ }
194
+ }
195
+ ]
196
+ },
197
+ "outputResponseDefinition": {
198
+ "fields": [
199
+ {
200
+ "name": "ReferenceID",
201
+ "type": "string",
202
+ "displayName": "Reference ID"
203
+ }
204
+ ],
205
+ "note": "Complete connection-enriched payload measured from two agreeing sources: `uip is triggers describe uipath-microsoft-onedrive LIST_ITEM_ADDED ListItem --connection-id <id>` and the `.trigger.` registry response both report exactly 1 fields (ReferenceID). The `.event.` registry response is unenriched (`outputResponseDefinition.fields` is empty even with the connection), so its payload is copied from the trigger sibling; Integration Service enrichment is per node type while this schema is an operation contract."
206
+ }
207
+ }
@@ -0,0 +1,107 @@
1
+ {
2
+ "schemaVersion": "1",
3
+ "nodeType": "uipath.connector.event.uipath-microsoft-outlook365.email-received",
4
+ "version": "1.0.0",
5
+ "category": "connector.196656",
6
+ "tags": [
7
+ "connector",
8
+ "event",
9
+ "Trigger.Integrated"
10
+ ],
11
+ "connector": {
12
+ "key": "uipath-microsoft-outlook365",
13
+ "name": "Microsoft Outlook 365"
14
+ },
15
+ "operation": {
16
+ "name": "EmailReceived",
17
+ "objectName": "Message",
18
+ "objectDisplayName": "Email Received",
19
+ "eventOperation": "EMAIL_RECEIVED",
20
+ "eventMode": "polling",
21
+ "activityType": "CuratedWaitFor",
22
+ "supportsStreaming": false,
23
+ "httpMethod": "",
24
+ "path": "",
25
+ "pathTemplate": "",
26
+ "subType": "event",
27
+ "parameters": []
28
+ },
29
+ "display": {
30
+ "label": "Email Received",
31
+ "description": "(Microsoft Outlook 365) Triggers when an e-mail is received in your Inbox.",
32
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/160499b52f7cea190b530fe6f40da7ee03455a8d3fb72dd7f4f68d61e7865a3a.svg"
33
+ },
34
+ "runtime": {
35
+ "bpmnType": "bpmn:ReceiveTask",
36
+ "serviceType": "Intsvc.WaitForEvent",
37
+ "activityConfigurationVersion": "v1",
38
+ "requiresConnection": true,
39
+ "requiresFolderKey": true,
40
+ "requiresConnectionForSchema": true
41
+ },
42
+ "inputSchema": {
43
+ "fields": [
44
+ {
45
+ "name": "eventParameters.parentFolderId",
46
+ "type": "string",
47
+ "displayName": "Mail folder",
48
+ "required": true,
49
+ "description": "The mail folder to subscribe to, by id (resolve it against the bound connection: `uip is resources run list uipath-microsoft-outlook365 MailFolder --connection-id <id>`)."
50
+ },
51
+ {
52
+ "name": "filter.subject",
53
+ "type": "string",
54
+ "displayName": "Subject filter",
55
+ "required": false,
56
+ "description": "Deliver only emails whose subject contains this text."
57
+ }
58
+ ]
59
+ },
60
+ "outputSchema": {
61
+ "fields": [
62
+ {
63
+ "name": "subject",
64
+ "type": "string",
65
+ "displayName": "Subject",
66
+ "description": "The email's subject line."
67
+ },
68
+ {
69
+ "name": "parentFolderId",
70
+ "type": "string",
71
+ "displayName": "Parent folder ID",
72
+ "description": "The id of the mail folder the email arrived in."
73
+ },
74
+ {
75
+ "name": "parentFolderName",
76
+ "type": "string",
77
+ "displayName": "Parent folder name",
78
+ "description": "The display name of the mail folder the email arrived in."
79
+ },
80
+ {
81
+ "name": "from.emailAddress.address",
82
+ "type": "string",
83
+ "displayName": "From address",
84
+ "description": "The sender's email address."
85
+ },
86
+ {
87
+ "name": "from.emailAddress.name",
88
+ "type": "string",
89
+ "displayName": "From name",
90
+ "description": "The sender's display name."
91
+ },
92
+ {
93
+ "name": "bodyPreview",
94
+ "type": "string",
95
+ "displayName": "Body preview",
96
+ "description": "The first part of the email's body, as plain text."
97
+ },
98
+ {
99
+ "name": "importance",
100
+ "type": "string",
101
+ "displayName": "Importance",
102
+ "description": "The importance the sender set on the email (low | normal | high)."
103
+ }
104
+ ],
105
+ "note": "Evidenced fields only. The connector's FULL event payload schema is not available offline — `uip maestro flow registry` cannot return per-trigger filterFields/outputFields without a --connection-id (see flow-v2 integrations/registry-triggers.json's own note), so it is resolved at author time with `uip is triggers describe uipath-microsoft-outlook365 EMAIL_RECEIVED Message --connection-id <id>`. These three are the fields 64 deployed skill-flow-outlook-* flows actually read or filter on. Reading any other field is legal and raises an advisory, not an error. The four sender/preview/importance fields were resolved that way on 2026-07-30 (`uip is triggers describe uipath-microsoft-outlook365 EMAIL_RECEIVED Message --connection-id 75dfafb4-…`, which reports 73 output fields in all); the rest of that list is deliberately not copied in — declare what a flow is evidenced to read."
106
+ }
107
+ }
@@ -0,0 +1,264 @@
1
+ {
2
+ "nodeType": "uipath.connector.event.uipath-microsoft-outlook365.email-received",
3
+ "version": "1.0.0",
4
+ "category": "connector.196656",
5
+ "tags": [
6
+ "connector",
7
+ "event",
8
+ "Trigger.Integrated"
9
+ ],
10
+ "sortOrder": 515,
11
+ "supportsErrorHandling": true,
12
+ "description": "(Microsoft Outlook 365) Triggers when an e-mail is received in your Inbox.",
13
+ "display": {
14
+ "label": "Email Received",
15
+ "description": "(Microsoft Outlook 365) Triggers when an e-mail is received in your Inbox.",
16
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/160499b52f7cea190b530fe6f40da7ee03455a8d3fb72dd7f4f68d61e7865a3a.svg"
17
+ },
18
+ "handleConfiguration": [
19
+ {
20
+ "position": "left",
21
+ "handles": [
22
+ {
23
+ "id": "input",
24
+ "type": "target",
25
+ "handleType": "input",
26
+ "label": ""
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "position": "right",
32
+ "handles": [
33
+ {
34
+ "id": "output",
35
+ "type": "source",
36
+ "handleType": "output",
37
+ "label": ""
38
+ },
39
+ {
40
+ "id": "error",
41
+ "label": "Error",
42
+ "type": "source",
43
+ "handleType": "output",
44
+ "visible": "{inputs.errorHandlingEnabled}",
45
+ "constraints": {
46
+ "maxConnections": 1
47
+ }
48
+ }
49
+ ]
50
+ }
51
+ ],
52
+ "model": {
53
+ "type": "bpmn:ReceiveTask",
54
+ "serviceType": "Intsvc.WaitForEvent",
55
+ "bindings": {
56
+ "resource": "connection",
57
+ "resourceKey": "",
58
+ "values": [
59
+ {
60
+ "name": "uipath-microsoft-outlook365 connection",
61
+ "propertyAttribute": "ConnectionId"
62
+ },
63
+ {
64
+ "name": "FolderKey",
65
+ "propertyAttribute": "FolderKey"
66
+ }
67
+ ]
68
+ },
69
+ "context": [
70
+ {
71
+ "name": "connectorKey",
72
+ "type": "string",
73
+ "value": "uipath-microsoft-outlook365"
74
+ },
75
+ {
76
+ "name": "operation",
77
+ "value": "EMAIL_RECEIVED",
78
+ "type": "string"
79
+ },
80
+ {
81
+ "name": "objectName",
82
+ "value": "Message",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "method",
87
+ "type": "string"
88
+ },
89
+ {
90
+ "name": "connection",
91
+ "type": "string",
92
+ "value": "<bindings.uipath-microsoft-outlook365 connection>"
93
+ },
94
+ {
95
+ "name": "folderKey",
96
+ "type": "string",
97
+ "value": "<bindings.FolderKey>"
98
+ },
99
+ {
100
+ "name": "activityConfigurationVersion",
101
+ "type": "string",
102
+ "value": "v1"
103
+ },
104
+ {
105
+ "name": "metadata",
106
+ "body": {
107
+ "telemetryData": {
108
+ "connectorKey": "uipath-microsoft-outlook365",
109
+ "connectorName": "Email Received"
110
+ },
111
+ "inputMetadata": {},
112
+ "errorState": {
113
+ "hasError": true
114
+ }
115
+ },
116
+ "type": "json"
117
+ }
118
+ ]
119
+ },
120
+ "form": {
121
+ "id": "connector-properties",
122
+ "title": "Connector configuration",
123
+ "sections": [
124
+ {
125
+ "id": "connector",
126
+ "title": "Connector",
127
+ "collapsible": true,
128
+ "defaultExpanded": true,
129
+ "fields": [
130
+ {
131
+ "label": "",
132
+ "name": "inputs.detail",
133
+ "type": "custom",
134
+ "component": "dap-config",
135
+ "componentProps": {
136
+ "connectorDetail": {
137
+ "type": "Integrated",
138
+ "packageId": "196656",
139
+ "svgIconUrl": "icons/160499b52f7cea190b530fe6f40da7ee03455a8d3fb72dd7f4f68d61e7865a3a.svg",
140
+ "displayName": "Email Received",
141
+ "assemblyQualifiedName": "UiPath.IntegrationService.Activities.Runtime.Activities.ConnectorTriggerActivity, UiPath.IntegrationService.Activities.Runtime, Version=1.27.0.0, Culture=neutral, PublicKeyToken=null",
142
+ "description": "Triggers when an e-mail is received in your Inbox.",
143
+ "category": "Microsoft Outlook 365.Triggers",
144
+ "activityColor": "#E56D5C",
145
+ "configuration": "{\"connectorKey\":\"uipath-microsoft-outlook365\",\"objectName\":\"Message\",\"activityType\":\"CuratedTrigger\",\"version\":\"1.0.0\",\"eventOperation\":\"EMAIL_RECEIVED\",\"eventMode\":\"polling\",\"supportsStreaming\":false}",
146
+ "uiPathActivityTypeId": "d76ca053-6e7e-3472-b98c-3094b802d83c",
147
+ "isExperimental": false,
148
+ "helpUrlTemplate": "https://docs.uipath.com/{0}/activities/other/latest/integration-service/uipath-microsoft-outlook365-Email-Received",
149
+ "isEnabled": true,
150
+ "targetPlatform": "CrossPlatform",
151
+ "isAdvanced": false,
152
+ "isRestricted": false,
153
+ "tags": [
154
+ "Trigger.Integrated"
155
+ ]
156
+ },
157
+ "isWaitForTrigger": true
158
+ }
159
+ }
160
+ ]
161
+ }
162
+ ]
163
+ },
164
+ "inputDefinition": {},
165
+ "inputDefaults": {},
166
+ "outputDefinition": {
167
+ "output": {
168
+ "type": "object",
169
+ "description": "The return value of the connector event.",
170
+ "source": "=result.response",
171
+ "var": "output"
172
+ },
173
+ "error": {
174
+ "type": "object",
175
+ "description": "Error information if the node fails",
176
+ "source": "=Error",
177
+ "var": "error",
178
+ "schema": {
179
+ "$schema": "http://json-schema.org/draft-07/schema#",
180
+ "type": "object",
181
+ "required": [
182
+ "code",
183
+ "message",
184
+ "detail",
185
+ "category",
186
+ "status"
187
+ ],
188
+ "properties": {
189
+ "code": {
190
+ "type": "string",
191
+ "description": "Error code as a string"
192
+ },
193
+ "message": {
194
+ "type": "string",
195
+ "description": "High-level error message"
196
+ },
197
+ "detail": {
198
+ "type": "string",
199
+ "description": "Detailed error description"
200
+ },
201
+ "category": {
202
+ "type": "string",
203
+ "description": "Error category"
204
+ },
205
+ "status": {
206
+ "type": "integer",
207
+ "description": "HTTP status code"
208
+ }
209
+ },
210
+ "additionalProperties": false
211
+ }
212
+ }
213
+ },
214
+ "debug": {
215
+ "runtime": "bpmnEngine"
216
+ },
217
+ "outputResponseDefinition": {
218
+ "fields": [
219
+ {
220
+ "name": "subject",
221
+ "type": "string",
222
+ "displayName": "Subject",
223
+ "description": "The email's subject line."
224
+ },
225
+ {
226
+ "name": "parentFolderId",
227
+ "type": "string",
228
+ "displayName": "Parent folder ID",
229
+ "description": "The id of the mail folder the email arrived in."
230
+ },
231
+ {
232
+ "name": "parentFolderName",
233
+ "type": "string",
234
+ "displayName": "Parent folder name",
235
+ "description": "The display name of the mail folder the email arrived in."
236
+ },
237
+ {
238
+ "name": "from.emailAddress.address",
239
+ "type": "string",
240
+ "displayName": "From address",
241
+ "description": "The sender's email address."
242
+ },
243
+ {
244
+ "name": "from.emailAddress.name",
245
+ "type": "string",
246
+ "displayName": "From name",
247
+ "description": "The sender's display name."
248
+ },
249
+ {
250
+ "name": "bodyPreview",
251
+ "type": "string",
252
+ "displayName": "Body preview",
253
+ "description": "The first part of the email's body, as plain text."
254
+ },
255
+ {
256
+ "name": "importance",
257
+ "type": "string",
258
+ "displayName": "Importance",
259
+ "description": "The importance the sender set on the email (low | normal | high)."
260
+ }
261
+ ],
262
+ "note": "Evidenced fields only. The connector's FULL event payload schema is not available offline — `uip maestro flow registry` cannot return per-trigger filterFields/outputFields without a --connection-id (see flow-v2 integrations/registry-triggers.json's own note), so it is resolved at author time with `uip is triggers describe uipath-microsoft-outlook365 EMAIL_RECEIVED Message --connection-id <id>`. These three are the fields 64 deployed skill-flow-outlook-* flows actually read or filter on. Reading any other field is an ERROR, not an advisory (verified 2026-07-30 against the checker's own catalog and its expression tests). A field a flow here needs must be added HERE, with its evidence. The four sender/preview/importance fields were resolved that way on 2026-07-30 (`uip is triggers describe uipath-microsoft-outlook365 EMAIL_RECEIVED Message --connection-id 75dfafb4-…`, which reports 73 output fields in all); the rest of that list is deliberately not copied in — declare what a flow is evidenced to read."
263
+ }
264
+ }