@aws-sdk/credential-provider-cognito-identity 3.170.0 → 3.178.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity
@@ -2,8 +2,6 @@ import { CognitoIdentityClient } from "@aws-sdk/client-cognito-identity";
2
2
  import { Logins } from "./Logins";
3
3
  export interface CognitoProviderParameters {
4
4
  client: CognitoIdentityClient;
5
-
6
5
  customRoleArn?: string;
7
-
8
6
  logins?: Logins;
9
7
  }
@@ -5,7 +5,6 @@ export interface CognitoIdentityCredentials extends Credentials {
5
5
  }
6
6
  export declare type CognitoIdentityCredentialProvider =
7
7
  Provider<CognitoIdentityCredentials>;
8
-
9
8
  export declare function fromCognitoIdentity(
10
9
  parameters: FromCognitoIdentityParameters
11
10
  ): CognitoIdentityCredentialProvider;
@@ -1,7 +1,6 @@
1
1
  import { CognitoProviderParameters } from "./CognitoProviderParameters";
2
2
  import { CognitoIdentityCredentialProvider } from "./fromCognitoIdentity";
3
3
  import { Storage } from "./Storage";
4
-
5
4
  export declare function fromCognitoIdentityPool({
6
5
  accountId,
7
6
  cache,
@@ -14,10 +13,7 @@ export declare function fromCognitoIdentityPool({
14
13
  export interface FromCognitoIdentityPoolParameters
15
14
  extends CognitoProviderParameters {
16
15
  accountId?: string;
17
-
18
16
  cache?: Storage;
19
-
20
17
  identityPoolId: string;
21
-
22
18
  userIdentifier?: string;
23
19
  }
@@ -1,3 +1,2 @@
1
1
  import { Logins, ResolvedLogins } from "./Logins";
2
-
3
2
  export declare function resolveLogins(logins: Logins): Promise<ResolvedLogins>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-cognito-identity",
3
- "version": "3.170.0",
3
+ "version": "3.178.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@aws-sdk/client-cognito-identity": "3.170.0",
25
- "@aws-sdk/property-provider": "3.170.0",
26
- "@aws-sdk/types": "3.170.0",
24
+ "@aws-sdk/client-cognito-identity": "3.178.0",
25
+ "@aws-sdk/property-provider": "3.178.0",
26
+ "@aws-sdk/types": "3.178.0",
27
27
  "tslib": "^2.3.1"
28
28
  },
29
29
  "engines": {