@aws-sdk/client-cognito-identity-provider 3.150.0 → 3.159.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,30 @@
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.159.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.158.0...v3.159.0) (2022-08-26)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
9
+
10
+
11
+
12
+
13
+
14
+ # [3.154.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.153.0...v3.154.0) (2022-08-19)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
17
+
18
+
19
+
20
+
21
+
22
+ # [3.153.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.152.0...v3.153.0) (2022-08-18)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
25
+
26
+
27
+
28
+
29
+
6
30
  # [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
7
31
 
8
32
  **Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
@@ -400,8 +400,9 @@ var FeedbackValueType;
400
400
  })(FeedbackValueType = exports.FeedbackValueType || (exports.FeedbackValueType = {}));
401
401
  var EventResponseType;
402
402
  (function (EventResponseType) {
403
- EventResponseType["Failure"] = "Failure";
404
- EventResponseType["Success"] = "Success";
403
+ EventResponseType["Fail"] = "Fail";
404
+ EventResponseType["InProgress"] = "InProgress";
405
+ EventResponseType["Pass"] = "Pass";
405
406
  })(EventResponseType = exports.EventResponseType || (exports.EventResponseType = {}));
406
407
  var RiskDecisionType;
407
408
  (function (RiskDecisionType) {
@@ -418,6 +419,8 @@ var RiskLevelType;
418
419
  var EventType;
419
420
  (function (EventType) {
420
421
  EventType["ForgotPassword"] = "ForgotPassword";
422
+ EventType["PasswordChange"] = "PasswordChange";
423
+ EventType["ResendCode"] = "ResendCode";
421
424
  EventType["SignIn"] = "SignIn";
422
425
  EventType["SignUp"] = "SignUp";
423
426
  })(EventType = exports.EventType || (exports.EventType = {}));
@@ -369,8 +369,9 @@ export var FeedbackValueType;
369
369
  })(FeedbackValueType || (FeedbackValueType = {}));
370
370
  export var EventResponseType;
371
371
  (function (EventResponseType) {
372
- EventResponseType["Failure"] = "Failure";
373
- EventResponseType["Success"] = "Success";
372
+ EventResponseType["Fail"] = "Fail";
373
+ EventResponseType["InProgress"] = "InProgress";
374
+ EventResponseType["Pass"] = "Pass";
374
375
  })(EventResponseType || (EventResponseType = {}));
375
376
  export var RiskDecisionType;
