@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,513 @@
1
+ {
2
+ "nodeType": "uipath.connector.uipath-salesforce-slack.send-message-to-user",
3
+ "version": "1.0.0",
4
+ "category": "connector.196638",
5
+ "tags": [
6
+ "connector",
7
+ "activity"
8
+ ],
9
+ "sortOrder": 515,
10
+ "supportsErrorHandling": true,
11
+ "description": "(Slack) Send a message to an individual user in Slack.",
12
+ "display": {
13
+ "label": "Send Message to User",
14
+ "description": "(Slack) Send a message to an individual user in Slack.",
15
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/8af239e6c82c1abd57622314380112d55f7e151ac4845ba018a96d70b4d92297.svg"
16
+ },
17
+ "handleConfiguration": [
18
+ {
19
+ "position": "left",
20
+ "handles": [
21
+ {
22
+ "id": "input",
23
+ "type": "target",
24
+ "handleType": "input",
25
+ "label": ""
26
+ }
27
+ ]
28
+ },
29
+ {
30
+ "position": "right",
31
+ "handles": [
32
+ {
33
+ "id": "output",
34
+ "type": "source",
35
+ "handleType": "output",
36
+ "label": ""
37
+ },
38
+ {
39
+ "id": "error",
40
+ "label": "Error",
41
+ "type": "source",
42
+ "handleType": "output",
43
+ "visible": "{inputs.errorHandlingEnabled}",
44
+ "constraints": {
45
+ "maxConnections": 1
46
+ }
47
+ }
48
+ ]
49
+ }
50
+ ],
51
+ "model": {
52
+ "type": "bpmn:SendTask",
53
+ "serviceType": "Intsvc.ActivityExecution",
54
+ "bindings": {
55
+ "resource": "connection",
56
+ "resourceKey": "",
57
+ "values": [
58
+ {
59
+ "name": "uipath-salesforce-slack connection",
60
+ "propertyAttribute": "ConnectionId"
61
+ },
62
+ {
63
+ "name": "FolderKey",
64
+ "propertyAttribute": "FolderKey"
65
+ }
66
+ ]
67
+ },
68
+ "context": [
69
+ {
70
+ "name": "connectorKey",
71
+ "type": "string",
72
+ "value": "uipath-salesforce-slack"
73
+ },
74
+ {
75
+ "name": "operation",
76
+ "type": "string"
77
+ },
78
+ {
79
+ "name": "objectName",
80
+ "value": "send_message_to_user_v2",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "method",
85
+ "type": "string",
86
+ "value": "POST"
87
+ },
88
+ {
89
+ "name": "connection",
90
+ "type": "string",
91
+ "value": "<bindings.uipath-salesforce-slack connection>"
92
+ },
93
+ {
94
+ "name": "folderKey",
95
+ "type": "string",
96
+ "value": "<bindings.FolderKey>"
97
+ },
98
+ {
99
+ "name": "activityConfigurationVersion",
100
+ "type": "string",
101
+ "value": "v1"
102
+ },
103
+ {
104
+ "name": "metadata",
105
+ "body": {
106
+ "telemetryData": {
107
+ "connectorKey": "uipath-salesforce-slack",
108
+ "connectorName": "Send Message to User"
109
+ },
110
+ "inputMetadata": {},
111
+ "errorState": {
112
+ "hasError": true
113
+ }
114
+ },
115
+ "type": "json"
116
+ }
117
+ ]
118
+ },
119
+ "form": {
120
+ "id": "connector-properties",
121
+ "title": "Connector configuration",
122
+ "sections": [
123
+ {
124
+ "id": "connector",
125
+ "title": "Connector",
126
+ "collapsible": true,
127
+ "defaultExpanded": true,
128
+ "fields": [
129
+ {
130
+ "label": "",
131
+ "name": "inputs.detail",
132
+ "type": "custom",
133
+ "component": "dap-config",
134
+ "componentProps": {
135
+ "connectorDetail": {
136
+ "isAppActivity": false,
137
+ "packageId": "196638",
138
+ "svgIconUrl": "icons/8af239e6c82c1abd57622314380112d55f7e151ac4845ba018a96d70b4d92297.svg",
139
+ "displayName": "Send Message to User",
140
+ "assemblyQualifiedName": "UiPath.IntegrationService.Activities.Runtime.Activities.ConnectorActivity, UiPath.IntegrationService.Activities.Runtime, Version=1.30.0.0, Culture=neutral, PublicKeyToken=null",
141
+ "description": "Send a message to an individual user in Slack.",
142
+ "category": "",
143
+ "activityColor": "#4A154B",
144
+ "configuration": "{\"connectorKey\":\"uipath-salesforce-slack\",\"objectName\":\"send_message_to_user_v2\",\"httpMethod\":\"POST\",\"activityType\":\"Curated\",\"version\":\"1.0.0\",\"supportsStreaming\":false,\"subType\":\"method\"}",
145
+ "uiPathActivityTypeId": "9a76a063-8903-3101-b158-e0435e77c45e",
146
+ "isExperimental": false,
147
+ "helpUrlTemplate": "https://docs.uipath.com/{0}/activities/other/latest/integration-service/uipath-salesforce-slack-Send-Message-To-User",
148
+ "isEnabled": true,
149
+ "targetPlatform": "CrossPlatform",
150
+ "isAdvanced": false,
151
+ "isRestricted": false,
152
+ "hasWpfOnlyDesigner": false,
153
+ "tags": [
154
+ ""
155
+ ]
156
+ }
157
+ }
158
+ }
159
+ ]
160
+ }
161
+ ]
162
+ },
163
+ "inputDefinition": {
164
+ "fields": [
165
+ {
166
+ "name": "attachment.image_url",
167
+ "displayName": "Attachment image URL",
168
+ "type": "string",
169
+ "dataType": "string",
170
+ "required": false,
171
+ "description": "URL to image file that will be displayed below attachment message. Add `Attachment title` along with image URL"
172
+ },
173
+ {
174
+ "name": "attachment.title",
175
+ "displayName": "Attachment title",
176
+ "type": "string",
177
+ "dataType": "string",
178
+ "required": false,
179
+ "description": "Title of the Slack message attachment"
180
+ },
181
+ {
182
+ "name": "attachment.title_link",
183
+ "displayName": "Attachment title link",
184
+ "type": "string",
185
+ "dataType": "string",
186
+ "required": false,
187
+ "description": "Attachment titles are clickable. Provide URL of page to direct users when clicked"
188
+ },
189
+ {
190
+ "name": "attachment.color",
191
+ "displayName": "Attachment color",
192
+ "type": "string",
193
+ "dataType": "string",
194
+ "required": false,
195
+ "description": "Determines the vertical bar color. Red for danger, orange for warning, green for good"
196
+ },
197
+ {
198
+ "name": "attachment.text",
199
+ "displayName": "Attachment text",
200
+ "type": "string",
201
+ "dataType": "string",
202
+ "required": false,
203
+ "description": "Text that appears within the attachment block"
204
+ },
205
+ {
206
+ "name": "attachments[*].actions[*].confirm.dismiss_text",
207
+ "displayName": "Attachments actions confirm dismiss text",
208
+ "type": "string",
209
+ "dataType": "string",
210
+ "required": false
211
+ },
212
+ {
213
+ "name": "attachments[*].actions[*].confirm.ok_text",
214
+ "displayName": "Attachments actions confirm ok text",
215
+ "type": "string",
216
+ "dataType": "string",
217
+ "required": false
218
+ },
219
+ {
220
+ "name": "attachments[*].actions[*].confirm.text",
221
+ "displayName": "Attachments actions confirm text",
222
+ "type": "string",
223
+ "dataType": "string",
224
+ "required": false
225
+ },
226
+ {
227
+ "name": "attachments[*].actions[*].confirm.title",
228
+ "displayName": "Attachments actions confirm title",
229
+ "type": "string",
230
+ "dataType": "string",
231
+ "required": false
232
+ },
233
+ {
234
+ "name": "attachments[*].actions[*].name",
235
+ "displayName": "Attachments actions name",
236
+ "type": "string",
237
+ "dataType": "string",
238
+ "required": false
239
+ },
240
+ {
241
+ "name": "attachments[*].actions[*].style",
242
+ "displayName": "Attachments actions style",
243
+ "type": "string",
244
+ "dataType": "string",
245
+ "required": false
246
+ },
247
+ {
248
+ "name": "attachments[*].actions[*].text",
249
+ "displayName": "Attachments actions text",
250
+ "type": "string",
251
+ "dataType": "string",
252
+ "required": false
253
+ },
254
+ {
255
+ "name": "attachments[*].actions[*].type",
256
+ "displayName": "Attachments actions type",
257
+ "type": "string",
258
+ "dataType": "string",
259
+ "required": false
260
+ },
261
+ {
262
+ "name": "attachments[*].actions[*].value",
263
+ "displayName": "Attachments actions value",
264
+ "type": "string",
265
+ "dataType": "string",
266
+ "required": false
267
+ },
268
+ {
269
+ "name": "attachments[*].attachment_type",
270
+ "displayName": "Attachment Type",
271
+ "type": "string",
272
+ "dataType": "string",
273
+ "required": false
274
+ },
275
+ {
276
+ "name": "attachments[*].callback_id",
277
+ "displayName": "Attachments callback ID",
278
+ "type": "string",
279
+ "dataType": "string",
280
+ "required": false
281
+ },
282
+ {
283
+ "name": "attachments[*].color",
284
+ "displayName": "Color",
285
+ "type": "string",
286
+ "dataType": "string",
287
+ "required": false
288
+ },
289
+ {
290
+ "name": "attachments[*].fallback",
291
+ "displayName": "Attachments fallback",
292
+ "type": "string",
293
+ "dataType": "string",
294
+ "required": false
295
+ },
296
+ {
297
+ "name": "attachments[*].text",
298
+ "displayName": "Attachments text",
299
+ "type": "string",
300
+ "dataType": "string",
301
+ "required": false
302
+ },
303
+ {
304
+ "name": "buttons",
305
+ "displayName": "Button actions",
306
+ "type": "string",
307
+ "dataType": "string",
308
+ "required": false,
309
+ "description": "Button actions"
310
+ },
311
+ {
312
+ "name": "channel",
313
+ "displayName": "User",
314
+ "type": "string",
315
+ "dataType": "string",
316
+ "required": true,
317
+ "description": "The message recipient's User ID",
318
+ "reference": {
319
+ "objectName": "curated_users",
320
+ "lookupValue": "id",
321
+ "lookupNames": [
322
+ "profile.real_name",
323
+ "profile.email",
324
+ "id"
325
+ ],
326
+ "path": "/curated_users?fields=profile.real_name,profile.email,id"
327
+ }
328
+ },
329
+ {
330
+ "name": "fields",
331
+ "displayName": "Message fields",
332
+ "type": "string",
333
+ "dataType": "string",
334
+ "required": false,
335
+ "description": "Message fields"
336
+ },
337
+ {
338
+ "name": "icon_emoji",
339
+ "displayName": "Bot icon",
340
+ "type": "string",
341
+ "dataType": "string",
342
+ "required": false,
343
+ "description": "Bot icon"
344
+ },
345
+ {
346
+ "name": "icon_url",
347
+ "displayName": "Icon url",
348
+ "type": "string",
349
+ "dataType": "string",
350
+ "required": false,
351
+ "description": "URL to an image to use as the icon for this message"
352
+ },
353
+ {
354
+ "name": "image",
355
+ "displayName": "Image URL",
356
+ "type": "string",
357
+ "dataType": "string",
358
+ "required": false,
359
+ "description": "The URL of the secondary image attachment to be shared as part of the message. The image will always be at the bottom of the entire message block"
360
+ },
361
+ {
362
+ "name": "link_names",
363
+ "displayName": "Link names",
364
+ "type": "boolean",
365
+ "dataType": "boolean",
366
+ "required": false,
367
+ "description": "Whether to link and mention all the user groups automatically if the respective names are mentioned in the text message?"
368
+ },
369
+ {
370
+ "name": "messageToSend",
371
+ "displayName": "Message",
372
+ "type": "string",
373
+ "dataType": "string",
374
+ "required": true,
375
+ "description": "This is the main text that people will see in the message. It's also used for notifications and in places where rich formatting isn't supported."
376
+ },
377
+ {
378
+ "name": "metadata.event_payload.id",
379
+ "displayName": "Metadata event payload ID",
380
+ "type": "string",
381
+ "dataType": "string",
382
+ "required": false
383
+ },
384
+ {
385
+ "name": "metadata.event_payload.title",
386
+ "displayName": "Metadata event payload title",
387
+ "type": "string",
388
+ "dataType": "string",
389
+ "required": false
390
+ },
391
+ {
392
+ "name": "metadata.event_type",
393
+ "displayName": "Metadata event type",
394
+ "type": "string",
395
+ "dataType": "string",
396
+ "required": false
397
+ },
398
+ {
399
+ "name": "mrkdwn",
400
+ "displayName": "Mrkdwn",
401
+ "type": "boolean",
402
+ "dataType": "boolean",
403
+ "required": false
404
+ },
405
+ {
406
+ "name": "parse",
407
+ "displayName": "Formatting options (parse)",
408
+ "type": "string",
409
+ "dataType": "string",
410
+ "required": false,
411
+ "description": "Change how messages are treated. Pass 'none' for removing hyperlinks and pass 'full' to ignore slack\u2019s default formatting",
412
+ "enum": [
413
+ {
414
+ "value": "none"
415
+ },
416
+ {
417
+ "value": "full"
418
+ }
419
+ ]
420
+ },
421
+ {
422
+ "name": "reply_broadcast",
423
+ "displayName": "Reply broadcast",
424
+ "type": "boolean",
425
+ "dataType": "boolean",
426
+ "required": false
427
+ },
428
+ {
429
+ "name": "thread_ts",
430
+ "displayName": "Message timestamp",
431
+ "type": "string",
432
+ "dataType": "string",
433
+ "required": false,
434
+ "description": "The ID (timestamp) of the message sent"
435
+ },
436
+ {
437
+ "name": "unfurl_links",
438
+ "displayName": "Unfurl links",
439
+ "type": "boolean",
440
+ "dataType": "boolean",
441
+ "required": false,
442
+ "description": "Whether to display the preview of the links mentioned in the text message?"
443
+ },
444
+ {
445
+ "name": "unfurl_media",
446
+ "displayName": "Unfurl media",
447
+ "type": "boolean",
448
+ "dataType": "boolean",
449
+ "required": false
450
+ },
451
+ {
452
+ "name": "username",
453
+ "displayName": "Bot name",
454
+ "type": "string",
455
+ "dataType": "string",
456
+ "required": false,
457
+ "description": "Bot name"
458
+ }
459
+ ]
460
+ },
461
+ "inputDefaults": {},
462
+ "outputDefinition": {
463
+ "output": {
464
+ "type": "object",
465
+ "description": "The return value of the connector.",
466
+ "source": "=result.response",
467
+ "var": "output"
468
+ },
469
+ "error": {
470
+ "type": "object",
471
+ "description": "Error information if the node fails",
472
+ "source": "=Error",
473
+ "var": "error",
474
+ "schema": {
475
+ "$schema": "http://json-schema.org/draft-07/schema#",
476
+ "type": "object",
477
+ "required": [
478
+ "code",
479
+ "message",
480
+ "detail",
481
+ "category",
482
+ "status"
483
+ ],
484
+ "properties": {
485
+ "code": {
486
+ "type": "string",
487
+ "description": "Error code as a string"
488
+ },
489
+ "message": {
490
+ "type": "string",
491
+ "description": "High-level error message"
492
+ },
493
+ "detail": {
494
+ "type": "string",
495
+ "description": "Detailed error description"
496
+ },
497
+ "category": {
498
+ "type": "string",
499
+ "description": "Error category"
500
+ },
501
+ "status": {
502
+ "type": "integer",
503
+ "description": "HTTP status code"
504
+ }
505
+ },
506
+ "additionalProperties": false
507
+ }
508
+ }
509
+ },
510
+ "debug": {
511
+ "runtime": "bpmnEngine"
512
+ }
513
+ }
@@ -0,0 +1,122 @@
1
+ {
2
+ "schemaVersion": "1",
3
+ "nodeType": "uipath.connector.uipath-uipath-dataservice.query-entity-records",
4
+ "version": "1.0.0",
5
+ "category": "connector.196550",
6
+ "tags": [
7
+ "connector",
8
+ "activity"
9
+ ],
10
+ "connector": {
11
+ "key": "uipath-uipath-dataservice",
12
+ "name": "UiPath Data Fabric"
13
+ },
14
+ "operation": {
15
+ "name": "List",
16
+ "objectName": "QueryEntityRecordsCurated",
17
+ "objectDisplayName": "Query Entity Records",
18
+ "httpMethod": "POST",
19
+ "path": "/v2/{entityName}/qer",
20
+ "subType": "standard",
21
+ "supportsStreaming": false,
22
+ "activityType": "Curated",
23
+ "dispatchStyle": "query-post",
24
+ "paramGrammars": {
25
+ "queryExpression": "sql-where"
26
+ },
27
+ "pathTemplate": "/v2/{entityName}/qer",
28
+ "parameters": [
29
+ {
30
+ "name": "entityName",
31
+ "type": "path",
32
+ "dataType": "string",
33
+ "required": true,
34
+ "displayName": "Entity",
35
+ "description": "Enter entity name",
36
+ "reference": {
37
+ "objectName": "system",
38
+ "lookupNames": [
39
+ "displayName"
40
+ ],
41
+ "lookupValue": "name",
42
+ "path": "/standard-objects"
43
+ }
44
+ },
45
+ {
46
+ "name": "queryExpression",
47
+ "type": "query",
48
+ "dataType": "string",
49
+ "required": false,
50
+ "displayName": "Query",
51
+ "description": "Enter CEQL query to filter entity records"
52
+ },
53
+ {
54
+ "name": "start",
55
+ "type": "query",
56
+ "dataType": "integer",
57
+ "required": false,
58
+ "displayName": "Skip",
59
+ "description": "Specify the number of records to skip from the start",
60
+ "defaultValue": 0
61
+ },
62
+ {
63
+ "name": "limit",
64
+ "type": "query",
65
+ "dataType": "integer",
66
+ "required": false,
67
+ "displayName": "Top",
68
+ "description": "Specify number of records to return at most. Range: 1-1000. Default: 100.",
69
+ "defaultValue": 100
70
+ },
71
+ {
72
+ "name": "expansionLevel",
73
+ "type": "query",
74
+ "dataType": "integer",
75
+ "required": false,
76
+ "displayName": "Related record depth",
77
+ "description": "Specify the depth of related records to be retrieved from the service. Range: 1-3. Default: 3.",
78
+ "defaultValue": 3
79
+ },
80
+ {
81
+ "name": "isAscending",
82
+ "type": "query",
83
+ "dataType": "boolean",
84
+ "required": false,
85
+ "displayName": "Sort ascending",
86
+ "description": "Specify whether to sort in ascending (true) or descending (false) order",
87
+ "defaultValue": false
88
+ }
89
+ ]
90
+ },
91
+ "display": {
92
+ "label": "Query Entity Records",
93
+ "description": "(UiPath Data Fabric) Retrieves a list of records for the selected Entity from Data Fabric, according to specified filters.",
94
+ "icon": "https://alpha.uipath.com/311c6049-4966-4ef2-a6f3-8ceccaf38d54/studio_/typecache/icons/98381fa079bbcf73264f551006d6ef7580fb53992f3d9f94361eb5d9e06040cb.svg",
95
+ "iconBackground": "",
96
+ "iconBackgroundDark": "",
97
+ "operationLabel": "Query Entity Records"
98
+ },
99
+ "runtime": {
100
+ "bpmnType": "bpmn:SendTask",
101
+ "serviceType": "Intsvc.ActivityExecution",
102
+ "activityConfigurationVersion": "v1",
103
+ "requiresConnection": true,
104
+ "requiresFolderKey": true,
105
+ "requiresConnectionForSchema": true
106
+ },
107
+ "inputSchema": {
108
+ "fields": [
109
+ {
110
+ "name": "_sortFieldName",
111
+ "displayName": "Sort by field",
112
+ "type": "string",
113
+ "dataType": "string",
114
+ "required": false,
115
+ "description": "Specify the field to sort the results by"
116
+ }
117
+ ]
118
+ },
119
+ "outputSchema": {
120
+ "fields": []
121
+ }
122
+ }