@aws-sdk/client-lex-runtime-service 3.170.0 → 3.171.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-lex-runtime-service
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-lex-runtime-service
@@ -20,7 +20,6 @@ import {
20
20
  PutSessionCommandOutput,
21
21
  } from "./commands/PutSessionCommand";
22
22
  import { LexRuntimeServiceClient } from "./LexRuntimeServiceClient";
23
-
24
23
  export declare class LexRuntimeService extends LexRuntimeServiceClient {
25
24
  deleteSession(
26
25
  args: DeleteSessionCommandInput,
@@ -35,7 +34,6 @@ export declare class LexRuntimeService extends LexRuntimeServiceClient {
35
34
  options: __HttpHandlerOptions,
36
35
  cb: (err: any, data?: DeleteSessionCommandOutput) => void
37
36
  ): void;
38
-
39
37
  getSession(
40
38
  args: GetSessionCommandInput,
41
39
  options?: __HttpHandlerOptions
@@ -49,7 +47,6 @@ export declare class LexRuntimeService extends LexRuntimeServiceClient {
49
47
  options: __HttpHandlerOptions,
50
48
  cb: (err: any, data?: GetSessionCommandOutput) => void
51
49
  ): void;
52
-
53
50
  postContent(
54
51
  args: PostContentCommandInput,
55
52
  options?: __HttpHandlerOptions
@@ -63,7 +60,6 @@ export declare class LexRuntimeService extends LexRuntimeServiceClient {
63
60
  options: __HttpHandlerOptions,
64
61
  cb: (err: any, data?: PostContentCommandOutput) => void
65
62
  ): void;
66
-
67
63
  postText(
68
64
  args: PostTextCommandInput,
69
65
  options?: __HttpHandlerOptions
@@ -77,7 +73,6 @@ export declare class LexRuntimeService extends LexRuntimeServiceClient {
77
73
  options: __HttpHandlerOptions,
78
74
  cb: (err: any, data?: PostTextCommandOutput) => void
79
75
  ): void;
80
-
81
76
  putSession(
82
77
  args: PutSessionCommandInput,
83
78
  options?: __HttpHandlerOptions
@@ -77,47 +77,26 @@ export declare type ServiceOutputTypes =
77
77
  export interface ClientDefaults
78
78
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
79
79
  requestHandler?: __HttpHandler;
80
-
81
80
  sha256?: __HashConstructor;
82
-
83
81
  urlParser?: __UrlParser;
84
-
85
82
  bodyLengthChecker?: __BodyLengthCalculator;
86
-
87
83
  streamCollector?: __StreamCollector;
88
-
89
84
  base64Decoder?: __Decoder;
90
-
91
85
  base64Encoder?: __Encoder;
92
-
93
86
  utf8Decoder?: __Decoder;
94
-
95
87
  utf8Encoder?: __Encoder;
96
-
97
88
  runtime?: string;
98
-
99
89
  disableHostPrefix?: boolean;
100
-
101
90
  maxAttempts?: number | __Provider<number>;
102
-
103
91
  retryMode?: string | __Provider<string>;
104
-
105
92
  logger?: __Logger;
106
-
107
93
  useDualstackEndpoint?: boolean | __Provider<boolean>;
108
-
109
94
  useFipsEndpoint?: boolean | __Provider<boolean>;
110
-
111
95
  serviceId?: string;
112
-
113
96
  region?: string | __Provider<string>;
114
-
115
97
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
-
117
98
  regionInfoProvider?: RegionInfoProvider;
118
-
119
99
  defaultUserAgentProvider?: Provider<__UserAgent>;
120
-
121
100
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
122
101
  }
123
102
  declare type LexRuntimeServiceClientConfigType = Partial<
@@ -130,7 +109,6 @@ declare type LexRuntimeServiceClientConfigType = Partial<
130
109
  HostHeaderInputConfig &
131
110
  AwsAuthInputConfig &
132
111
  UserAgentInputConfig;
133
-
134
112
  export interface LexRuntimeServiceClientConfig
135
113
  extends LexRuntimeServiceClientConfigType {}
136
114
  declare type LexRuntimeServiceClientResolvedConfigType =
@@ -142,10 +120,8 @@ declare type LexRuntimeServiceClientResolvedConfigType =
142
120
  HostHeaderResolvedConfig &
143
121
  AwsAuthResolvedConfig &
144
122
  UserAgentResolvedConfig;
145
-
146
123
  export interface LexRuntimeServiceClientResolvedConfig
147
124
  extends LexRuntimeServiceClientResolvedConfigType {}
148
-
149
125
  export declare class LexRuntimeServiceClient extends __Client<
150
126
  __HttpHandlerOptions,
151
127
  ServiceInputTypes,
@@ -154,7 +130,6 @@ export declare class LexRuntimeServiceClient extends __Client<
154
130
  > {
155
131
  readonly config: LexRuntimeServiceClientResolvedConfig;
156
132
  constructor(configuration: LexRuntimeServiceClientConfig);
157
-
158
133
  destroy(): void;
159
134
  }
160
135
  export {};
@@ -18,7 +18,6 @@ export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
18
18
  export interface DeleteSessionCommandOutput
19
19
  extends DeleteSessionResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DeleteSessionCommand extends $Command<
23
22
  DeleteSessionCommandInput,
24
23
  DeleteSessionCommandOutput,
@@ -26,7 +25,6 @@ export declare class DeleteSessionCommand extends $Command<
26
25
  > {
27
26
  readonly input: DeleteSessionCommandInput;
28
27
  constructor(input: DeleteSessionCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: LexRuntimeServiceClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetSessionCommandInput extends GetSessionRequest {}
15
15
  export interface GetSessionCommandOutput
16
16
  extends GetSessionResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetSessionCommand extends $Command<
20
19
  GetSessionCommandInput,
21
20
  GetSessionCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetSessionCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetSessionCommandInput;
25
24
  constructor(input: GetSessionCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: LexRuntimeServiceClientResolvedConfig,
@@ -17,12 +17,10 @@ declare type PostContentCommandInputType = Pick<
17
17
  > & {
18
18
  inputStream: PostContentRequest["inputStream"] | string | Uint8Array | Buffer;
19
19
  };
20
-
21
20
  export interface PostContentCommandInput extends PostContentCommandInputType {}
22
21
  export interface PostContentCommandOutput
23
22
  extends PostContentResponse,
24
23
  __MetadataBearer {}
25
-
26
24
  export declare class PostContentCommand extends $Command<
27
25
  PostContentCommandInput,
28
26
  PostContentCommandOutput,
@@ -30,7 +28,6 @@ export declare class PostContentCommand extends $Command<
30
28
  > {
31
29
  readonly input: PostContentCommandInput;
32
30
  constructor(input: PostContentCommandInput);
33
-
34
31
  resolveMiddleware(
35
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
36
33
  configuration: LexRuntimeServiceClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface PostTextCommandInput extends PostTextRequest {}
15
15
  export interface PostTextCommandOutput
16
16
  extends PostTextResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class PostTextCommand extends $Command<
20
19
  PostTextCommandInput,
21
20
  PostTextCommandOutput,
@@ -23,7 +22,6 @@ export declare class PostTextCommand extends $Command<
23
22
  > {
24
23
  readonly input: PostTextCommandInput;
25
24
  constructor(input: PostTextCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: LexRuntimeServiceClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface PutSessionCommandInput extends PutSessionRequest {}
15
15
  export interface PutSessionCommandOutput
16
16
  extends PutSessionResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class PutSessionCommand extends $Command<
20
19
  PutSessionCommandInput,
21
20
  PutSessionCommandOutput,
@@ -23,7 +22,6 @@ export declare class PutSessionCommand extends $Command<
23
22
  > {
24
23
  readonly input: PutSessionCommandInput;
25
24
  constructor(input: PutSessionCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: LexRuntimeServiceClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class LexRuntimeServiceServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }