@aws-sdk/client-rekognitionstreaming 3.803.0 → 3.806.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.
@@ -25,13 +25,13 @@ const getRuntimeConfig = (config) => {
25
25
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
26
26
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
27
27
  (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
28
- const profileConfig = { profile: config?.profile };
28
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
29
29
  return {
30
30
  ...clientSharedValues,
31
31
  ...config,
32
32
  runtime: "node",
33
33
  defaultsMode,
34
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
34
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
35
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
36
36
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
37
37
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -40,7 +40,7 @@ const getRuntimeConfig = (config) => {
40
40
  eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider,
41
41
  maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
42
42
  region: config?.region ??
43
- (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
43
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
44
44
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
45
45
  retryMode: config?.retryMode ??
46
46
  (0, node_config_provider_1.loadConfig)({
@@ -49,9 +49,9 @@ const getRuntimeConfig = (config) => {
49
49
  }, config),
50
50
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
51
51
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
52
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
53
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
54
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
52
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
53
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
54
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
55
55
  };
56
56
  };
57
57
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -21,13 +21,13 @@ export const getRuntimeConfig = (config) => {
21
21
  const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
22
22
  const clientSharedValues = getSharedRuntimeConfig(config);
23
23
  awsCheckVersion(process.version);
24
- const profileConfig = { profile: config?.profile };
24
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
25
25
  return {
26
26
  ...clientSharedValues,
27
27
  ...config,
28
28
  runtime: "node",
29
29
  defaultsMode,
30
- authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
30
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
31
31
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
32
32
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
33
33
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -36,7 +36,7 @@ export const getRuntimeConfig = (config) => {
36
36
  eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
37
37
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
38
38
  region: config?.region ??
39
- loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
39
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
40
40
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
41
41
  retryMode: config?.retryMode ??
42
42
  loadNodeConfig({
@@ -45,8 +45,8 @@ export const getRuntimeConfig = (config) => {
45
45
  }, config),
46
46
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
47
47
  streamCollector: config?.streamCollector ?? streamCollector,
48
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
49
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
50
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
48
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
49
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
50
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
51
51
  };
52
52
  };
@@ -23,7 +23,7 @@ export interface StartFaceLivenessSessionCommandOutput extends StartFaceLiveness
23
23
  }
24
24
  declare const StartFaceLivenessSessionCommand_base: {
25
25
  new (input: StartFaceLivenessSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
26
- new (__0_0: StartFaceLivenessSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
26
+ new (input: StartFaceLivenessSessionCommandInput): import("@smithy/smithy-client").CommandImpl<StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, RekognitionStreamingClientResolvedConfig, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -11,9 +11,7 @@ export interface ClientInputEndpointParameters {
11
11
  export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
12
  defaultSigningName: string;
13
13
  };
14
- export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
- defaultSigningName: string;
16
- };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
17
15
  export declare const commonParams: {
18
16
  readonly UseFIPS: {
19
17
  readonly type: "builtInParams";
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
13
13
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
14
14
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -23,30 +23,30 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
23
23
  cacheMiddleware?: boolean | undefined;
24
24
  urlParser: import("@smithy/types").UrlParser;
25
25
  base64Decoder: import("@smithy/types").Decoder;
26
- base64Encoder: (_input: string | Uint8Array) => string;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
27
  utf8Decoder: import("@smithy/types").Decoder;
28
- utf8Encoder: (input: string | Uint8Array) => string;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
29
  disableHostPrefix: boolean;
30
30
  serviceId: string;
31
- profile?: string | undefined;
31
+ profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
35
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
36
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ customUserAgent?: string | import("@smithy/types").UserAgent;
35
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
36
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
37
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
38
38
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
39
- logger?: import("@smithy/types").Logger | undefined;
39
+ logger?: import("@smithy/types").Logger;
40
40
  }) => import("@smithy/types").EndpointV2;
41
- tls?: boolean | undefined;
42
- serviceConfiguredEndpoint?: undefined;
43
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
41
+ tls?: boolean;
42
+ serviceConfiguredEndpoint?: never;
43
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
44
44
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
45
45
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
46
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
47
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
48
- signingEscapePath?: boolean | undefined;
49
- systemClockOffset?: number | undefined;
50
- signingRegion?: string | undefined;
51
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
46
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
47
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
48
+ signingEscapePath?: boolean;
49
+ systemClockOffset?: number;
50
+ signingRegion?: string;
51
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
52
52
  };
@@ -8,8 +8,8 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
13
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
14
14
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -25,28 +25,28 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
25
25
  cacheMiddleware?: boolean | undefined;
26
26
  urlParser: import("@smithy/types").UrlParser;
27
27
  base64Decoder: import("@smithy/types").Decoder;
28
- base64Encoder: (_input: string | Uint8Array) => string;
28
+ base64Encoder: (_input: Uint8Array | string) => string;
29
29
  utf8Decoder: import("@smithy/types").Decoder;
30
- utf8Encoder: (input: string | Uint8Array) => string;
30
+ utf8Encoder: (input: Uint8Array | string) => string;
31
31
  disableHostPrefix: boolean;
32
32
  serviceId: string;
33
- profile?: string | undefined;
33
+ profile?: string;
34
34
  logger: import("@smithy/types").Logger;
35
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
38
38
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
39
39
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
40
- logger?: import("@smithy/types").Logger | undefined;
40
+ logger?: import("@smithy/types").Logger;
41
41
  }) => import("@smithy/types").EndpointV2;
42
- tls?: boolean | undefined;
43
- serviceConfiguredEndpoint?: undefined;
42
+ tls?: boolean;
43
+ serviceConfiguredEndpoint?: never;
44
44
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
45
45
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
46
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
47
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
48
- signingEscapePath?: boolean | undefined;
49
- systemClockOffset?: number | undefined;
50
- signingRegion?: string | undefined;
51
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
46
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
47
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
48
+ signingEscapePath?: boolean;
49
+ systemClockOffset?: number;
50
+ signingRegion?: string;
51
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
52
52
  };
@@ -11,21 +11,21 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
11
11
  httpHandlerConfigs(): {};
12
12
  }) | import("@aws-sdk/middleware-websocket").WebSocketFetchHandler;
13
13
  apiVersion: string;
14
- cacheMiddleware?: boolean | undefined;
14
+ cacheMiddleware?: boolean;
15
15
  urlParser: import("@smithy/types").UrlParser;
16
16
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
17
17
  streamCollector: import("@smithy/types").StreamCollector;
18
18
  base64Decoder: import("@smithy/types").Decoder;
19
- base64Encoder: (_input: string | Uint8Array) => string;
19
+ base64Encoder: (_input: Uint8Array | string) => string;
20
20
  utf8Decoder: import("@smithy/types").Decoder;
21
- utf8Encoder: (input: string | Uint8Array) => string;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
22
  disableHostPrefix: boolean;
23
23
  serviceId: string;
24
24
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
25
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
26
  region: string | import("@smithy/types").Provider<any>;
27
- profile?: string | undefined;
28
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
27
+ profile?: string;
28
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
29
29
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
30
30
  maxAttempts: number | import("@smithy/types").Provider<number>;
31
31
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -33,22 +33,22 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
34
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
35
35
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
36
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
38
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent;
37
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
39
39
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
40
40
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
41
- logger?: import("@smithy/types").Logger | undefined;
41
+ logger?: import("@smithy/types").Logger;
42
42
  }) => import("@smithy/types").EndpointV2;
