@aws-sdk/client-sqs 3.614.0 → 3.620.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-cjs/index.js +6 -6
- package/dist-es/SQSClient.js +6 -6
- package/dist-types/SQSClient.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SQSClient.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +19 -19
package/dist-cjs/index.js
CHANGED
|
@@ -187,21 +187,21 @@ var _SQSClient = class _SQSClient extends import_smithy_client.Client {
|
|
|
187
187
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
188
188
|
const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
|
|
189
189
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
190
|
-
const _config_4 = (0,
|
|
191
|
-
const _config_5 = (0,
|
|
192
|
-
const _config_6 = (0,
|
|
193
|
-
const _config_7 = (0,
|
|
190
|
+
const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
|
|
191
|
+
const _config_5 = (0, import_middleware_sdk_sqs.resolveQueueUrlConfig)(_config_4);
|
|
192
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
193
|
+
const _config_7 = (0, import_middleware_retry.resolveRetryConfig)(_config_6);
|
|
194
194
|
const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
|
|
195
195
|
const _config_9 = resolveRuntimeExtensions(_config_8, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
196
196
|
super(_config_9);
|
|
197
197
|
this.config = _config_9;
|
|
198
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
199
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
200
198
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
201
199
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
202
200
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
203
201
|
this.middlewareStack.use((0, import_middleware_sdk_sqs.getQueueUrlPlugin)(this.config));
|
|
204
202
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
203
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
204
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
205
205
|
this.middlewareStack.use(
|
|
206
206
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
207
207
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
package/dist-es/SQSClient.js
CHANGED
|
@@ -20,21 +20,21 @@ export class SQSClient extends __Client {
|
|
|
20
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
21
|
const _config_2 = resolveRegionConfig(_config_1);
|
|
22
22
|
const _config_3 = resolveEndpointConfig(_config_2);
|
|
23
|
-
const _config_4 =
|
|
24
|
-
const _config_5 =
|
|
25
|
-
const _config_6 =
|
|
26
|
-
const _config_7 =
|
|
23
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
24
|
+
const _config_5 = resolveQueueUrlConfig(_config_4);
|
|
25
|
+
const _config_6 = resolveUserAgentConfig(_config_5);
|
|
26
|
+
const _config_7 = resolveRetryConfig(_config_6);
|
|
27
27
|
const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
|
|
28
28
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
29
29
|
super(_config_9);
|
|
30
30
|
this.config = _config_9;
|
|
31
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
32
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
33
31
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
34
32
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
35
33
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
36
34
|
this.middlewareStack.use(getQueueUrlPlugin(this.config));
|
|
37
35
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
36
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
37
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
38
38
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
39
39
|
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
40
40
|
identityProviderConfigProvider: this.getIdentityProviderConfigProvider(),
|
|
@@ -160,7 +160,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
160
160
|
/**
|
|
161
161
|
* @public
|
|
162
162
|
*/
|
|
163
|
-
export type SQSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> &
|
|
163
|
+
export type SQSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & HostHeaderInputConfig & QueueUrlInputConfig & UserAgentInputConfig & RetryInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
164
164
|
/**
|
|
165
165
|
* @public
|
|
166
166
|
*
|
|
@@ -171,7 +171,7 @@ export interface SQSClientConfig extends SQSClientConfigType {
|
|
|
171
171
|
/**
|
|
172
172
|
* @public
|
|
173
173
|
*/
|
|
174
|
-
export type SQSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> &
|
|
174
|
+
export type SQSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HostHeaderResolvedConfig & QueueUrlResolvedConfig & UserAgentResolvedConfig & RetryResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
175
175
|
/**
|
|
176
176
|
* @public
|
|
177
177
|
*
|
|
@@ -33,9 +33,9 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
33
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
34
|
}) => import("@smithy/types").EndpointV2;
|
|
35
35
|
tls?: boolean | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
36
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
38
37
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
41
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -34,9 +34,9 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
34
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
37
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
39
38
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
39
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
40
40
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
41
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
42
42
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -32,9 +32,9 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
32
32
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
33
|
}) => import("@smithy/types").EndpointV2;
|
|
34
34
|
tls?: boolean | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
35
|
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
37
36
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
39
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
40
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -228,10 +228,10 @@ export type SQSClientConfigType = Partial<
|
|
|
228
228
|
ClientDefaults &
|
|
229
229
|
RegionInputConfig &
|
|
230
230
|
EndpointInputConfig<EndpointParameters> &
|
|
231
|
-
RetryInputConfig &
|
|
232
231
|
HostHeaderInputConfig &
|
|
233
232
|
QueueUrlInputConfig &
|
|
234
233
|
UserAgentInputConfig &
|
|
234
|
+
RetryInputConfig &
|
|
235
235
|
HttpAuthSchemeInputConfig &
|
|
236
236
|
ClientInputEndpointParameters;
|
|
237
237
|
export interface SQSClientConfig extends SQSClientConfigType {}
|
|
@@ -241,10 +241,10 @@ export type SQSClientResolvedConfigType =
|
|
|
241
241
|
RuntimeExtensionsConfig &
|
|
242
242
|
RegionResolvedConfig &
|
|
243
243
|
EndpointResolvedConfig<EndpointParameters> &
|
|
244
|
-
RetryResolvedConfig &
|
|
245
244
|
HostHeaderResolvedConfig &
|
|
246
245
|
QueueUrlResolvedConfig &
|
|
247
246
|
UserAgentResolvedConfig &
|
|
247
|
+
RetryResolvedConfig &
|
|
248
248
|
HttpAuthSchemeResolvedConfig &
|
|
249
249
|
ClientResolvedEndpointParameters;
|
|
250
250
|
export interface SQSClientResolvedConfig extends SQSClientResolvedConfigType {}
|
|
@@ -57,12 +57,12 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
57
57
|
}
|
|
58
58
|
) => import("@smithy/types").EndpointV2;
|
|
59
59
|
tls?: boolean | undefined;
|
|
60
|
+
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
61
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
62
|
retryStrategy?:
|
|
61
63
|
| import("@smithy/types").RetryStrategy
|
|
62
64
|
| import("@smithy/types").RetryStrategyV2
|
|
63
65
|
| undefined;
|
|
64
|
-
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
65
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
68
68
|
credentials?:
|
|
@@ -62,12 +62,12 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
62
62
|
}
|
|
63
63
|
) => import("@smithy/types").EndpointV2;
|
|
64
64
|
tls?: boolean | undefined;
|
|
65
|
+
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
66
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
65
67
|
retryStrategy?:
|
|
66
68
|
| import("@smithy/types").RetryStrategy
|
|
67
69
|
| import("@smithy/types").RetryStrategyV2
|
|
68
70
|
| undefined;
|
|
69
|
-
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
70
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
71
71
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
72
72
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
73
73
|
credentials?:
|
|
@@ -51,12 +51,12 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
51
51
|
}
|
|
52
52
|
) => import("@smithy/types").EndpointV2;
|
|
53
53
|
tls?: boolean | undefined;
|
|
54
|
+
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
54
56
|
retryStrategy?:
|
|
55
57
|
| import("@smithy/types").RetryStrategy
|
|
56
58
|
| import("@smithy/types").RetryStrategyV2
|
|
57
59
|
| undefined;
|
|
58
|
-
useQueueUrlAsEndpoint?: boolean | undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
62
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sqs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.620.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-sqs",
|
|
@@ -20,42 +20,42 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.620.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.620.0",
|
|
25
|
+
"@aws-sdk/core": "3.620.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.620.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
+
"@aws-sdk/middleware-sdk-sqs": "3.620.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.620.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
33
33
|
"@aws-sdk/types": "3.609.0",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
37
37
|
"@smithy/config-resolver": "^3.0.5",
|
|
38
|
-
"@smithy/core": "^2.
|
|
39
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
38
|
+
"@smithy/core": "^2.3.0",
|
|
39
|
+
"@smithy/fetch-http-handler": "^3.2.3",
|
|
40
40
|
"@smithy/hash-node": "^3.0.3",
|
|
41
41
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
42
42
|
"@smithy/md5-js": "^3.0.3",
|
|
43
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
44
|
-
"@smithy/middleware-endpoint": "^3.0
|
|
45
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-content-length": "^3.0.5",
|
|
44
|
+
"@smithy/middleware-endpoint": "^3.1.0",
|
|
45
|
+
"@smithy/middleware-retry": "^3.0.12",
|
|
46
46
|
"@smithy/middleware-serde": "^3.0.3",
|
|
47
47
|
"@smithy/middleware-stack": "^3.0.3",
|
|
48
48
|
"@smithy/node-config-provider": "^3.1.4",
|
|
49
|
-
"@smithy/node-http-handler": "^3.1.
|
|
50
|
-
"@smithy/protocol-http": "^4.0
|
|
51
|
-
"@smithy/smithy-client": "^3.1.
|
|
49
|
+
"@smithy/node-http-handler": "^3.1.4",
|
|
50
|
+
"@smithy/protocol-http": "^4.1.0",
|
|
51
|
+
"@smithy/smithy-client": "^3.1.10",
|
|
52
52
|
"@smithy/types": "^3.3.0",
|
|
53
53
|
"@smithy/url-parser": "^3.0.3",
|
|
54
54
|
"@smithy/util-base64": "^3.0.0",
|
|
55
55
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
56
56
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^3.0.12",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^3.0.12",
|
|
59
59
|
"@smithy/util-endpoints": "^2.0.5",
|
|
60
60
|
"@smithy/util-middleware": "^3.0.3",
|
|
61
61
|
"@smithy/util-retry": "^3.0.3",
|