@uipath/context-grounding-tool 1.198.0 → 1.199.0-preview.104
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 -4
- package/package.json +2 -2
package/dist/tool.js
CHANGED
|
@@ -28045,6 +28045,7 @@ var SKILL_ATTRIBUTION = attributionRecord([
|
|
|
28045
28045
|
var KNOWN_SKILL_NAMES = new Set(Object.keys(SKILL_ATTRIBUTION));
|
|
28046
28046
|
var COMMAND_ATTRIBUTION = commandAttribution([
|
|
28047
28047
|
["cli", "troubleshoot", ["uip.feedback"]],
|
|
28048
|
+
["llm-gateway", "operate", ["uip.llm-gateway"]],
|
|
28048
28049
|
["llm-gateway", "operate", ["uip.llm-configuration", "uip.model-hub"]],
|
|
28049
28050
|
["context-grounding", "build", ["uip.context-grounding"]],
|
|
28050
28051
|
["api-workflow", "build", ["uip.api-workflow"]],
|
|
@@ -28487,6 +28488,7 @@ var resolveConfigAsync = async ({
|
|
|
28487
28488
|
customAuthority,
|
|
28488
28489
|
customClientId,
|
|
28489
28490
|
customClientSecret,
|
|
28491
|
+
customClientAssertion,
|
|
28490
28492
|
customScopes
|
|
28491
28493
|
} = {}) => {
|
|
28492
28494
|
const fileAuth = getAuthFileConfig();
|
|
@@ -28512,7 +28514,7 @@ var resolveConfigAsync = async ({
|
|
|
28512
28514
|
if (!clientSecret && fileAuth.clientSecret) {
|
|
28513
28515
|
clientSecret = fileAuth.clientSecret;
|
|
28514
28516
|
}
|
|
28515
|
-
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
|
|
28517
|
+
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
|
|
28516
28518
|
const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
|
|
28517
28519
|
return {
|
|
28518
28520
|
clientId,
|
|
@@ -29628,7 +29630,6 @@ var getAuthEnv = async (options = {}) => {
|
|
|
29628
29630
|
}
|
|
29629
29631
|
return { authEnv, loginStatus: status };
|
|
29630
29632
|
};
|
|
29631
|
-
|
|
29632
29633
|
// ../auth/src/index.ts
|
|
29633
29634
|
init_constants();
|
|
29634
29635
|
|
|
@@ -30327,7 +30328,7 @@ function createCommandForwarder(executeCommand) {
|
|
|
30327
30328
|
var package_default = {
|
|
30328
30329
|
name: "@uipath/context-grounding-tool",
|
|
30329
30330
|
license: "MIT",
|
|
30330
|
-
version: "1.
|
|
30331
|
+
version: "1.199.0-preview.104",
|
|
30331
30332
|
description: "Tool for context grounding operations via the UiPath Python SDK",
|
|
30332
30333
|
keywords: [
|
|
30333
30334
|
"uipcli-tool",
|
|
@@ -30430,4 +30431,4 @@ export {
|
|
|
30430
30431
|
metadata
|
|
30431
30432
|
};
|
|
30432
30433
|
|
|
30433
|
-
//# debugId=
|
|
30434
|
+
//# debugId=98AB047A098C858F64756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/context-grounding-tool",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.199.0-preview.104",
|
|
5
5
|
"description": "Tool for context grounding operations via the UiPath Python SDK",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"uipcli-tool",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"registry": "https://registry.npmjs.org/"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "829a8ab8a25bce5b62c284bd1ddc674d2947f647"
|
|
32
32
|
}
|