43
- tls?: boolean | undefined;
44
- serviceConfiguredEndpoint?: undefined;
45
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
43
+ tls?: boolean;
44
+ serviceConfiguredEndpoint?: never;
45
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
46
46
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
47
47
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
48
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
49
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
50
- signingEscapePath?: boolean | undefined;
51
- systemClockOffset?: number | undefined;
52
- signingRegion?: string | undefined;
53
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
48
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
49
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
50
+ signingEscapePath?: boolean;
51
+ systemClockOffset?: number;
52
+ signingRegion?: string;
53
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
54
54
  };
@@ -5,10 +5,10 @@ import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient";
5
5
  export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: (_input: string | Uint8Array) => string;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
- logger?: import("@smithy/types").Logger | undefined;
11
+ logger?: import("@smithy/types").Logger;
12
12
  }) => import("@smithy/types").EndpointV2;
13
13
  extensions: import("./runtimeExtensions").RuntimeExtension[];
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: RekognitionStreamingClientConfig
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: (input: string | Uint8Array) => string;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
21
  };
@@ -23,7 +23,7 @@ declare const StartFaceLivenessSessionCommand_base: {
23
23
  StartFaceLivenessSessionCommandOutput
24
24
  >;
25
25
  new (
26
- __0_0: StartFaceLivenessSessionCommandInput
26
+ input: StartFaceLivenessSessionCommandInput
27
27
  ): import("@smithy/smithy-client").CommandImpl<
28
28
  StartFaceLivenessSessionCommandInput,
29
29
  StartFaceLivenessSessionCommandOutput,
@@ -21,10 +21,7 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
21
21
  };
