@uipath/agent-tool 1.0.0 → 1.0.2
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 +1 -1
- package/dist/packager-tool.js +2 -2
- package/dist/tool.js +4 -4
- package/package.json +5 -5
package/dist/index.js
CHANGED
package/dist/packager-tool.js
CHANGED
|
@@ -11135,7 +11135,7 @@ class JSONSchemaGenerator {
|
|
|
11135
11135
|
if (val === undefined) {
|
|
11136
11136
|
if (this.unrepresentable === "throw") {
|
|
11137
11137
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
11138
|
-
}
|
|
11138
|
+
}
|
|
11139
11139
|
} else if (typeof val === "bigint") {
|
|
11140
11140
|
if (this.unrepresentable === "throw") {
|
|
11141
11141
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
|
@@ -33333,7 +33333,7 @@ class JSONSchemaGenerator2 {
|
|
|
33333
33333
|
if (val === undefined) {
|
|
33334
33334
|
if (this.unrepresentable === "throw") {
|
|
33335
33335
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
33336
|
-
}
|
|
33336
|
+
}
|
|
33337
33337
|
} else if (typeof val === "bigint") {
|
|
33338
33338
|
if (this.unrepresentable === "throw") {
|
|
33339
33339
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
package/dist/tool.js
CHANGED
|
@@ -1046,7 +1046,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1046
1046
|
this._exitCallback = (err) => {
|
|
1047
1047
|
if (err.code !== "commander.executeSubCommandAsync") {
|
|
1048
1048
|
throw err;
|
|
1049
|
-
}
|
|
1049
|
+
}
|
|
1050
1050
|
};
|
|
1051
1051
|
}
|
|
1052
1052
|
return this;
|
|
@@ -11719,7 +11719,7 @@ var init_envAuth = __esm(() => {
|
|
|
11719
11719
|
|
|
11720
11720
|
// ../../node_modules/@uipath/coreipc/index.js
|
|
11721
11721
|
var require_coreipc = __commonJS((exports, module) => {
|
|
11722
|
-
var __dirname = "/
|
|
11722
|
+
var __dirname = "/Users/alexandru.oltean/github/cli/node_modules/@uipath/coreipc";
|
|
11723
11723
|
/*! For license information please see index.js.LICENSE.txt */
|
|
11724
11724
|
(function(e, t) {
|
|
11725
11725
|
typeof exports == "object" && typeof module == "object" ? module.exports = t() : typeof define == "function" && define.amd ? define([], t) : typeof exports == "object" ? exports.ipc = t() : e.ipc = t();
|
|
@@ -40525,7 +40525,7 @@ class JSONSchemaGenerator {
|
|
|
40525
40525
|
if (val === undefined) {
|
|
40526
40526
|
if (this.unrepresentable === "throw") {
|
|
40527
40527
|
throw new Error("Literal `undefined` cannot be represented in JSON Schema");
|
|
40528
|
-
}
|
|
40528
|
+
}
|
|
40529
40529
|
} else if (typeof val === "bigint") {
|
|
40530
40530
|
if (this.unrepresentable === "throw") {
|
|
40531
40531
|
throw new Error("BigInt literals cannot be represented in JSON Schema");
|
|
@@ -80186,7 +80186,7 @@ import"./packager-tool.js";
|
|
|
80186
80186
|
// package.json
|
|
80187
80187
|
var package_default = {
|
|
80188
80188
|
name: "@uipath/agent-tool",
|
|
80189
|
-
version: "1.0.
|
|
80189
|
+
version: "1.0.2",
|
|
80190
80190
|
description: "cli plugin for creating and managing UiPath low-code agents",
|
|
80191
80191
|
private: false,
|
|
80192
80192
|
repository: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/agent-tool",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "cli plugin for creating and managing UiPath low-code agents",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"@types/bun": "^1.3.11",
|
|
39
39
|
"@uipath/agent-sdk": "1.0.1",
|
|
40
40
|
"@uipath/agents-storage-schemas": "^1.0.0",
|
|
41
|
-
"@uipath/auth": "1.0.
|
|
42
|
-
"@uipath/common": "1.0.
|
|
43
|
-
"@uipath/filesystem": "1.0.
|
|
41
|
+
"@uipath/auth": "1.0.2",
|
|
42
|
+
"@uipath/common": "1.0.2",
|
|
43
|
+
"@uipath/filesystem": "1.0.2",
|
|
44
44
|
"@uipath/integrationservice-sdk": "1.0.1",
|
|
45
45
|
"@uipath/orchestrator-sdk": "1.0.0",
|
|
46
46
|
"@uipath/solution-sdk": "1.0.0",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"commander": "^14.0.3",
|
|
51
51
|
"typescript": "^6.0.2"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "e373bfc1657e0bd85a7dc482691f4bda590392e5"
|
|
54
54
|
}
|