@uipath/cli 1.197.0-preview.60 → 1.197.0-preview.64
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.browser.js +20 -20
- package/dist/index.js +5 -7
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8326,6 +8326,7 @@ var init_detect_agent = __esm(() => {
|
|
|
8326
8326
|
{ envVar: "CLAUDECODE", value: "1", id: "claude-code" },
|
|
8327
8327
|
{ envVar: "CURSOR_AGENT", value: "1", id: "cursor" },
|
|
8328
8328
|
{ envVar: "GEMINI_CLI", value: "1", id: "gemini-cli" },
|
|
8329
|
+
{ envVar: "CODEX_THREAD_ID", id: "codex" },
|
|
8329
8330
|
{ envVar: "CODEX_SANDBOX", id: "codex" },
|
|
8330
8331
|
{ envVar: "AUGMENT_AGENT", value: "1", id: "augment" },
|
|
8331
8332
|
{ envVar: "CLINE_ACTIVE", value: "true", id: "cline" }
|
|
@@ -45189,7 +45190,7 @@ var init_package = __esm(() => {
|
|
|
45189
45190
|
package_default = {
|
|
45190
45191
|
name: "@uipath/cli",
|
|
45191
45192
|
license: "MIT",
|
|
45192
|
-
version: "1.197.0-preview.
|
|
45193
|
+
version: "1.197.0-preview.64",
|
|
45193
45194
|
description: "Cross platform CLI for UiPath",
|
|
45194
45195
|
repository: {
|
|
45195
45196
|
type: "git",
|
|
@@ -112887,9 +112888,6 @@ var init_tools = __esm(() => {
|
|
|
112887
112888
|
});
|
|
112888
112889
|
|
|
112889
112890
|
// src/commands/track.ts
|
|
112890
|
-
function isSkillsTelemetryOptedIn() {
|
|
112891
|
-
return process.env.UIPATH_TELEMETRY_DISABLED === "0";
|
|
112892
|
-
}
|
|
112893
112891
|
async function readStdinWithTimeout(timeoutMs) {
|
|
112894
112892
|
let timer;
|
|
112895
112893
|
const timeout = new Promise((resolve2) => {
|
|
@@ -112930,8 +112928,8 @@ function registerTrackCommand(program2) {
|
|
|
112930
112928
|
program2.command("track", { hidden: true }).description("Ingest a skills-plugin telemetry event from stdin").action(async () => {
|
|
112931
112929
|
try {
|
|
112932
112930
|
const raw = await readStdinWithTimeout(STDIN_TIMEOUT_MS);
|
|
112933
|
-
if (
|
|
112934
|
-
logger.debug("[track]
|
|
112931
|
+
if (isTelemetryDisabled()) {
|
|
112932
|
+
logger.debug("[track] telemetry disabled; dropping event.");
|
|
112935
112933
|
return;
|
|
112936
112934
|
}
|
|
112937
112935
|
if (!raw) {
|
|
@@ -114454,4 +114452,4 @@ export {
|
|
|
114454
114452
|
ready
|
|
114455
114453
|
};
|
|
114456
114454
|
|
|
114457
|
-
//# debugId=
|
|
114455
|
+
//# debugId=6A8DD2A74484607364756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/cli",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.197.0-preview.
|
|
4
|
+
"version": "1.197.0-preview.64",
|
|
5
5
|
"description": "Cross platform CLI for UiPath",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"mihaigirleanu",
|
|
35
35
|
"vlad-uipath"
|
|
36
36
|
],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "3977b977945bf519336258da69fd271433eaaef4"
|
|
38
38
|
}
|