@aws-sdk/client-sqs 3.983.0 → 3.985.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/runtimeConfig.d.ts +25 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +41 -37
- package/package.json +14 -14
|
@@ -1,26 +1,26 @@
|
|
|
1
|
+
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
1
2
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { HashConstructor as __HashConstructor } from "@smithy/types";
|
|
3
3
|
import type { SQSClientConfig } from "./SQSClient";
|
|
4
4
|
/**
|
|
5
5
|
* @internal
|
|
6
6
|
*/
|
|
7
7
|
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
8
8
|
runtime: string;
|
|
9
|
-
defaultsMode: import("@
|
|
10
|
-
authSchemePreference: string[] | import("@
|
|
11
|
-
bodyLengthChecker: import("@
|
|
12
|
-
credentialDefaultProvider: ((input: any) => import("@
|
|
13
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@
|
|
14
|
-
maxAttempts: number | import("@
|
|
9
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
10
|
+
authSchemePreference: string[] | import("@aws-sdk/types").Provider<string[]>;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: ((input: any) => import("@aws-sdk/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
13
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@aws-sdk/types").UserAgent>;
|
|
14
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
15
15
|
md5: false | __HashConstructor;
|
|
16
|
-
region: string | import("@
|
|
16
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
18
|
-
retryMode: string | import("@
|
|
18
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
19
19
|
sha256: __HashConstructor;
|
|
20
|
-
streamCollector: import("@
|
|
21
|
-
useDualstackEndpoint: boolean | import("@
|
|
22
|
-
useFipsEndpoint: boolean | import("@
|
|
23
|
-
userAgentAppId: string | import("@
|
|
20
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
userAgentAppId: string | import("@aws-sdk/types").Provider<string | undefined>;
|
|
24
24
|
cacheMiddleware?: boolean | undefined;
|
|
25
25
|
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
26
26
|
protocolSettings: {
|
|
@@ -28,31 +28,31 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
28
28
|
[setting: string]: unknown;
|
|
29
29
|
};
|
|
30
30
|
apiVersion: string;
|
|
31
|
-
urlParser: import("@
|
|
32
|
-
base64Decoder: import("@
|
|
31
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
32
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
33
33
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
34
|
-
utf8Decoder: import("@
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
35
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
36
36
|
disableHostPrefix: boolean;
|
|
37
37
|
serviceId: string;
|
|
38
38
|
profile?: string;
|
|
39
|
-
logger: import("@
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
customUserAgent?: string | import("@
|
|
42
|
-
retryStrategy?: import("@
|
|
43
|
-
endpoint?: ((string | import("@
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent;
|
|
42
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | import("@aws-sdk/types").RetryStrategyV2;
|
|
43
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
44
44
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
45
|
-
logger?: import("@
|
|
46
|
-
}) => import("@
|
|
45
|
+
logger?: import("@aws-sdk/types").Logger;
|
|
46
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
47
47
|
tls?: boolean;
|
|
48
48
|
serviceConfiguredEndpoint?: never;
|
|
49
49
|
useQueueUrlAsEndpoint?: boolean;
|
|
50
50
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
51
51
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
52
|
-
credentials?: import("@
|
|
53
|
-
signer?: import("@
|
|
52
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").AwsCredentialIdentityProvider;
|
|
53
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme) => Promise<import("@aws-sdk/types").RequestSigner>);
|
|
54
54
|
signingEscapePath?: boolean;
|
|
55
55
|
systemClockOffset?: number;
|
|
56
56
|
signingRegion?: string;
|
|
57
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@
|
|
57
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner;
|
|
58
58
|
};
|
|
@@ -1,33 +1,35 @@
|
|
|
1
|
+
import { HashConstructor as __HashConstructor } from "@aws-sdk/types";
|
|
1
2
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { HashConstructor as __HashConstructor } from "@smithy/types";
|
|
3
3
|
import { SQSClientConfig } from "./SQSClient";
|
|
4
4
|
export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
-
defaultsMode: import("@
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
7
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
8
8
|
>;
|
|
9
|
-
authSchemePreference: string[] | import("@
|
|
10
|
-
bodyLengthChecker: import("@
|
|
9
|
+
authSchemePreference: string[] | import("@aws-sdk/types").Provider<string[]>;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
11
|
credentialDefaultProvider:
|
|
12
|
-
| ((input: any) => import("@
|
|
12
|
+
| ((input: any) => import("@aws-sdk/types").AwsCredentialIdentityProvider)
|
|
13
13
|
| ((
|
|
14
14
|
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
15
15
|
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
16
16
|
defaultUserAgentProvider: (
|
|
17
17
|
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
18
|
-
) => Promise<import("@
|
|
19
|
-
maxAttempts: number | import("@
|
|
18
|
+
) => Promise<import("@aws-sdk/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
20
|
md5: false | __HashConstructor;
|
|
21
|
-
region: string | import("@
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
22
22
|
requestHandler:
|
|
23
23
|
| RequestHandler
|
|
24
24
|
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
25
|
-
retryMode: string | import("@
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
26
|
sha256: __HashConstructor;
|
|
27
|
-
streamCollector: import("@
|
|
28
|
-
useDualstackEndpoint: boolean | import("@
|
|
29
|
-
useFipsEndpoint: boolean | import("@
|
|
30
|
-
userAgentAppId:
|
|
27
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
userAgentAppId:
|
|
31
|
+
| string
|
|
32
|
+
| import("@aws-sdk/types").Provider<string | undefined>;
|
|
31
33
|
cacheMiddleware?: boolean | undefined;
|
|
32
34
|
protocol:
|
|
33
35
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
@@ -38,61 +40,63 @@ export declare const getRuntimeConfig: (config: SQSClientConfig) => {
|
|
|
38
40
|
[setting: string]: unknown;
|
|
39
41
|
};
|
|
40
42
|
apiVersion: string;
|
|
41
|
-
urlParser: import("@
|
|
42
|
-
base64Decoder: import("@
|
|
43
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
44
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
43
45
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
-
utf8Decoder: import("@
|
|
46
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
45
47
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
48
|
disableHostPrefix: boolean;
|
|
47
49
|
serviceId: string;
|
|
48
50
|
profile?: string;
|
|
49
|
-
logger: import("@
|
|
51
|
+
logger: import("@aws-sdk/types").Logger;
|
|
50
52
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
-
customUserAgent?: string | import("@
|
|
53
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent;
|
|
52
54
|
retryStrategy?:
|
|
53
|
-
| import("@
|
|
54
|
-
| import("@
|
|
55
|
+
| import("@aws-sdk/types").RetryStrategy
|
|
56
|
+
| import("@aws-sdk/types").RetryStrategyV2;
|
|
55
57
|
endpoint?:
|
|
56
58
|
| ((
|
|
57
59
|
| string
|
|
58
|
-
| import("@
|
|
59
|
-
| import("@
|
|
60
|
-
| import("@
|
|
61
|
-
| import("@
|
|
60
|
+
| import("@aws-sdk/types").Endpoint
|
|
61
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
62
|
+
| import("@aws-sdk/types").EndpointV2
|
|
63
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
62
64
|
) &
|
|
63
65
|
(
|
|
64
66
|
| string
|
|
65
|
-
| import("@
|
|
66
|
-
| import("@
|
|
67
|
-
| import("@
|
|
68
|
-
| import("@
|
|
69
|
-
| import("@
|
|
67
|
+
| import("@aws-sdk/types").Provider<string>
|
|
68
|
+
| import("@aws-sdk/types").Endpoint
|
|
69
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
70
|
+
| import("@aws-sdk/types").EndpointV2
|
|
71
|
+
| import("@aws-sdk/types").Provider<
|
|
72
|
+
import("@aws-sdk/types").EndpointV2
|
|
73
|
+
>
|
|
70
74
|
))
|
|
71
75
|
| undefined;
|
|
72
76
|
endpointProvider: (
|
|
73
77
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
74
78
|
context?: {
|
|
75
|
-
logger?: import("@
|
|
79
|
+
logger?: import("@aws-sdk/types").Logger;
|
|
76
80
|
}
|
|
77
|
-
) => import("@
|
|
81
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
78
82
|
tls?: boolean;
|
|
79
83
|
serviceConfiguredEndpoint?: never;
|
|
80
84
|
useQueueUrlAsEndpoint?: boolean;
|
|
81
85
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
82
86
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SQSHttpAuthSchemeProvider;
|
|
83
87
|
credentials?:
|
|
84
|
-
| import("@
|
|
85
|
-
| import("@
|
|
88
|
+
| import("@aws-sdk/types").AwsCredentialIdentity
|
|
89
|
+
| import("@aws-sdk/types").AwsCredentialIdentityProvider;
|
|
86
90
|
signer?:
|
|
87
|
-
| import("@
|
|
91
|
+
| import("@aws-sdk/types").RequestSigner
|
|
88
92
|
| ((
|
|
89
|
-
authScheme?: import("@
|
|
90
|
-
) => Promise<import("@
|
|
93
|
+
authScheme?: import("@aws-sdk/types").AuthScheme
|
|
94
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>);
|
|
91
95
|
signingEscapePath?: boolean;
|
|
92
96
|
systemClockOffset?: number;
|
|
93
97
|
signingRegion?: string;
|
|
94
98
|
signerConstructor?: new (
|
|
95
99
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
96
100
|
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
97
|
-
) => import("@
|
|
101
|
+
) => import("@aws-sdk/types").RequestSigner;
|
|
98
102
|
};
|
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.985.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-sqs",
|
|
@@ -23,40 +23,40 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.7",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.6",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
31
|
-
"@aws-sdk/middleware-sdk-sqs": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-sdk-sqs": "^3.972.6",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "^3.972.7",
|
|
33
33
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
34
34
|
"@aws-sdk/types": "^3.973.1",
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.985.0",
|
|
36
36
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "^3.972.5",
|
|
38
38
|
"@smithy/config-resolver": "^4.4.6",
|
|
39
|
-
"@smithy/core": "^3.22.
|
|
39
|
+
"@smithy/core": "^3.22.1",
|
|
40
40
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
41
41
|
"@smithy/hash-node": "^4.2.8",
|
|
42
42
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
43
43
|
"@smithy/md5-js": "^4.2.8",
|
|
44
44
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
45
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
46
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
+
"@smithy/middleware-endpoint": "^4.4.13",
|
|
46
|
+
"@smithy/middleware-retry": "^4.4.30",
|
|
47
47
|
"@smithy/middleware-serde": "^4.2.9",
|
|
48
48
|
"@smithy/middleware-stack": "^4.2.8",
|
|
49
49
|
"@smithy/node-config-provider": "^4.3.8",
|
|
50
|
-
"@smithy/node-http-handler": "^4.4.
|
|
50
|
+
"@smithy/node-http-handler": "^4.4.9",
|
|
51
51
|
"@smithy/protocol-http": "^5.3.8",
|
|
52
|
-
"@smithy/smithy-client": "^4.11.
|
|
52
|
+
"@smithy/smithy-client": "^4.11.2",
|
|
53
53
|
"@smithy/types": "^4.12.0",
|
|
54
54
|
"@smithy/url-parser": "^4.2.8",
|
|
55
55
|
"@smithy/util-base64": "^4.3.0",
|
|
56
56
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
57
57
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^4.3.29",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^4.2.32",
|
|
60
60
|
"@smithy/util-endpoints": "^3.2.8",
|
|
61
61
|
"@smithy/util-middleware": "^4.2.8",
|
|
62
62
|
"@smithy/util-retry": "^4.2.8",
|