@uipath/ixp-sdk 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/index.js +4 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -19189,6 +19189,7 @@ var resolveConfigAsync = async ({
|
|
|
19189
19189
|
customAuthority,
|
|
19190
19190
|
customClientId,
|
|
19191
19191
|
customClientSecret,
|
|
19192
|
+
customClientAssertion,
|
|
19192
19193
|
customScopes
|
|
19193
19194
|
} = {}) => {
|
|
19194
19195
|
const fileAuth = getAuthFileConfig();
|
|
@@ -19214,7 +19215,7 @@ var resolveConfigAsync = async ({
|
|
|
19214
19215
|
if (!clientSecret && fileAuth.clientSecret) {
|
|
19215
19216
|
clientSecret = fileAuth.clientSecret;
|
|
19216
19217
|
}
|
|
19217
|
-
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
|
|
19218
|
+
const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
|
|
19218
19219
|
const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
|
|
19219
19220
|
return {
|
|
19220
19221
|
clientId,
|
|
@@ -20300,7 +20301,6 @@ function normalizeTokenRefreshUnavailableFailure() {
|
|
|
20300
20301
|
function errorMessage(error) {
|
|
20301
20302
|
return error instanceof Error ? error.message : String(error);
|
|
20302
20303
|
}
|
|
20303
|
-
|
|
20304
20304
|
// ../auth/src/index.ts
|
|
20305
20305
|
init_constants();
|
|
20306
20306
|
|
|
@@ -20380,7 +20380,7 @@ function getSdkUserAgentToken(pkg) {
|
|
|
20380
20380
|
var package_default = {
|
|
20381
20381
|
name: "@uipath/ixp-sdk",
|
|
20382
20382
|
license: "MIT",
|
|
20383
|
-
version: "1.
|
|
20383
|
+
version: "1.199.0-preview.104",
|
|
20384
20384
|
description: "SDK for the UiPath IXP (Intelligent eXtraction Platform) API — projects, taxonomies, prompts, predictions, and model publishing.",
|
|
20385
20385
|
repository: {
|
|
20386
20386
|
type: "git",
|
|
@@ -20781,4 +20781,4 @@ export {
|
|
|
20781
20781
|
addField
|
|
20782
20782
|
};
|
|
20783
20783
|
|
|
20784
|
-
//# debugId=
|
|
20784
|
+
//# debugId=CB85631B66FD875364756E2164756E21
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/ixp-sdk",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.199.0-preview.104",
|
|
5
5
|
"description": "SDK for the UiPath IXP (Intelligent eXtraction Platform) API — projects, taxonomies, prompts, predictions, and model publishing.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "829a8ab8a25bce5b62c284bd1ddc674d2947f647"
|
|
28
28
|
}
|