@aws-sdk/client-sesv2 3.687.0 → 3.692.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/models/models_0.d.ts +411 -411
- package/dist-types/models/models_1.d.ts +29 -29
- package/dist-types/ts3.4/models/models_0.d.ts +415 -411
- package/dist-types/ts3.4/models/models_1.d.ts +29 -29
- package/package.json +35 -35
|
@@ -16,18 +16,18 @@ import {
|
|
|
16
16
|
TopicPreference,
|
|
17
17
|
} from "./models_0";
|
|
18
18
|
export interface PutEmailIdentityDkimSigningAttributesResponse {
|
|
19
|
-
DkimStatus?: DkimStatus;
|
|
20
|
-
DkimTokens?: string[];
|
|
19
|
+
DkimStatus?: DkimStatus | undefined;
|
|
20
|
+
DkimTokens?: string[] | undefined;
|
|
21
21
|
}
|
|
22
22
|
export interface PutEmailIdentityFeedbackAttributesRequest {
|
|
23
23
|
EmailIdentity: string | undefined;
|
|
24
|
-
EmailForwardingEnabled?: boolean;
|
|
24
|
+
EmailForwardingEnabled?: boolean | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface PutEmailIdentityFeedbackAttributesResponse {}
|
|
27
27
|
export interface PutEmailIdentityMailFromAttributesRequest {
|
|
28
28
|
EmailIdentity: string | undefined;
|
|
29
|
-
MailFromDomain?: string;
|
|
30
|
-
BehaviorOnMxFailure?: BehaviorOnMxFailure;
|
|
29
|
+
MailFromDomain?: string | undefined;
|
|
30
|
+
BehaviorOnMxFailure?: BehaviorOnMxFailure | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface PutEmailIdentityMailFromAttributesResponse {}
|
|
33
33
|
export interface PutSuppressedDestinationRequest {
|
|
@@ -36,15 +36,15 @@ export interface PutSuppressedDestinationRequest {
|
|
|
36
36
|
}
|
|
37
37
|
export interface PutSuppressedDestinationResponse {}
|
|
38
38
|
export interface SendBulkEmailRequest {
|
|
39
|
-
FromEmailAddress?: string;
|
|
40
|
-
FromEmailAddressIdentityArn?: string;
|
|
41
|
-
ReplyToAddresses?: string[];
|
|
42
|
-
FeedbackForwardingEmailAddress?: string;
|
|
43
|
-
FeedbackForwardingEmailAddressIdentityArn?: string;
|
|
44
|
-
DefaultEmailTags?: MessageTag[];
|
|
39
|
+
FromEmailAddress?: string | undefined;
|
|
40
|
+
FromEmailAddressIdentityArn?: string | undefined;
|
|
41
|
+
ReplyToAddresses?: string[] | undefined;
|
|
42
|
+
FeedbackForwardingEmailAddress?: string | undefined;
|
|
43
|
+
FeedbackForwardingEmailAddressIdentityArn?: string | undefined;
|
|
44
|
+
DefaultEmailTags?: MessageTag[] | undefined;
|
|
45
45
|
DefaultContent: BulkEmailContent | undefined;
|
|
46
46
|
BulkEmailEntries: BulkEmailEntry[] | undefined;
|
|
47
|
-
ConfigurationSetName?: string;
|
|
47
|
+
ConfigurationSetName?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface SendBulkEmailResponse {
|
|
50
50
|
BulkEmailEntryResults: BulkEmailEntryResult[] | undefined;
|
|
@@ -52,25 +52,25 @@ export interface SendBulkEmailResponse {
|
|
|
52
52
|
export interface SendCustomVerificationEmailRequest {
|
|
53
53
|
EmailAddress: string | undefined;
|
|
54
54
|
TemplateName: string | undefined;
|
|
55
|
-
ConfigurationSetName?: string;
|
|
55
|
+
ConfigurationSetName?: string | undefined;
|
|
56
56
|
}
|
|
57
57
|
export interface SendCustomVerificationEmailResponse {
|
|
58
|
-
MessageId?: string;
|
|
58
|
+
MessageId?: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
export interface SendEmailRequest {
|
|
61
|
-
FromEmailAddress?: string;
|
|
62
|
-
FromEmailAddressIdentityArn?: string;
|
|
63
|
-
Destination?: Destination;
|
|
64
|
-
ReplyToAddresses?: string[];
|
|
65
|
-
FeedbackForwardingEmailAddress?: string;
|
|
66
|
-
FeedbackForwardingEmailAddressIdentityArn?: string;
|
|
61
|
+
FromEmailAddress?: string | undefined;
|
|
62
|
+
FromEmailAddressIdentityArn?: string | undefined;
|
|
63
|
+
Destination?: Destination | undefined;
|
|
64
|
+
ReplyToAddresses?: string[] | undefined;
|
|
65
|
+
FeedbackForwardingEmailAddress?: string | undefined;
|
|
66
|
+
FeedbackForwardingEmailAddressIdentityArn?: string | undefined;
|
|
67
67
|
Content: EmailContent | undefined;
|
|
68
|
-
EmailTags?: MessageTag[];
|
|
69
|
-
ConfigurationSetName?: string;
|
|
70
|
-
ListManagementOptions?: ListManagementOptions;
|
|
68
|
+
EmailTags?: MessageTag[] | undefined;
|
|
69
|
+
ConfigurationSetName?: string | undefined;
|
|
70
|
+
ListManagementOptions?: ListManagementOptions | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface SendEmailResponse {
|
|
73
|
-
MessageId?: string;
|
|
73
|
+
MessageId?: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
export interface TagResourceRequest {
|
|
76
76
|
ResourceArn: string | undefined;
|
|
@@ -98,15 +98,15 @@ export interface UpdateConfigurationSetEventDestinationResponse {}
|
|
|
98
98
|
export interface UpdateContactRequest {
|
|
99
99
|
ContactListName: string | undefined;
|
|
100
100
|
EmailAddress: string | undefined;
|
|
101
|
-
TopicPreferences?: TopicPreference[];
|
|
102
|
-
UnsubscribeAll?: boolean;
|
|
103
|
-
AttributesData?: string;
|
|
101
|
+
TopicPreferences?: TopicPreference[] | undefined;
|
|
102
|
+
UnsubscribeAll?: boolean | undefined;
|
|
103
|
+
AttributesData?: string | undefined;
|
|
104
104
|
}
|
|
105
105
|
export interface UpdateContactResponse {}
|
|
106
106
|
export interface UpdateContactListRequest {
|
|
107
107
|
ContactListName: string | undefined;
|
|
108
|
-
Topics?: Topic[];
|
|
109
|
-
Description?: string;
|
|
108
|
+
Topics?: Topic[] | undefined;
|
|
109
|
+
Description?: string | undefined;
|
|
110
110
|
}
|
|
111
111
|
export interface UpdateContactListResponse {}
|
|
112
112
|
export interface UpdateCustomVerificationEmailTemplateRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sesv2",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|