@uipath/integrationservice-sdk 1.198.0 → 1.199.0-preview.105

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/index.js +4 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -19811,7 +19811,7 @@ class TextApiResponse2 {
19811
19811
  var package_default = {
19812
19812
  name: "@uipath/integrationservice-sdk",
19813
19813
  license: "MIT",
19814
- version: "1.198.0",
19814
+ version: "1.199.0-preview.105",
19815
19815
  repository: {
19816
19816
  type: "git",
19817
19817
  url: "https://github.com/UiPath/cli.git",
@@ -38842,6 +38842,7 @@ var resolveConfigAsync = async ({
38842
38842
  customAuthority,
38843
38843
  customClientId,
38844
38844
  customClientSecret,
38845
+ customClientAssertion,
38845
38846
  customScopes
38846
38847
  } = {}) => {
38847
38848
  const fileAuth = getAuthFileConfig();
@@ -38867,7 +38868,7 @@ var resolveConfigAsync = async ({
38867
38868
  if (!clientSecret && fileAuth.clientSecret) {
38868
38869
  clientSecret = fileAuth.clientSecret;
38869
38870
  }
38870
- const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && Boolean(clientSecret);
38871
+ const isExternalAppAuth = clientId !== DEFAULT_CLIENT_ID && (Boolean(clientSecret) || Boolean(customClientAssertion));
38871
38872
  const scopes = resolveScopes(isExternalAppAuth, customScopes, fileAuth.scopes);
38872
38873
  return {
38873
38874
  clientId,
@@ -39985,7 +39986,6 @@ var getAuthContext = async (options = {}) => {
39985
39986
  tenantName
39986
39987
  };
39987
39988
  };
39988
-
39989
39989
  // ../auth/src/index.ts
39990
39990
  init_constants();
39991
39991
 
@@ -43221,4 +43221,4 @@ export {
43221
43221
  AccessTokenResponseFromJSON
43222
43222
  };
43223
43223
 
43224
- //# debugId=F906644C6958F92564756E2164756E21
43224
+ //# debugId=E1ACA699C6C24EB464756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/integrationservice-sdk",
3
3
  "license": "MIT",
4
- "version": "1.198.0",
4
+ "version": "1.199.0-preview.105",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/UiPath/cli.git",
@@ -27,5 +27,5 @@
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
- "gitHead": "1fadf03d7a8dd102742571dff569fdac11808afb"
30
+ "gitHead": "30a83200f41e8bb994929322e33176b4355f6707"
31
31
  }