@aws-sdk/client-lex-runtime-v2 3.986.0 → 3.988.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 +25 -682
- package/dist-cjs/models/LexRuntimeV2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +108 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +517 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +66 -60
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -17,6 +17,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
17
17
|
var runtimeConfig = require('./runtimeConfig');
|
|
18
18
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
19
19
|
var protocolHttp = require('@smithy/protocol-http');
|
|
20
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
21
|
+
var errors = require('./models/errors');
|
|
22
|
+
var LexRuntimeV2ServiceException = require('./models/LexRuntimeV2ServiceException');
|
|
20
23
|
|
|
21
24
|
const resolveClientEndpointParameters = (options) => {
|
|
22
25
|
return Object.assign(options, {
|
|
@@ -114,613 +117,6 @@ class LexRuntimeV2Client extends smithyClient.Client {
|
|
|
114
117
|
}
|
|
115
118
|
}
|
|
116
119
|
|
|
117
|
-
class LexRuntimeV2ServiceException extends smithyClient.ServiceException {
|
|
118
|
-
constructor(options) {
|
|
119
|
-
super(options);
|
|
120
|
-
Object.setPrototypeOf(this, LexRuntimeV2ServiceException.prototype);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
class AccessDeniedException extends LexRuntimeV2ServiceException {
|
|
125
|
-
name = "AccessDeniedException";
|
|
126
|
-
$fault = "client";
|
|
127
|
-
constructor(opts) {
|
|
128
|
-
super({
|
|
129
|
-
name: "AccessDeniedException",
|
|
130
|
-
$fault: "client",
|
|
131
|
-
...opts,
|
|
132
|
-
});
|
|
133
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class ConflictException extends LexRuntimeV2ServiceException {
|
|
137
|
-
name = "ConflictException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ConflictException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InternalServerException extends LexRuntimeV2ServiceException {
|
|
149
|
-
name = "InternalServerException";
|
|
150
|
-
$fault = "server";
|
|
151
|
-
constructor(opts) {
|
|
152
|
-
super({
|
|
153
|
-
name: "InternalServerException",
|
|
154
|
-
$fault: "server",
|
|
155
|
-
...opts,
|
|
156
|
-
});
|
|
157
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
class ResourceNotFoundException extends LexRuntimeV2ServiceException {
|
|
161
|
-
name = "ResourceNotFoundException";
|
|
162
|
-
$fault = "client";
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "ResourceNotFoundException",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts,
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
class ThrottlingException extends LexRuntimeV2ServiceException {
|
|
173
|
-
name = "ThrottlingException";
|
|
174
|
-
$fault = "client";
|
|
175
|
-
constructor(opts) {
|
|
176
|
-
super({
|
|
177
|
-
name: "ThrottlingException",
|
|
178
|
-
$fault: "client",
|
|
179
|
-
...opts,
|
|
180
|
-
});
|
|
181
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class ValidationException extends LexRuntimeV2ServiceException {
|
|
185
|
-
name = "ValidationException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "ValidationException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class BadGatewayException extends LexRuntimeV2ServiceException {
|
|
197
|
-
name = "BadGatewayException";
|
|
198
|
-
$fault = "server";
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "BadGatewayException",
|
|
202
|
-
$fault: "server",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, BadGatewayException.prototype);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
class DependencyFailedException extends LexRuntimeV2ServiceException {
|
|
209
|
-
name = "DependencyFailedException";
|
|
210
|
-
$fault = "client";
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "DependencyFailedException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, DependencyFailedException.prototype);
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
const _AC = "ActiveContext";
|
|
222
|
-
const _ACL = "ActiveContextsList";
|
|
223
|
-
const _ACPM = "ActiveContextParametersMap";
|
|
224
|
-
const _ACTTL = "ActiveContextTimeToLive";
|
|
225
|
-
const _ADE = "AccessDeniedException";
|
|
226
|
-
const _AIE = "AudioInputEvent";
|
|
227
|
-
const _ARE = "AudioResponseEvent";
|
|
228
|
-
const _B = "Button";
|
|
229
|
-
const _BGE = "BadGatewayException";
|
|
230
|
-
const _BL = "ButtonsList";
|
|
231
|
-
const _BS = "BlobStream";
|
|
232
|
-
const _CE = "ConfigurationEvent";
|
|
233
|
-
const _CEo = "ConflictException";
|
|
234
|
-
const _CS = "ConfidenceScore";
|
|
235
|
-
const _CT = "Content-Type";
|
|
236
|
-
const _DA = "DialogAction";
|
|
237
|
-
const _DE = "DisconnectionEvent";
|
|
238
|
-
const _DFE = "DependencyFailedException";
|
|
239
|
-
const _DS = "DeleteSession";
|
|
240
|
-
const _DSR = "DeleteSessionRequest";
|
|
241
|
-
const _DSRe = "DeleteSessionResponse";
|
|
242
|
-
const _DTMFIE = "DTMFInputEvent";
|
|
243
|
-
const _DTMFR = "DTMFRegex";
|
|
244
|
-
const _ESS = "ElicitSubSlot";
|
|
245
|
-
const _GS = "GetSession";
|
|
246
|
-
const _GSR = "GetSessionRequest";
|
|
247
|
-
const _GSRe = "GetSessionResponse";
|
|
248
|
-
const _HE = "HeartbeatEvent";
|
|
249
|
-
const _I = "Intent";
|
|
250
|
-
const _IRC = "ImageResponseCard";
|
|
251
|
-
const _IRE = "IntentResultEvent";
|
|
252
|
-
const _ISE = "InternalServerException";
|
|
253
|
-
const _In = "Interpretation";
|
|
254
|
-
const _Int = "Interpretations";
|
|
255
|
-
const _M = "Message";
|
|
256
|
-
const _Me = "Messages";
|
|
257
|
-
const _PCE = "PlaybackCompletionEvent";
|
|
258
|
-
const _PIE = "PlaybackInterruptionEvent";
|
|
259
|
-
const _PS = "PutSession";
|
|
260
|
-
const _PSR = "PutSessionRequest";
|
|
261
|
-
const _PSRu = "PutSessionResponse";
|
|
262
|
-
const _RBM = "RecognizedBotMember";
|
|
263
|
-
const _RCT = "ResponseContentType";
|
|
264
|
-
const _RCT_ = "Response-Content-Type";
|
|
265
|
-
const _RH = "RuntimeHints";
|
|
266
|
-
const _RHD = "RuntimeHintDetails";
|
|
267
|
-
const _RHV = "RuntimeHintValue";
|
|
268
|
-
const _RHVL = "RuntimeHintValuesList";
|
|
269
|
-
const _RNFE = "ResourceNotFoundException";
|
|
270
|
-
const _RT = "RecognizeText";
|
|
271
|
-
const _RTR = "RecognizeTextRequest";
|
|
272
|
-
const _RTRe = "RecognizeTextResponse";
|
|
273
|
-
const _RU = "RecognizeUtterance";
|
|
274
|
-
const _RUR = "RecognizeUtteranceRequest";
|
|
275
|
-
const _RURe = "RecognizeUtteranceResponse";
|
|
276
|
-
const _S = "Slot";
|
|
277
|
-
const _SC = "StartConversation";
|
|
278
|
-
const _SCR = "StartConversationRequest";
|
|
279
|
-
const _SCRES = "StartConversationRequestEventStream";
|
|
280
|
-
const _SCRESt = "StartConversationResponseEventStream";
|
|
281
|
-
const _SCRt = "StartConversationResponse";
|
|
282
|
-
const _SHIM = "SlotHintsIntentMap";
|
|
283
|
-
const _SHSM = "SlotHintsSlotMap";
|
|
284
|
-
const _SNES = "SensitiveNonEmptyString";
|
|
285
|
-
const _SR = "SentimentResponse";
|
|
286
|
-
const _SS = "SentimentScore";
|
|
287
|
-
const _SSe = "SessionState";
|
|
288
|
-
const _Sl = "Slots";
|
|
289
|
-
const _T = "Text";
|
|
290
|
-
const _TE = "ThrottlingException";
|
|
291
|
-
const _TEr = "TranscriptEvent";
|
|
292
|
-
const _TIE = "TextInputEvent";
|
|
293
|
-
const _TRE = "TextResponseEvent";
|
|
294
|
-
const _V = "Value";
|
|
295
|
-
const _VE = "ValidationException";
|
|
296
|
-
const _Va = "Values";
|
|
297
|
-
const _aC = "audioChunk";
|
|
298
|
-
const _aCc = "activeContexts";
|
|
299
|
-
const _aS = "audioStream";
|
|
300
|
-
const _b = "buttons";
|
|
301
|
-
const _bAI = "botAliasId";
|
|
302
|
-
const _bI = "botId";
|
|
303
|
-
const _bN = "botName";
|
|
304
|
-
const _c = "client";
|
|
305
|
-
const _cA = "contextAttributes";
|
|
306
|
-
const _cBEI = "causedByEventId";
|
|
307
|
-
const _cM = "conversationMode";
|
|
308
|
-
const _cS = "confirmationState";
|
|
309
|
-
const _cT = "contentType";
|
|
310
|
-
const _cTM = "clientTimestampMillis";
|
|
311
|
-
const _co = "content";
|
|
312
|
-
const _dA = "dialogAction";
|
|
313
|
-
const _dP = "disablePlayback";
|
|
314
|
-
const _e = "error";
|
|
315
|
-
const _eI = "eventId";
|
|
316
|
-
const _eR = "eventReason";
|
|
317
|
-
const _h = "http";
|
|
318
|
-
const _hE = "httpError";
|
|
319
|
-
const _hH = "httpHeader";
|
|
320
|
-
const _i = "interpretations";
|
|
321
|
-
const _iC = "inputCharacter";
|
|
322
|
-
const _iM = "inputMode";
|
|
323
|
-
const _iRC = "imageResponseCard";
|
|
324
|
-
const _iS = "interpretationSource";
|
|
325
|
-
const _iSn = "inputStream";
|
|
326
|
-
const _iT = "inputTranscript";
|
|
327
|
-
const _iU = "imageUrl";
|
|
328
|
-
const _iV = "interpretedValue";
|
|
329
|
-
const _in = "intent";
|
|
330
|
-
const _lI = "localeId";
|
|
331
|
-
const _m = "message";
|
|
332
|
-
const _me = "messages";
|
|
333
|
-
const _mi = "mixed";
|
|
334
|
-
const _n = "name";
|
|
335
|
-
const _nC = "nluConfidence";
|
|
336
|
-
const _ne = "negative";
|
|
337
|
-
const _neu = "neutral";
|
|
338
|
-
const _oRI = "originatingRequestId";
|
|
339
|
-
const _oV = "originalValue";
|
|
340
|
-
const _p = "phrase";
|
|
341
|
-
const _po = "positive";
|
|
342
|
-
const _rA = "requestAttributes";
|
|
343
|
-
const _rBM = "recognizedBotMember";
|
|
344
|
-
const _rCT = "responseContentType";
|
|
345
|
-
const _rCTe = "requestContentType";
|
|
346
|
-
const _rES = "requestEventStream";
|
|
347
|
-
const _rESe = "responseEventStream";
|
|
348
|
-
const _rH = "runtimeHints";
|
|
349
|
-
const _rHV = "runtimeHintValues";
|
|
350
|
-
const _rV = "resolvedValues";
|
|
351
|
-
const _s = "streaming";
|
|
352
|
-
const _sA = "sessionAttributes";
|
|
353
|
-
const _sES = "slotElicitationStyle";
|
|
354
|
-
const _sH = "slotHints";
|
|
355
|
-
const _sI = "sessionId";
|
|
356
|
-
const _sR = "sentimentResponse";
|
|
357
|
-
const _sS = "sessionState";
|
|
358
|
-
const _sSH = "subSlotHints";
|
|
359
|
-
const _sSTE = "subSlotToElicit";
|
|
360
|
-
const _sSe = "sentimentScore";
|
|
361
|
-
const _sSu = "subSlots";
|
|
362
|
-
const _sTE = "slotToElicit";
|
|
363
|
-
const _sc = "score";
|
|
364
|
-
const _se = "server";
|
|
365
|
-
const _sen = "sentiment";
|
|
366
|
-
const _sh = "shape";
|
|
367
|
-
const _sl = "slots";
|
|
368
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.lexruntimev2";
|
|
369
|
-
const _st = "state";
|
|
370
|
-
const _su = "subtitle";
|
|
371
|
-
const _t = "text";
|
|
372
|
-
const _tTL = "timeToLive";
|
|
373
|
-
const _tTLIS = "timeToLiveInSeconds";
|
|
374
|
-
const _tTLu = "turnsToLive";
|
|
375
|
-
const _ti = "title";
|
|
376
|
-
const _tr = "transcript";
|
|
377
|
-
const _ty = "type";
|
|
378
|
-
const _v = "value";
|
|
379
|
-
const _va = "values";
|
|
380
|
-
const _wM = "welcomeMessages";
|
|
381
|
-
const _xalcm = "x-amz-lex-conversation-mode";
|
|
382
|
-
const _xali = "x-amz-lex-interpretations";
|
|
383
|
-
const _xalim = "x-amz-lex-input-mode";
|
|
384
|
-
const _xalit = "x-amz-lex-input-transcript";
|
|
385
|
-
const _xalm = "x-amz-lex-messages";
|
|
386
|
-
const _xalra = "x-amz-lex-request-attributes";
|
|
387
|
-
const _xalrbm = "x-amz-lex-recognized-bot-member";
|
|
388
|
-
const _xalsi = "x-amz-lex-session-id";
|
|
389
|
-
const _xalss = "x-amz-lex-session-state";
|
|
390
|
-
const n0 = "com.amazonaws.lexruntimev2";
|
|
391
|
-
var BlobStream = [0, n0, _BS, { [_s]: 1 }, 42];
|
|
392
|
-
var DTMFRegex = [0, n0, _DTMFR, 8, 0];
|
|
393
|
-
var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
394
|
-
var Text = [0, n0, _T, 8, 0];
|
|
395
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
396
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
397
|
-
[_m],
|
|
398
|
-
[0], 1
|
|
399
|
-
];
|
|
400
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
401
|
-
var ActiveContext$ = [3, n0, _AC,
|
|
402
|
-
0,
|
|
403
|
-
[_n, _tTL, _cA],
|
|
404
|
-
[0, () => ActiveContextTimeToLive$, [() => ActiveContextParametersMap, 0]], 3
|
|
405
|
-
];
|
|
406
|
-
var ActiveContextTimeToLive$ = [3, n0, _ACTTL,
|
|
407
|
-
0,
|
|
408
|
-
[_tTLIS, _tTLu],
|
|
409
|
-
[1, 1], 2
|
|
410
|
-
];
|
|
411
|
-
var AudioInputEvent$ = [3, n0, _AIE,
|
|
412
|
-
0,
|
|
413
|
-
[_cT, _aC, _eI, _cTM],
|
|
414
|
-
[0, 21, 0, 1], 1
|
|
415
|
-
];
|
|
416
|
-
var AudioResponseEvent$ = [3, n0, _ARE,
|
|
417
|
-
0,
|
|
418
|
-
[_aC, _cT, _eI],
|
|
419
|
-
[21, 0, 0]
|
|
420
|
-
];
|
|
421
|
-
var BadGatewayException$ = [-3, n0, _BGE,
|
|
422
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
423
|
-
[_m],
|
|
424
|
-
[0], 1
|
|
425
|
-
];
|
|
426
|
-
schema.TypeRegistry.for(n0).registerError(BadGatewayException$, BadGatewayException);
|
|
427
|
-
var Button$ = [3, n0, _B,
|
|
428
|
-
0,
|
|
429
|
-
[_t, _v],
|
|
430
|
-
[0, 0], 2
|
|
431
|
-
];
|
|
432
|
-
var ConfidenceScore$ = [3, n0, _CS,
|
|
433
|
-
0,
|
|
434
|
-
[_sc],
|
|
435
|
-
[1]
|
|
436
|
-
];
|
|
437
|
-
var ConfigurationEvent$ = [3, n0, _CE,
|
|
438
|
-
0,
|
|
439
|
-
[_rCT, _rA, _sS, _wM, _dP, _eI, _cTM],
|
|
440
|
-
[0, 128 | 0, [() => SessionState$, 0], [() => Messages, 0], 2, 0, 1], 1
|
|
441
|
-
];
|
|
442
|
-
var ConflictException$ = [-3, n0, _CEo,
|
|
443
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
444
|
-
[_m],
|
|
445
|
-
[0], 1
|
|
446
|
-
];
|
|
447
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
448
|
-
var DeleteSessionRequest$ = [3, n0, _DSR,
|
|
449
|
-
0,
|
|
450
|
-
[_bI, _bAI, _lI, _sI],
|
|
451
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
452
|
-
];
|
|
453
|
-
var DeleteSessionResponse$ = [3, n0, _DSRe,
|
|
454
|
-
0,
|
|
455
|
-
[_bI, _bAI, _lI, _sI],
|
|
456
|
-
[0, 0, 0, 0]
|
|
457
|
-
];
|
|
458
|
-
var DependencyFailedException$ = [-3, n0, _DFE,
|
|
459
|
-
{ [_e]: _c, [_hE]: 424 },
|
|
460
|
-
[_m],
|
|
461
|
-
[0], 1
|
|
462
|
-
];
|
|
463
|
-
schema.TypeRegistry.for(n0).registerError(DependencyFailedException$, DependencyFailedException);
|
|
464
|
-
var DialogAction$ = [3, n0, _DA,
|
|
465
|
-
0,
|
|
466
|
-
[_ty, _sTE, _sES, _sSTE],
|
|
467
|
-
[0, 0, 0, () => ElicitSubSlot$], 1
|
|
468
|
-
];
|
|
469
|
-
var DisconnectionEvent$ = [3, n0, _DE,
|
|
470
|
-
0,
|
|
471
|
-
[_eI, _cTM],
|
|
472
|
-
[0, 1]
|
|
473
|
-
];
|
|
474
|
-
var DTMFInputEvent$ = [3, n0, _DTMFIE,
|
|
475
|
-
0,
|
|
476
|
-
[_iC, _eI, _cTM],
|
|
477
|
-
[[() => DTMFRegex, 0], 0, 1], 1
|
|
478
|
-
];
|
|
479
|
-
var ElicitSubSlot$ = [3, n0, _ESS,
|
|
480
|
-
0,
|
|
481
|
-
[_n, _sSTE],
|
|
482
|
-
[0, () => ElicitSubSlot$], 1
|
|
483
|
-
];
|
|
484
|
-
var GetSessionRequest$ = [3, n0, _GSR,
|
|
485
|
-
0,
|
|
486
|
-
[_bI, _bAI, _lI, _sI],
|
|
487
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
488
|
-
];
|
|
489
|
-
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
490
|
-
0,
|
|
491
|
-
[_sI, _me, _i, _sS],
|
|
492
|
-
[0, [() => Messages, 0], () => Interpretations, [() => SessionState$, 0]]
|
|
493
|
-
];
|
|
494
|
-
var HeartbeatEvent$ = [3, n0, _HE,
|
|
495
|
-
0,
|
|
496
|
-
[_eI],
|
|
497
|
-
[0]
|
|
498
|
-
];
|
|
499
|
-
var ImageResponseCard$ = [3, n0, _IRC,
|
|
500
|
-
0,
|
|
501
|
-
[_ti, _su, _iU, _b],
|
|
502
|
-
[0, 0, 0, () => ButtonsList], 1
|
|
503
|
-
];
|
|
504
|
-
var Intent$ = [3, n0, _I,
|
|
505
|
-
0,
|
|
506
|
-
[_n, _sl, _st, _cS],
|
|
507
|
-
[0, () => Slots, 0, 0], 1
|
|
508
|
-
];
|
|
509
|
-
var IntentResultEvent$ = [3, n0, _IRE,
|
|
510
|
-
0,
|
|
511
|
-
[_iM, _i, _sS, _rA, _sI, _eI, _rBM],
|
|
512
|
-
[0, () => Interpretations, [() => SessionState$, 0], 128 | 0, 0, 0, () => RecognizedBotMember$]
|
|
513
|
-
];
|
|
514
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
515
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
516
|
-
[_m],
|
|
517
|
-
[0], 1
|
|
518
|
-
];
|
|
519
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
520
|
-
var Interpretation$ = [3, n0, _In,
|
|
521
|
-
0,
|
|
522
|
-
[_nC, _sR, _in, _iS],
|
|
523
|
-
[() => ConfidenceScore$, () => SentimentResponse$, () => Intent$, 0]
|
|
524
|
-
];
|
|
525
|
-
var Message$ = [3, n0, _M,
|
|
526
|
-
0,
|
|
527
|
-
[_cT, _co, _iRC],
|
|
528
|
-
[0, [() => Text, 0], () => ImageResponseCard$], 1
|
|
529
|
-
];
|
|
530
|
-
var PlaybackCompletionEvent$ = [3, n0, _PCE,
|
|
531
|
-
0,
|
|
532
|
-
[_eI, _cTM],
|
|
533
|
-
[0, 1]
|
|
534
|
-
];
|
|
535
|
-
var PlaybackInterruptionEvent$ = [3, n0, _PIE,
|
|
536
|
-
0,
|
|
537
|
-
[_eR, _cBEI, _eI],
|
|
538
|
-
[0, 0, 0]
|
|
539
|
-
];
|
|
540
|
-
var PutSessionRequest$ = [3, n0, _PSR,
|
|
541
|
-
0,
|
|
542
|
-
[_bI, _bAI, _lI, _sI, _sS, _me, _rA, _rCT],
|
|
543
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], [() => SessionState$, 0], [() => Messages, 0], 128 | 0, [0, { [_hH]: _RCT }]], 5
|
|
544
|
-
];
|
|
545
|
-
var PutSessionResponse$ = [3, n0, _PSRu,
|
|
546
|
-
0,
|
|
547
|
-
[_cT, _me, _sS, _rA, _sI, _aS],
|
|
548
|
-
[[0, { [_hH]: _CT }], [0, { [_hH]: _xalm }], [0, { [_hH]: _xalss }], [0, { [_hH]: _xalra }], [0, { [_hH]: _xalsi }], [() => BlobStream, 16]]
|
|
549
|
-
];
|
|
550
|
-
var RecognizedBotMember$ = [3, n0, _RBM,
|
|
551
|
-
0,
|
|
552
|
-
[_bI, _bN],
|
|
553
|
-
[0, 0], 1
|
|
554
|
-
];
|
|
555
|
-
var RecognizeTextRequest$ = [3, n0, _RTR,
|
|
556
|
-
0,
|
|
557
|
-
[_bI, _bAI, _lI, _sI, _t, _sS, _rA],
|
|
558
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], [() => Text, 0], [() => SessionState$, 0], 128 | 0], 5
|
|
559
|
-
];
|
|
560
|
-
var RecognizeTextResponse$ = [3, n0, _RTRe,
|
|
561
|
-
0,
|
|
562
|
-
[_me, _sS, _i, _rA, _sI, _rBM],
|
|
563
|
-
[[() => Messages, 0], [() => SessionState$, 0], () => Interpretations, 128 | 0, 0, () => RecognizedBotMember$]
|
|
564
|
-
];
|
|
565
|
-
var RecognizeUtteranceRequest$ = [3, n0, _RUR,
|
|
566
|
-
0,
|
|
567
|
-
[_bI, _bAI, _lI, _sI, _rCTe, _sS, _rA, _rCT, _iSn],
|
|
568
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], [0, { [_hH]: _CT }], [() => SensitiveNonEmptyString, { [_hH]: _xalss }], [() => SensitiveNonEmptyString, { [_hH]: _xalra }], [0, { [_hH]: _RCT_ }], [() => BlobStream, 16]], 5
|
|
569
|
-
];
|
|
570
|
-
var RecognizeUtteranceResponse$ = [3, n0, _RURe,
|
|
571
|
-
0,
|
|
572
|
-
[_iM, _cT, _me, _i, _sS, _rA, _sI, _iT, _aS, _rBM],
|
|
573
|
-
[[0, { [_hH]: _xalim }], [0, { [_hH]: _CT }], [0, { [_hH]: _xalm }], [0, { [_hH]: _xali }], [0, { [_hH]: _xalss }], [0, { [_hH]: _xalra }], [0, { [_hH]: _xalsi }], [0, { [_hH]: _xalit }], [() => BlobStream, 16], [0, { [_hH]: _xalrbm }]]
|
|
574
|
-
];
|
|
575
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
576
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
577
|
-
[_m],
|
|
578
|
-
[0], 1
|
|
579
|
-
];
|
|
580
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
581
|
-
var RuntimeHintDetails$ = [3, n0, _RHD,
|
|
582
|
-
0,
|
|
583
|
-
[_rHV, _sSH],
|
|
584
|
-
[() => RuntimeHintValuesList, () => SlotHintsSlotMap]
|
|
585
|
-
];
|
|
586
|
-
var RuntimeHints$ = [3, n0, _RH,
|
|
587
|
-
0,
|
|
588
|
-
[_sH],
|
|
589
|
-
[() => SlotHintsIntentMap]
|
|
590
|
-
];
|
|
591
|
-
var RuntimeHintValue$ = [3, n0, _RHV,
|
|
592
|
-
0,
|
|
593
|
-
[_p],
|
|
594
|
-
[0], 1
|
|
595
|
-
];
|
|
596
|
-
var SentimentResponse$ = [3, n0, _SR,
|
|
597
|
-
0,
|
|
598
|
-
[_sen, _sSe],
|
|
599
|
-
[0, () => SentimentScore$]
|
|
600
|
-
];
|
|
601
|
-
var SentimentScore$ = [3, n0, _SS,
|
|
602
|
-
0,
|
|
603
|
-
[_po, _ne, _neu, _mi],
|
|
604
|
-
[1, 1, 1, 1]
|
|
605
|
-
];
|
|
606
|
-
var SessionState$ = [3, n0, _SSe,
|
|
607
|
-
0,
|
|
608
|
-
[_dA, _in, _aCc, _sA, _oRI, _rH],
|
|
609
|
-
[() => DialogAction$, () => Intent$, [() => ActiveContextsList, 0], 128 | 0, 0, () => RuntimeHints$]
|
|
610
|
-
];
|
|
611
|
-
var Slot$ = [3, n0, _S,
|
|
612
|
-
0,
|
|
613
|
-
[_v, _sh, _va, _sSu],
|
|
614
|
-
[() => Value$, 0, () => Values, () => Slots]
|
|
615
|
-
];
|
|
616
|
-
var StartConversationRequest$ = [3, n0, _SCR,
|
|
617
|
-
0,
|
|
618
|
-
[_bI, _bAI, _lI, _sI, _rES, _cM],
|
|
619
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], [() => StartConversationRequestEventStream$, 16], [0, { [_hH]: _xalcm }]], 5
|
|
620
|
-
];
|
|
621
|
-
var StartConversationResponse$ = [3, n0, _SCRt,
|
|
622
|
-
0,
|
|
623
|
-
[_rESe],
|
|
624
|
-
[[() => StartConversationResponseEventStream$, 16]]
|
|
625
|
-
];
|
|
626
|
-
var TextInputEvent$ = [3, n0, _TIE,
|
|
627
|
-
0,
|
|
628
|
-
[_t, _eI, _cTM],
|
|
629
|
-
[[() => Text, 0], 0, 1], 1
|
|
630
|
-
];
|
|
631
|
-
var TextResponseEvent$ = [3, n0, _TRE,
|
|
632
|
-
0,
|
|
633
|
-
[_me, _eI],
|
|
634
|
-
[[() => Messages, 0], 0]
|
|
635
|
-
];
|
|
636
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
637
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
638
|
-
[_m],
|
|
639
|
-
[0], 1
|
|
640
|
-
];
|
|
641
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
642
|
-
var TranscriptEvent$ = [3, n0, _TEr,
|
|
643
|
-
0,
|
|
644
|
-
[_tr, _eI],
|
|
645
|
-
[0, 0]
|
|
646
|
-
];
|
|
647
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
648
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
649
|
-
[_m],
|
|
650
|
-
[0], 1
|
|
651
|
-
];
|
|
652
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
653
|
-
var Value$ = [3, n0, _V,
|
|
654
|
-
0,
|
|
655
|
-
[_iV, _oV, _rV],
|
|
656
|
-
[0, 0, 64 | 0], 1
|
|
657
|
-
];
|
|
658
|
-
var LexRuntimeV2ServiceException$ = [-3, _sm, "LexRuntimeV2ServiceException", 0, [], []];
|
|
659
|
-
schema.TypeRegistry.for(_sm).registerError(LexRuntimeV2ServiceException$, LexRuntimeV2ServiceException);
|
|
660
|
-
var ActiveContextsList = [1, n0, _ACL,
|
|
661
|
-
0, [() => ActiveContext$,
|
|
662
|
-
0]
|
|
663
|
-
];
|
|
664
|
-
var ButtonsList = [1, n0, _BL,
|
|
665
|
-
0, () => Button$
|
|
666
|
-
];
|
|
667
|
-
var Interpretations = [1, n0, _Int,
|
|
668
|
-
0, () => Interpretation$
|
|
669
|
-
];
|
|
670
|
-
var Messages = [1, n0, _Me,
|
|
671
|
-
0, [() => Message$,
|
|
672
|
-
0]
|
|
673
|
-
];
|
|
674
|
-
var RuntimeHintValuesList = [1, n0, _RHVL,
|
|
675
|
-
0, () => RuntimeHintValue$
|
|
676
|
-
];
|
|
677
|
-
var Values = [1, n0, _Va,
|
|
678
|
-
0, () => Slot$
|
|
679
|
-
];
|
|
680
|
-
var ActiveContextParametersMap = [2, n0, _ACPM,
|
|
681
|
-
0, [0,
|
|
682
|
-
0],
|
|
683
|
-
[() => Text,
|
|
684
|
-
0]
|
|
685
|
-
];
|
|
686
|
-
var SlotHintsIntentMap = [2, n0, _SHIM,
|
|
687
|
-
0, 0, () => SlotHintsSlotMap
|
|
688
|
-
];
|
|
689
|
-
var SlotHintsSlotMap = [2, n0, _SHSM,
|
|
690
|
-
0, 0, () => RuntimeHintDetails$
|
|
691
|
-
];
|
|
692
|
-
var Slots = [2, n0, _Sl,
|
|
693
|
-
0, 0, () => Slot$
|
|
694
|
-
];
|
|
695
|
-
var StartConversationRequestEventStream$ = [4, n0, _SCRES,
|
|
696
|
-
{ [_s]: 1 },
|
|
697
|
-
[_CE, _AIE, _DTMFIE, _TIE, _PCE, _DE],
|
|
698
|
-
[[() => ConfigurationEvent$, 0], () => AudioInputEvent$, [() => DTMFInputEvent$, 0], [() => TextInputEvent$, 0], () => PlaybackCompletionEvent$, () => DisconnectionEvent$]
|
|
699
|
-
];
|
|
700
|
-
var StartConversationResponseEventStream$ = [4, n0, _SCRESt,
|
|
701
|
-
{ [_s]: 1 },
|
|
702
|
-
[_PIE, _TEr, _IRE, _TRE, _ARE, _HE, _ADE, _RNFE, _VE, _TE, _ISE, _CEo, _DFE, _BGE],
|
|
703
|
-
[() => PlaybackInterruptionEvent$, () => TranscriptEvent$, [() => IntentResultEvent$, 0], [() => TextResponseEvent$, 0], () => AudioResponseEvent$, () => HeartbeatEvent$, [() => AccessDeniedException$, 0], [() => ResourceNotFoundException$, 0], [() => ValidationException$, 0], [() => ThrottlingException$, 0], [() => InternalServerException$, 0], [() => ConflictException$, 0], [() => DependencyFailedException$, 0], [() => BadGatewayException$, 0]]
|
|
704
|
-
];
|
|
705
|
-
var DeleteSession$ = [9, n0, _DS,
|
|
706
|
-
{ [_h]: ["DELETE", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}", 200] }, () => DeleteSessionRequest$, () => DeleteSessionResponse$
|
|
707
|
-
];
|
|
708
|
-
var GetSession$ = [9, n0, _GS,
|
|
709
|
-
{ [_h]: ["GET", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
|
|
710
|
-
];
|
|
711
|
-
var PutSession$ = [9, n0, _PS,
|
|
712
|
-
{ [_h]: ["POST", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}", 200] }, () => PutSessionRequest$, () => PutSessionResponse$
|
|
713
|
-
];
|
|
714
|
-
var RecognizeText$ = [9, n0, _RT,
|
|
715
|
-
{ [_h]: ["POST", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/text", 200] }, () => RecognizeTextRequest$, () => RecognizeTextResponse$
|
|
716
|
-
];
|
|
717
|
-
var RecognizeUtterance$ = [9, n0, _RU,
|
|
718
|
-
{ [_h]: ["POST", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/utterance", 200] }, () => RecognizeUtteranceRequest$, () => RecognizeUtteranceResponse$
|
|
719
|
-
];
|
|
720
|
-
var StartConversation$ = [9, n0, _SC,
|
|
721
|
-
{ [_h]: ["POST", "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/conversation", 200] }, () => StartConversationRequest$, () => StartConversationResponse$
|
|
722
|
-
];
|
|
723
|
-
|
|
724
120
|
class DeleteSessionCommand extends smithyClient.Command
|
|
725
121
|
.classBuilder()
|
|
726
122
|
.ep(commonParams)
|
|
@@ -729,7 +125,7 @@ class DeleteSessionCommand extends smithyClient.Command
|
|
|
729
125
|
})
|
|
730
126
|
.s("AWSDeepSenseRunTimeServiceApi2_0", "DeleteSession", {})
|
|
731
127
|
.n("LexRuntimeV2Client", "DeleteSessionCommand")
|
|
732
|
-
.sc(DeleteSession$)
|
|
128
|
+
.sc(schemas_0.DeleteSession$)
|
|
733
129
|
.build() {
|
|
734
130
|
}
|
|
735
131
|
|
|
@@ -741,7 +137,7 @@ class GetSessionCommand extends smithyClient.Command
|
|
|
741
137
|
})
|
|
742
138
|
.s("AWSDeepSenseRunTimeServiceApi2_0", "GetSession", {})
|
|
743
139
|
.n("LexRuntimeV2Client", "GetSessionCommand")
|
|
744
|
-
.sc(GetSession$)
|
|
140
|
+
.sc(schemas_0.GetSession$)
|
|
745
141
|
.build() {
|
|
746
142
|
}
|
|
747
143
|
|
|
@@ -753,7 +149,7 @@ class PutSessionCommand extends smithyClient.Command
|
|
|
753
149
|
})
|
|
754
150
|
.s("AWSDeepSenseRunTimeServiceApi2_0", "PutSession", {})
|
|
755
151
|
.n("LexRuntimeV2Client", "PutSessionCommand")
|
|
756
|
-
.sc(PutSession$)
|
|
152
|
+
.sc(schemas_0.PutSession$)
|
|
757
153
|
.build() {
|
|
758
154
|
}
|
|
759
155
|
|
|
@@ -765,7 +161,7 @@ class RecognizeTextCommand extends smithyClient.Command
|
|
|
765
161
|
})
|
|
766
162
|
.s("AWSDeepSenseRunTimeServiceApi2_0", "RecognizeText", {})
|
|
767
163
|
.n("LexRuntimeV2Client", "RecognizeTextCommand")
|
|
768
|
-
.sc(RecognizeText$)
|
|
164
|
+
.sc(schemas_0.RecognizeText$)
|
|
769
165
|
.build() {
|
|
770
166
|
}
|
|
771
167
|
|
|
@@ -777,7 +173,7 @@ class RecognizeUtteranceCommand extends smithyClient.Command
|
|
|
777
173
|
})
|
|
778
174
|
.s("AWSDeepSenseRunTimeServiceApi2_0", "RecognizeUtterance", {})
|
|
779
175
|
.n("LexRuntimeV2Client", "RecognizeUtteranceCommand")
|
|
780
|
-
.sc(RecognizeUtterance$)
|
|
176
|
+
.sc(schemas_0.RecognizeUtterance$)
|
|
781
177
|
.build() {
|
|
782
178
|
}
|
|
783
179
|
|
|
@@ -797,7 +193,7 @@ class StartConversationCommand extends smithyClient.Command
|
|
|
797
193
|
},
|
|
798
194
|
})
|
|
799
195
|
.n("LexRuntimeV2Client", "StartConversationCommand")
|
|
800
|
-
.sc(StartConversation$)
|
|
196
|
+
.sc(schemas_0.StartConversation$)
|
|
801
197
|
.build() {
|
|
802
198
|
}
|
|
803
199
|
|
|
@@ -883,91 +279,38 @@ Object.defineProperty(exports, "__Client", {
|
|
|
883
279
|
enumerable: true,
|
|
884
280
|
get: function () { return smithyClient.Client; }
|
|
885
281
|
});
|
|
886
|
-
exports
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
exports.AudioInputEvent$ = AudioInputEvent$;
|
|
891
|
-
exports.AudioResponseEvent$ = AudioResponseEvent$;
|
|
892
|
-
exports.BadGatewayException = BadGatewayException;
|
|
893
|
-
exports.BadGatewayException$ = BadGatewayException$;
|
|
894
|
-
exports.Button$ = Button$;
|
|
895
|
-
exports.ConfidenceScore$ = ConfidenceScore$;
|
|
896
|
-
exports.ConfigurationEvent$ = ConfigurationEvent$;
|
|
282
|
+
Object.defineProperty(exports, "LexRuntimeV2ServiceException", {
|
|
283
|
+
enumerable: true,
|
|
284
|
+
get: function () { return LexRuntimeV2ServiceException.LexRuntimeV2ServiceException; }
|
|
285
|
+
});
|
|
897
286
|
exports.ConfirmationState = ConfirmationState;
|
|
898
|
-
exports.ConflictException = ConflictException;
|
|
899
|
-
exports.ConflictException$ = ConflictException$;
|
|
900
287
|
exports.ConversationMode = ConversationMode;
|
|
901
|
-
exports.DTMFInputEvent$ = DTMFInputEvent$;
|
|
902
|
-
exports.DeleteSession$ = DeleteSession$;
|
|
903
288
|
exports.DeleteSessionCommand = DeleteSessionCommand;
|
|
904
|
-
exports.DeleteSessionRequest$ = DeleteSessionRequest$;
|
|
905
|
-
exports.DeleteSessionResponse$ = DeleteSessionResponse$;
|
|
906
|
-
exports.DependencyFailedException = DependencyFailedException;
|
|
907
|
-
exports.DependencyFailedException$ = DependencyFailedException$;
|
|
908
|
-
exports.DialogAction$ = DialogAction$;
|
|
909
289
|
exports.DialogActionType = DialogActionType;
|
|
910
|
-
exports.DisconnectionEvent$ = DisconnectionEvent$;
|
|
911
|
-
exports.ElicitSubSlot$ = ElicitSubSlot$;
|
|
912
|
-
exports.GetSession$ = GetSession$;
|
|
913
290
|
exports.GetSessionCommand = GetSessionCommand;
|
|
914
|
-
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
915
|
-
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
916
|
-
exports.HeartbeatEvent$ = HeartbeatEvent$;
|
|
917
|
-
exports.ImageResponseCard$ = ImageResponseCard$;
|
|
918
291
|
exports.InputMode = InputMode;
|
|
919
|
-
exports.Intent$ = Intent$;
|
|
920
|
-
exports.IntentResultEvent$ = IntentResultEvent$;
|
|
921
292
|
exports.IntentState = IntentState;
|
|
922
|
-
exports.InternalServerException = InternalServerException;
|
|
923
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
924
|
-
exports.Interpretation$ = Interpretation$;
|
|
925
293
|
exports.InterpretationSource = InterpretationSource;
|
|
926
294
|
exports.LexRuntimeV2 = LexRuntimeV2;
|
|
927
295
|
exports.LexRuntimeV2Client = LexRuntimeV2Client;
|
|
928
|
-
exports.LexRuntimeV2ServiceException = LexRuntimeV2ServiceException;
|
|
929
|
-
exports.LexRuntimeV2ServiceException$ = LexRuntimeV2ServiceException$;
|
|
930
|
-
exports.Message$ = Message$;
|
|
931
296
|
exports.MessageContentType = MessageContentType;
|
|
932
|
-
exports.PlaybackCompletionEvent$ = PlaybackCompletionEvent$;
|
|
933
|
-
exports.PlaybackInterruptionEvent$ = PlaybackInterruptionEvent$;
|
|
934
297
|
exports.PlaybackInterruptionReason = PlaybackInterruptionReason;
|
|
935
|
-
exports.PutSession$ = PutSession$;
|
|
936
298
|
exports.PutSessionCommand = PutSessionCommand;
|
|
937
|
-
exports.PutSessionRequest$ = PutSessionRequest$;
|
|
938
|
-
exports.PutSessionResponse$ = PutSessionResponse$;
|
|
939
|
-
exports.RecognizeText$ = RecognizeText$;
|
|
940
299
|
exports.RecognizeTextCommand = RecognizeTextCommand;
|
|
941
|
-
exports.RecognizeTextRequest$ = RecognizeTextRequest$;
|
|
942
|
-
exports.RecognizeTextResponse$ = RecognizeTextResponse$;
|
|
943
|
-
exports.RecognizeUtterance$ = RecognizeUtterance$;
|
|
944
300
|
exports.RecognizeUtteranceCommand = RecognizeUtteranceCommand;
|
|
945
|
-
exports.RecognizeUtteranceRequest$ = RecognizeUtteranceRequest$;
|
|
946
|
-
exports.RecognizeUtteranceResponse$ = RecognizeUtteranceResponse$;
|
|
947
|
-
exports.RecognizedBotMember$ = RecognizedBotMember$;
|
|
948
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
949
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
950
|
-
exports.RuntimeHintDetails$ = RuntimeHintDetails$;
|
|
951
|
-
exports.RuntimeHintValue$ = RuntimeHintValue$;
|
|
952
|
-
exports.RuntimeHints$ = RuntimeHints$;
|
|
953
|
-
exports.SentimentResponse$ = SentimentResponse$;
|
|
954
|
-
exports.SentimentScore$ = SentimentScore$;
|
|
955
301
|
exports.SentimentType = SentimentType;
|
|
956
|
-
exports.SessionState$ = SessionState$;
|
|
957
302
|
exports.Shape = Shape;
|
|
958
|
-
exports.Slot$ = Slot$;
|
|
959
|
-
exports.StartConversation$ = StartConversation$;
|
|
960
303
|
exports.StartConversationCommand = StartConversationCommand;
|
|
961
|
-
exports.StartConversationRequest$ = StartConversationRequest$;
|
|
962
|
-
exports.StartConversationRequestEventStream$ = StartConversationRequestEventStream$;
|
|
963
|
-
exports.StartConversationResponse$ = StartConversationResponse$;
|
|
964
|
-
exports.StartConversationResponseEventStream$ = StartConversationResponseEventStream$;
|
|
965
304
|
exports.StyleType = StyleType;
|
|
966
|
-
|
|
967
|
-
exports.
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
exports.
|
|
305
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
306
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
307
|
+
enumerable: true,
|
|
308
|
+
get: function () { return schemas_0[k]; }
|
|
309
|
+
});
|
|
310
|
+
});
|
|
311
|
+
Object.keys(errors).forEach(function (k) {
|
|
312
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
313
|
+
enumerable: true,
|
|
314
|
+
get: function () { return errors[k]; }
|
|
315
|
+
});
|
|
316
|
+
});
|