@aws-sdk/client-lex-runtime-v2 3.36.1 → 3.37.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,17 @@
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.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update clients as of 10/15/2021 ([#2902](https://github.com/aws/aws-sdk-js-v3/issues/2902)) ([2730b54](https://github.com/aws/aws-sdk-js-v3/commit/2730b5424377944a5a2ad5e1ad7d3ca4135dae1c))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
7
18
 
8
19
 
@@ -35,7 +35,7 @@ const partitionHash = {
35
35
  hostname: "runtime-v2-lex.{region}.amazonaws.com.cn",
36
36
  },
37
37
  "aws-iso": {
38
- regions: ["us-iso-east-1"],
38
+ regions: ["us-iso-east-1", "us-iso-west-1"],
39
39
  hostname: "runtime-v2-lex.{region}.c2s.ic.gov",
40
40
  },
41
41
  "aws-iso-b": {
@@ -103,6 +103,7 @@ var IntentState;
103
103
  (function (IntentState) {
104
104
  IntentState["FAILED"] = "Failed";
105
105
  IntentState["FULFILLED"] = "Fulfilled";
106
+ IntentState["FULFILLMENT_IN_PROGRESS"] = "FulfillmentInProgress";
106
107
  IntentState["IN_PROGRESS"] = "InProgress";
107
108
  IntentState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
108
109
  IntentState["WAITING"] = "Waiting";
@@ -165,6 +166,7 @@ var DialogActionType;
165
166
  DialogActionType["DELEGATE"] = "Delegate";
166
167
  DialogActionType["ELICIT_INTENT"] = "ElicitIntent";
167
168
  DialogActionType["ELICIT_SLOT"] = "ElicitSlot";
169
+ DialogActionType["NONE"] = "None";
168
170
  })(DialogActionType = exports.DialogActionType || (exports.DialogActionType = {}));
169
171
  var DialogAction;
170
172
  (function (DialogAction) {
@@ -33,7 +33,7 @@ var partitionHash = {
33
33
  hostname: "runtime-v2-lex.{region}.amazonaws.com.cn",
34
34
  },
35
35
  "aws-iso": {
36
- regions: ["us-iso-east-1"],
36
+ regions: ["us-iso-east-1", "us-iso-west-1"],
37
37
  hostname: "runtime-v2-lex.{region}.c2s.ic.gov",
38
38
  },
39
39
  "aws-iso-b": {
@@ -71,6 +71,7 @@ export var IntentState;
71
71
  (function (IntentState) {
72
72
  IntentState["FAILED"] = "Failed";
73
73
  IntentState["FULFILLED"] = "Fulfilled";
74
+ IntentState["FULFILLMENT_IN_PROGRESS"] = "FulfillmentInProgress";
74
75
  IntentState["IN_PROGRESS"] = "InProgress";
75
76
  IntentState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
76
77
  IntentState["WAITING"] = "Waiting";
@@ -120,6 +121,7 @@ export var DialogActionType;
120
121
  DialogActionType["DELEGATE"] = "Delegate";
121
122
  DialogActionType["ELICIT_INTENT"] = "ElicitIntent";
122
123
  DialogActionType["ELICIT_SLOT"] = "ElicitSlot";
124
+ DialogActionType["NONE"] = "None";
123
125
  })(DialogActionType || (DialogActionType = {}));
124
126
  export var DialogAction;
125
127
  (function (DialogAction) {
@@ -57,6 +57,32 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
57
57
  * using the machine learning model that it build for the bot.</p>
58
58
  * <p>In response, Amazon Lex V2 returns the next message to convey to the user
59
59
  * and an optional response card to display.</p>
60
+ * <p>If the optional post-fulfillment response is specified, the messages
61
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
62
+ * <ul>
63
+ * <li>
64
+ * <p>
65
+ * <b>Success message</b> - Returned if
66
+ * the Lambda function completes successfully and the intent state is
67
+ * fulfilled or ready fulfillment if the message is present.</p>
68
+ * </li>
69
+ * <li>
70
+ * <p>
71
+ * <b>Failed message</b> - The failed
72
+ * message is returned if the Lambda function throws an exception or
73
+ * if the Lambda function returns a failed intent state without a
74
+ * message.</p>
75
+ * </li>
76
+ * <li>
77
+ * <p>
78
+ * <b>Timeout message</b> - If you
79
+ * don't configure a timeout message and a timeout, and the Lambda
80
+ * function doesn't return within 30 seconds, the timeout message is
81
+ * returned. If you configure a timeout, the timeout message is
82
+ * returned when the period times out. </p>
83
+ * </li>
84
+ * </ul>
85
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
60
86
  */
61
87
  recognizeText(args: RecognizeTextCommandInput, options?: __HttpHandlerOptions): Promise<RecognizeTextCommandOutput>;
62
88
  recognizeText(args: RecognizeTextCommandInput, cb: (err: any, data?: RecognizeTextCommandOutput) => void): void;
@@ -99,6 +125,32 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
99
125
  * <p>The example contains a Java application that compresses and encodes
100
126
  * a Java object to send to Amazon Lex V2, and a second that decodes and
101
127
  * decompresses a response from Amazon Lex V2.</p>
128
+ * <p>If the optional post-fulfillment response is specified, the messages
129
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
130
+ * <ul>
131
+ * <li>
132
+ * <p>
133
+ * <b>Success message</b> - Returned if
134
+ * the Lambda function completes successfully and the intent state is
135
+ * fulfilled or ready fulfillment if the message is present.</p>
136
+ * </li>
137
+ * <li>
138
+ * <p>
139
+ * <b>Failed message</b> - The failed
140
+ * message is returned if the Lambda function throws an exception or
141
+ * if the Lambda function returns a failed intent state without a
142
+ * message.</p>
143
+ * </li>
144
+ * <li>
145
+ * <p>
146
+ * <b>Timeout message</b> - If you
147
+ * don't configure a timeout message and a timeout, and the Lambda
148
+ * function doesn't return within 30 seconds, the timeout message is
149
+ * returned. If you configure a timeout, the timeout message is
150
+ * returned when the period times out. </p>
151
+ * </li>
152
+ * </ul>
153
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
102
154
  */
103
155
  recognizeUtterance(args: RecognizeUtteranceCommandInput, options?: __HttpHandlerOptions): Promise<RecognizeUtteranceCommandOutput>;
104
156
  recognizeUtterance(args: RecognizeUtteranceCommandInput, cb: (err: any, data?: RecognizeUtteranceCommandOutput) => void): void;
@@ -113,6 +165,38 @@ export declare class LexRuntimeV2 extends LexRuntimeV2Client {
113
165
  * <p>Audio input must be in the following format: <code>audio/lpcm
114
166
  * sample-rate=8000 sample-size-bits=16 channel-count=1;
115
167
  * is-big-endian=false</code>.</p>
168
+ * <p>If the optional post-fulfillment response is specified, the messages
169
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
170
+ * <ul>
171
+ * <li>
172
+ * <p>
173
+ * <b>Success message</b> - Returned if
174
+ * the Lambda function completes successfully and the intent state is
175
+ * fulfilled or ready fulfillment if the message is present.</p>
176
+ * </li>
177
+ * <li>
178
+ * <p>
179
+ * <b>Failed message</b> - The failed
180
+ * message is returned if the Lambda function throws an exception or
181
+ * if the Lambda function returns a failed intent state without a
182
+ * message.</p>
183
+ * </li>
184
+ * <li>
185
+ * <p>
186
+ * <b>Timeout message</b> - If you
187
+ * don't configure a timeout message and a timeout, and the Lambda
188
+ * function doesn't return within 30 seconds, the timeout message is
189
+ * returned. If you configure a timeout, the timeout message is
190
+ * returned when the period times out. </p>
191
+ * </li>
192
+ * </ul>
193
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
194
+ * <p>If the optional update message is configured, it is played at the
195
+ * specified frequency while the Lambda function is running and the update
196
+ * message state is active. If the fulfillment update message is not
197
+ * active, the Lambda function runs with a 30 second timeout. </p>
198
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-update.html">Update message </a>
199
+ * </p>
116
200
  * <p>The <code>StartConversation</code> operation is supported only in
117
201
  * the following SDKs: </p>
118
202
  * <ul>
@@ -12,6 +12,32 @@ export interface RecognizeTextCommandOutput extends RecognizeTextResponse, __Met
12
12
  * using the machine learning model that it build for the bot.</p>
13
13
  * <p>In response, Amazon Lex V2 returns the next message to convey to the user
14
14
  * and an optional response card to display.</p>
15
+ * <p>If the optional post-fulfillment response is specified, the messages
16
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
17
+ * <ul>
18
+ * <li>
19
+ * <p>
20
+ * <b>Success message</b> - Returned if
21
+ * the Lambda function completes successfully and the intent state is
22
+ * fulfilled or ready fulfillment if the message is present.</p>
23
+ * </li>
24
+ * <li>
25
+ * <p>
26
+ * <b>Failed message</b> - The failed
27
+ * message is returned if the Lambda function throws an exception or
28
+ * if the Lambda function returns a failed intent state without a
29
+ * message.</p>
30
+ * </li>
31
+ * <li>
32
+ * <p>
33
+ * <b>Timeout message</b> - If you
34
+ * don't configure a timeout message and a timeout, and the Lambda
35
+ * function doesn't return within 30 seconds, the timeout message is
36
+ * returned. If you configure a timeout, the timeout message is
37
+ * returned when the period times out. </p>
38
+ * </li>
39
+ * </ul>
40
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
15
41
  * @example
16
42
  * Use a bare-bones client and the command you need to make an API call.
17
43
  * ```javascript
@@ -54,6 +54,32 @@ export interface RecognizeUtteranceCommandOutput extends RecognizeUtteranceRespo
54
54
  * <p>The example contains a Java application that compresses and encodes
55
55
  * a Java object to send to Amazon Lex V2, and a second that decodes and
56
56
  * decompresses a response from Amazon Lex V2.</p>
57
+ * <p>If the optional post-fulfillment response is specified, the messages
58
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
59
+ * <ul>
60
+ * <li>
61
+ * <p>
62
+ * <b>Success message</b> - Returned if
63
+ * the Lambda function completes successfully and the intent state is
64
+ * fulfilled or ready fulfillment if the message is present.</p>
65
+ * </li>
66
+ * <li>
67
+ * <p>
68
+ * <b>Failed message</b> - The failed
69
+ * message is returned if the Lambda function throws an exception or
70
+ * if the Lambda function returns a failed intent state without a
71
+ * message.</p>
72
+ * </li>
73
+ * <li>
74
+ * <p>
75
+ * <b>Timeout message</b> - If you
76
+ * don't configure a timeout message and a timeout, and the Lambda
77
+ * function doesn't return within 30 seconds, the timeout message is
78
+ * returned. If you configure a timeout, the timeout message is
79
+ * returned when the period times out. </p>
80
+ * </li>
81
+ * </ul>
82
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
57
83
  * @example
58
84
  * Use a bare-bones client and the command you need to make an API call.
59
85
  * ```javascript
@@ -16,6 +16,38 @@ export interface StartConversationCommandOutput extends StartConversationRespons
16
16
  * <p>Audio input must be in the following format: <code>audio/lpcm
17
17
  * sample-rate=8000 sample-size-bits=16 channel-count=1;
18
18
  * is-big-endian=false</code>.</p>
19
+ * <p>If the optional post-fulfillment response is specified, the messages
20
+ * are returned as follows. For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html">PostFulfillmentStatusSpecification</a>.</p>
21
+ * <ul>
22
+ * <li>
23
+ * <p>
24
+ * <b>Success message</b> - Returned if
25
+ * the Lambda function completes successfully and the intent state is
26
+ * fulfilled or ready fulfillment if the message is present.</p>
27
+ * </li>
28
+ * <li>
29
+ * <p>
30
+ * <b>Failed message</b> - The failed
31
+ * message is returned if the Lambda function throws an exception or
32
+ * if the Lambda function returns a failed intent state without a
33
+ * message.</p>
34
+ * </li>
35
+ * <li>
36
+ * <p>
37
+ * <b>Timeout message</b> - If you
38
+ * don't configure a timeout message and a timeout, and the Lambda
39
+ * function doesn't return within 30 seconds, the timeout message is
40
+ * returned. If you configure a timeout, the timeout message is
41
+ * returned when the period times out. </p>
42
+ * </li>
43
+ * </ul>
44
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html">Completion message</a>.</p>
45
+ * <p>If the optional update message is configured, it is played at the
46
+ * specified frequency while the Lambda function is running and the update
47
+ * message state is active. If the fulfillment update message is not
48
+ * active, the Lambda function runs with a 30 second timeout. </p>
49
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-update.html">Update message </a>
50
+ * </p>
19
51
  * <p>The <code>StartConversation</code> operation is supported only in
20
52
  * the following SDKs: </p>
21
53
  * <ul>
@@ -59,12 +59,12 @@ export interface ActiveContext {
59
59
  */
60
60
  timeToLive: ActiveContextTimeToLive | undefined;
61
61
  /**
62
- * <p>A lis tof contexts active for the request. A context can be
62
+ * <p>A list of contexts active for the request. A context can be
63
63
  * activated when a previous intent is fulfilled, or by including the
64
64
  * context in the request.</p>
65
- * <p>If you don't specify a list of contexts, Amazon Lex will use the
66
- * current list of contexts for the session. If you specify an empty list,
67
- * all contexts for the session are cleared. </p>
65
+ * <p>If you don't specify a list of contexts, Amazon Lex V2 will use the current
66
+ * list of contexts for the session. If you specify an empty list, all
67
+ * contexts for the session are cleared. </p>
68
68
  */
69
69
  contextAttributes: {
70
70
  [key: string]: string;
@@ -328,6 +328,7 @@ export declare namespace Value {
328
328
  export declare enum IntentState {
329
329
  FAILED = "Failed",
330
330
  FULFILLED = "Fulfilled",
331
+ FULFILLMENT_IN_PROGRESS = "FulfillmentInProgress",
331
332
  IN_PROGRESS = "InProgress",
332
333
  READY_FOR_FULFILLMENT = "ReadyForFulfillment",
333
334
  WAITING = "Waiting"
@@ -507,7 +508,8 @@ export declare enum DialogActionType {
507
508
  CONFIRM_INTENT = "ConfirmIntent",
508
509
  DELEGATE = "Delegate",
509
510
  ELICIT_INTENT = "ElicitIntent",
510
- ELICIT_SLOT = "ElicitSlot"
511
+ ELICIT_SLOT = "ElicitSlot",
512
+ NONE = "None"
511
513
  }
512
514
  /**
513
515
  * <p>The next action that Amazon Lex V2 should take.</p>
@@ -1076,8 +1078,8 @@ export interface Slot {
1076
1078
  shape?: Shape | string;
1077
1079
  /**
1078
1080
  * <p>A list of one or more values that the user provided for the slot.
1079
- * For example, if a for a slot that elicits pizza toppings, the values might
1080
- * be "pepperoni" and "pineapple." </p>
1081
+ * For example, if a for a slot that elicits pizza toppings, the values
1082
+ * might be "pepperoni" and "pineapple." </p>
1081
1083
  */
1082
1084
  values?: Slot[];
1083
1085
  }
@@ -1259,9 +1261,13 @@ export interface ConfigurationEvent {
1259
1261
  welcomeMessages?: Message[];
1260
1262
  /**
1261
1263
  * <p>Determines whether Amazon Lex V2 should send audio responses to the client
1262
- * application. When this parameter if <code>false</code>, the client
1263
- * application needs to create responses for the user.
1264
+ * application.
1264
1265
  * </p>
1266
+ * <p>Set this field to false when the client is operating in a playback
1267
+ * mode where audio responses are played to the user. If the client isn't
1268
+ * operating in playback mode, such as a text chat application, set this
1269
+ * to true so that Amazon Lex V2 doesn't wait for the prompt to finish playing on
1270
+ * the client.</p>
1265
1271
  */
1266
1272
  disablePlayback?: boolean;
1267
1273
  /**
@@ -182,6 +182,7 @@ export declare namespace Value {
182
182
  export declare enum IntentState {
183
183
  FAILED = "Failed",
184
184
  FULFILLED = "Fulfilled",
185
+ FULFILLMENT_IN_PROGRESS = "FulfillmentInProgress",
185
186
  IN_PROGRESS = "InProgress",
186
187
  READY_FOR_FULFILLMENT = "ReadyForFulfillment",
187
188
  WAITING = "Waiting"
@@ -277,7 +278,8 @@ export declare enum DialogActionType {
277
278
  CONFIRM_INTENT = "ConfirmIntent",
278
279
  DELEGATE = "Delegate",
279
280
  ELICIT_INTENT = "ElicitIntent",
280
- ELICIT_SLOT = "ElicitSlot"
281
+ ELICIT_SLOT = "ElicitSlot",
282
+ NONE = "None"
281
283
  }
282
284
 
283
285
  export interface DialogAction {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lex-runtime-v2",
3
3
  "description": "AWS SDK for JavaScript Lex Runtime V2 Client for Node.js, Browser and React Native",
4
- "version": "3.36.1",
4
+ "version": "3.37.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,43 +21,43 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "^1.1.0",
23
23
  "@aws-crypto/sha256-js": "^1.1.0",
24
- "@aws-sdk/client-sts": "3.36.1",
25
- "@aws-sdk/config-resolver": "3.36.0",
26
- "@aws-sdk/credential-provider-node": "3.36.1",
27
- "@aws-sdk/eventstream-handler-node": "3.36.0",
28
- "@aws-sdk/eventstream-serde-browser": "3.36.0",
29
- "@aws-sdk/eventstream-serde-config-resolver": "3.36.0",
30
- "@aws-sdk/eventstream-serde-node": "3.36.0",
31
- "@aws-sdk/fetch-http-handler": "3.36.0",
32
- "@aws-sdk/hash-node": "3.36.0",
33
- "@aws-sdk/invalid-dependency": "3.36.0",
34
- "@aws-sdk/middleware-content-length": "3.36.0",
35
- "@aws-sdk/middleware-eventstream": "3.36.0",
36
- "@aws-sdk/middleware-host-header": "3.36.0",
37
- "@aws-sdk/middleware-logger": "3.36.0",
38
- "@aws-sdk/middleware-retry": "3.36.0",
39
- "@aws-sdk/middleware-serde": "3.36.0",
40
- "@aws-sdk/middleware-signing": "3.36.0",
41
- "@aws-sdk/middleware-stack": "3.36.0",
42
- "@aws-sdk/middleware-user-agent": "3.36.0",
43
- "@aws-sdk/node-config-provider": "3.36.0",
44
- "@aws-sdk/node-http-handler": "3.36.0",
45
- "@aws-sdk/protocol-http": "3.36.0",
46
- "@aws-sdk/smithy-client": "3.36.0",
47
- "@aws-sdk/types": "3.36.0",
48
- "@aws-sdk/url-parser": "3.36.0",
49
- "@aws-sdk/util-base64-browser": "3.36.0",
50
- "@aws-sdk/util-base64-node": "3.36.0",
51
- "@aws-sdk/util-body-length-browser": "3.36.0",
52
- "@aws-sdk/util-body-length-node": "3.36.0",
53
- "@aws-sdk/util-user-agent-browser": "3.36.0",
54
- "@aws-sdk/util-user-agent-node": "3.36.0",
55
- "@aws-sdk/util-utf8-browser": "3.36.0",
56
- "@aws-sdk/util-utf8-node": "3.36.0",
24
+ "@aws-sdk/client-sts": "3.37.0",
25
+ "@aws-sdk/config-resolver": "3.37.0",
26
+ "@aws-sdk/credential-provider-node": "3.37.0",
27
+ "@aws-sdk/eventstream-handler-node": "3.37.0",
28
+ "@aws-sdk/eventstream-serde-browser": "3.37.0",
29
+ "@aws-sdk/eventstream-serde-config-resolver": "3.37.0",
30
+ "@aws-sdk/eventstream-serde-node": "3.37.0",
31
+ "@aws-sdk/fetch-http-handler": "3.37.0",
32
+ "@aws-sdk/hash-node": "3.37.0",
33
+ "@aws-sdk/invalid-dependency": "3.37.0",
34
+ "@aws-sdk/middleware-content-length": "3.37.0",
35
+ "@aws-sdk/middleware-eventstream": "3.37.0",
36
+ "@aws-sdk/middleware-host-header": "3.37.0",
37
+ "@aws-sdk/middleware-logger": "3.37.0",
38
+ "@aws-sdk/middleware-retry": "3.37.0",
39
+ "@aws-sdk/middleware-serde": "3.37.0",
40
+ "@aws-sdk/middleware-signing": "3.37.0",
41
+ "@aws-sdk/middleware-stack": "3.37.0",
42
+ "@aws-sdk/middleware-user-agent": "3.37.0",
43
+ "@aws-sdk/node-config-provider": "3.37.0",
44
+ "@aws-sdk/node-http-handler": "3.37.0",
45
+ "@aws-sdk/protocol-http": "3.37.0",
46
+ "@aws-sdk/smithy-client": "3.37.0",
47
+ "@aws-sdk/types": "3.37.0",
48
+ "@aws-sdk/url-parser": "3.37.0",
49
+ "@aws-sdk/util-base64-browser": "3.37.0",
50
+ "@aws-sdk/util-base64-node": "3.37.0",
51
+ "@aws-sdk/util-body-length-browser": "3.37.0",
52
+ "@aws-sdk/util-body-length-node": "3.37.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.37.0",
54
+ "@aws-sdk/util-user-agent-node": "3.37.0",
55
+ "@aws-sdk/util-utf8-browser": "3.37.0",
56
+ "@aws-sdk/util-utf8-node": "3.37.0",
57
57
  "tslib": "^2.3.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/client-documentation-generator": "3.36.0",
60
+ "@aws-sdk/client-documentation-generator": "3.37.0",
61
61
  "@types/node": "^12.7.5",
62
62
  "downlevel-dts": "0.7.0",
63
63
  "jest": "^26.1.0",