@uipath/codedagent-tool 1.198.0-preview.94 → 1.199.0-preview.92
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/init.js +4 -3
- package/dist/tool.js +20213 -71
- package/package.json +2 -2
package/dist/init.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"]],
|
|
@@ -28362,6 +28363,7 @@ var resolveConfigAsync = async ({
|
|
|
28362
28363
|
customAuthority,
|
|
28363
28364
|
customClientId,
|
|
28364
28365
|
customClientSecret,
|
|
28366
|
+
customClientAssertion,
|
|
28365
28367
|
customScopes
|
|
28366
28368
|
} = {}) => {
|
|
28367
28369
|
const fileAuth = getAuthFileConfig();
|
|
@@ -28387,7 +28389,7 @@ var resolveConfigAsync = async ({
|
|
|
28387
28389
|
if (!clientSecret && fileAuth.clientSecret) {
|
|
28388
28390
|
clientSecret = fileAuth.clientSecret;
|
|
28389
28391
|
}
|
|
28390
|
-
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
|
|
28392
|
+
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
|
|
28391
28393
|
const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
|
|
28392
28394
|
return {
|
|
28393
28395
|
clientId,
|
|
@@ -29503,7 +29505,6 @@ var getAuthEnv = async (options = {}) => {
|
|
|
29503
29505
|
}
|
|
29504
29506
|
return { authEnv, loginStatus: status };
|
|
29505
29507
|
};
|
|
29506
|
-
|
|
29507
29508
|
// ../auth/src/index.ts
|
|
29508
29509
|
init_constants();
|
|
29509
29510
|
|
|
@@ -29776,4 +29777,4 @@ export {
|
|
|
29776
29777
|
codedagentInitAsync
|
|
29777
29778
|
};
|
|
29778
29779
|
|
|
29779
|
-
//# debugId=
|
|
29780
|
+
//# debugId=5C92918D00FF5BD564756E2164756E21
|