@uipath/maestro-builder-sdk 6.3.0 → 6.4.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/api-index.md +6 -6
- package/package.json +3 -3
package/dist/api-index.md
CHANGED
|
@@ -19,7 +19,7 @@ compiler checks your source against, and it carries the `@remarks` and
|
|
|
19
19
|
`@example` bodies the reference pages leave out. The span below is the whole
|
|
20
20
|
declaration including its doc comment, so one read is the complete answer.
|
|
21
21
|
|
|
22
|
-
Paths are relative to the
|
|
22
|
+
Paths are relative to the package root — the directory above this file:
|
|
23
23
|
|
|
24
24
|
```
|
|
25
25
|
node_modules/@uipath/maestro-builder-sdk/dist/core/actions.d.ts lines 539-610
|
|
@@ -29,11 +29,11 @@ Open the file at that line. No search, no `grep`, nothing shell-specific —
|
|
|
29
29
|
which also means this works on Windows, where the command the reference pages
|
|
30
30
|
used to suggest does not.
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
versions — a line moves whenever
|
|
35
|
-
|
|
36
|
-
|
|
32
|
+
This file is generated by the build that emits the `.d.ts` files beside it, so
|
|
33
|
+
its spans are always true of THIS installed version. They are not stable across
|
|
34
|
+
versions — a line moves whenever a declaration above it changes — which is why
|
|
35
|
+
the index ships here and nowhere else: anywhere with its own release cadence
|
|
36
|
+
could hand you spans for a version you do not have.
|
|
37
37
|
|
|
38
38
|
## `@uipath/maestro-builder-sdk`
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-builder-sdk",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.4.0",
|
|
4
4
|
"description": "Build UiPath Flow, Case, and BPMN artifacts by writing TypeScript.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://docs.uipath.com/maestro",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"node": ">=22.6"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
|
-
"build": "tsc && tsc -p cli/tsconfig.json && cp
|
|
67
|
+
"build": "tsc && tsc -p cli/tsconfig.json && cp src/core-definitions.json dist/core-definitions.json && cp src/ixp-definition.json dist/ixp-definition.json && cp src/bpmn/uipath-moddle.v1.json dist/bpmn/uipath-moddle.v1.json && cp src/bpmn/registry-types.json dist/bpmn/registry-types.json && node scripts/copy-registry-generators.mjs && node scripts/extract-api-model.mjs --check && node scripts/gen-api-index.mjs && node scripts/api-doc-coverage.mjs --check && node scripts/check-api-docs.mjs",
|
|
68
68
|
"check:package": "node scripts/check-package-contents.mjs",
|
|
69
69
|
"generate:api": "node scripts/extract-api-model.mjs && node scripts/gen-api-index.mjs",
|
|
70
70
|
"docs:check": "node scripts/check-api-docs.mjs",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"@types/node": "^22.7.0",
|
|
88
88
|
"esbuild": "^0.28.1"
|
|
89
89
|
},
|
|
90
|
-
"gitref": "
|
|
90
|
+
"gitref": "594dde34b44308821784ee0ca69b529f3900374d"
|
|
91
91
|
}
|