@uipath/codedagent-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/init.js +4 -3
- package/dist/tool.js +20213 -71
- package/package.json +2 -2
package/dist/init.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"]],
|
|
@@ -28469,6 +28470,7 @@ var resolveConfigAsync = async ({
|
|
|
28469
28470
|
customAuthority,
|
|
28470
28471
|
customClientId,
|
|
28471
28472
|
customClientSecret,
|
|
28473
|
+
customClientAssertion,
|
|
28472
28474
|
customScopes
|
|
28473
28475
|
} = {}) => {
|
|
28474
28476
|
const fileAuth = getAuthFileConfig();
|
|
@@ -28494,7 +28496,7 @@ var resolveConfigAsync = async ({
|
|
|
28494
28496
|
if (!clientSecret && fileAuth.clientSecret) {
|
|
28495
28497
|
clientSecret = fileAuth.clientSecret;
|
|
28496
28498
|
}
|
|
28497
|
-
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
|
|
28499
|
+
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
|
|
28498
28500
|
const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
|
|
28499
28501
|
return {
|
|
28500
28502
|
clientId,
|
|
@@ -29610,7 +29612,6 @@ var getAuthEnv = async (options = {}) => {
|
|
|
29610
29612
|
}
|
|
29611
29613
|
return { authEnv, loginStatus: status };
|
|
29612
29614
|
};
|
|
29613
|
-
|
|
29614
29615
|
// ../auth/src/index.ts
|
|
29615
29616
|
init_constants();
|
|
29616
29617
|
|
|
@@ -29883,4 +29884,4 @@ export {
|
|
|
29883
29884
|
codedagentInitAsync
|
|
29884
29885
|
};
|
|
29885
29886
|
|
|
29886
|
-
//# debugId=
|
|
29887
|
+
//# debugId=913912A00D26106764756E2164756E21
|