@uipath/docsai-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.
Files changed (2) hide show
  1. package/dist/tool.js +5 -4
  2. package/package.json +2 -2
package/dist/tool.js CHANGED
@@ -27808,7 +27808,7 @@ var require_dist2 = __commonJS((exports, module) => {
27808
27808
  var package_default = {
27809
27809
  name: "@uipath/docsai-tool",
27810
27810
  license: "MIT",
27811
- version: "1.198.0",
27811
+ version: "1.199.0-preview.104",
27812
27812
  description: "Search UiPath documentation with AI-powered answers.",
27813
27813
  private: false,
27814
27814
  repository: {
@@ -34681,6 +34681,7 @@ var SKILL_ATTRIBUTION = attributionRecord([
34681
34681
  var KNOWN_SKILL_NAMES = new Set(Object.keys(SKILL_ATTRIBUTION));
34682
34682
  var COMMAND_ATTRIBUTION = commandAttribution([
34683
34683
  ["cli", "troubleshoot", ["uip.feedback"]],
34684
+ ["llm-gateway", "operate", ["uip.llm-gateway"]],
34684
34685
  ["llm-gateway", "operate", ["uip.llm-configuration", "uip.model-hub"]],
34685
34686
  ["context-grounding", "build", ["uip.context-grounding"]],
34686
34687
  ["api-workflow", "build", ["uip.api-workflow"]],
@@ -35044,6 +35045,7 @@ var resolveConfigAsync = async ({
35044
35045
  customAuthority,
35045
35046
  customClientId,
35046
35047
  customClientSecret,
35048
+ customClientAssertion,
35047
35049
  customScopes
35048
35050
  } = {}) => {
35049
35051
  const fileAuth = getAuthFileConfig();
@@ -35069,7 +35071,7 @@ var resolveConfigAsync = async ({
35069
35071
  if (!clientSecret && fileAuth.clientSecret) {
35070
35072
  clientSecret = fileAuth.clientSecret;
35071
35073
  }
35072
- const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
35074
+ const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
35073
35075
  const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
35074
35076
  return {
35075
35077
  clientId,
@@ -36155,7 +36157,6 @@ function normalizeTokenRefreshUnavailableFailure() {
36155
36157
  function errorMessage(error) {
36156
36158
  return error instanceof Error ? error.message : String(error);
36157
36159
  }
36158
-
36159
36160
  // ../auth/src/index.ts
36160
36161
  init_constants();
36161
36162
 
@@ -45468,4 +45469,4 @@ export {
45468
45469
  metadata
45469
45470
  };
45470
45471
 
45471
- //# debugId=4D39ED13064FECF264756E2164756E21
45472
+ //# debugId=7339B93263772B8B64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/docsai-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0",
4
+ "version": "1.199.0-preview.104",
5
5
  "description": "Search UiPath documentation with AI-powered answers.",
6
6
  "private": false,
7
7
  "repository": {
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "1fadf03d7a8dd102742571dff569fdac11808afb"
29
+ "gitHead": "829a8ab8a25bce5b62c284bd1ddc674d2947f647"
30
30
  }