@uipath/maestro-sdk 1.202.0 → 1.203.0-preview.160
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.
- package/dist/THIRD-PARTY-NOTICES.md +80 -3
- package/dist/bpmn-layout/index.js +104519 -0
- package/dist/bpmn-packaging/index.js +5801 -176
- package/dist/bpmn-validation/project-validator.js +6602 -197
- package/dist/debug-http-client.js +274 -25
- package/dist/debug-service.js +287 -28
- package/dist/index.js +25007 -12655
- package/dist/json-input.js +274 -25
- package/dist/manifest/bpmn-spec.js +94 -94
- package/dist/registry/agent-metadata-reader.js +64 -0
- package/dist/registry/command.js +10264 -3788
- package/dist/registry/snapshot.js +274 -25
- package/dist/shared-commands/index.js +308 -38
- package/dist/shared-utils.js +274 -25
- package/dist/src/bpmn-layout/apply.d.ts +9 -0
- package/dist/src/bpmn-layout/index.d.ts +12 -0
- package/dist/src/bpmn-layout/layout.d.ts +12 -0
- package/dist/src/bpmn-layout/parse.d.ts +18 -0
- package/dist/src/bpmn-layout/types.d.ts +53 -0
- package/dist/src/bpmn-validation/project-validator.d.ts +10 -0
- package/dist/src/registry/agent-metadata-reader.d.ts +26 -0
- package/dist/src/registry/integration-service-fetcher.d.ts +2 -2
- package/dist/src/registry/integration-service-metadata.types.d.ts +1 -4
- package/dist/src/registry/node-storage.d.ts +5 -5
- package/dist/src/registry/node-sync-service.d.ts +1 -2
- package/dist/src/registry/solution-discovery.d.ts +6 -4
- package/dist/with-pims-call.js +295 -35
- package/package.json +13 -2
|
@@ -5,10 +5,15 @@ compiled into its `dist/` output rather than installed alongside it.
|
|
|
5
5
|
Their licences and copyright notices are reproduced here in full, as
|
|
6
6
|
those licences require.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
38 bundled dependencies:
|
|
9
9
|
|
|
10
10
|
- @jsep-plugin/object@1.2.2 — MIT
|
|
11
|
-
- @serverlessworkflow/sdk@1.0.1 —
|
|
11
|
+
- @serverlessworkflow/sdk@1.0.1 — Apache-2.0
|
|
12
|
+
- @uipath/agents-storage-schemas@1.35.0 — see below
|
|
13
|
+
- @uipath/flow-core@0.115.4-develop — MIT
|
|
14
|
+
- @uipath/flow-schema@0.72.2-develop — MIT
|
|
15
|
+
- @uipath/integration-service-design-time@0.25.2 — see below
|
|
16
|
+
- acorn@8.17.0 — MIT
|
|
12
17
|
- ajv@8.20.0 — MIT
|
|
13
18
|
- ajv-errors@3.0.0 — MIT
|
|
14
19
|
- base64-js@1.5.1 — MIT
|
|
@@ -74,7 +79,9 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
74
79
|
|
|
75
80
|
## @serverlessworkflow/sdk@1.0.1
|
|
76
81
|
|
|
77
|
-
|
|
82
|
+
Licence decision: Its `license` field is a URL to the Apache-2.0 text rather than an SPDX id, so it reads as unknown to every scanner. Normalised to the licence that URL names.
|
|
83
|
+
|
|
84
|
+
SPDX: Apache-2.0
|
|
78
85
|
|
|
79
86
|
```
|
|
80
87
|
Apache License
|
|
@@ -282,6 +289,76 @@ SPDX: http://www.apache.org/licenses/LICENSE-2.0.txt
|
|
|
282
289
|
|
|
283
290
|
---
|
|
284
291
|
|
|
292
|
+
## @uipath/agents-storage-schemas@1.35.0
|
|
293
|
+
|
|
294
|
+
SPDX:
|
|
295
|
+
|
|
296
|
+
The upstream package ships no licence file here; `` is the
|
|
297
|
+
licence it is distributed under. The canonical text of that licence
|
|
298
|
+
applies, with copyright held by the package's authors.
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
## @uipath/flow-core@0.115.4-develop
|
|
303
|
+
|
|
304
|
+
SPDX: MIT
|
|
305
|
+
|
|
306
|
+
The upstream package ships no licence file here; `MIT` is the
|
|
307
|
+
licence it is distributed under. The canonical text of that licence
|
|
308
|
+
applies, with copyright held by the package's authors.
|
|
309
|
+
|
|
310
|
+
---
|
|
311
|
+
|
|
312
|
+
## @uipath/flow-schema@0.72.2-develop
|
|
313
|
+
|
|
314
|
+
SPDX: MIT
|
|
315
|
+
|
|
316
|
+
The upstream package ships no licence file here; `MIT` is the
|
|
317
|
+
licence it is distributed under. The canonical text of that licence
|
|
318
|
+
applies, with copyright held by the package's authors.
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
## @uipath/integration-service-design-time@0.25.2
|
|
323
|
+
|
|
324
|
+
SPDX:
|
|
325
|
+
|
|
326
|
+
The upstream package ships no licence file here; `` is the
|
|
327
|
+
licence it is distributed under. The canonical text of that licence
|
|
328
|
+
applies, with copyright held by the package's authors.
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
## acorn@8.17.0
|
|
333
|
+
|
|
334
|
+
SPDX: MIT
|
|
335
|
+
|
|
336
|
+
```
|
|
337
|
+
MIT License
|
|
338
|
+
|
|
339
|
+
Copyright (C) 2012-2022 by various contributors (see AUTHORS)
|
|
340
|
+
|
|
341
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
342
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
343
|
+
in the Software without restriction, including without limitation the rights
|
|
344
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
345
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
346
|
+
furnished to do so, subject to the following conditions:
|
|
347
|
+
|
|
348
|
+
The above copyright notice and this permission notice shall be included in
|
|
349
|
+
all copies or substantial portions of the Software.
|
|
350
|
+
|
|
351
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
352
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
353
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
354
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
355
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
356
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
357
|
+
THE SOFTWARE.
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
---
|
|
361
|
+
|
|
285
362
|
## ajv@8.20.0
|
|
286
363
|
|
|
287
364
|
SPDX: MIT
|