@uipath/context-grounding-tool 1.198.0-preview.88 → 1.199.0-preview.91

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.
Files changed (2) hide show
  1. package/dist/tool.js +5 -4
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -27817,6 +27817,7 @@ var SKILL_ATTRIBUTION = attributionRecord([
27817
27817
  var KNOWN_SKILL_NAMES = new Set(Object.keys(SKILL_ATTRIBUTION));
27818
27818
  var COMMAND_ATTRIBUTION = commandAttribution([
27819
27819
  ["cli", "troubleshoot", ["uip.feedback"]],
27820
+ ["llm-gateway", "operate", ["uip.llm-gateway"]],
27820
27821
  ["llm-gateway", "operate", ["uip.llm-configuration", "uip.model-hub"]],
27821
27822
  ["context-grounding", "build", ["uip.context-grounding"]],
27822
27823
  ["api-workflow", "build", ["uip.api-workflow"]],
@@ -28380,6 +28381,7 @@ var resolveConfigAsync = async ({
28380
28381
  customAuthority,
28381
28382
  customClientId,
28382
28383
  customClientSecret,
28384
+ customClientAssertion,
28383
28385
  customScopes
28384
28386
  } = {}) => {
28385
28387
  const fileAuth = getAuthFileConfig();
@@ -28405,7 +28407,7 @@ var resolveConfigAsync = async ({
28405
28407
  if (!clientSecret && fileAuth.clientSecret) {
28406
28408
  clientSecret = fileAuth.clientSecret;
28407
28409
  }
28408
- const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
28410
+ const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
28409
28411
  const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
28410
28412
  return {
28411
28413
  clientId,
@@ -29521,7 +29523,6 @@ var getAuthEnv = async (options = {}) => {
29521
29523
  }
29522
29524
  return { authEnv, loginStatus: status };
29523
29525
  };
29524
-
29525
29526
  // ../auth/src/index.ts
29526
29527
  init_constants();
29527
29528
 
@@ -30220,7 +30221,7 @@ function createCommandForwarder(executeCommand) {
30220
30221
  var package_default = {
30221
30222
  name: "@uipath/context-grounding-tool",
30222
30223
  license: "MIT",
30223
- version: "1.198.0-preview.88",
30224
+ version: "1.199.0-preview.91",
30224
30225
  description: "Tool for context grounding operations via the UiPath Python SDK",
30225
30226
  keywords: [
30226
30227
  "uipcli-tool",
@@ -30323,4 +30324,4 @@ export {
30323
30324
  metadata
30324
30325
  };
30325
30326
 
30326
- //# debugId=7B9A7F644076862F64756E2164756E21
30327
+ //# debugId=F282ABD833FE0A7F64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/context-grounding-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.88",
4
+ "version": "1.199.0-preview.91",
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": "9be5d51c7d9ccd184c980771e7f06e240c75a9e2"
31
+ "gitHead": "f428cb1e61ba89ad18394b0c6106784055699f02"
32
32
  }