@aws-sdk/client-ses 3.957.0 → 3.958.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/README.md +1 -77
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +1049 -1054
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +1051 -1056
- package/dist-es/waiters/waitForIdentityExists.js +5 -5
- package/package.json +2 -2
|
@@ -6,15 +6,15 @@ const checkState = async (client, input) => {
|
|
|
6
6
|
const result = await client.send(new GetIdentityVerificationAttributesCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
let returnComparator = () => {
|
|
10
|
+
let objectProjection_2 = Object.values(result.VerificationAttributes).map((element_1) => {
|
|
11
11
|
return element_1.VerificationStatus;
|
|
12
12
|
});
|
|
13
13
|
return objectProjection_2;
|
|
14
14
|
};
|
|
15
|
-
let allStringEq_4 = returnComparator().length > 0;
|
|
16
|
-
for (
|
|
17
|
-
allStringEq_4 = allStringEq_4 && element_3 == "Success";
|
|
15
|
+
let allStringEq_4 = (returnComparator().length > 0);
|
|
16
|
+
for (let element_3 of returnComparator()) {
|
|
17
|
+
allStringEq_4 = allStringEq_4 && (element_3 == "Success");
|
|
18
18
|
}
|
|
19
19
|
if (allStringEq_4) {
|
|
20
20
|
return { state: WaiterState.SUCCESS, reason };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ses",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ses Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.958.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ses",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
26
|
"@aws-sdk/core": "3.957.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.958.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|