@aws-sdk/credential-provider-sso 3.921.0 → 3.922.0

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-cjs/index.js CHANGED
@@ -59,6 +59,7 @@ const resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccountId, ss
59
59
  new SSOClient(Object.assign({}, clientConfig ?? {}, {
60
60
  logger: clientConfig?.logger ?? parentClientConfig?.logger,
61
61
  region: clientConfig?.region ?? ssoRegion,
62
+ userAgentAppId: clientConfig?.userAgentAppId ?? parentClientConfig?.userAgentAppId,
62
63
  }));
63
64
  let ssoResp;
64
65
  try {
@@ -49,6 +49,7 @@ export const resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccoun
49
49
  new SSOClient(Object.assign({}, clientConfig ?? {}, {
50
50
  logger: clientConfig?.logger ?? parentClientConfig?.logger,
51
51
  region: clientConfig?.region ?? ssoRegion,
52
+ userAgentAppId: clientConfig?.userAgentAppId ?? parentClientConfig?.userAgentAppId,
52
53
  }));
53
54
  let ssoResp;
54
55
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-sso",
3
- "version": "3.921.0",
3
+ "version": "3.922.0",
4
4
  "description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -26,10 +26,10 @@
26
26
  },
27
27
  "license": "Apache-2.0",
28
28
  "dependencies": {
29
- "@aws-sdk/client-sso": "3.921.0",
30
- "@aws-sdk/core": "3.921.0",
31
- "@aws-sdk/token-providers": "3.921.0",
32
- "@aws-sdk/types": "3.921.0",
29
+ "@aws-sdk/client-sso": "3.922.0",
30
+ "@aws-sdk/core": "3.922.0",
31
+ "@aws-sdk/token-providers": "3.922.0",
32
+ "@aws-sdk/types": "3.922.0",
33
33
  "@smithy/property-provider": "^4.2.4",
34
34
  "@smithy/shared-ini-file-loader": "^4.3.4",
35
35
  "@smithy/types": "^4.8.1",