@aws-sdk/client-lex-runtime-service 3.588.0 → 3.592.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -211,7 +211,6 @@ var LexRuntimeServiceClient = _LexRuntimeServiceClient;
211
211
 
212
212
  var import_middleware_serde = require("@smithy/middleware-serde");
213
213
 
214
- var import_types = require("@smithy/types");
215
214
 
216
215
  // src/protocols/Aws_restJson1.ts
217
216
  var import_core2 = require("@aws-sdk/core");
@@ -1046,7 +1045,6 @@ var DeleteSessionCommand = _DeleteSessionCommand;
1046
1045
 
1047
1046
 
1048
1047
 
1049
-
1050
1048
  var _GetSessionCommand = class _GetSessionCommand extends import_smithy_client.Command.classBuilder().ep({
1051
1049
  ...commonParams
1052
1050
  }).m(function(Command, cs, config, o) {
@@ -1063,7 +1061,6 @@ var GetSessionCommand = _GetSessionCommand;
1063
1061
 
1064
1062
 
1065
1063
 
1066
-
1067
1064
  var _PostContentCommand = class _PostContentCommand extends import_smithy_client.Command.classBuilder().ep({
1068
1065
  ...commonParams
1069
1066
  }).m(function(Command, cs, config, o) {
@@ -1080,7 +1077,6 @@ var PostContentCommand = _PostContentCommand;
1080
1077
 
1081
1078
 
1082
1079
 
1083
-
1084
1080
  var _PostTextCommand = class _PostTextCommand extends import_smithy_client.Command.classBuilder().ep({
1085
1081
  ...commonParams
1086
1082
  }).m(function(Command, cs, config, o) {
@@ -1097,7 +1093,6 @@ var PostTextCommand = _PostTextCommand;
1097
1093
 
1098
1094
 
1099
1095
 
1100
-
1101
1096
  var _PutSessionCommand = class _PutSessionCommand extends import_smithy_client.Command.classBuilder().ep({
1102
1097
  ...commonParams
1103
1098
  }).m(function(Command, cs, config, o) {
@@ -95,15 +95,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
95
95
  * Enables FIPS compatible endpoints.
96
96
  */
97
97
  useFipsEndpoint?: boolean | __Provider<boolean>;
98
+ /**
99
+ * The AWS region to which this client will send requests
100
+ */
101
+ region?: string | __Provider<string>;
98
102
  /**
99
103
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
100
104
  * @internal
101
105
  */
102
106
  defaultUserAgentProvider?: Provider<__UserAgent>;
103
- /**
104
- * The AWS region to which this client will send requests
105
- */
106
- region?: string | __Provider<string>;
107
107
  /**
108
108
  * Default credentials provider; Not available in browser runtime.
109
109
  * @deprecated
@@ -5,7 +5,8 @@ import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"
5
5
  /**
6
6
  * @public
7
7
  */
8
- export { __MetadataBearer, $Command };
8
+ export type { __MetadataBearer };
9
+ export { $Command };
9
10
  /**
10
11
  * @public
11
12
  *
@@ -5,7 +5,8 @@ import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
8
- export { __MetadataBearer, $Command };
8
+ export type { __MetadataBearer };
9
+ export { $Command };
9
10
  /**
10
11
  * @public
11
12
  *
@@ -5,7 +5,8 @@ import { PostContentRequest, PostContentResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
8
- export { __MetadataBearer, $Command };
8
+ export type { __MetadataBearer };
9
+ export { $Command };
9
10
  /**
10
11
  * @public
11
12
  *
@@ -5,7 +5,8 @@ import { PostTextRequest, PostTextResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
8
- export { __MetadataBearer, $Command };
8
+ export type { __MetadataBearer };
9
+ export { $Command };
9
10
  /**
10
11
  * @public
11
12
  *
@@ -5,7 +5,8 @@ import { PutSessionRequest, PutSessionResponse } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
8
- export { __MetadataBearer, $Command };
8
+ export type { __MetadataBearer };
9
+ export { $Command };
9
10
  /**
10
11
  * @public
11
12
  *
@@ -17,8 +17,8 @@
17
17
  export * from "./LexRuntimeServiceClient";
18
18
  export * from "./LexRuntimeService";
19
19
  export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
20
- export { RuntimeExtension } from "./runtimeExtensions";
21
- export { LexRuntimeServiceExtensionConfiguration } from "./extensionConfiguration";
20
+ export type { RuntimeExtension } from "./runtimeExtensions";
21
+ export type { LexRuntimeServiceExtensionConfiguration } from "./extensionConfiguration";
22
22
  export * from "./commands";
23
23
  export * from "./models";
24
24
  export { LexRuntimeServiceServiceException } from "./models/LexRuntimeServiceServiceException";
@@ -1,5 +1,6 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
- export { __ServiceException, __ServiceExceptionOptions };
2
+ export type { __ServiceExceptionOptions };
3
+ export { __ServiceException };
3
4
  /**
4
5
  * @public
5
6
  *
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: LexRuntimeServiceClientConfig) =
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
22
21
  region: string | import("@smithy/types").Provider<any>;
22
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
23
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
24
24
  maxAttempts: number | import("@smithy/types").Provider<number>;
25
25
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -101,8 +101,8 @@ export interface ClientDefaults
101
101
  serviceId?: string;
102
102
  useDualstackEndpoint?: boolean | __Provider<boolean>;
103
103
  useFipsEndpoint?: boolean | __Provider<boolean>;
104
- defaultUserAgentProvider?: Provider<__UserAgent>;
105
104
  region?: string | __Provider<string>;
105
+ defaultUserAgentProvider?: Provider<__UserAgent>;
106
106
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
107
107
  maxAttempts?: number | __Provider<number>;
108
108
  retryMode?: string | __Provider<string>;
@@ -9,7 +9,8 @@ import {
9
9
  DeleteSessionRequest,
10
10
  DeleteSessionResponse,
11
11
  } from "../models/models_0";
12
- export { __MetadataBearer, $Command };
12
+ export { __MetadataBearer };
13
+ export { $Command };
13
14
  export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
14
15
  export interface DeleteSessionCommandOutput
15
16
  extends DeleteSessionResponse,
@@ -6,7 +6,8 @@ import {
6
6
  ServiceOutputTypes,
7
7
  } from "../LexRuntimeServiceClient";
8
8
  import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
9
- export { __MetadataBearer, $Command };
9
+ export { __MetadataBearer };
10
+ export { $Command };
10
11
  export interface GetSessionCommandInput extends GetSessionRequest {}
11
12
  export interface GetSessionCommandOutput
12
13
  extends GetSessionResponse,
@@ -10,7 +10,8 @@ import {
10
10
  ServiceOutputTypes,
11
11
  } from "../LexRuntimeServiceClient";
12
12
  import { PostContentRequest, PostContentResponse } from "../models/models_0";
13
- export { __MetadataBearer, $Command };
13
+ export { __MetadataBearer };
14
+ export { $Command };
14
15
  export interface PostContentCommandInput
15
16
  extends Pick<
16
17
  PostContentRequest,
@@ -6,7 +6,8 @@ import {
6
6
  ServiceOutputTypes,
7
7
  } from "../LexRuntimeServiceClient";
8
8
  import { PostTextRequest, PostTextResponse } from "../models/models_0";
9
- export { __MetadataBearer, $Command };
9
+ export { __MetadataBearer };
10
+ export { $Command };
10
11
  export interface PostTextCommandInput extends PostTextRequest {}
11
12
  export interface PostTextCommandOutput
12
13
  extends PostTextResponse,
@@ -9,7 +9,8 @@ import {
9
9
  ServiceOutputTypes,
10
10
  } from "../LexRuntimeServiceClient";
11
11
  import { PutSessionRequest, PutSessionResponse } from "../models/models_0";
12
- export { __MetadataBearer, $Command };
12
+ export { __MetadataBearer };
13
+ export { $Command };
13
14
  export interface PutSessionCommandInput extends PutSessionRequest {}
14
15
  export interface PutSessionCommandOutput
15
16
  extends Pick<
@@ -2,7 +2,8 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@smithy/smithy-client";
5
- export { __ServiceException, __ServiceExceptionOptions };
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
6
7
  export declare class LexRuntimeServiceServiceException extends __ServiceException {
7
8
  constructor(options: __ServiceExceptionOptions);
8
9
  }
@@ -22,10 +22,10 @@ export declare const getRuntimeConfig: (
22
22
  serviceId: string;
23
23
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ region: string | import("@smithy/types").Provider<any>;
25
26
  defaultUserAgentProvider: import("@smithy/types").Provider<
26
27
  import("@smithy/types").UserAgent
27
28
  >;
28
- region: string | import("@smithy/types").Provider<any>;
29
29
  credentialDefaultProvider: (
30
30
  input: any
31
31
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lex-runtime-service",
3
3
  "description": "AWS SDK for JavaScript Lex Runtime Service Client for Node.js, Browser and React Native",
4
- "version": "3.588.0",
4
+ "version": "3.592.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-lex-runtime-service",
@@ -22,10 +22,10 @@
22
22
  "dependencies": {
23
23
  "@aws-crypto/sha256-browser": "3.0.0",
24
24
  "@aws-crypto/sha256-js": "3.0.0",
25
- "@aws-sdk/client-sso-oidc": "3.588.0",
26
- "@aws-sdk/client-sts": "3.588.0",
27
- "@aws-sdk/core": "3.588.0",
28
- "@aws-sdk/credential-provider-node": "3.588.0",
25
+ "@aws-sdk/client-sso-oidc": "3.592.0",
26
+ "@aws-sdk/client-sts": "3.592.0",
27
+ "@aws-sdk/core": "3.592.0",
28
+ "@aws-sdk/credential-provider-node": "3.592.0",
29
29
  "@aws-sdk/middleware-host-header": "3.577.0",
30
30
  "@aws-sdk/middleware-logger": "3.577.0",
31
31
  "@aws-sdk/middleware-recursion-detection": "3.577.0",
@@ -36,7 +36,7 @@
36
36
  "@aws-sdk/util-user-agent-browser": "3.577.0",
37
37
  "@aws-sdk/util-user-agent-node": "3.587.0",
38
38
  "@smithy/config-resolver": "^3.0.1",
39
- "@smithy/core": "^2.1.1",
39
+ "@smithy/core": "^2.2.0",
40
40
  "@smithy/fetch-http-handler": "^3.0.1",
41
41
  "@smithy/hash-node": "^3.0.0",
42
42
  "@smithy/invalid-dependency": "^3.0.0",