@aws-sdk/client-cognito-identity-provider 3.143.0 → 3.153.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.153.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.152.0...v3.153.0) (2022-08-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.150.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.149.0...v3.150.0) (2022-08-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [3.143.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.142.0...v3.143.0) (2022-08-03)
|
|
7
31
|
|
|
8
32
|
|
|
@@ -400,8 +400,9 @@ var FeedbackValueType;
|
|
|
400
400
|
})(FeedbackValueType = exports.FeedbackValueType || (exports.FeedbackValueType = {}));
|
|
401
401
|
var EventResponseType;
|
|
402
402
|
(function (EventResponseType) {
|
|
403
|
-
EventResponseType["
|
|
404
|
-
EventResponseType["
|
|
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["
|
|
373
|
-
EventResponseType["
|
|
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
|
-
|
|
1824
|
-
|
|
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
|
-
|
|
730
|
-
|
|
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.
|
|
4
|
+
"version": "3.153.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.150.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.150.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -61,6 +61,11 @@
|
|
|
61
61
|
"typedoc": "0.19.2",
|
|
62
62
|
"typescript": "~4.6.2"
|
|
63
63
|
},
|
|
64
|
+
"overrides": {
|
|
65
|
+
"typedoc": {
|
|
66
|
+
"typescript": "~4.6.2"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
64
69
|
"engines": {
|
|
65
70
|
"node": ">=12.0.0"
|
|
66
71
|
},
|