@aws-sdk/client-sagemaker-runtime 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.
@@ -24,13 +24,13 @@ const getRuntimeConfig = (config) => {
24
24
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
25
25
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
26
26
  (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
27
- const profileConfig = { profile: config?.profile };
27
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
28
28
  return {
29
29
  ...clientSharedValues,
30
30
  ...config,
31
31
  runtime: "node",
32
32
  defaultsMode,
33
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
33
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
34
34
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
35
35
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
36
36
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -38,7 +38,7 @@ const getRuntimeConfig = (config) => {
38
38
  eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider,
39
39
  maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
40
40
  region: config?.region ??
41
- (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
41
+ (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
42
42
  requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
43
43
  retryMode: config?.retryMode ??
44
44
  (0, node_config_provider_1.loadConfig)({
@@ -47,9 +47,9 @@ const getRuntimeConfig = (config) => {
47
47
  }, config),
48
48
  sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
49
49
  streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
50
- useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
51
- useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
52
- userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
50
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
51
+ useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
52
+ userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
53
53
  };
54
54
  };
55
55
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -20,13 +20,13 @@ export const getRuntimeConfig = (config) => {
20
20
  const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
21
21
  const clientSharedValues = getSharedRuntimeConfig(config);
22
22
  awsCheckVersion(process.version);
23
- const profileConfig = { profile: config?.profile };
23
+ const loaderConfig = { profile: config?.profile, logger: clientSharedValues.logger };
24
24
  return {
25
25
  ...clientSharedValues,
26
26
  ...config,
27
27
  runtime: "node",
28
28
  defaultsMode,
29
- authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, profileConfig),
29
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
30
30
  bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
31
31
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
32
32
  defaultUserAgentProvider: config?.defaultUserAgentProvider ??
@@ -34,7 +34,7 @@ export const getRuntimeConfig = (config) => {
34
34
  eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
35
35
  maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
36
36
  region: config?.region ??
37
- loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
37
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
38
38
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
39
39
  retryMode: config?.retryMode ??
40
40
  loadNodeConfig({
@@ -43,8 +43,8 @@ export const getRuntimeConfig = (config) => {
43
43
  }, config),
44
44
  sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
45
45
  streamCollector: config?.streamCollector ?? streamCollector,
46
- useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
47
- useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
48
- userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
46
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
47
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
48
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
49
49
  };
50
50
  };
@@ -23,7 +23,7 @@ export interface InvokeEndpointAsyncCommandOutput extends InvokeEndpointAsyncOut
23
23
  }
24
24
  declare const InvokeEndpointAsyncCommand_base: {
25
25
  new (input: InvokeEndpointAsyncCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointAsyncCommandInput, InvokeEndpointAsyncCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (__0_0: InvokeEndpointAsyncCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointAsyncCommandInput, InvokeEndpointAsyncCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: InvokeEndpointAsyncCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointAsyncCommandInput, InvokeEndpointAsyncCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -36,7 +36,7 @@ export interface InvokeEndpointCommandOutput extends InvokeEndpointCommandOutput
36
36
  }
37
37
  declare const InvokeEndpointCommand_base: {
38
38
  new (input: InvokeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointCommandInput, InvokeEndpointCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
39
- new (__0_0: InvokeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointCommandInput, InvokeEndpointCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
39
+ new (input: InvokeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointCommandInput, InvokeEndpointCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
40
40
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
41
41
  };
42
42
  /**
@@ -29,7 +29,7 @@ export interface InvokeEndpointWithResponseStreamCommandOutput extends InvokeEnd
29
29
  }
30
30
  declare const InvokeEndpointWithResponseStreamCommand_base: {
31
31
  new (input: InvokeEndpointWithResponseStreamCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointWithResponseStreamCommandInput, InvokeEndpointWithResponseStreamCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
32
- new (__0_0: InvokeEndpointWithResponseStreamCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointWithResponseStreamCommandInput, InvokeEndpointWithResponseStreamCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
32
+ new (input: InvokeEndpointWithResponseStreamCommandInput): import("@smithy/smithy-client").CommandImpl<InvokeEndpointWithResponseStreamCommandInput, InvokeEndpointWithResponseStreamCommandOutput, SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
34
  };
35
35
  /**
@@ -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: SageMakerRuntimeClientConfig) =>
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
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<any>;
@@ -22,30 +22,30 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
22
22
  cacheMiddleware?: boolean | undefined;
23
23
  urlParser: import("@smithy/types").UrlParser;
24
24
  base64Decoder: import("@smithy/types").Decoder;
25
- base64Encoder: (_input: string | Uint8Array) => string;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
26
  utf8Decoder: import("@smithy/types").Decoder;
27
- utf8Encoder: (input: string | Uint8Array) => string;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
28
  disableHostPrefix: boolean;
29
29
  serviceId: string;
30
- profile?: string | undefined;
30
+ profile?: string;
31
31
  logger: import("@smithy/types").Logger;
32
32
  extensions: import("./runtimeExtensions").RuntimeExtension[];
33
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
34
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
35
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
36
  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;
37
37
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
- logger?: import("@smithy/types").Logger | undefined;
38
+ logger?: import("@smithy/types").Logger;
39
39
  }) => import("@smithy/types").EndpointV2;
40
- tls?: boolean | undefined;
41
- serviceConfiguredEndpoint?: undefined;
42
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
43
43
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
44
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
45
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
46
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
47
- signingEscapePath?: boolean | undefined;
48
- systemClockOffset?: number | undefined;
49
- signingRegion?: string | undefined;
50
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
51
  };
@@ -8,8 +8,8 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
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
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
14
14
  maxAttempts: number | import("@smithy/types").Provider<number>;
15
15
  region: string | import("@smithy/types").Provider<string>;
@@ -24,28 +24,28 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
24
24
  cacheMiddleware?: boolean | undefined;
25
25
  urlParser: import("@smithy/types").UrlParser;
26
26
  base64Decoder: import("@smithy/types").Decoder;
27
- base64Encoder: (_input: string | Uint8Array) => string;
27
+ base64Encoder: (_input: Uint8Array | string) => string;
28
28
  utf8Decoder: import("@smithy/types").Decoder;
29
- utf8Encoder: (input: string | Uint8Array) => string;
29
+ utf8Encoder: (input: Uint8Array | string) => string;
30
30
  disableHostPrefix: boolean;
31
31
  serviceId: string;
32
- profile?: string | undefined;
32
+ profile?: string;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent;
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;
41
+ tls?: boolean;
42
+ serviceConfiguredEndpoint?: never;
43
43
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
44
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
45
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
46
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
47
- signingEscapePath?: boolean | undefined;
48
- systemClockOffset?: number | undefined;
49
- signingRegion?: string | undefined;
50
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
51
  };
@@ -7,21 +7,21 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
7
7
  sha256: import("@smithy/types").HashConstructor;
8
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;
9
9
  apiVersion: string;
10
- cacheMiddleware?: boolean | undefined;
10
+ cacheMiddleware?: boolean;
11
11
  urlParser: import("@smithy/types").UrlParser;
12
12
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
13
  streamCollector: import("@smithy/types").StreamCollector;
14
14
  base64Decoder: import("@smithy/types").Decoder;
15
- base64Encoder: (_input: string | Uint8Array) => string;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
16
  utf8Decoder: import("@smithy/types").Decoder;
17
- utf8Encoder: (input: string | Uint8Array) => string;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
18
  disableHostPrefix: boolean;
19
19
  serviceId: string;
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- profile?: string | undefined;
24
- defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
25
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -29,22 +29,22 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
30
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
31
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
- userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
- retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
35
  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;
36
36
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
- logger?: import("@smithy/types").Logger | undefined;
37
+ logger?: import("@smithy/types").Logger;
38
38
  }) => import("@smithy/types").EndpointV2;
39
- tls?: boolean | undefined;
40
- serviceConfiguredEndpoint?: undefined;
41
- authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
42
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
43
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
44
- credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
45
- signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
46
- signingEscapePath?: boolean | undefined;
47
- systemClockOffset?: number | undefined;
48
- signingRegion?: string | undefined;
49
- signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
50
  };
@@ -5,10 +5,10 @@ import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
5
5
  export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) => {
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").SageMakerRuntimeHttpAuthSchemeProvider;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeClientConfig) =>
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
  };
@@ -27,7 +27,7 @@ declare const InvokeEndpointAsyncCommand_base: {
27
27
  ServiceOutputTypes
28
28
  >;
29
29
  new (
30
- __0_0: InvokeEndpointAsyncCommandInput
30
+ input: InvokeEndpointAsyncCommandInput
31
31
  ): import("@smithy/smithy-client").CommandImpl<
32
32
  InvokeEndpointAsyncCommandInput,
33
33
  InvokeEndpointAsyncCommandOutput,
@@ -40,7 +40,7 @@ declare const InvokeEndpointCommand_base: {
40
40
  ServiceOutputTypes
41
41
  >;
42
42
  new (
43
- __0_0: InvokeEndpointCommandInput
43
+ input: InvokeEndpointCommandInput
44
44
  ): import("@smithy/smithy-client").CommandImpl<
45
45
  InvokeEndpointCommandInput,
46
46
  InvokeEndpointCommandOutput,
@@ -36,7 +36,7 @@ declare const InvokeEndpointWithResponseStreamCommand_base: {
36
36
  ServiceOutputTypes
37
37
  >;
38
38
  new (
39
- __0_0: InvokeEndpointWithResponseStreamCommandInput
39
+ input: InvokeEndpointWithResponseStreamCommandInput
40
40
  ): import("@smithy/smithy-client").CommandImpl<
41
41
  InvokeEndpointWithResponseStreamCommandInput,
42
42
  InvokeEndpointWithResponseStreamCommandOutput,
@@ -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
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
22
20
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -33,23 +31,22 @@ export declare const getRuntimeConfig: (
33
31
  cacheMiddleware?: boolean | undefined;
34
32
  urlParser: import("@smithy/types").UrlParser;
35
33
  base64Decoder: import("@smithy/types").Decoder;
36
- base64Encoder: (_input: string | Uint8Array) => string;
34
+ base64Encoder: (_input: Uint8Array | string) => string;
37
35
  utf8Decoder: import("@smithy/types").Decoder;
38
- utf8Encoder: (input: string | Uint8Array) => string;
36
+ utf8Encoder: (input: Uint8Array | string) => string;
39
37
  disableHostPrefix: boolean;
40
38
  serviceId: string;
41
- profile?: string | undefined;
39
+ profile?: string;
42
40
  logger: import("@smithy/types").Logger;
43
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
44
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
42
+ customUserAgent?: string | import("@smithy/types").UserAgent;
45
43
  userAgentAppId?:
46
44
  | string
47
- | import("@smithy/types").Provider<string | undefined>
48
- | undefined;
45
+ | undefined
46
+ | import("@smithy/types").Provider<string | undefined>;
49
47
  retryStrategy?:
50
48
  | import("@smithy/types").RetryStrategy
51
- | import("@smithy/types").RetryStrategyV2
52
- | undefined;
49
+ | import("@smithy/types").RetryStrategyV2;
53
50
  endpoint?:
54
51
  | ((
55
52
  | string
@@ -70,34 +67,27 @@ export declare const getRuntimeConfig: (
70
67
  endpointProvider: (
71
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
72
69
  context?: {
73
- logger?: import("@smithy/types").Logger | undefined;
70
+ logger?: import("@smithy/types").Logger;
74
71
  }
75
72
  ) => import("@smithy/types").EndpointV2;
76
- tls?: boolean | undefined;
77
- serviceConfiguredEndpoint?: undefined;
78
- authSchemePreference?:
79
- | string[]
80
- | import("@smithy/types").Provider<string[]>
81
- | undefined;
73
+ tls?: boolean;
74
+ serviceConfiguredEndpoint?: never;
75
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
82
76
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
83
77
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
84
78
  credentials?:
85
79
  | import("@smithy/types").AwsCredentialIdentity
86
- | import("@smithy/types").AwsCredentialIdentityProvider
87
- | undefined;
80
+ | import("@smithy/types").AwsCredentialIdentityProvider;
88
81
  signer?:
89
82
  | import("@smithy/types").RequestSigner
90
83
  | ((
91
- authScheme?: import("@smithy/types").AuthScheme | undefined
92
- ) => Promise<import("@smithy/types").RequestSigner>)
93
- | undefined;
94
- signingEscapePath?: boolean | undefined;
95
- systemClockOffset?: number | undefined;
96
- signingRegion?: string | undefined;
97
- signerConstructor?:
98
- | (new (
99
- options: import("@smithy/signature-v4").SignatureV4Init &
100
- import("@smithy/signature-v4").SignatureV4CryptoInit
101
- ) => import("@smithy/types").RequestSigner)
102
- | 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;
103
93
  };
@@ -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
  eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
27
23
  maxAttempts: number | import("@smithy/types").Provider<number>;
@@ -39,19 +35,18 @@ export declare const getRuntimeConfig: (
39
35
  cacheMiddleware?: boolean | undefined;
40
36
  urlParser: import("@smithy/types").UrlParser;
41
37
  base64Decoder: import("@smithy/types").Decoder;
42
- base64Encoder: (_input: string | Uint8Array) => string;
38
+ base64Encoder: (_input: Uint8Array | string) => string;
43
39
  utf8Decoder: import("@smithy/types").Decoder;
44
- utf8Encoder: (input: string | Uint8Array) => string;
40
+ utf8Encoder: (input: Uint8Array | string) => string;
45
41
  disableHostPrefix: boolean;
46
42
  serviceId: string;
47
- profile?: string | undefined;
43
+ profile?: string;
48
44
  logger: import("@smithy/types").Logger;
49
45
  extensions: import("./runtimeExtensions").RuntimeExtension[];
50
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ customUserAgent?: string | import("@smithy/types").UserAgent;
51
47
  retryStrategy?:
52
48
  | import("@smithy/types").RetryStrategy
53
- | import("@smithy/types").RetryStrategyV2
54
- | undefined;
49
+ | import("@smithy/types").RetryStrategyV2;
55
50
  endpoint?:
56
51
  | ((
57
52
  | string
@@ -72,30 +67,26 @@ export declare const getRuntimeConfig: (
72
67
  endpointProvider: (
73
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
74
69
  context?: {
75
- logger?: import("@smithy/types").Logger | undefined;
70
+ logger?: import("@smithy/types").Logger;
76
71
  }
77
72
  ) => import("@smithy/types").EndpointV2;
78
- tls?: boolean | undefined;
79
- serviceConfiguredEndpoint?: undefined;
73
+ tls?: boolean;
74
+ serviceConfiguredEndpoint?: never;
80
75
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
81
76
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
82
77
  credentials?:
83
78
  | import("@smithy/types").AwsCredentialIdentity
84
- | import("@smithy/types").AwsCredentialIdentityProvider
85
- | undefined;
79
+ | import("@smithy/types").AwsCredentialIdentityProvider;
86
80
  signer?:
87
81
  | import("@smithy/types").RequestSigner
88
82
  | ((
89
- authScheme?: import("@smithy/types").AuthScheme | undefined
90
- ) => Promise<import("@smithy/types").RequestSigner>)
91
- | undefined;
92
- signingEscapePath?: boolean | undefined;
93
- systemClockOffset?: number | undefined;
94
- signingRegion?: string | undefined;
95
- signerConstructor?:
96
- | (new (
97
- options: import("@smithy/signature-v4").SignatureV4Init &
98
- import("@smithy/signature-v4").SignatureV4CryptoInit
99
- ) => import("@smithy/types").RequestSigner)
100
- | 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;
101
92
  };
@@ -11,24 +11,22 @@ export declare const getRuntimeConfig: (
11
11
  | import("@smithy/protocol-http").HttpHandler<any>
12
12
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
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;
27
+ profile?: string;
28
28
  defaultUserAgentProvider: (
29
- config?:
30
- | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
31
- | undefined
29
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
32
30
  ) => Promise<import("@smithy/types").UserAgent>;
33
31
  credentialDefaultProvider:
34
32
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -45,15 +43,14 @@ export declare const getRuntimeConfig: (
45
43
  | import("@smithy/types").Provider<
46
44
  import("@smithy/smithy-client").DefaultsMode
47
45
  >;
48
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ customUserAgent?: string | import("@smithy/types").UserAgent;
49
47
  userAgentAppId?:
50
48
  | string
51
- | import("@smithy/types").Provider<string | undefined>
52
- | undefined;
49
+ | undefined
50
+ | import("@smithy/types").Provider<string | undefined>;
53
51
  retryStrategy?:
54
52
  | import("@smithy/types").RetryStrategy
55
- | import("@smithy/types").RetryStrategyV2
56
- | undefined;
53
+ | import("@smithy/types").RetryStrategyV2;
57
54
  endpoint?:
58
55
  | ((
59
56
  | string
@@ -74,34 +71,27 @@ export declare const getRuntimeConfig: (
74
71
  endpointProvider: (
75
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
76
73
  context?: {
77
- logger?: import("@smithy/types").Logger | undefined;
74
+ logger?: import("@smithy/types").Logger;
78
75
  }
79
76
  ) => import("@smithy/types").EndpointV2;
80
- tls?: boolean | undefined;
81
- serviceConfiguredEndpoint?: undefined;
82
- authSchemePreference?:
83
- | string[]
84
- | import("@smithy/types").Provider<string[]>
85
- | undefined;
77
+ tls?: boolean;
78
+ serviceConfiguredEndpoint?: never;
79
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
86
80
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
87
81
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerRuntimeHttpAuthSchemeProvider;
88
82
  credentials?:
89
83
  | import("@smithy/types").AwsCredentialIdentity
90
- | import("@smithy/types").AwsCredentialIdentityProvider
91
- | undefined;
84
+ | import("@smithy/types").AwsCredentialIdentityProvider;
92
85
  signer?:
93
86
  | import("@smithy/types").RequestSigner
94
87
  | ((
95
- authScheme?: import("@smithy/types").AuthScheme | undefined
96
- ) => Promise<import("@smithy/types").RequestSigner>)
97
- | undefined;
98
- signingEscapePath?: boolean | undefined;
99
- systemClockOffset?: number | undefined;
100
- signingRegion?: string | undefined;
101
- signerConstructor?:
102
- | (new (
103
- options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
105
- ) => import("@smithy/types").RequestSigner)
106
- | undefined;
88
+ authScheme?: import("@smithy/types").AuthScheme
89
+ ) => Promise<import("@smithy/types").RequestSigner>);
90
+ signingEscapePath?: boolean;
91
+ systemClockOffset?: number;
92
+ signingRegion?: string;
93
+ signerConstructor?: new (
94
+ options: import("@smithy/signature-v4").SignatureV4Init &
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit
96
+ ) => import("@smithy/types").RequestSigner;
107
97
  };
@@ -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-sagemaker-runtime",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Runtime 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-sagemaker-runtime",
@@ -20,19 +20,19 @@
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/middleware-host-header": "3.775.0",
26
- "@aws-sdk/middleware-logger": "3.775.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.799.0",
29
- "@aws-sdk/region-config-resolver": "3.775.0",
30
- "@aws-sdk/types": "3.775.0",
31
- "@aws-sdk/util-endpoints": "3.787.0",
32
- "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.799.0",
34
- "@smithy/config-resolver": "^4.1.0",
35
- "@smithy/core": "^3.3.0",
23
+ "@aws-sdk/core": "3.806.0",
24
+ "@aws-sdk/credential-provider-node": "3.806.0",
25
+ "@aws-sdk/middleware-host-header": "3.804.0",
26
+ "@aws-sdk/middleware-logger": "3.804.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.804.0",
28
+ "@aws-sdk/middleware-user-agent": "3.806.0",
29
+ "@aws-sdk/region-config-resolver": "3.806.0",
30
+ "@aws-sdk/types": "3.804.0",
31
+ "@aws-sdk/util-endpoints": "3.806.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.804.0",
33
+ "@aws-sdk/util-user-agent-node": "3.806.0",
34
+ "@smithy/config-resolver": "^4.1.1",
35
+ "@smithy/core": "^3.3.1",
36
36
  "@smithy/eventstream-serde-browser": "^4.0.2",
37
37
  "@smithy/eventstream-serde-config-resolver": "^4.1.0",
38
38
  "@smithy/eventstream-serde-node": "^4.0.2",
@@ -40,22 +40,22 @@
40
40
  "@smithy/hash-node": "^4.0.2",
41
41
  "@smithy/invalid-dependency": "^4.0.2",
42
42
  "@smithy/middleware-content-length": "^4.0.2",
43
- "@smithy/middleware-endpoint": "^4.1.1",
44
- "@smithy/middleware-retry": "^4.1.2",
43
+ "@smithy/middleware-endpoint": "^4.1.3",
44
+ "@smithy/middleware-retry": "^4.1.4",
45
45
  "@smithy/middleware-serde": "^4.0.3",
46
46
  "@smithy/middleware-stack": "^4.0.2",
47
- "@smithy/node-config-provider": "^4.0.2",
47
+ "@smithy/node-config-provider": "^4.1.0",
48
48
  "@smithy/node-http-handler": "^4.0.4",
49
49
  "@smithy/protocol-http": "^5.1.0",
50
- "@smithy/smithy-client": "^4.2.1",
50
+ "@smithy/smithy-client": "^4.2.3",
51
51
  "@smithy/types": "^4.2.0",
52
52
  "@smithy/url-parser": "^4.0.2",
53
53
  "@smithy/util-base64": "^4.0.0",
54
54
  "@smithy/util-body-length-browser": "^4.0.0",
55
55
  "@smithy/util-body-length-node": "^4.0.0",
56
- "@smithy/util-defaults-mode-browser": "^4.0.9",
57
- "@smithy/util-defaults-mode-node": "^4.0.9",
58
- "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-defaults-mode-browser": "^4.0.11",
57
+ "@smithy/util-defaults-mode-node": "^4.0.11",
58
+ "@smithy/util-endpoints": "^3.0.3",
59
59
  "@smithy/util-middleware": "^4.0.2",
60
60
  "@smithy/util-retry": "^4.0.3",
61
61
  "@smithy/util-stream": "^4.2.0",
@@ -68,7 +68,7 @@
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",
71
- "typescript": "~5.2.2"
71
+ "typescript": "~5.8.3"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=18.0.0"