@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,227 @@
1
+ {
2
+ "schemaVersion": "1",
3
+ "nodeType": "uipath.connector.uipath-microsoft-azureactivedirectory.list-groups",
4
+ "version": "1.0.0",
5
+ "category": "connector.196634",
6
+ "tags": [
7
+ "connector",
8
+ "activity"
9
+ ],
10
+ "connector": {
11
+ "key": "uipath-microsoft-azureactivedirectory",
12
+ "name": "Microsoft Azure Active Directory"
13
+ },
14
+ "operation": {
15
+ "name": "List",
16
+ "objectName": "groups",
17
+ "objectDisplayName": "List Groups",
18
+ "httpMethod": "GET",
19
+ "path": "/groups",
20
+ "subType": "standard",
21
+ "supportsStreaming": false,
22
+ "activityType": "Curated",
23
+ "pathTemplate": "/groups",
24
+ "parameters": [
25
+ {
26
+ "name": "pageSize",
27
+ "type": "query",
28
+ "dataType": "integer",
29
+ "required": false,
30
+ "displayName": "Page size",
31
+ "description": "The number of resources to return in a given page"
32
+ },
33
+ {
34
+ "name": "fields",
35
+ "type": "query",
36
+ "dataType": "string",
37
+ "required": false,
38
+ "displayName": "Fields",
39
+ "description": "The filter query parameter"
40
+ },
41
+ {
42
+ "name": "nextPage",
43
+ "type": "query",
44
+ "dataType": "string",
45
+ "required": false,
46
+ "displayName": "Next page",
47
+ "description": "The next page cursor, taken from the response header: `elements-next-page-token`"
48
+ },
49
+ {
50
+ "name": "where",
51
+ "type": "query",
52
+ "dataType": "string",
53
+ "required": false,
54
+ "displayName": "Where",
55
+ "description": "The CEQL search expression, or the where clause, without the WHERE keyword. For example, to search for objects last modified on or after Oct 22, 2019\u2019, the search expression will be where=lastModifiedDate>=\u20192019-10-22T00:00:00.000Z"
56
+ }
57
+ ]
58
+ },
59
+ "display": {
60
+ "label": "List Groups",
61
+ "description": "(Microsoft Azure Active Directory) Lists groups",
62
+ "icon": "https://alpha.uipath.com/bc2ddac5-57bc-40e6-93fe-3b319b60ce36/studio_/typecache/icons/48fb36532366ef43c1565138862295e25a1696bc96d6619bd3d5d9ce8620409c.svg",
63
+ "iconBackground": "linear-gradient(225deg, #FAFAFB 0%, #ECEDEF 100%)",
64
+ "iconBackgroundDark": "linear-gradient(225deg, #526069 0%, rgba(50, 60, 66, 0.6) 100%)",
65
+ "operationLabel": "List Groups"
66
+ },
67
+ "runtime": {
68
+ "bpmnType": "bpmn:SendTask",
69
+ "serviceType": "Intsvc.ActivityExecution",
70
+ "activityConfigurationVersion": "v1",
71
+ "requiresConnection": true,
72
+ "requiresFolderKey": true,
73
+ "requiresConnectionForSchema": false
74
+ },
75
+ "inputSchema": {
76
+ "fields": [
77
+ {
78
+ "name": "pageSize",
79
+ "type": "integer",
80
+ "required": false,
81
+ "description": "The number of resources to return in a given page"
82
+ },
83
+ {
84
+ "name": "fields",
85
+ "type": "string",
86
+ "required": false,
87
+ "description": "The filter query parameter"
88
+ },
89
+ {
90
+ "name": "nextPage",
91
+ "type": "string",
92
+ "required": false,
93
+ "description": "The next page cursor, taken from the response header: `elements-next-page-token`"
94
+ },
95
+ {
96
+ "name": "where",
97
+ "type": "string",
98
+ "required": false,
99
+ "description": "The CEQL search expression, or the where clause, without the WHERE keyword. For example, to search for objects last modified on or after Oct 22, 2019\u2019, the search expression will be where=lastModifiedDate>=\u20192019-10-22T00:00:00.000Z"
100
+ }
101
+ ]
102
+ },
103
+ "outputSchema": {
104
+ "fields": [
105
+ {
106
+ "name": "groupTypes[*]",
107
+ "type": "string",
108
+ "displayName": "Group types",
109
+ "description": "The types of the group, such as security or Microsoft 365."
110
+ },
111
+ {
112
+ "name": "mail",
113
+ "type": "string",
114
+ "displayName": "Group email address",
115
+ "description": "The email address associated with the group."
116
+ },
117
+ {
118
+ "name": "displayName",
119
+ "type": "string",
120
+ "displayName": "Name",
121
+ "description": "The display name of the group."
122
+ },
123
+ {
124
+ "name": "mailEnabled",
125
+ "type": "boolean",
126
+ "displayName": "Mail Enabled",
127
+ "description": "Specifies whether the group is mail-enabled."
128
+ },
129
+ {
130
+ "name": "onPremisesNetBiosName",
131
+ "type": "string",
132
+ "displayName": "On-premises netbios name",
133
+ "description": "The NetBIOS name of the group in the on-premises directory."
134
+ },
135
+ {
136
+ "name": "createdDateTime",
137
+ "type": "string",
138
+ "displayName": "Creation date and time",
139
+ "description": "The date and time when the group was created."
140
+ },
141
+ {
142
+ "name": "description",
143
+ "type": "string",
144
+ "displayName": "Description",
145
+ "description": "The description of the group."
146
+ },
147
+ {
148
+ "name": "onPremisesSyncEnabled",
149
+ "type": "boolean",
150
+ "displayName": "On-premises sync enabled",
151
+ "description": "Indicates if the group is synchronized with on-premises directory."
152
+ },
153
+ {
154
+ "name": "proxyAddresses[*]",
155
+ "type": "string",
156
+ "displayName": "Proxy addresses list",
157
+ "description": "Contains the list of proxy addresses associated with the group."
158
+ },
159
+ {
160
+ "name": "onPremisesSamAccountName",
161
+ "type": "string",
162
+ "displayName": "On-premises sam account name",
163
+ "description": "The SAM account name used in on-premises environments."
164
+ },
165
+ {
166
+ "name": "id",
167
+ "type": "string",
168
+ "displayName": "Group identifier",
169
+ "description": "A unique identifier for the group."
170
+ },
171
+ {
172
+ "name": "mailNickname",
173
+ "type": "string",
174
+ "displayName": "Mail Nickname",
175
+ "description": "The mail alias for the group."
176
+ },
177
+ {
178
+ "name": "visibility",
179
+ "type": "string",
180
+ "displayName": "Visibility",
181
+ "description": "The visibility of the group."
182
+ },
183
+ {
184
+ "name": "classification",
185
+ "type": "string",
186
+ "displayName": "Group classification",
187
+ "description": "A label that categorizes the group for organizational purposes."
188
+ },
189
+ {
190
+ "name": "onPremisesSecurityIdentifier",
191
+ "type": "string",
192
+ "displayName": "On-premises security identifier",
193
+ "description": "A unique ID used to identify the group in on-premises systems."
194
+ },
195
+ {
196
+ "name": "renewedDateTime",
197
+ "type": "string",
198
+ "displayName": "Renewed date and time",
199
+ "description": "The date and time when the group was last renewed."
200
+ },
201
+ {
202
+ "name": "onPremisesDomainName",
203
+ "type": "string",
204
+ "displayName": "On-premises domain name",
205
+ "description": "The domain name of the group in the on-premises directory."
206
+ },
207
+ {
208
+ "name": "securityIdentifier",
209
+ "type": "string",
210
+ "displayName": "Security identifier",
211
+ "description": "A unique identifier for the group used for security purposes."
212
+ },
213
+ {
214
+ "name": "onPremisesLastSyncDateTime",
215
+ "type": "string",
216
+ "displayName": "On-premises last sync date and time",
217
+ "description": "The date and time when the group was last synced with on-premises."
218
+ },
219
+ {
220
+ "name": "securityEnabled",
221
+ "type": "boolean",
222
+ "displayName": "Security Enabled",
223
+ "description": "Specifies whether the group is a security group."
224
+ }
225
+ ]
226
+ }
227
+ }
@@ -0,0 +1,373 @@
1
+ {
2
+ "nodeType": "uipath.connector.uipath-microsoft-azureactivedirectory.list-groups",
3
+ "version": "1.0.0",
4
+ "category": "connector.196634",
5
+ "tags": [
6
+ "connector",
7
+ "activity"
8
+ ],
9
+ "sortOrder": 515,
10
+ "supportsErrorHandling": true,
11
+ "description": "(Microsoft Azure Active Directory) Lists groups",
12
+ "display": {
13
+ "label": "List Groups",
14
+ "description": "(Microsoft Azure Active Directory) Lists groups",
15
+ "icon": "https://alpha.uipath.com/bc2ddac5-57bc-40e6-93fe-3b319b60ce36/studio_/typecache/icons/48fb36532366ef43c1565138862295e25a1696bc96d6619bd3d5d9ce8620409c.svg",
16
+ "iconBackground": "linear-gradient(225deg, #FAFAFB 0%, #ECEDEF 100%)",
17
+ "iconBackgroundDark": "linear-gradient(225deg, #526069 0%, rgba(50, 60, 66, 0.6) 100%)"
18
+ },
19
+ "handleConfiguration": [
20
+ {
21
+ "position": "left",
22
+ "handles": [
23
+ {
24
+ "id": "input",
25
+ "type": "target",
26
+ "handleType": "input",
27
+ "label": ""
28
+ }
29
+ ]
30
+ },
31
+ {
32
+ "position": "right",
33
+ "handles": [
34
+ {
35
+ "id": "output",
36
+ "type": "source",
37
+ "handleType": "output",
38
+ "label": ""
39
+ }
40
+ ]
41
+ }
42
+ ],
43
+ "model": {
44
+ "type": "bpmn:SendTask",
45
+ "serviceType": "Intsvc.ActivityExecution",
46
+ "debug": {
47
+ "runtime": "bpmnEngine"
48
+ },
49
+ "context": [
50
+ {
51
+ "name": "connectorKey",
52
+ "type": "string",
53
+ "value": "uipath-microsoft-azureactivedirectory"
54
+ },
55
+ {
56
+ "name": "operation",
57
+ "type": "string"
58
+ },
59
+ {
60
+ "name": "objectName",
61
+ "value": "groups",
62
+ "type": "string"
63
+ },
64
+ {
65
+ "name": "method",
66
+ "type": "string",
67
+ "value": "GET"
68
+ },
69
+ {
70
+ "name": "connection",
71
+ "type": "string",
72
+ "value": "<bindings.uipath-microsoft-azureactivedirectory connection>"
73
+ },
74
+ {
75
+ "name": "folderKey",
76
+ "type": "string",
77
+ "value": "<bindings.FolderKey>"
78
+ },
79
+ {
80
+ "name": "activityConfigurationVersion",
81
+ "type": "string",
82
+ "value": "v1"
83
+ },
84
+ {
85
+ "name": "metadata",
86
+ "body": {
87
+ "telemetryData": {
88
+ "connectorKey": "uipath-microsoft-azureactivedirectory",
89
+ "connectorName": "List Groups"
90
+ },
91
+ "inputMetadata": {},
92
+ "errorState": {
93
+ "hasError": true
94
+ }
95
+ },
96
+ "type": "json"
97
+ }
98
+ ]
99
+ },
100
+ "form": {
101
+ "id": "connector-properties",
102
+ "title": "Connector configuration",
103
+ "sections": [
104
+ {
105
+ "id": "connector",
106
+ "title": "Connector",
107
+ "collapsible": true,
108
+ "defaultExpanded": true,
109
+ "fields": [
110
+ {
111
+ "label": "",
112
+ "name": "inputs.detail",
113
+ "type": "custom",
114
+ "component": "dap-config",
115
+ "componentProps": {
116
+ "connectorDetail": {
117
+ "isAppActivity": false,
118
+ "packageId": 196634,
119
+ "svgIconUrl": "icons/48fb36532366ef43c1565138862295e25a1696bc96d6619bd3d5d9ce8620409c.svg",
120
+ "displayName": "List Groups",
121
+ "assemblyQualifiedName": "UiPath.IntegrationService.Activities.Runtime.Activities.ConnectorActivity, UiPath.IntegrationService.Activities.Runtime, Version=1.26.0.0, Culture=neutral, PublicKeyToken=null",
122
+ "description": "Lists groups",
123
+ "activityColor": "#8AC4FF",
124
+ "configuration": "{\"connectorKey\":\"uipath-microsoft-azureactivedirectory\",\"objectName\":\"groups\",\"httpMethod\":\"GET\",\"activityType\":\"Curated\",\"version\":\"1.0.0\",\"supportsStreaming\":false,\"subType\":\"standard\"}",
125
+ "uiPathActivityTypeId": "c35558bf-d01f-31f5-a3f4-7753441b2c27",
126
+ "isExperimental": false,
127
+ "helpUrlTemplate": "https://docs.uipath.com/{0}/activities/other/latest/integration-service/uipath-microsoft-azureactivedirectory-List-Groups",
128
+ "isEnabled": true,
129
+ "targetPlatform": "CrossPlatform",
130
+ "isAdvanced": false,
131
+ "isRestricted": false,
132
+ "tags": []
133
+ }
134
+ }
135
+ }
136
+ ]
137
+ }
138
+ ]
139
+ },
140
+ "inputDefinition": {
141
+ "fields": []
142
+ },
143
+ "inputDefaults": {},
144
+ "outputDefinition": {
145
+ "output": {
146
+ "type": "object",
147
+ "description": "The return value of the connector.",
148
+ "source": "=result.response",
149
+ "var": "output"
150
+ },
151
+ "error": {
152
+ "type": "object",
153
+ "description": "Error information if the node fails",
154
+ "source": "=Error",
155
+ "var": "error",
156
+ "schema": {
157
+ "$schema": "http://json-schema.org/draft-07/schema#",
158
+ "type": "object",
159
+ "required": [
160
+ "code",
161
+ "message",
162
+ "detail",
163
+ "category",
164
+ "status"
165
+ ],
166
+ "properties": {
167
+ "code": {
168
+ "type": "string",
169
+ "description": "Error code as a string"
170
+ },
171
+ "message": {
172
+ "type": "string",
173
+ "description": "High-level error message"
174
+ },
175
+ "detail": {
176
+ "type": "string",
177
+ "description": "Detailed error description"
178
+ },
179
+ "category": {
180
+ "type": "string",
181
+ "description": "Error category"
182
+ },
183
+ "status": {
184
+ "type": "integer",
185
+ "description": "HTTP status code"
186
+ }
187
+ },
188
+ "additionalProperties": false
189
+ }
190
+ }
191
+ },
192
+ "debug": {
193
+ "runtime": "bpmnEngine"
194
+ },
195
+ "filterFields": {
196
+ "fields": [
197
+ {
198
+ "name": "expirationDateTime",
199
+ "displayName": "Expiration date and time",
200
+ "type": "string",
201
+ "required": false,
202
+ "description": "The date and time when the group will expire.",
203
+ "searchableOperators": [
204
+ "=",
205
+ ">=",
206
+ "<=",
207
+ "IN"
208
+ ]
209
+ },
210
+ {
211
+ "name": "membershipRule",
212
+ "displayName": "Membership rule",
213
+ "type": "string",
214
+ "required": false,
215
+ "description": "The rule that defines the membership criteria for the group.",
216
+ "searchableOperators": [
217
+ "=",
218
+ "IN"
219
+ ]
220
+ },
221
+ {
222
+ "name": "preferredLanguage",
223
+ "displayName": "Preferred language",
224
+ "type": "string",
225
+ "required": false,
226
+ "description": "The language preference set for the group.",
227
+ "searchableOperators": [
228
+ "=",
229
+ "IN"
230
+ ]
231
+ },
232
+ {
233
+ "name": "membershipRuleProcessingState",
234
+ "displayName": "Membership rule processing state",
235
+ "type": "string",
236
+ "required": false,
237
+ "description": "The current processing state of the membership rule.",
238
+ "searchableOperators": [
239
+ "=",
240
+ "IN"
241
+ ]
242
+ },
243
+ {
244
+ "name": "mail",
245
+ "displayName": "Group email address",
246
+ "type": "string",
247
+ "required": false,
248
+ "description": "The email address associated with the group.",
249
+ "searchableOperators": [
250
+ "=",
251
+ "IN"
252
+ ]
253
+ },
254
+ {
255
+ "name": "displayName",
256
+ "displayName": "Name",
257
+ "type": "string",
258
+ "required": false,
259
+ "description": "The display name of the group.",
260
+ "searchableOperators": [
261
+ "=",
262
+ "IN"
263
+ ]
264
+ },
265
+ {
266
+ "name": "mailEnabled",
267
+ "displayName": "Mail Enabled",
268
+ "type": "boolean",
269
+ "required": false,
270
+ "description": "Specifies whether the group is mail-enabled.",
271
+ "searchableOperators": [
272
+ "="
273
+ ]
274
+ },
275
+ {
276
+ "name": "description",
277
+ "displayName": "Description",
278
+ "type": "string",
279
+ "required": false,
280
+ "description": "The description of the group.",
281
+ "searchableOperators": [
282
+ "=",
283
+ "IN"
284
+ ]
285
+ },
286
+ {
287
+ "name": "onPremisesSyncEnabled",
288
+ "displayName": "On-premises sync enabled",
289
+ "type": "boolean",
290
+ "required": false,
291
+ "description": "Indicates if the group is synchronized with on-premises directory.",
292
+ "searchableOperators": [
293
+ "="
294
+ ]
295
+ },
296
+ {
297
+ "name": "isAssignableToRole",
298
+ "displayName": "Role assignability status",
299
+ "type": "boolean",
300
+ "required": false,
301
+ "description": "Indicates if the group can be assigned to a role.",
302
+ "searchableOperators": [
303
+ "="
304
+ ]
305
+ },
306
+ {
307
+ "name": "proxyAddresses[*]",
308
+ "displayName": "Proxy addresses list",
309
+ "type": "string",
310
+ "required": false,
311
+ "description": "Contains the list of proxy addresses associated with the group.",
312
+ "searchableOperators": [
313
+ "=",
314
+ "IN"
315
+ ]
316
+ },
317
+ {
318
+ "name": "id",
319
+ "displayName": "Group identifier",
320
+ "type": "string",
321
+ "required": false,
322
+ "description": "A unique identifier for the group.",
323
+ "searchableOperators": [
324
+ "=",
325
+ "IN"
326
+ ]
327
+ },
328
+ {
329
+ "name": "mailNickname",
330
+ "displayName": "Mail Nickname",
331
+ "type": "string",
332
+ "required": false,
333
+ "description": "The mail alias for the group.",
334
+ "searchableOperators": [
335
+ "=",
336
+ "IN"
337
+ ]
338
+ },
339
+ {
340
+ "name": "classification",
341
+ "displayName": "Group classification",
342
+ "type": "string",
343
+ "required": false,
344
+ "description": "A label that categorizes the group for organizational purposes.",
345
+ "searchableOperators": [
346
+ "=",
347
+ "IN"
348
+ ]
349
+ },
350
+ {
351
+ "name": "renewedDateTime",
352
+ "displayName": "Renewed date and time",
353
+ "type": "string",
354
+ "required": false,
355
+ "description": "The date and time when the group was last renewed.",
356
+ "searchableOperators": [
357
+ "=",
358
+ "IN"
359
+ ]
360
+ },
361
+ {
362
+ "name": "securityEnabled",
363
+ "displayName": "Security Enabled",
364
+ "type": "boolean",
365
+ "required": false,
366
+ "description": "Specifies whether the group is a security group.",
367
+ "searchableOperators": [
368
+ "="
369
+ ]
370
+ }
371
+ ]
372
+ }
373
+ }