@aws-sdk/client-ses 3.1037.0 → 3.1038.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-types/SES.d.ts
CHANGED
|
@@ -531,7 +531,7 @@ export interface SES {
|
|
|
531
531
|
* @param args - command input.
|
|
532
532
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
533
533
|
*/
|
|
534
|
-
waitUntilIdentityExists(args: GetIdentityVerificationAttributesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<SES>, "client">): Promise<WaiterResult
|
|
534
|
+
waitUntilIdentityExists(args: GetIdentityVerificationAttributesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<SES>, "client">): Promise<WaiterResult<GetIdentityVerificationAttributesCommandOutput>>;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* <fullname>Amazon Simple Email Service</fullname>
|
|
@@ -1363,6 +1363,6 @@ export interface SES {
|
|
|
1363
1363
|
WaiterConfiguration<SES>,
|
|
1364
1364
|
Exclude<keyof WaiterConfiguration<SES>, "client">
|
|
1365
1365
|
>
|
|
1366
|
-
): Promise<WaiterResult
|
|
1366
|
+
): Promise<WaiterResult<GetIdentityVerificationAttributesCommandOutput>>;
|
|
1367
1367
|
}
|
|
1368
1368
|
export declare class SES extends SESClient implements SES {}
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetIdentityVerificationAttributesCommandInput,
|
|
4
|
+
GetIdentityVerificationAttributesCommandOutput,
|
|
5
|
+
} from "../commands/GetIdentityVerificationAttributesCommand";
|
|
6
|
+
import { SESServiceException } from "../models/SESServiceException";
|
|
3
7
|
import { SESClient } from "../SESClient";
|
|
4
8
|
export declare const waitForIdentityExists: (
|
|
5
9
|
params: WaiterConfiguration<SESClient>,
|
|
6
10
|
input: GetIdentityVerificationAttributesCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
GetIdentityVerificationAttributesCommandOutput | SESServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilIdentityExists: (
|
|
9
17
|
params: WaiterConfiguration<SESClient>,
|
|
10
18
|
input: GetIdentityVerificationAttributesCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<GetIdentityVerificationAttributesCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetIdentityVerificationAttributesCommandInput } from "../commands/GetIdentityVerificationAttributesCommand";
|
|
2
|
+
import { type GetIdentityVerificationAttributesCommandInput, type GetIdentityVerificationAttributesCommandOutput } from "../commands/GetIdentityVerificationAttributesCommand";
|
|
3
|
+
import type { SESServiceException } from "../models/SESServiceException";
|
|
3
4
|
import type { SESClient } from "../SESClient";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilIdentityExists instead. waitForIdentityExists does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForIdentityExists: (params: WaiterConfiguration<SESClient>, input: GetIdentityVerificationAttributesCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForIdentityExists: (params: WaiterConfiguration<SESClient>, input: GetIdentityVerificationAttributesCommandInput) => Promise<WaiterResult<GetIdentityVerificationAttributesCommandOutput | SESServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetIdentityVerificationAttributesCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilIdentityExists: (params: WaiterConfiguration<SESClient>, input: GetIdentityVerificationAttributesCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilIdentityExists: (params: WaiterConfiguration<SESClient>, input: GetIdentityVerificationAttributesCommandInput) => Promise<WaiterResult<GetIdentityVerificationAttributesCommandOutput>>;
|
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.1038.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",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.974.6",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.36",
|
|
36
36
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
37
37
|
"@aws-sdk/types": "^3.973.8",
|
|
38
38
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
39
39
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.22",
|
|
41
41
|
"@smithy/config-resolver": "^4.4.17",
|
|
42
42
|
"@smithy/core": "^3.23.17",
|
|
43
43
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
46
46
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
47
47
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
48
|
-
"@smithy/middleware-retry": "^4.5.
|
|
48
|
+
"@smithy/middleware-retry": "^4.5.6",
|
|
49
49
|
"@smithy/middleware-serde": "^4.2.20",
|
|
50
50
|
"@smithy/middleware-stack": "^4.2.14",
|
|
51
51
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
62
62
|
"@smithy/util-endpoints": "^3.4.2",
|
|
63
63
|
"@smithy/util-middleware": "^4.2.14",
|
|
64
|
-
"@smithy/util-retry": "^4.3.
|
|
64
|
+
"@smithy/util-retry": "^4.3.5",
|
|
65
65
|
"@smithy/util-utf8": "^4.2.2",
|
|
66
|
-
"@smithy/util-waiter": "^4.
|
|
66
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|