@uipath/integrationservice-tool 0.1.9 → 0.1.10
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/tool.js +13 -9
- package/package.json +6 -6
package/dist/tool.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// package.json
|
|
2
2
|
var package_default = {
|
|
3
3
|
name: "@uipath/integrationservice-tool",
|
|
4
|
-
version: "0.1.
|
|
4
|
+
version: "0.1.10",
|
|
5
5
|
description: "Manage Integration Service connectors, connections, and triggers.",
|
|
6
6
|
private: false,
|
|
7
7
|
maintainers: [
|
|
@@ -15,7 +15,7 @@ var package_default = {
|
|
|
15
15
|
directory: "packages/integrationservice-tool"
|
|
16
16
|
},
|
|
17
17
|
publishConfig: {
|
|
18
|
-
registry: "https://
|
|
18
|
+
registry: "https://npm.pkg.github.com/@uipath"
|
|
19
19
|
},
|
|
20
20
|
keywords: [
|
|
21
21
|
"cli-tool"
|
|
@@ -32,7 +32,7 @@ var package_default = {
|
|
|
32
32
|
"dist"
|
|
33
33
|
],
|
|
34
34
|
scripts: {
|
|
35
|
-
build: "bun build
|
|
35
|
+
build: "bun ../../tools/build-tool.ts",
|
|
36
36
|
package: "bun run build && bun pm pack",
|
|
37
37
|
lint: "biome check .",
|
|
38
38
|
"lint:fix": "biome check --write .",
|
|
@@ -41,13 +41,13 @@ var package_default = {
|
|
|
41
41
|
},
|
|
42
42
|
peerDependencies: {
|
|
43
43
|
commander: "^14.0.3",
|
|
44
|
-
"@uipath/common": "^0.1.
|
|
45
|
-
"@uipath/auth": "^0.1.
|
|
44
|
+
"@uipath/common": "^0.1.13",
|
|
45
|
+
"@uipath/auth": "^0.1.9",
|
|
46
46
|
"@uipath/filesystem": "^0.1.6"
|
|
47
47
|
},
|
|
48
48
|
devDependencies: {
|
|
49
49
|
"@uipath/integrationservice-sdk": "workspace:*",
|
|
50
|
-
"@types/node": "^25.
|
|
50
|
+
"@types/node": "^25.5.0",
|
|
51
51
|
typescript: "^5"
|
|
52
52
|
}
|
|
53
53
|
};
|
|
@@ -6407,9 +6407,13 @@ async function executeOperation(options, connectionId, objectName, httpMethod =
|
|
|
6407
6407
|
function folderOverride(folderKey) {
|
|
6408
6408
|
if (!folderKey)
|
|
6409
6409
|
return;
|
|
6410
|
-
return {
|
|
6411
|
-
|
|
6412
|
-
|
|
6410
|
+
return async ({ init }) => ({
|
|
6411
|
+
...init,
|
|
6412
|
+
headers: {
|
|
6413
|
+
...init.headers,
|
|
6414
|
+
"x-uipath-folderkey": folderKey
|
|
6415
|
+
}
|
|
6416
|
+
});
|
|
6413
6417
|
}
|
|
6414
6418
|
// ../integrationservice-sdk/src/scripts/generate-sdk.ts
|
|
6415
6419
|
import { join } from "node:path";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/integrationservice-tool",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Manage Integration Service connectors, connections, and triggers.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"maintainers": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "bun build
|
|
34
|
+
"build": "bun ../../tools/build-tool.ts",
|
|
35
35
|
"package": "bun run build && bun pm pack",
|
|
36
36
|
"lint": "biome check .",
|
|
37
37
|
"lint:fix": "biome check --write .",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"commander": "^14.0.3",
|
|
43
|
-
"@uipath/common": "^0.1.
|
|
44
|
-
"@uipath/auth": "^0.1.
|
|
43
|
+
"@uipath/common": "^0.1.13",
|
|
44
|
+
"@uipath/auth": "^0.1.9",
|
|
45
45
|
"@uipath/filesystem": "^0.1.6"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@uipath/integrationservice-sdk": "
|
|
49
|
-
"@types/node": "^25.
|
|
48
|
+
"@uipath/integrationservice-sdk": "0.1.6",
|
|
49
|
+
"@types/node": "^25.5.0",
|
|
50
50
|
"typescript": "^5"
|
|
51
51
|
}
|
|
52
52
|
}
|