@uipath/insights-tool 1.198.0 → 1.199.0-preview.105
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 +5 -3
- package/package.json +2 -2
package/dist/tool.js
CHANGED
|
@@ -2128,7 +2128,7 @@ var require_commander = __commonJS((exports) => {
|
|
|
2128
2128
|
var package_default = {
|
|
2129
2129
|
name: "@uipath/insights-tool",
|
|
2130
2130
|
license: "MIT",
|
|
2131
|
-
version: "1.
|
|
2131
|
+
version: "1.199.0-preview.105",
|
|
2132
2132
|
description: "Query UiPath Insights data — jobs, failures, and performance metrics.",
|
|
2133
2133
|
private: false,
|
|
2134
2134
|
repository: {
|
|
@@ -9821,6 +9821,7 @@ var SKILL_ATTRIBUTION = attributionRecord([
|
|
|
9821
9821
|
var KNOWN_SKILL_NAMES = new Set(Object.keys(SKILL_ATTRIBUTION));
|
|
9822
9822
|
var COMMAND_ATTRIBUTION = commandAttribution([
|
|
9823
9823
|
["cli", "troubleshoot", ["uip.feedback"]],
|
|
9824
|
+
["llm-gateway", "operate", ["uip.llm-gateway"]],
|
|
9824
9825
|
["llm-gateway", "operate", ["uip.llm-configuration", "uip.model-hub"]],
|
|
9825
9826
|
["context-grounding", "build", ["uip.context-grounding"]],
|
|
9826
9827
|
["api-workflow", "build", ["uip.api-workflow"]],
|
|
@@ -28980,6 +28981,7 @@ var resolveConfigAsync = async ({
|
|
|
28980
28981
|
customAuthority,
|
|
28981
28982
|
customClientId,
|
|
28982
28983
|
customClientSecret,
|
|
28984
|
+
customClientAssertion,
|
|
28983
28985
|
customScopes
|
|
28984
28986
|
} = {}) => {
|
|
28985
28987
|
const fileAuth = getAuthFileConfig();
|
|
@@ -29005,7 +29007,7 @@ var resolveConfigAsync = async ({
|
|
|
29005
29007
|
if (!clientSecret && fileAuth.clientSecret) {
|
|
29006
29008
|
clientSecret = fileAuth.clientSecret;
|
|
29007
29009
|
}
|
|
29008
|
-
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
|
|
29010
|
+
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
|
|
29009
29011
|
const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
|
|
29010
29012
|
return {
|
|
29011
29013
|
clientId,
|
|
@@ -30253,4 +30255,4 @@ export {
|
|
|
30253
30255
|
metadata
|
|
30254
30256
|
};
|
|
30255
30257
|
|
|
30256
|
-
//# debugId=
|
|
30258
|
+
//# debugId=4A258769309FB04764756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/insights-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.199.0-preview.105",
|
|
5
5
|
"description": "Query UiPath Insights data — jobs, failures, and performance metrics.",
|
|
6
6
|
"private": false,
|
|
7
7
|
"repository": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "30a83200f41e8bb994929322e33176b4355f6707"
|
|
30
30
|
}
|