@aws-sdk/client-sqs 3.540.0 → 3.547.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/SQSClient.d.ts +2 -3
- 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 +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +2 -2
|
@@ -116,10 +116,9 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
116
116
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
117
117
|
/**
|
|
118
118
|
* A constructor for a class implementing the {@link __Checksum} interface
|
|
119
|
-
* that computes MD5 hashes.
|
|
120
|
-
* @internal
|
|
119
|
+
* that computes MD5 hashes, or false to prevent MD5 computation.
|
|
121
120
|
*/
|
|
122
|
-
md5?: __ChecksumConstructor | __HashConstructor;
|
|
121
|
+
md5?: __ChecksumConstructor | __HashConstructor | false;
|
|
123
122
|
/**
|
|
124
123
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
125
124
|
* @internal
|
|
@@ -10,7 +10,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
-
md5: import("@smithy/types").HashConstructor;
|
|
13
|
+
md5: false | import("@smithy/types").HashConstructor;
|
|
14
14
|
region: string | import("@smithy/types").Provider<any>;
|
|
15
15
|
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
16
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -11,7 +11,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
11
11
|
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
12
12
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
-
md5: __HashConstructor;
|
|
14
|
+
md5: false | __HashConstructor;
|
|
15
15
|
region: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
17
17
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
md5: import("@smithy/types").HashConstructor;
|
|
21
|
+
md5: false | import("@smithy/types").HashConstructor;
|
|
22
22
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
23
|
region: string | import("@smithy/types").Provider<any>;
|
|
24
24
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -212,7 +212,7 @@ export interface ClientDefaults
|
|
|
212
212
|
serviceId?: string;
|
|
213
213
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
214
214
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
215
|
-
md5?: __ChecksumConstructor | __HashConstructor;
|
|
215
|
+
md5?: __ChecksumConstructor | __HashConstructor | false;
|
|
216
216
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
217
217
|
region?: string | __Provider<string>;
|
|
218
218
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
@@ -13,7 +13,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
13
13
|
import("@smithy/types").UserAgent
|
|
14
14
|
>;
|
|
15
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
-
md5: import("@smithy/types").HashConstructor;
|
|
16
|
+
md5: false | import("@smithy/types").HashConstructor;
|
|
17
17
|
region: string | import("@smithy/types").Provider<any>;
|
|
18
18
|
requestHandler:
|
|
19
19
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
18
18
|
import("@smithy/types").UserAgent
|
|
19
19
|
>;
|
|
20
20
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
-
md5: __HashConstructor;
|
|
21
|
+
md5: false | __HashConstructor;
|
|
22
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
23
23
|
requestHandler:
|
|
24
24
|
| RequestHandler
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
-
md5: import("@smithy/types").HashConstructor;
|
|
23
|
+
md5: false | import("@smithy/types").HashConstructor;
|
|
24
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
25
25
|
import("@smithy/types").UserAgent
|
|
26
26
|
>;
|
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.547.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",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
-
"@aws-sdk/middleware-sdk-sqs": "3.
|
|
29
|
+
"@aws-sdk/middleware-sdk-sqs": "3.547.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
32
32
|
"@aws-sdk/types": "3.535.0",
|