@uipath/maestro-builder-sdk 6.1.0 → 6.3.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/README.md +3 -2
- package/dist/api-index.md +357 -351
- package/dist/api-members.md +969 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/maestro-builder-sdk",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.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,9 +64,9 @@
|
|
|
64
64
|
"node": ">=22.6"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
|
-
"build": "tsc && tsc -p cli/tsconfig.json && cp skill/references/api-index.md dist/api-index.md && 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-
|
|
67
|
+
"build": "tsc && tsc -p cli/tsconfig.json && cp skill/references/api-index.md dist/api-index.md && cp skill/references/api-members.md dist/api-members.md && 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 --check && node scripts/api-doc-coverage.mjs --check && node scripts/check-api-docs.mjs",
|
|
68
68
|
"check:package": "node scripts/check-package-contents.mjs",
|
|
69
|
-
"generate:api": "node scripts/extract-api-model.mjs && node scripts/gen-api-
|
|
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",
|
|
71
71
|
"coverage:flow": "node scripts/audit-flow-coverage.mjs",
|
|
72
72
|
"coverage:case": "node scripts/audit-case-coverage.mjs",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"@types/node": "^22.7.0",
|
|
88
88
|
"esbuild": "^0.28.1"
|
|
89
89
|
},
|
|
90
|
-
"gitref": "
|
|
90
|
+
"gitref": "a836c088fd55c8f0dc3f5650a89168f0c934d685"
|
|
91
91
|
}
|