@uipath/maestro-sdk 1.0.4 → 1.195.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.
- package/dist/bpmn-validation/project-validator.js +3866 -0
- package/dist/index.js +33882 -21149
- package/dist/manifest/bpmn-spec.js +53 -41
- package/dist/src/bpmn-validation/project-validator.d.ts +64 -0
- package/dist/src/client.d.ts +20 -0
- package/dist/src/debug-service.d.ts +63 -1
- package/dist/src/debug-types.d.ts +14 -0
- package/dist/src/flags/manifest-flags.d.ts +1 -0
- package/dist/src/index.d.ts +5 -3
- package/dist/src/manifest/types.d.ts +2 -0
- package/dist/src/query-string.d.ts +2 -1
- package/dist/src/registry/filter-engine.d.ts +3 -3
- package/dist/src/registry/index.d.ts +4 -3
- package/dist/src/registry/integration-service-fetcher.d.ts +1 -1
- package/dist/src/registry/known-types.d.ts +17 -0
- package/dist/src/registry/node-storage.d.ts +31 -3
- package/dist/src/registry/node-sync-service.d.ts +6 -0
- package/dist/src/registry/solution-discovery.d.ts +12 -0
- package/dist/src/shared-commands/instances.d.ts +2 -0
- package/dist/src/with-pims-call.d.ts +37 -1
- package/package.json +41 -52
package/package.json
CHANGED
|
@@ -1,57 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"name": "@uipath/maestro-sdk",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"version": "1.195.0",
|
|
5
|
+
"description": "SDK for the UiPath Maestro (PIMS) API — process instance management.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/UiPath/cli.git",
|
|
9
|
+
"directory": "packages/maestro-sdk"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"registry": "https://registry.npmjs.org/"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"uipath",
|
|
16
|
+
"maestro",
|
|
17
|
+
"pims",
|
|
18
|
+
"sdk"
|
|
19
|
+
],
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"types": "./dist/src/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/src/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
9
27
|
},
|
|
10
|
-
"
|
|
11
|
-
|
|
28
|
+
"./manifest/bpmn-spec": {
|
|
29
|
+
"types": "./dist/src/manifest/bpmn-spec.d.ts",
|
|
30
|
+
"import": "./dist/manifest/bpmn-spec.js",
|
|
31
|
+
"default": "./dist/manifest/bpmn-spec.js"
|
|
12
32
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"maestro",
|
|
16
|
-
"pims",
|
|
17
|
-
"sdk"
|
|
18
|
-
],
|
|
19
|
-
"type": "module",
|
|
20
|
-
"main": "./dist/index.js",
|
|
21
|
-
"types": "./dist/src/index.d.ts",
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./dist/src/index.d.ts",
|
|
25
|
-
"default": "./dist/index.js"
|
|
26
|
-
},
|
|
27
|
-
"./manifest/bpmn-spec": {
|
|
28
|
-
"types": "./dist/src/manifest/bpmn-spec.d.ts",
|
|
29
|
-
"import": "./dist/manifest/bpmn-spec.js",
|
|
30
|
-
"default": "./dist/manifest/bpmn-spec.js"
|
|
31
|
-
},
|
|
32
|
-
"./manifest/types": {
|
|
33
|
-
"types": "./dist/src/manifest/types.d.ts"
|
|
34
|
-
}
|
|
33
|
+
"./manifest/types": {
|
|
34
|
+
"types": "./dist/src/manifest/types.d.ts"
|
|
35
35
|
},
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"@uipath/auth": "1.0.4",
|
|
47
|
-
"@uipath/common": "1.0.4",
|
|
48
|
-
"@uipath/filesystem": "1.0.4",
|
|
49
|
-
"@uipath/flow-core": "^0.2.205",
|
|
50
|
-
"@uipath/integrationservice-sdk": "1.0.1",
|
|
51
|
-
"@uipath/orchestrator-sdk": "1.0.0",
|
|
52
|
-
"@types/node": "^25.5.2",
|
|
53
|
-
"commander": "^14.0.3",
|
|
54
|
-
"typescript": "^6.0.2"
|
|
55
|
-
},
|
|
56
|
-
"gitHead": "e496ee5b65951c8047259ab50d7d6a284eea58a9"
|
|
36
|
+
"./bpmn-validation": {
|
|
37
|
+
"types": "./dist/src/bpmn-validation/project-validator.d.ts",
|
|
38
|
+
"import": "./dist/bpmn-validation/project-validator.js",
|
|
39
|
+
"default": "./dist/bpmn-validation/project-validator.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist"
|
|
44
|
+
],
|
|
45
|
+
"gitHead": "65fabb84552758b2710d8ca68470e70a9b1d19bc"
|
|
57
46
|
}
|