376
377
  (function (RiskDecisionType) {
@@ -387,6 +388,8 @@ export var RiskLevelType;
387
388
  export var EventType;
388
389
  (function (EventType) {
389
390
  EventType["ForgotPassword"] = "ForgotPassword";
391
+ EventType["PasswordChange"] = "PasswordChange";
392
+ EventType["ResendCode"] = "ResendCode";
390
393
  EventType["SignIn"] = "SignIn";
391
394
  EventType["SignUp"] = "SignUp";
392
395
  })(EventType || (EventType = {}));
@@ -1820,8 +1820,9 @@ export interface EventFeedbackType {
1820
1820
  FeedbackDate?: Date;
1821
1821
  }
1822
1822
  export declare enum EventResponseType {
1823
- Failure = "Failure",
1824
- Success = "Success"
1823
+ Fail = "Fail",
1824
+ InProgress = "InProgress",
1825
+ Pass = "Pass"
1825
1826
  }
1826
1827
  export declare enum RiskDecisionType {
1827
1828
  AccountTakeover = "AccountTakeover",
@@ -1853,6 +1854,8 @@ export interface EventRiskType {
1853
1854
  }
1854
1855
  export declare enum EventType {
1855
1856
  ForgotPassword = "ForgotPassword",
1857
+ PasswordChange = "PasswordChange",
1858
+ ResendCode = "ResendCode",
1856
1859
  SignIn = "SignIn",
1857
1860
  SignUp = "SignUp"
1858
1861
  }
@@ -726,8 +726,9 @@ export interface EventFeedbackType {
726
726
  FeedbackDate?: Date;
727
727
  }
728
728
  export declare enum EventResponseType {
729
- Failure = "Failure",
730
- Success = "Success"
729
+ Fail = "Fail",
730
+ InProgress = "InProgress",
731
+ Pass = "Pass"
731
732
  }
732
733
  export declare enum RiskDecisionType {
733
734
  AccountTakeover = "AccountTakeover",
@@ -750,6 +751,8 @@ export interface EventRiskType {
750
751
  }
751
752
  export declare enum EventType {
752
753
  ForgotPassword = "ForgotPassword",
754
+ PasswordChange = "PasswordChange",
755
+ ResendCode = "ResendCode",
753
756
  SignIn = "SignIn",
754
757
  SignUp = "SignUp"
755
758
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cognito-identity-provider",
3
3
  "description": "AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native",
4
- "version": "3.150.0",
4
+ "version": "3.159.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,35 +18,35 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.150.0",
22
- "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.150.0",
24
- "@aws-sdk/fetch-http-handler": "3.131.0",
25
- "@aws-sdk/hash-node": "3.127.0",
26
- "@aws-sdk/invalid-dependency": "3.127.0",
27
- "@aws-sdk/middleware-content-length": "3.127.0",
28
- "@aws-sdk/middleware-host-header": "3.127.0",
29
- "@aws-sdk/middleware-logger": "3.127.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.127.0",
31
- "@aws-sdk/middleware-retry": "3.127.0",
32
- "@aws-sdk/middleware-serde": "3.127.0",
33
- "@aws-sdk/middleware-signing": "3.130.0",
34
- "@aws-sdk/middleware-stack": "3.127.0",
35
- "@aws-sdk/middleware-user-agent": "3.127.0",
36
- "@aws-sdk/node-config-provider": "3.127.0",
37
- "@aws-sdk/node-http-handler": "3.127.0",
38
- "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.142.0",
40
- "@aws-sdk/types": "3.127.0",
41
- "@aws-sdk/url-parser": "3.127.0",
21
+ "@aws-sdk/client-sts": "3.159.0",
22
+ "@aws-sdk/config-resolver": "3.159.0",
23
+ "@aws-sdk/credential-provider-node": "3.159.0",
24
+ "@aws-sdk/fetch-http-handler": "3.159.0",
25
+ "@aws-sdk/hash-node": "3.159.0",
26
+ "@aws-sdk/invalid-dependency": "3.159.0",
27
+ "@aws-sdk/middleware-content-length": "3.159.0",
28
+ "@aws-sdk/middleware-host-header": "3.159.0",
29
+ "@aws-sdk/middleware-logger": "3.159.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.159.0",
31
+ "@aws-sdk/middleware-retry": "3.159.0",
32
+ "@aws-sdk/middleware-serde": "3.159.0",
33
+ "@aws-sdk/middleware-signing": "3.159.0",
34
+ "@aws-sdk/middleware-stack": "3.159.0",
35
+ "@aws-sdk/middleware-user-agent": "3.159.0",
36
+ "@aws-sdk/node-config-provider": "3.159.0",
37
+ "@aws-sdk/node-http-handler": "3.159.0",
38
+ "@aws-sdk/protocol-http": "3.159.0",
39
+ "@aws-sdk/smithy-client": "3.159.0",
40
+ "@aws-sdk/types": "3.159.0",
41
+ "@aws-sdk/url-parser": "3.159.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
- "@aws-sdk/util-body-length-browser": "3.55.0",
44
+ "@aws-sdk/util-body-length-browser": "3.154.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.142.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.142.0",
48
- "@aws-sdk/util-user-agent-browser": "3.127.0",
49
- "@aws-sdk/util-user-agent-node": "3.127.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.159.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.159.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.159.0",
49
+ "@aws-sdk/util-user-agent-node": "3.159.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1"