@uipath/cli 0.1.5 → 0.1.6
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/index.js +12 -3
- package/package.json +49 -49
package/dist/index.js
CHANGED
|
@@ -156776,7 +156776,7 @@ var package_default;
|
|
|
156776
156776
|
var init_package = __esm(() => {
|
|
156777
156777
|
package_default = {
|
|
156778
156778
|
name: "@uipath/cli",
|
|
156779
|
-
version: "0.1.
|
|
156779
|
+
version: "0.1.6",
|
|
156780
156780
|
description: "Cross platform CLI for UiPath",
|
|
156781
156781
|
repository: {
|
|
156782
156782
|
type: "git",
|
|
@@ -156784,7 +156784,7 @@ var init_package = __esm(() => {
|
|
|
156784
156784
|
directory: "packages/cli"
|
|
156785
156785
|
},
|
|
156786
156786
|
publishConfig: {
|
|
156787
|
-
registry: "https://
|
|
156787
|
+
registry: "https://registry.npmjs.org/"
|
|
156788
156788
|
},
|
|
156789
156789
|
type: "module",
|
|
156790
156790
|
main: "./dist/index.js",
|
|
@@ -173556,7 +173556,7 @@ var interactiveLoginWithDeps = async (options, deps) => {
|
|
|
173556
173556
|
}
|
|
173557
173557
|
const displayData = getOutputFormat() === "table" ? {
|
|
173558
173558
|
UIPATH_URL: credentials.UIPATH_URL,
|
|
173559
|
-
|
|
173559
|
+
UIPATH_ORGANIZATION_NAME: credentials.UIPATH_ORGANIZATION_NAME,
|
|
173560
173560
|
UIPATH_TENANT_NAME: credentials.UIPATH_TENANT_NAME
|
|
173561
173561
|
} : credentials;
|
|
173562
173562
|
OutputFormatter.success({
|
|
@@ -197452,6 +197452,7 @@ async function run(context) {
|
|
|
197452
197452
|
return;
|
|
197453
197453
|
}
|
|
197454
197454
|
await telemetryFlushAndShutdown();
|
|
197455
|
+
context.exit(0);
|
|
197455
197456
|
}
|
|
197456
197457
|
var VALID_FORMATS, VALID_LOG_LEVELS;
|
|
197457
197458
|
var init_cli = __esm(() => {
|
|
@@ -197477,6 +197478,14 @@ var init_cli = __esm(() => {
|
|
|
197477
197478
|
};
|
|
197478
197479
|
});
|
|
197479
197480
|
|
|
197481
|
+
// src/suppress-dep-warnings.ts
|
|
197482
|
+
var originalEmitWarning = process.emitWarning;
|
|
197483
|
+
process.emitWarning = (...args) => {
|
|
197484
|
+
if (args[1] === "DeprecationWarning" && args[2] === "DEP0040")
|
|
197485
|
+
return;
|
|
197486
|
+
return originalEmitWarning.apply(process, args);
|
|
197487
|
+
};
|
|
197488
|
+
|
|
197480
197489
|
// index.ts
|
|
197481
197490
|
init_src();
|
|
197482
197491
|
init_cli();
|
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "@uipath/cli",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Cross platform CLI for UiPath",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/UiPath/uipcli.git",
|
|
8
|
+
"directory": "packages/cli"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"browser": "./dist/browser.js",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"bin": {
|
|
25
|
+
"uip": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"private": false,
|
|
28
|
+
"maintainers": [
|
|
29
|
+
"aoltean16",
|
|
30
|
+
"mihaigirleanu",
|
|
31
|
+
"vlad-uipath"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "bun build ./index.ts --outdir dist --format esm --target node && cp ../../.npmrc dist/.npmrc",
|
|
35
|
+
"browser:build": "bun run build-browser.ts",
|
|
36
|
+
"e2e": "vitest run --config ../../vitest.e2e.base.config.ts",
|
|
37
|
+
"lint": "biome check ."
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/bun": "latest",
|
|
41
|
+
"@types/node": "^25.2.3",
|
|
42
|
+
"esbuild": "^0.27.3",
|
|
43
|
+
"typescript": "^5"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
47
|
+
"applicationinsights": "^3.14.0",
|
|
48
|
+
"commander": "^14.0.3",
|
|
49
|
+
"js-yaml": "^4.1.0",
|
|
50
|
+
"zod": "^4.3.6"
|
|
19
51
|
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist"
|
|
23
|
-
],
|
|
24
|
-
"bin": {
|
|
25
|
-
"uip": "./dist/index.js"
|
|
26
|
-
},
|
|
27
|
-
"private": false,
|
|
28
|
-
"maintainers": [
|
|
29
|
-
"aoltean16",
|
|
30
|
-
"mihaigirleanu",
|
|
31
|
-
"vlad-uipath"
|
|
32
|
-
],
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "bun build ./index.ts --outdir dist --format esm --target node && cp ../../.npmrc dist/.npmrc",
|
|
35
|
-
"browser:build": "bun run build-browser.ts",
|
|
36
|
-
"e2e": "vitest run --config ../../vitest.e2e.base.config.ts",
|
|
37
|
-
"lint": "biome check ."
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@types/bun": "latest",
|
|
41
|
-
"@types/node": "^25.2.3",
|
|
42
|
-
"esbuild": "^0.27.3",
|
|
43
|
-
"typescript": "^5"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
47
|
-
"applicationinsights": "^3.14.0",
|
|
48
|
-
"commander": "^14.0.3",
|
|
49
|
-
"js-yaml": "^4.1.0",
|
|
50
|
-
"zod": "^4.3.6"
|
|
51
|
-
}
|
|
52
52
|
}
|