@aws-sdk/client-lex-runtime-service 3.301.0 → 3.306.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.
@@ -69,33 +69,29 @@ class NotFoundException extends LexRuntimeServiceServiceException_1.LexRuntimeSe
69
69
  }
70
70
  }
71
71
  exports.NotFoundException = NotFoundException;
72
- var FulfillmentState;
73
- (function (FulfillmentState) {
74
- FulfillmentState["FAILED"] = "Failed";
75
- FulfillmentState["FULFILLED"] = "Fulfilled";
76
- FulfillmentState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
77
- })(FulfillmentState = exports.FulfillmentState || (exports.FulfillmentState = {}));
78
- var MessageFormatType;
79
- (function (MessageFormatType) {
80
- MessageFormatType["COMPOSITE"] = "Composite";
81
- MessageFormatType["CUSTOM_PAYLOAD"] = "CustomPayload";
82
- MessageFormatType["PLAIN_TEXT"] = "PlainText";
83
- MessageFormatType["SSML"] = "SSML";
84
- })(MessageFormatType = exports.MessageFormatType || (exports.MessageFormatType = {}));
85
- var DialogActionType;
86
- (function (DialogActionType) {
87
- DialogActionType["CLOSE"] = "Close";
88
- DialogActionType["CONFIRM_INTENT"] = "ConfirmIntent";
89
- DialogActionType["DELEGATE"] = "Delegate";
90
- DialogActionType["ELICIT_INTENT"] = "ElicitIntent";
91
- DialogActionType["ELICIT_SLOT"] = "ElicitSlot";
92
- })(DialogActionType = exports.DialogActionType || (exports.DialogActionType = {}));
93
- var ConfirmationStatus;
94
- (function (ConfirmationStatus) {
95
- ConfirmationStatus["CONFIRMED"] = "Confirmed";
96
- ConfirmationStatus["DENIED"] = "Denied";
97
- ConfirmationStatus["NONE"] = "None";
98
- })(ConfirmationStatus = exports.ConfirmationStatus || (exports.ConfirmationStatus = {}));
72
+ exports.FulfillmentState = {
73
+ FAILED: "Failed",
74
+ FULFILLED: "Fulfilled",
75
+ READY_FOR_FULFILLMENT: "ReadyForFulfillment",
76
+ };
77
+ exports.MessageFormatType = {
78
+ COMPOSITE: "Composite",
79
+ CUSTOM_PAYLOAD: "CustomPayload",
80
+ PLAIN_TEXT: "PlainText",
81
+ SSML: "SSML",
82
+ };
83
+ exports.DialogActionType = {
84
+ CLOSE: "Close",
85
+ CONFIRM_INTENT: "ConfirmIntent",
86
+ DELEGATE: "Delegate",
87
+ ELICIT_INTENT: "ElicitIntent",
88
+ ELICIT_SLOT: "ElicitSlot",
89
+ };
90
+ exports.ConfirmationStatus = {
91
+ CONFIRMED: "Confirmed",
92
+ DENIED: "Denied",
93
+ NONE: "None",
94
+ };
99
95
  class BadGatewayException extends LexRuntimeServiceServiceException_1.LexRuntimeServiceServiceException {
100
96
  constructor(opts) {
101
97
  super({
@@ -151,15 +147,14 @@ class NotAcceptableException extends LexRuntimeServiceServiceException_1.LexRunt
151
147
  }
152
148
  }
153
149
  exports.NotAcceptableException = NotAcceptableException;
154
- var DialogState;
155
- (function (DialogState) {
156
- DialogState["CONFIRM_INTENT"] = "ConfirmIntent";
157
- DialogState["ELICIT_INTENT"] = "ElicitIntent";
158
- DialogState["ELICIT_SLOT"] = "ElicitSlot";
159
- DialogState["FAILED"] = "Failed";
160
- DialogState["FULFILLED"] = "Fulfilled";
161
- DialogState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
162
- })(DialogState = exports.DialogState || (exports.DialogState = {}));
150
+ exports.DialogState = {
151
+ CONFIRM_INTENT: "ConfirmIntent",
152
+ ELICIT_INTENT: "ElicitIntent",
153
+ ELICIT_SLOT: "ElicitSlot",
154
+ FAILED: "Failed",
155
+ FULFILLED: "Fulfilled",
156
+ READY_FOR_FULFILLMENT: "ReadyForFulfillment",
157
+ };
163
158
  class RequestTimeoutException extends LexRuntimeServiceServiceException_1.LexRuntimeServiceServiceException {
164
159
  constructor(opts) {
165
160
  super({
@@ -186,10 +181,9 @@ class UnsupportedMediaTypeException extends LexRuntimeServiceServiceException_1.
186
181
  }
187
182
  }
188
183
  exports.UnsupportedMediaTypeException = UnsupportedMediaTypeException;
189
- var ContentType;
190
- (function (ContentType) {
191
- ContentType["GENERIC"] = "application/vnd.amazonaws.card.generic";
192
- })(ContentType = exports.ContentType || (exports.ContentType = {}));
184
+ exports.ContentType = {
185
+ GENERIC: "application/vnd.amazonaws.card.generic",
186
+ };
193
187
  const ActiveContextFilterSensitiveLog = (obj) => ({
194
188
  ...obj,
195
189
  ...(obj.parameters && { parameters: smithy_client_1.SENSITIVE_STRING }),
@@ -61,33 +61,29 @@ export class NotFoundException extends __BaseException {
61
61
  Object.setPrototypeOf(this, NotFoundException.prototype);
62
62
  }
63
63
  }
64
- export var FulfillmentState;
65
- (function (FulfillmentState) {
66
- FulfillmentState["FAILED"] = "Failed";
67
- FulfillmentState["FULFILLED"] = "Fulfilled";
68
- FulfillmentState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
69
- })(FulfillmentState || (FulfillmentState = {}));
70
- export var MessageFormatType;
71
- (function (MessageFormatType) {
72
- MessageFormatType["COMPOSITE"] = "Composite";
73
- MessageFormatType["CUSTOM_PAYLOAD"] = "CustomPayload";
74
- MessageFormatType["PLAIN_TEXT"] = "PlainText";
75
- MessageFormatType["SSML"] = "SSML";
76
- })(MessageFormatType || (MessageFormatType = {}));
77
- export var DialogActionType;
78
- (function (DialogActionType) {
79
- DialogActionType["CLOSE"] = "Close";
80
- DialogActionType["CONFIRM_INTENT"] = "ConfirmIntent";
81
- DialogActionType["DELEGATE"] = "Delegate";
82
- DialogActionType["ELICIT_INTENT"] = "ElicitIntent";
83
- DialogActionType["ELICIT_SLOT"] = "ElicitSlot";
84
- })(DialogActionType || (DialogActionType = {}));
85
- export var ConfirmationStatus;
86
- (function (ConfirmationStatus) {
87
- ConfirmationStatus["CONFIRMED"] = "Confirmed";
88
- ConfirmationStatus["DENIED"] = "Denied";
89
- ConfirmationStatus["NONE"] = "None";
90
- })(ConfirmationStatus || (ConfirmationStatus = {}));
64
+ export const FulfillmentState = {
65
+ FAILED: "Failed",
66
+ FULFILLED: "Fulfilled",
67
+ READY_FOR_FULFILLMENT: "ReadyForFulfillment",
68
+ };
69
+ export const MessageFormatType = {
70
+ COMPOSITE: "Composite",
71
+ CUSTOM_PAYLOAD: "CustomPayload",
72
+ PLAIN_TEXT: "PlainText",
73
+ SSML: "SSML",
74
+ };
75
+ export const DialogActionType = {
76
+ CLOSE: "Close",
77
+ CONFIRM_INTENT: "ConfirmIntent",
78
+ DELEGATE: "Delegate",
79
+ ELICIT_INTENT: "ElicitIntent",
80
+ ELICIT_SLOT: "ElicitSlot",
81
+ };
82
+ export const ConfirmationStatus = {
83
+ CONFIRMED: "Confirmed",
84
+ DENIED: "Denied",
85
+ NONE: "None",
86
+ };
91
87
  export class BadGatewayException extends __BaseException {
92
88
  constructor(opts) {
93
89
  super({
@@ -139,15 +135,14 @@ export class NotAcceptableException extends __BaseException {
139
135
  Object.setPrototypeOf(this, NotAcceptableException.prototype);
140
136
  }
141
137
  }
142
- export var DialogState;
143
- (function (DialogState) {
144
- DialogState["CONFIRM_INTENT"] = "ConfirmIntent";
145
- DialogState["ELICIT_INTENT"] = "ElicitIntent";
146
- DialogState["ELICIT_SLOT"] = "ElicitSlot";
147
- DialogState["FAILED"] = "Failed";
148
- DialogState["FULFILLED"] = "Fulfilled";
149
- DialogState["READY_FOR_FULFILLMENT"] = "ReadyForFulfillment";
150
- })(DialogState || (DialogState = {}));
138
+ export const DialogState = {
139
+ CONFIRM_INTENT: "ConfirmIntent",
140
+ ELICIT_INTENT: "ElicitIntent",
141
+ ELICIT_SLOT: "ElicitSlot",
142
+ FAILED: "Failed",
143
+ FULFILLED: "Fulfilled",
144
+ READY_FOR_FULFILLMENT: "ReadyForFulfillment",
145
+ };
151
146
  export class RequestTimeoutException extends __BaseException {
152
147
  constructor(opts) {
153
148
  super({
@@ -172,10 +167,9 @@ export class UnsupportedMediaTypeException extends __BaseException {
172
167
  Object.setPrototypeOf(this, UnsupportedMediaTypeException.prototype);
173
168
  }
174
169
  }
175
- export var ContentType;
176
- (function (ContentType) {
177
- ContentType["GENERIC"] = "application/vnd.amazonaws.card.generic";
178
- })(ContentType || (ContentType = {}));
170
+ export const ContentType = {
171
+ GENERIC: "application/vnd.amazonaws.card.generic",
172
+ };
179
173
  export const ActiveContextFilterSensitiveLog = (obj) => ({
180
174
  ...obj,
181
175
  ...(obj.parameters && { parameters: SENSITIVE_STRING }),
@@ -177,31 +177,46 @@ export interface GetSessionRequest {
177
177
  }
178
178
  /**
179
179
  * @public
180
+ * @enum
180
181
  */
181
- export declare enum FulfillmentState {
182
- FAILED = "Failed",
183
- FULFILLED = "Fulfilled",
184
- READY_FOR_FULFILLMENT = "ReadyForFulfillment"
185
- }
182
+ export declare const FulfillmentState: {
183
+ readonly FAILED: "Failed";
184
+ readonly FULFILLED: "Fulfilled";
185
+ readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
186
+ };
186
187
  /**
187
188
  * @public
188
189
  */
189
- export declare enum MessageFormatType {
190
- COMPOSITE = "Composite",
191
- CUSTOM_PAYLOAD = "CustomPayload",
192
- PLAIN_TEXT = "PlainText",
193
- SSML = "SSML"
194
- }
190
+ export type FulfillmentState = (typeof FulfillmentState)[keyof typeof FulfillmentState];
195
191
  /**
196
192
  * @public
193
+ * @enum
197
194
  */
198
- export declare enum DialogActionType {
199
- CLOSE = "Close",
200
- CONFIRM_INTENT = "ConfirmIntent",
201
- DELEGATE = "Delegate",
202
- ELICIT_INTENT = "ElicitIntent",
203
- ELICIT_SLOT = "ElicitSlot"
204
- }
195
+ export declare const MessageFormatType: {
196
+ readonly COMPOSITE: "Composite";
197
+ readonly CUSTOM_PAYLOAD: "CustomPayload";
198
+ readonly PLAIN_TEXT: "PlainText";
199
+ readonly SSML: "SSML";
200
+ };
201
+ /**
202
+ * @public
203
+ */
204
+ export type MessageFormatType = (typeof MessageFormatType)[keyof typeof MessageFormatType];
205
+ /**
206
+ * @public
207
+ * @enum
208
+ */
209
+ export declare const DialogActionType: {
210
+ readonly CLOSE: "Close";
211
+ readonly CONFIRM_INTENT: "ConfirmIntent";
212
+ readonly DELEGATE: "Delegate";
213
+ readonly ELICIT_INTENT: "ElicitIntent";
214
+ readonly ELICIT_SLOT: "ElicitSlot";
215
+ };
216
+ /**
217
+ * @public
218
+ */
219
+ export type DialogActionType = (typeof DialogActionType)[keyof typeof DialogActionType];
205
220
  /**
206
221
  * @public
207
222
  * <p>Describes the next action that the bot should take in its interaction
@@ -313,12 +328,17 @@ export interface DialogAction {
313
328
  }
314
329
  /**
315
330
  * @public
331
+ * @enum
316
332
  */
317
- export declare enum ConfirmationStatus {
318
- CONFIRMED = "Confirmed",
319
- DENIED = "Denied",
320
- NONE = "None"
321
- }
333
+ export declare const ConfirmationStatus: {
334
+ readonly CONFIRMED: "Confirmed";
335
+ readonly DENIED: "Denied";
336
+ readonly NONE: "None";
337
+ };
338
+ /**
339
+ * @public
340
+ */
341
+ export type ConfirmationStatus = (typeof ConfirmationStatus)[keyof typeof ConfirmationStatus];
322
342
  /**
323
343
  * @public
324
344
  * <p>Provides information about the state of an intent. You can use this
@@ -705,15 +725,20 @@ export interface PostContentRequest {
705
725
  }
706
726
  /**
707
727
  * @public
728
+ * @enum
708
729
  */
709
- export declare enum DialogState {
710
- CONFIRM_INTENT = "ConfirmIntent",
711
- ELICIT_INTENT = "ElicitIntent",
712
- ELICIT_SLOT = "ElicitSlot",
713
- FAILED = "Failed",
714
- FULFILLED = "Fulfilled",
715
- READY_FOR_FULFILLMENT = "ReadyForFulfillment"
716
- }
730
+ export declare const DialogState: {
731
+ readonly CONFIRM_INTENT: "ConfirmIntent";
732
+ readonly ELICIT_INTENT: "ElicitIntent";
733
+ readonly ELICIT_SLOT: "ElicitSlot";
734
+ readonly FAILED: "Failed";
735
+ readonly FULFILLED: "Fulfilled";
736
+ readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
737
+ };
738
+ /**
739
+ * @public
740
+ */
741
+ export type DialogState = (typeof DialogState)[keyof typeof DialogState];
717
742
  /**
718
743
  * @public
719
744
  */
@@ -1099,10 +1124,15 @@ export interface PredictedIntent {
1099
1124
  }
1100
1125
  /**
1101
1126
  * @public
1127
+ * @enum
1102
1128
  */
1103
- export declare enum ContentType {
1104
- GENERIC = "application/vnd.amazonaws.card.generic"
1105
- }
1129
+ export declare const ContentType: {
1130
+ readonly GENERIC: "application/vnd.amazonaws.card.generic";
1131
+ };
1132
+ /**
1133
+ * @public
1134
+ */
1135
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
1106
1136
  /**
1107
1137
  * @public
1108
1138
  * <p>Represents an option to be shown on the client platform (Facebook,
@@ -62,24 +62,30 @@ export interface GetSessionRequest {
62
62
  userId: string | undefined;
63
63
  checkpointLabelFilter?: string;
64
64
  }
65
- export declare enum FulfillmentState {
66
- FAILED = "Failed",
67
- FULFILLED = "Fulfilled",
68
- READY_FOR_FULFILLMENT = "ReadyForFulfillment",
69
- }
70
- export declare enum MessageFormatType {
71
- COMPOSITE = "Composite",
72
- CUSTOM_PAYLOAD = "CustomPayload",
73
- PLAIN_TEXT = "PlainText",
74
- SSML = "SSML",
75
- }
76
- export declare enum DialogActionType {
77
- CLOSE = "Close",
78
- CONFIRM_INTENT = "ConfirmIntent",
79
- DELEGATE = "Delegate",
80
- ELICIT_INTENT = "ElicitIntent",
81
- ELICIT_SLOT = "ElicitSlot",
82
- }
65
+ export declare const FulfillmentState: {
66
+ readonly FAILED: "Failed";
67
+ readonly FULFILLED: "Fulfilled";
68
+ readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
69
+ };
70
+ export type FulfillmentState =
71
+ (typeof FulfillmentState)[keyof typeof FulfillmentState];
72
+ export declare const MessageFormatType: {
73
+ readonly COMPOSITE: "Composite";
74
+ readonly CUSTOM_PAYLOAD: "CustomPayload";
75
+ readonly PLAIN_TEXT: "PlainText";
76
+ readonly SSML: "SSML";
77
+ };
78
+ export type MessageFormatType =
79
+ (typeof MessageFormatType)[keyof typeof MessageFormatType];
80
+ export declare const DialogActionType: {
81
+ readonly CLOSE: "Close";
82
+ readonly CONFIRM_INTENT: "ConfirmIntent";
83
+ readonly DELEGATE: "Delegate";
84
+ readonly ELICIT_INTENT: "ElicitIntent";
85
+ readonly ELICIT_SLOT: "ElicitSlot";
86
+ };
87
+ export type DialogActionType =
88
+ (typeof DialogActionType)[keyof typeof DialogActionType];
83
89
  export interface DialogAction {
84
90
  type: DialogActionType | string | undefined;
85
91
  intentName?: string;
@@ -89,11 +95,13 @@ export interface DialogAction {
89
95
  message?: string;
90
96
  messageFormat?: MessageFormatType | string;
91
97
  }
92
- export declare enum ConfirmationStatus {
93
- CONFIRMED = "Confirmed",
94
- DENIED = "Denied",
95
- NONE = "None",
96
- }
98
+ export declare const ConfirmationStatus: {
99
+ readonly CONFIRMED: "Confirmed";
100
+ readonly DENIED: "Denied";
101
+ readonly NONE: "None";
102
+ };
103
+ export type ConfirmationStatus =
104
+ (typeof ConfirmationStatus)[keyof typeof ConfirmationStatus];
97
105
  export interface IntentSummary {
98
106
  intentName?: string;
99
107
  checkpointLabel?: string;
@@ -152,14 +160,15 @@ export interface PostContentRequest {
152
160
  inputStream: Readable | ReadableStream | Blob | undefined;
153
161
  activeContexts?: __LazyJsonString | string;
154
162
  }
155
- export declare enum DialogState {
156
- CONFIRM_INTENT = "ConfirmIntent",
157
- ELICIT_INTENT = "ElicitIntent",
158
- ELICIT_SLOT = "ElicitSlot",
159
- FAILED = "Failed",
160
- FULFILLED = "Fulfilled",
161
- READY_FOR_FULFILLMENT = "ReadyForFulfillment",
162
- }
163
+ export declare const DialogState: {
164
+ readonly CONFIRM_INTENT: "ConfirmIntent";
165
+ readonly ELICIT_INTENT: "ElicitIntent";
166
+ readonly ELICIT_SLOT: "ElicitSlot";
167
+ readonly FAILED: "Failed";
168
+ readonly FULFILLED: "Fulfilled";
169
+ readonly READY_FOR_FULFILLMENT: "ReadyForFulfillment";
170
+ };
171
+ export type DialogState = (typeof DialogState)[keyof typeof DialogState];
163
172
  export interface PostContentResponse {
164
173
  contentType?: string;
165
174
  intentName?: string;
@@ -211,9 +220,10 @@ export interface PredictedIntent {
211
220
  nluIntentConfidence?: IntentConfidence;
212
221
  slots?: Record<string, string>;
213
222
  }
214
- export declare enum ContentType {
215
- GENERIC = "application/vnd.amazonaws.card.generic",
216
- }
223
+ export declare const ContentType: {
224
+ readonly GENERIC: "application/vnd.amazonaws.card.generic";
225
+ };
226
+ export type ContentType = (typeof ContentType)[keyof typeof ContentType];
217
227
  export interface Button {
218
228
  text: string | undefined;
219
229
  value: string | undefined;
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.301.0",
4
+ "version": "3.306.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -23,44 +23,44 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "3.0.0",
25
25
  "@aws-crypto/sha256-js": "3.0.0",
26
- "@aws-sdk/client-sts": "3.301.0",
27
- "@aws-sdk/config-resolver": "3.300.0",
28
- "@aws-sdk/credential-provider-node": "3.301.0",
29
- "@aws-sdk/fetch-http-handler": "3.296.0",
30
- "@aws-sdk/hash-node": "3.296.0",
31
- "@aws-sdk/invalid-dependency": "3.296.0",
32
- "@aws-sdk/middleware-content-length": "3.296.0",
33
- "@aws-sdk/middleware-endpoint": "3.299.0",
34
- "@aws-sdk/middleware-host-header": "3.296.0",
35
- "@aws-sdk/middleware-logger": "3.296.0",
36
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
37
- "@aws-sdk/middleware-retry": "3.300.0",
38
- "@aws-sdk/middleware-serde": "3.296.0",
39
- "@aws-sdk/middleware-signing": "3.299.0",
40
- "@aws-sdk/middleware-stack": "3.296.0",
41
- "@aws-sdk/middleware-user-agent": "3.299.0",
42
- "@aws-sdk/node-config-provider": "3.300.0",
43
- "@aws-sdk/node-http-handler": "3.296.0",
44
- "@aws-sdk/protocol-http": "3.296.0",
45
- "@aws-sdk/smithy-client": "3.296.0",
46
- "@aws-sdk/types": "3.296.0",
47
- "@aws-sdk/url-parser": "3.296.0",
48
- "@aws-sdk/util-base64": "3.295.0",
49
- "@aws-sdk/util-body-length-browser": "3.295.0",
50
- "@aws-sdk/util-body-length-node": "3.295.0",
51
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
52
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
53
- "@aws-sdk/util-endpoints": "3.296.0",
54
- "@aws-sdk/util-retry": "3.296.0",
55
- "@aws-sdk/util-stream-browser": "3.296.0",
56
- "@aws-sdk/util-stream-node": "3.296.0",
57
- "@aws-sdk/util-user-agent-browser": "3.299.0",
58
- "@aws-sdk/util-user-agent-node": "3.300.0",
59
- "@aws-sdk/util-utf8": "3.295.0",
26
+ "@aws-sdk/client-sts": "3.306.0",
27
+ "@aws-sdk/config-resolver": "3.306.0",
28
+ "@aws-sdk/credential-provider-node": "3.306.0",
29
+ "@aws-sdk/fetch-http-handler": "3.306.0",
30
+ "@aws-sdk/hash-node": "3.306.0",
31
+ "@aws-sdk/invalid-dependency": "3.306.0",
32
+ "@aws-sdk/middleware-content-length": "3.306.0",
33
+ "@aws-sdk/middleware-endpoint": "3.306.0",
34
+ "@aws-sdk/middleware-host-header": "3.306.0",
35
+ "@aws-sdk/middleware-logger": "3.306.0",
36
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
37
+ "@aws-sdk/middleware-retry": "3.306.0",
38
+ "@aws-sdk/middleware-serde": "3.306.0",
39
+ "@aws-sdk/middleware-signing": "3.306.0",
40
+ "@aws-sdk/middleware-stack": "3.306.0",
41
+ "@aws-sdk/middleware-user-agent": "3.306.0",
42
+ "@aws-sdk/node-config-provider": "3.306.0",
43
+ "@aws-sdk/node-http-handler": "3.306.0",
44
+ "@aws-sdk/protocol-http": "3.306.0",
45
+ "@aws-sdk/smithy-client": "3.306.0",
46
+ "@aws-sdk/types": "3.306.0",
47
+ "@aws-sdk/url-parser": "3.306.0",
48
+ "@aws-sdk/util-base64": "3.303.0",
49
+ "@aws-sdk/util-body-length-browser": "3.303.0",
50
+ "@aws-sdk/util-body-length-node": "3.303.0",
51
+ "@aws-sdk/util-defaults-mode-browser": "3.306.0",
52
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
53
+ "@aws-sdk/util-endpoints": "3.306.0",
54
+ "@aws-sdk/util-retry": "3.306.0",
55
+ "@aws-sdk/util-stream-browser": "3.306.0",
56
+ "@aws-sdk/util-stream-node": "3.306.0",
57
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
58
+ "@aws-sdk/util-user-agent-node": "3.306.0",
59
+ "@aws-sdk/util-utf8": "3.303.0",
60
60
  "tslib": "^2.5.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
63
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/chai": "^4.2.11",
66
66
  "@types/mocha": "^8.0.4",