22
22
  export declare const resolveClientEndpointParameters: <T>(
23
23
  options: T & ClientInputEndpointParameters
24
- ) => T &
25
- ClientInputEndpointParameters & {
26
- defaultSigningName: string;
27
- };
24
+ ) => T & ClientResolvedEndpointParameters;
28
25
  export declare const commonParams: {
29
26
  readonly UseFIPS: {
30
27
  readonly type: "builtInParams";
@@ -14,9 +14,7 @@ export declare const getRuntimeConfig: (
14
14
  _: unknown
15
15
  ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
16
16
  defaultUserAgentProvider: (
17
- config?:
18
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
19
- | undefined
17
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
20
18
  ) => Promise<import("@smithy/types").UserAgent>;
21
19
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
22
20
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
@@ -32,23 +30,22 @@ export declare const getRuntimeConfig: (
32
30
  cacheMiddleware?: boolean | undefined;
33
31
  urlParser: import("@smithy/types").UrlParser;
34
32
  base64Decoder: import("@smithy/types").Decoder;
35
- base64Encoder: (_input: string | Uint8Array) => string;
33
+ base64Encoder: (_input: Uint8Array | string) => string;
36
34
  utf8Decoder: import("@smithy/types").Decoder;
37
- utf8Encoder: (input: string | Uint8Array) => string;
35
+ utf8Encoder: (input: Uint8Array | string) => string;
38
36
  disableHostPrefix: boolean;
39
37
  serviceId: string;
40
- profile?: string | undefined;
38
+ profile?: string;
41
39
  logger: import("@smithy/types").Logger;
42
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
+ customUserAgent?: string | import("@smithy/types").UserAgent;
44
42
  userAgentAppId?:
45
43
  | string
46
- | import("@smithy/types").Provider<string | undefined>
47
- | undefined;
44
+ | undefined
45
+ | import("@smithy/types").Provider<string | undefined>;
48
46
  retryStrategy?:
49
47
  | import("@smithy/types").RetryStrategy
50
- | import("@smithy/types").RetryStrategyV2
51
- | undefined;
48
+ | import("@smithy/types").RetryStrategyV2;
52
49
  endpoint?:
53
50
  | ((
54
51
  | string
@@ -69,34 +66,27 @@ export declare const getRuntimeConfig: (
69
66
  endpointProvider: (
70
67
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
71
68
  context?: {
72
- logger?: import("@smithy/types").Logger | undefined;
69
+ logger?: import("@smithy/types").Logger;
73
70
  }
74
71
  ) => import("@smithy/types").EndpointV2;
75
- tls?: boolean | undefined;
76
- serviceConfiguredEndpoint?: undefined;
77
- authSchemePreference?:
78
- | string[]
79
- | import("@smithy/types").Provider<string[]>
80
- | undefined;
72
+ tls?: boolean;
73
+ serviceConfiguredEndpoint?: never;
74
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
81
75
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
82
76
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
83
77
  credentials?:
84
78
  | import("@smithy/types").AwsCredentialIdentity
85
- | import("@smithy/types").AwsCredentialIdentityProvider
86
- | undefined;
79
+ | import("@smithy/types").AwsCredentialIdentityProvider;
87
80
  signer?:
88
81
  | import("@smithy/types").RequestSigner
89
82
  | ((
90
- authScheme?: import("@smithy/types").AuthScheme | undefined
91
- ) => Promise<import("@smithy/types").RequestSigner>)
92
- | undefined;
93
- signingEscapePath?: boolean | undefined;
94
- systemClockOffset?: number | undefined;
95
- signingRegion?: string | undefined;
96
- signerConstructor?:
97
- | (new (
98
- options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
100
- ) => import("@smithy/types").RequestSigner)
101
- | undefined;
83
+ authScheme?: import("@smithy/types").AuthScheme
84
+ ) => Promise<import("@smithy/types").RequestSigner>);
85
+ signingEscapePath?: boolean;
86
+ systemClockOffset?: number;
87
+ signingRegion?: string;
88
+ signerConstructor?: new (
89
+ options: import("@smithy/signature-v4").SignatureV4Init &
90
+ import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ ) => import("@smithy/types").RequestSigner;
102
92
  };
@@ -12,16 +12,12 @@ export declare const getRuntimeConfig: (
12
12
  credentialDefaultProvider:
13
13
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
14
14
  | ((
15
- init?:
16
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
17
- | undefined
15
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
18
16
  ) => import("@smithy/types").MemoizedProvider<
19
17
  import("@smithy/types").AwsCredentialIdentity
20
18
  >);
21
19
  defaultUserAgentProvider: (
22
- config?:
23
- | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
24
- | undefined
20
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
25
21
  ) => Promise<import("@smithy/types").UserAgent>;
26
22
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
27
23
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
@@ -40,19 +36,18 @@ export declare const getRuntimeConfig: (
40
36
  cacheMiddleware?: boolean | undefined;
41
37
  urlParser: import("@smithy/types").UrlParser;
42
38
  base64Decoder: import("@smithy/types").Decoder;
43
- base64Encoder: (_input: string | Uint8Array) => string;
39
+ base64Encoder: (_input: Uint8Array | string) => string;
44
40
  utf8Decoder: import("@smithy/types").Decoder;
45
- utf8Encoder: (input: string | Uint8Array) => string;
41
+ utf8Encoder: (input: Uint8Array | string) => string;
46
42
  disableHostPrefix: boolean;
47
43
  serviceId: string;
48
- profile?: string | undefined;
44
+ profile?: string;
49
45
  logger: import("@smithy/types").Logger;
50
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
51
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
47
+ customUserAgent?: string | import("@smithy/types").UserAgent;
52
48
  retryStrategy?:
53
49
  | import("@smithy/types").RetryStrategy
54
- | import("@smithy/types").RetryStrategyV2
55
- | undefined;
50
+ | import("@smithy/types").RetryStrategyV2;
56
51
  endpoint?:
57
52
  | ((
58
53
  | string
@@ -73,30 +68,26 @@ export declare const getRuntimeConfig: (
73
68
  endpointProvider: (
74
69
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
75
70
  context?: {
76
- logger?: import("@smithy/types").Logger | undefined;
71
+ logger?: import("@smithy/types").Logger;
77
72
  }
78
73
  ) => import("@smithy/types").EndpointV2;
79
- tls?: boolean | undefined;
80
- serviceConfiguredEndpoint?: undefined;
74
+ tls?: boolean;
75
+ serviceConfiguredEndpoint?: never;
81
76
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
82
77
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
83
78
  credentials?:
84
79
  | import("@smithy/types").AwsCredentialIdentity
85
- | import("@smithy/types").AwsCredentialIdentityProvider
86
- | undefined;
80
+ | import("@smithy/types").AwsCredentialIdentityProvider;
87
81
  signer?:
88
82
  | import("@smithy/types").RequestSigner
89
83
  | ((
90
- authScheme?: import("@smithy/types").AuthScheme | undefined
91
- ) => Promise<import("@smithy/types").RequestSigner>)
92
- | undefined;
93
- signingEscapePath?: boolean | undefined;
94
- systemClockOffset?: number | undefined;
95
- signingRegion?: string | undefined;
96
- signerConstructor?:
97
- | (new (
98
- options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
100
- ) => import("@smithy/types").RequestSigner)
101
- | undefined;
84
+ authScheme?: import("@smithy/types").AuthScheme
85
+ ) => Promise<import("@smithy/types").RequestSigner>);
86
+ signingEscapePath?: boolean;
87
+ systemClockOffset?: number;
88
+ signingRegion?: string;
89
+ signerConstructor?: new (
90
+ options: import("@smithy/signature-v4").SignatureV4Init &
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit
92
+ ) => import("@smithy/types").RequestSigner;
102
93
  };
@@ -24,24 +24,22 @@ export declare const getRuntimeConfig: (
24
24
  })
25
25
  | import("@aws-sdk/middleware-websocket").WebSocketFetchHandler;
26
26
  apiVersion: string;
27
- cacheMiddleware?: boolean | undefined;
27
+ cacheMiddleware?: boolean;
28
28
  urlParser: import("@smithy/types").UrlParser;
29
29
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
30
30
  streamCollector: import("@smithy/types").StreamCollector;
31
31
  base64Decoder: import("@smithy/types").Decoder;
32
- base64Encoder: (_input: string | Uint8Array) => string;
32
+ base64Encoder: (_input: Uint8Array | string) => string;
33
33
  utf8Decoder: import("@smithy/types").Decoder;
34
- utf8Encoder: (input: string | Uint8Array) => string;
34
+ utf8Encoder: (input: Uint8Array | string) => string;
35
35
  disableHostPrefix: boolean;
36
36
  serviceId: string;
37
37
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
38
38
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
39
39
  region: string | import("@smithy/types").Provider<any>;
40
- profile?: string | undefined;
40
+ profile?: string;
41
41
  defaultUserAgentProvider: (
42
- config?:
43
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
44
- | undefined
42
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
45
43
  ) => Promise<import("@smithy/types").UserAgent>;
46
44
  credentialDefaultProvider:
47
45
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -58,15 +56,14 @@ export declare const getRuntimeConfig: (
58
56
  | import("@smithy/types").Provider<
59
57
  import("@smithy/smithy-client").DefaultsMode
60
58
  >;
61
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
59
+ customUserAgent?: string | import("@smithy/types").UserAgent;
62
60
  userAgentAppId?:
63
61
  | string
64
- | import("@smithy/types").Provider<string | undefined>
65
- | undefined;
62
+ | undefined
63
+ | import("@smithy/types").Provider<string | undefined>;
66
64
  retryStrategy?:
67
65
  | import("@smithy/types").RetryStrategy
68
- | import("@smithy/types").RetryStrategyV2
69
- | undefined;
66
+ | import("@smithy/types").RetryStrategyV2;
70
67
  endpoint?:
71
68
  | ((
72
69
  | string
@@ -87,34 +84,27 @@ export declare const getRuntimeConfig: (
87
84
  endpointProvider: (
88
85
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
89
86
  context?: {
90
- logger?: import("@smithy/types").Logger | undefined;
87
+ logger?: import("@smithy/types").Logger;
91
88
  }
92
89
  ) => import("@smithy/types").EndpointV2;
93
- tls?: boolean | undefined;
94
- serviceConfiguredEndpoint?: undefined;
95
- authSchemePreference?:
96
- | string[]
97
- | import("@smithy/types").Provider<string[]>
98
- | undefined;
90
+ tls?: boolean;
91
+ serviceConfiguredEndpoint?: never;
92
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
99
93
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
100
94
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RekognitionStreamingHttpAuthSchemeProvider;
101
95
  credentials?:
102
96
  | import("@smithy/types").AwsCredentialIdentity
103
- | import("@smithy/types").AwsCredentialIdentityProvider
104
- | undefined;
97
+ | import("@smithy/types").AwsCredentialIdentityProvider;
105
98
  signer?:
106
99
  | import("@smithy/types").RequestSigner
107
100
  | ((
108
- authScheme?: import("@smithy/types").AuthScheme | undefined
109
- ) => Promise<import("@smithy/types").RequestSigner>)
110
- | undefined;
111
- signingEscapePath?: boolean | undefined;
112
- systemClockOffset?: number | undefined;
113
- signingRegion?: string | undefined;
114
- signerConstructor?:
115
- | (new (
116
- options: import("@smithy/signature-v4").SignatureV4Init &
117
- import("@smithy/signature-v4").SignatureV4CryptoInit
118
- ) => import("@smithy/types").RequestSigner)
119
- | undefined;
101
+ authScheme?: import("@smithy/types").AuthScheme
102
+ ) => Promise<import("@smithy/types").RequestSigner>);
103
+ signingEscapePath?: boolean;
104
+ systemClockOffset?: number;
105
+ signingRegion?: string;
106
+ signerConstructor?: new (
107
+ options: import("@smithy/signature-v4").SignatureV4Init &
108
+ import("@smithy/signature-v4").SignatureV4CryptoInit
109
+ ) => import("@smithy/types").RequestSigner;
120
110
  };
@@ -4,12 +4,12 @@ export declare const getRuntimeConfig: (
4
4
  ) => {
5
5
  apiVersion: string;
6
6
  base64Decoder: import("@smithy/types").Decoder;
7
- base64Encoder: (_input: string | Uint8Array) => string;
7
+ base64Encoder: (_input: Uint8Array | string) => string;
8
8
  disableHostPrefix: boolean;
9
9
  endpointProvider: (
10
10
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
11
  context?: {
12
- logger?: import("@smithy/types").Logger | undefined;
12
+ logger?: import("@smithy/types").Logger;
13
13
  }
14
14
  ) => import("@smithy/types").EndpointV2;
15
15
  extensions: import("./runtimeExtensions").RuntimeExtension[];
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
19
19
  serviceId: string;
20
20
  urlParser: import("@smithy/types").UrlParser;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
22
- utf8Encoder: (input: string | Uint8Array) => string;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
23
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rekognitionstreaming",
3
3
  "description": "AWS SDK for JavaScript Rekognitionstreaming Client for Node.js, Browser and React Native",
4
- "version": "3.803.0",
4
+ "version": "3.806.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-rekognitionstreaming",
@@ -20,22 +20,22 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.799.0",
24
- "@aws-sdk/credential-provider-node": "3.803.0",
25
- "@aws-sdk/eventstream-handler-node": "3.775.0",
26
- "@aws-sdk/middleware-eventstream": "3.775.0",
27
- "@aws-sdk/middleware-host-header": "3.775.0",
28
- "@aws-sdk/middleware-logger": "3.775.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.775.0",
30
- "@aws-sdk/middleware-user-agent": "3.799.0",
31
- "@aws-sdk/middleware-websocket": "3.796.0",
32
- "@aws-sdk/region-config-resolver": "3.775.0",
33
- "@aws-sdk/types": "3.775.0",
34
- "@aws-sdk/util-endpoints": "3.787.0",
35
- "@aws-sdk/util-user-agent-browser": "3.775.0",
36
- "@aws-sdk/util-user-agent-node": "3.799.0",
37
- "@smithy/config-resolver": "^4.1.0",
38
- "@smithy/core": "^3.3.0",
23
+ "@aws-sdk/core": "3.806.0",
24
+ "@aws-sdk/credential-provider-node": "3.806.0",
25
+ "@aws-sdk/eventstream-handler-node": "3.804.0",
26
+ "@aws-sdk/middleware-eventstream": "3.804.0",
27
+ "@aws-sdk/middleware-host-header": "3.804.0",
28
+ "@aws-sdk/middleware-logger": "3.804.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.804.0",
30
+ "@aws-sdk/middleware-user-agent": "3.806.0",
31
+ "@aws-sdk/middleware-websocket": "3.804.0",
32
+ "@aws-sdk/region-config-resolver": "3.806.0",
33
+ "@aws-sdk/types": "3.804.0",
34
+ "@aws-sdk/util-endpoints": "3.806.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.804.0",
36
+ "@aws-sdk/util-user-agent-node": "3.806.0",
37
+ "@smithy/config-resolver": "^4.1.1",
38
+ "@smithy/core": "^3.3.1",
39
39
  "@smithy/eventstream-serde-browser": "^4.0.2",
40
40
  "@smithy/eventstream-serde-config-resolver": "^4.1.0",
41
41
  "@smithy/eventstream-serde-node": "^4.0.2",
@@ -43,22 +43,22 @@
43
43
  "@smithy/hash-node": "^4.0.2",
44
44
  "@smithy/invalid-dependency": "^4.0.2",
45
45
  "@smithy/middleware-content-length": "^4.0.2",
46
- "@smithy/middleware-endpoint": "^4.1.1",
47
- "@smithy/middleware-retry": "^4.1.2",
46
+ "@smithy/middleware-endpoint": "^4.1.3",
47
+ "@smithy/middleware-retry": "^4.1.4",
48
48
  "@smithy/middleware-serde": "^4.0.3",
49
49
  "@smithy/middleware-stack": "^4.0.2",
50
- "@smithy/node-config-provider": "^4.0.2",
50
+ "@smithy/node-config-provider": "^4.1.0",
51
51
  "@smithy/node-http-handler": "^4.0.4",
52
52
  "@smithy/protocol-http": "^5.1.0",
53
- "@smithy/smithy-client": "^4.2.1",
53
+ "@smithy/smithy-client": "^4.2.3",
54
54
  "@smithy/types": "^4.2.0",
55
55
  "@smithy/url-parser": "^4.0.2",
56
56
  "@smithy/util-base64": "^4.0.0",
57
57
  "@smithy/util-body-length-browser": "^4.0.0",
58
58
  "@smithy/util-body-length-node": "^4.0.0",
59
- "@smithy/util-defaults-mode-browser": "^4.0.9",
60
- "@smithy/util-defaults-mode-node": "^4.0.9",
61
- "@smithy/util-endpoints": "^3.0.2",
59
+ "@smithy/util-defaults-mode-browser": "^4.0.11",
60
+ "@smithy/util-defaults-mode-node": "^4.0.11",
61
+ "@smithy/util-endpoints": "^3.0.3",
62
62
  "@smithy/util-middleware": "^4.0.2",
63
63
  "@smithy/util-retry": "^4.0.3",
64
64
  "@smithy/util-utf8": "^4.0.0",
@@ -70,7 +70,7 @@
70
70
  "concurrently": "7.0.0",
71
71
  "downlevel-dts": "0.10.1",
72
72
  "rimraf": "3.0.2",
73
- "typescript": "~5.2.2"
73
+ "typescript": "~5.8.3"
74
74
  },
75
75
  "engines": {
76
76
  "node": ">=18.0.0"