@aws-sdk/client-timestream-write 3.515.0 → 3.523.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.
@@ -29,7 +29,7 @@ const getRuntimeConfig = (config) => {
29
29
  endpointDiscoveryEnabledProvider: config?.endpointDiscoveryEnabledProvider ?? (() => Promise.resolve(undefined)),
30
30
  maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
31
31
  region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
32
- requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
32
+ requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
33
33
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
34
34
  sha256: config?.sha256 ?? sha256_browser_1.Sha256,
35
35
  streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
@@ -36,7 +36,7 @@ const getRuntimeConfig = (config) => {
36
36
  endpointDiscoveryEnabledProvider: config?.endpointDiscoveryEnabledProvider ?? (0, node_config_provider_1.loadConfig)(middleware_endpoint_discovery_1.NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS),
37
37
  maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
38
38
  region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
39
- requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
39
+ requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
40
40
  retryMode: config?.retryMode ??
41
41
  (0, node_config_provider_1.loadConfig)({
42
42
  ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
@@ -25,7 +25,7 @@ export const getRuntimeConfig = (config) => {
25
25
  endpointDiscoveryEnabledProvider: config?.endpointDiscoveryEnabledProvider ?? (() => Promise.resolve(undefined)),
26
26
  maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
27
27
  region: config?.region ?? invalidProvider("Region is missing"),
28
- requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
28
+ requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
29
29
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
30
30
  sha256: config?.sha256 ?? Sha256,
31
31
  streamCollector: config?.streamCollector ?? streamCollector,
@@ -32,7 +32,7 @@ export const getRuntimeConfig = (config) => {
32
32
  endpointDiscoveryEnabledProvider: config?.endpointDiscoveryEnabledProvider ?? loadNodeConfig(NODE_ENDPOINT_DISCOVERY_CONFIG_OPTIONS),
33
33
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
34
34
  region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
35
- requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider),
35
+ requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
36
36
  retryMode: config?.retryMode ??
37
37
  loadNodeConfig({
38
38
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
@@ -4,7 +4,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
4
4
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
5
5
  import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
6
6
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
7
- import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
7
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
8
8
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
9
9
  import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
10
10
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
@@ -41,11 +41,11 @@ export type ServiceOutputTypes = CreateBatchLoadTaskCommandOutput | CreateDataba
41
41
  /**
42
42
  * @public
43
43
  */
44
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
44
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
45
45
  /**
46
- * The HTTP handler to use. Fetch in browser and Https in Nodejs.
46
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
47
47
  */
48
- requestHandler?: __HttpHandler;
48
+ requestHandler?: __HttpHandlerUserInput;
49
49
  /**
50
50
  * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
51
51
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
@@ -12,10 +12,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
12
12
  endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<any>;
15
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
16
- updateHttpClientConfig(key: never, value: never): void;
17
- httpHandlerConfigs(): {};
18
- }) | RequestHandler;
15
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
19
16
  retryMode: string | import("@smithy/types").Provider<string>;
20
17
  sha256: import("@smithy/types").HashConstructor;
21
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -12,10 +12,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
12
12
  endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
15
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
16
- updateHttpClientConfig(key: never, value: never): void;
17
- httpHandlerConfigs(): {};
18
- }) | RequestHandler;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
19
16
  retryMode: string | import("@smithy/types").Provider<string>;
20
17
  sha256: import("@smithy/types").HashConstructor;
21
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,10 +5,7 @@ import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
5
5
  export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
- requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
- updateHttpClientConfig(key: never, value: never): void;
10
- httpHandlerConfigs(): {};
11
- }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
12
9
  apiVersion: string;
13
10
  urlParser: import("@smithy/types").UrlParser;
14
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
@@ -22,7 +22,7 @@ import {
22
22
  RetryInputConfig,
23
23
  RetryResolvedConfig,
24
24
  } from "@smithy/middleware-retry";
25
- import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
25
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
26
26
  import {
27
27
  Client as __Client,
28
28
  DefaultsMode as __DefaultsMode,
@@ -173,8 +173,8 @@ export type ServiceOutputTypes =
173
173
  | UpdateTableCommandOutput
174
174
  | WriteRecordsCommandOutput;
175
175
  export interface ClientDefaults
176
- extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
177
- requestHandler?: __HttpHandler;
176
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
177
+ requestHandler?: __HttpHandlerUserInput;
178
178
  sha256?: __ChecksumConstructor | __HashConstructor;
179
179
  urlParser?: __UrlParser;
180
180
  bodyLengthChecker?: __BodyLengthCalculator;
@@ -20,19 +20,7 @@ export declare const getRuntimeConfig: (
20
20
  maxAttempts: number | import("@smithy/types").Provider<number>;
21
21
  region: string | import("@smithy/types").Provider<any>;
22
22
  requestHandler:
23
- | (import("@smithy/types").RequestHandler<
24
- any,
25
- any,
26
- import("@smithy/types").HttpHandlerOptions
27
- > &
28
- import("@smithy/types").RequestHandler<
29
- import("@smithy/protocol-http").HttpRequest,
30
- import("@smithy/protocol-http").HttpResponse,
31
- import("@smithy/types").HttpHandlerOptions
32
- > & {
33
- updateHttpClientConfig(key: never, value: never): void;
34
- httpHandlerConfigs(): {};
35
- })
23
+ | import("@smithy/protocol-http").HttpHandler<any>
36
24
  | RequestHandler;
37
25
  retryMode: string | import("@smithy/types").Provider<string>;
38
26
  sha256: import("@smithy/types").HashConstructor;
@@ -24,20 +24,8 @@ export declare const getRuntimeConfig: (
24
24
  maxAttempts: number | import("@smithy/types").Provider<number>;
25
25
  region: string | import("@smithy/types").Provider<string>;
26
26
  requestHandler:
27
- | (import("@smithy/types").RequestHandler<
28
- any,
29
- any,
30
- import("@smithy/types").HttpHandlerOptions
31
- > &
32
- import("@smithy/types").RequestHandler<
33
- import("@smithy/protocol-http").HttpRequest,
34
- import("@smithy/protocol-http").HttpResponse,
35
- import("@smithy/types").HttpHandlerOptions
36
- > & {
37
- updateHttpClientConfig(key: never, value: never): void;
38
- httpHandlerConfigs(): {};
39
- })
40
- | RequestHandler;
27
+ | RequestHandler
28
+ | import("@smithy/protocol-http").HttpHandler<any>;
41
29
  retryMode: string | import("@smithy/types").Provider<string>;
42
30
  sha256: import("@smithy/types").HashConstructor;
43
31
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,19 +5,10 @@ export declare const getRuntimeConfig: (
5
5
  runtime: string;
6
6
  sha256: import("@smithy/types").HashConstructor;
7
7
  requestHandler:
8
- | (import("@smithy/types").RequestHandler<
9
- any,
10
- any,
11
- import("@smithy/types").HttpHandlerOptions
12
- > &
13
- import("@smithy/types").RequestHandler<
14
- import("@smithy/protocol-http").HttpRequest,
15
- import("@smithy/protocol-http").HttpResponse,
16
- import("@smithy/types").HttpHandlerOptions
17
- > & {
18
- updateHttpClientConfig(key: never, value: never): void;
19
- httpHandlerConfigs(): {};
20
- })
8
+ | import("@smithy/types").NodeHttpHandlerOptions
9
+ | import("@smithy/types").FetchHttpHandlerOptions
10
+ | Record<string, unknown>
11
+ | import("@smithy/protocol-http").HttpHandler<any>
21
12
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
22
13
  apiVersion: string;
23
14
  urlParser: import("@smithy/types").UrlParser;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-timestream-write",
3
3
  "description": "AWS SDK for JavaScript Timestream Write Client for Node.js, Browser and React Native",
4
- "version": "3.515.0",
4
+ "version": "3.523.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-timestream-write",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.515.0",
24
- "@aws-sdk/core": "3.513.0",
25
- "@aws-sdk/credential-provider-node": "3.515.0",
26
- "@aws-sdk/middleware-endpoint-discovery": "3.515.0",
27
- "@aws-sdk/middleware-host-header": "3.515.0",
28
- "@aws-sdk/middleware-logger": "3.515.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.515.0",
30
- "@aws-sdk/middleware-user-agent": "3.515.0",
31
- "@aws-sdk/region-config-resolver": "3.515.0",
32
- "@aws-sdk/types": "3.515.0",
33
- "@aws-sdk/util-endpoints": "3.515.0",
34
- "@aws-sdk/util-user-agent-browser": "3.515.0",
35
- "@aws-sdk/util-user-agent-node": "3.515.0",
36
- "@smithy/config-resolver": "^2.1.1",
37
- "@smithy/core": "^1.3.2",
38
- "@smithy/fetch-http-handler": "^2.4.1",
39
- "@smithy/hash-node": "^2.1.1",
40
- "@smithy/invalid-dependency": "^2.1.1",
41
- "@smithy/middleware-content-length": "^2.1.1",
42
- "@smithy/middleware-endpoint": "^2.4.1",
43
- "@smithy/middleware-retry": "^2.1.1",
44
- "@smithy/middleware-serde": "^2.1.1",
45
- "@smithy/middleware-stack": "^2.1.1",
46
- "@smithy/node-config-provider": "^2.2.1",
47
- "@smithy/node-http-handler": "^2.3.1",
48
- "@smithy/protocol-http": "^3.1.1",
49
- "@smithy/smithy-client": "^2.3.1",
50
- "@smithy/types": "^2.9.1",
51
- "@smithy/url-parser": "^2.1.1",
23
+ "@aws-sdk/client-sts": "3.523.0",
24
+ "@aws-sdk/core": "3.523.0",
25
+ "@aws-sdk/credential-provider-node": "3.523.0",
26
+ "@aws-sdk/middleware-endpoint-discovery": "3.523.0",
27
+ "@aws-sdk/middleware-host-header": "3.523.0",
28
+ "@aws-sdk/middleware-logger": "3.523.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.523.0",
30
+ "@aws-sdk/middleware-user-agent": "3.523.0",
31
+ "@aws-sdk/region-config-resolver": "3.523.0",
32
+ "@aws-sdk/types": "3.523.0",
33
+ "@aws-sdk/util-endpoints": "3.523.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.523.0",
35
+ "@aws-sdk/util-user-agent-node": "3.523.0",
36
+ "@smithy/config-resolver": "^2.1.3",
37
+ "@smithy/core": "^1.3.4",
38
+ "@smithy/fetch-http-handler": "^2.4.3",
39
+ "@smithy/hash-node": "^2.1.3",
40
+ "@smithy/invalid-dependency": "^2.1.3",
41
+ "@smithy/middleware-content-length": "^2.1.3",
42
+ "@smithy/middleware-endpoint": "^2.4.3",
43
+ "@smithy/middleware-retry": "^2.1.3",
44
+ "@smithy/middleware-serde": "^2.1.3",
45
+ "@smithy/middleware-stack": "^2.1.3",
46
+ "@smithy/node-config-provider": "^2.2.3",
47
+ "@smithy/node-http-handler": "^2.4.1",
48
+ "@smithy/protocol-http": "^3.2.1",
49
+ "@smithy/smithy-client": "^2.4.1",
50
+ "@smithy/types": "^2.10.1",
51
+ "@smithy/url-parser": "^2.1.3",
52
52
  "@smithy/util-base64": "^2.1.1",
53
53
  "@smithy/util-body-length-browser": "^2.1.1",
54
54
  "@smithy/util-body-length-node": "^2.2.1",
55
- "@smithy/util-defaults-mode-browser": "^2.1.1",
56
- "@smithy/util-defaults-mode-node": "^2.2.0",
57
- "@smithy/util-endpoints": "^1.1.1",
58
- "@smithy/util-middleware": "^2.1.1",
59
- "@smithy/util-retry": "^2.1.1",
55
+ "@smithy/util-defaults-mode-browser": "^2.1.3",
56
+ "@smithy/util-defaults-mode-node": "^2.2.2",
57
+ "@smithy/util-endpoints": "^1.1.3",
58
+ "@smithy/util-middleware": "^2.1.3",
59
+ "@smithy/util-retry": "^2.1.3",
60
60
  "@smithy/util-utf8": "^2.1.1",
61
61
  "tslib": "^2.5.0",
62
62
  "uuid": "^9.0.1"