@aws-sdk/client-workmailmessageflow 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/WorkMailMessageFlow.d.ts +0 -2
- package/dist-types/ts3.4/WorkMailMessageFlowClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/GetRawMessageContentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutRawMessageContentCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/WorkMailMessageFlowServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -19
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-workmailmessageflow
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-workmailmessageflow
|
|
@@ -8,7 +8,6 @@ import {
|
|
|
8
8
|
PutRawMessageContentCommandOutput,
|
|
9
9
|
} from "./commands/PutRawMessageContentCommand";
|
|
10
10
|
import { WorkMailMessageFlowClient } from "./WorkMailMessageFlowClient";
|
|
11
|
-
|
|
12
11
|
export declare class WorkMailMessageFlow extends WorkMailMessageFlowClient {
|
|
13
12
|
getRawMessageContent(
|
|
14
13
|
args: GetRawMessageContentCommandInput,
|
|
@@ -23,7 +22,6 @@ export declare class WorkMailMessageFlow extends WorkMailMessageFlowClient {
|
|
|
23
22
|
options: __HttpHandlerOptions,
|
|
24
23
|
cb: (err: any, data?: GetRawMessageContentCommandOutput) => void
|
|
25
24
|
): void;
|
|
26
|
-
|
|
27
25
|
putRawMessageContent(
|
|
28
26
|
args: PutRawMessageContentCommandInput,
|
|
29
27
|
options?: __HttpHandlerOptions
|
|
@@ -59,47 +59,26 @@ export declare type ServiceOutputTypes =
|
|
|
59
59
|
export interface ClientDefaults
|
|
60
60
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
61
61
|
requestHandler?: __HttpHandler;
|
|
62
|
-
|
|
63
62
|
sha256?: __HashConstructor;
|
|
64
|
-
|
|
65
63
|
urlParser?: __UrlParser;
|
|
66
|
-
|
|
67
64
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
68
|
-
|
|
69
65
|
streamCollector?: __StreamCollector;
|
|
70
|
-
|
|
71
66
|
base64Decoder?: __Decoder;
|
|
72
|
-
|
|
73
67
|
base64Encoder?: __Encoder;
|
|
74
|
-
|
|
75
68
|
utf8Decoder?: __Decoder;
|
|
76
|
-
|
|
77
69
|
utf8Encoder?: __Encoder;
|
|
78
|
-
|
|
79
70
|
runtime?: string;
|
|
80
|
-
|
|
81
71
|
disableHostPrefix?: boolean;
|
|
82
|
-
|
|
83
72
|
maxAttempts?: number | __Provider<number>;
|
|
84
|
-
|
|
85
73
|
retryMode?: string | __Provider<string>;
|
|
86
|
-
|
|
87
74
|
logger?: __Logger;
|
|
88
|
-
|
|
89
75
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
90
|
-
|
|
91
76
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
92
|
-
|
|
93
77
|
serviceId?: string;
|
|
94
|
-
|
|
95
78
|
region?: string | __Provider<string>;
|
|
96
|
-
|
|
97
79
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
98
|
-
|
|
99
80
|
regionInfoProvider?: RegionInfoProvider;
|
|
100
|
-
|
|
101
81
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
102
|
-
|
|
103
82
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
104
83
|
}
|
|
105
84
|
declare type WorkMailMessageFlowClientConfigType = Partial<
|
|
@@ -112,7 +91,6 @@ declare type WorkMailMessageFlowClientConfigType = Partial<
|
|
|
112
91
|
HostHeaderInputConfig &
|
|
113
92
|
AwsAuthInputConfig &
|
|
114
93
|
UserAgentInputConfig;
|
|
115
|
-
|
|
116
94
|
export interface WorkMailMessageFlowClientConfig
|
|
117
95
|
extends WorkMailMessageFlowClientConfigType {}
|
|
118
96
|
declare type WorkMailMessageFlowClientResolvedConfigType =
|
|
@@ -124,10 +102,8 @@ declare type WorkMailMessageFlowClientResolvedConfigType =
|
|
|
124
102
|
HostHeaderResolvedConfig &
|
|
125
103
|
AwsAuthResolvedConfig &
|
|
126
104
|
UserAgentResolvedConfig;
|
|
127
|
-
|
|
128
105
|
export interface WorkMailMessageFlowClientResolvedConfig
|
|
129
106
|
extends WorkMailMessageFlowClientResolvedConfigType {}
|
|
130
|
-
|
|
131
107
|
export declare class WorkMailMessageFlowClient extends __Client<
|
|
132
108
|
__HttpHandlerOptions,
|
|
133
109
|
ServiceInputTypes,
|
|
@@ -136,7 +112,6 @@ export declare class WorkMailMessageFlowClient extends __Client<
|
|
|
136
112
|
> {
|
|
137
113
|
readonly config: WorkMailMessageFlowClientResolvedConfig;
|
|
138
114
|
constructor(configuration: WorkMailMessageFlowClientConfig);
|
|
139
|
-
|
|
140
115
|
destroy(): void;
|
|
141
116
|
}
|
|
142
117
|
export {};
|
|
@@ -19,7 +19,6 @@ export interface GetRawMessageContentCommandInput
|
|
|
19
19
|
export interface GetRawMessageContentCommandOutput
|
|
20
20
|
extends GetRawMessageContentResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetRawMessageContentCommand extends $Command<
|
|
24
23
|
GetRawMessageContentCommandInput,
|
|
25
24
|
GetRawMessageContentCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetRawMessageContentCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetRawMessageContentCommandInput;
|
|
29
28
|
constructor(input: GetRawMessageContentCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: WorkMailMessageFlowClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface PutRawMessageContentCommandInput
|
|
|
19
19
|
export interface PutRawMessageContentCommandOutput
|
|
20
20
|
extends PutRawMessageContentResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class PutRawMessageContentCommand extends $Command<
|
|
24
23
|
PutRawMessageContentCommandInput,
|
|
25
24
|
PutRawMessageContentCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class PutRawMessageContentCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: PutRawMessageContentCommandInput;
|
|
29
28
|
constructor(input: PutRawMessageContentCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: WorkMailMessageFlowClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class WorkMailMessageFlowServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -7,75 +7,56 @@ export interface GetRawMessageContentRequest {
|
|
|
7
7
|
export interface GetRawMessageContentResponse {
|
|
8
8
|
messageContent: Readable | ReadableStream | Blob | undefined;
|
|
9
9
|
}
|
|
10
|
-
|
|
11
10
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
12
11
|
readonly name: "ResourceNotFoundException";
|
|
13
12
|
readonly $fault: "client";
|
|
14
|
-
|
|
15
13
|
constructor(
|
|
16
14
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
17
15
|
);
|
|
18
16
|
}
|
|
19
|
-
|
|
20
17
|
export declare class InvalidContentLocation extends __BaseException {
|
|
21
18
|
readonly name: "InvalidContentLocation";
|
|
22
19
|
readonly $fault: "client";
|
|
23
|
-
|
|
24
20
|
constructor(
|
|
25
21
|
opts: __ExceptionOptionType<InvalidContentLocation, __BaseException>
|
|
26
22
|
);
|
|
27
23
|
}
|
|
28
|
-
|
|
29
24
|
export declare class MessageFrozen extends __BaseException {
|
|
30
25
|
readonly name: "MessageFrozen";
|
|
31
26
|
readonly $fault: "client";
|
|
32
|
-
|
|
33
27
|
constructor(opts: __ExceptionOptionType<MessageFrozen, __BaseException>);
|
|
34
28
|
}
|
|
35
|
-
|
|
36
29
|
export declare class MessageRejected extends __BaseException {
|
|
37
30
|
readonly name: "MessageRejected";
|
|
38
31
|
readonly $fault: "client";
|
|
39
|
-
|
|
40
32
|
constructor(opts: __ExceptionOptionType<MessageRejected, __BaseException>);
|
|
41
33
|
}
|
|
42
|
-
|
|
43
34
|
export interface S3Reference {
|
|
44
35
|
bucket: string | undefined;
|
|
45
|
-
|
|
46
36
|
key: string | undefined;
|
|
47
|
-
|
|
48
37
|
objectVersion?: string;
|
|
49
38
|
}
|
|
50
|
-
|
|
51
39
|
export interface RawMessageContent {
|
|
52
40
|
s3Reference: S3Reference | undefined;
|
|
53
41
|
}
|
|
54
42
|
export interface PutRawMessageContentRequest {
|
|
55
43
|
messageId: string | undefined;
|
|
56
|
-
|
|
57
44
|
content: RawMessageContent | undefined;
|
|
58
45
|
}
|
|
59
46
|
export interface PutRawMessageContentResponse {}
|
|
60
|
-
|
|
61
47
|
export declare const GetRawMessageContentRequestFilterSensitiveLog: (
|
|
62
48
|
obj: GetRawMessageContentRequest
|
|
63
49
|
) => any;
|
|
64
|
-
|
|
65
50
|
export declare const GetRawMessageContentResponseFilterSensitiveLog: (
|
|
66
51
|
obj: GetRawMessageContentResponse
|
|
67
52
|
) => any;
|
|
68
|
-
|
|
69
53
|
export declare const S3ReferenceFilterSensitiveLog: (obj: S3Reference) => any;
|
|
70
|
-
|
|
71
54
|
export declare const RawMessageContentFilterSensitiveLog: (
|
|
72
55
|
obj: RawMessageContent
|
|
73
56
|
) => any;
|
|
74
|
-
|
|
75
57
|
export declare const PutRawMessageContentRequestFilterSensitiveLog: (
|
|
76
58
|
obj: PutRawMessageContentRequest
|
|
77
59
|
) => any;
|
|
78
|
-
|
|
79
60
|
export declare const PutRawMessageContentResponseFilterSensitiveLog: (
|
|
80
61
|
obj: PutRawMessageContentResponse
|
|
81
62
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workmailmessageflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workmailmessageflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.171.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",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.171.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.171.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.171.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.171.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.171.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.171.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.171.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.171.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.171.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.171.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.171.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.171.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.171.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.171.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.171.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.171.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.171.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.171.0",
|
|
41
|
+
"@aws-sdk/types": "3.171.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.171.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.171.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.171.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.171.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.171.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|