@aws-sdk/client-wisdom 3.1074.0 → 3.1076.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
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultWisdomHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateAssistantAssociation$, CreateAssistant$, CreateContent$, CreateKnowledgeBase$, CreateQuickResponse$, CreateSession$, DeleteAssistantAssociation$, DeleteAssistant$, DeleteContent$, DeleteImportJob$, DeleteKnowledgeBase$, DeleteQuickResponse$, GetAssistantAssociation$, GetAssistant$, GetContent$, GetContentSummary$, GetImportJob$, GetKnowledgeBase$, GetQuickResponse$, GetRecommendations$, GetSession$, ListAssistantAssociations$, ListAssistants$, ListContents$, ListImportJobs$, ListKnowledgeBases$, ListQuickResponses$, ListTagsForResource$, NotifyRecommendationsReceived$, QueryAssistant$, RemoveKnowledgeBaseTemplateUri$, SearchContent$, SearchQuickResponses$, SearchSessions$, StartContentUpload$, StartImportJob$, TagResource$, UntagResource$, UpdateContent$, UpdateKnowledgeBaseTemplateUri$, UpdateQuickResponse$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { WisdomServiceException } = require("./models/WisdomServiceException");
18
- exports.WisdomServiceException = WisdomServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultWisdomHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "wisdom",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultWisdomHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1480 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://wisdom-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://wisdom-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://wisdom.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://wisdom.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class WisdomServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, WisdomServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends WisdomServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "AccessDeniedException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
149
+ }
150
+ }
151
+ class ConflictException extends WisdomServiceException {
152
+ name = "ConflictException";
153
+ $fault = "client";
154
+ constructor(opts) {
155
+ super({
156
+ name: "ConflictException",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, ConflictException.prototype);
161
+ }
162
+ }
163
+ class ResourceNotFoundException extends WisdomServiceException {
164
+ name = "ResourceNotFoundException";
165
+ $fault = "client";
166
+ resourceName;
167
+ constructor(opts) {
168
+ super({
169
+ name: "ResourceNotFoundException",
170
+ $fault: "client",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
+ this.resourceName = opts.resourceName;
175
+ }
176
+ }
177
+ class ServiceQuotaExceededException extends WisdomServiceException {
178
+ name = "ServiceQuotaExceededException";
179
+ $fault = "client";
180
+ constructor(opts) {
181
+ super({
182
+ name: "ServiceQuotaExceededException",
183
+ $fault: "client",
184
+ ...opts,
185
+ });
186
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
187
+ }
188
+ }
189
+ class ValidationException extends WisdomServiceException {
190
+ name = "ValidationException";
191
+ $fault = "client";
192
+ constructor(opts) {
193
+ super({
194
+ name: "ValidationException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ Object.setPrototypeOf(this, ValidationException.prototype);
199
+ }
200
+ }
201
+ class RequestTimeoutException extends WisdomServiceException {
202
+ name = "RequestTimeoutException";
203
+ $fault = "client";
204
+ $retryable = {};
205
+ constructor(opts) {
206
+ super({
207
+ name: "RequestTimeoutException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, RequestTimeoutException.prototype);
212
+ }
213
+ }
214
+ class PreconditionFailedException extends WisdomServiceException {
215
+ name = "PreconditionFailedException";
216
+ $fault = "client";
217
+ constructor(opts) {
218
+ super({
219
+ name: "PreconditionFailedException",
220
+ $fault: "client",
221
+ ...opts,
222
+ });
223
+ Object.setPrototypeOf(this, PreconditionFailedException.prototype);
224
+ }
225
+ }
226
+ class TooManyTagsException extends WisdomServiceException {
227
+ name = "TooManyTagsException";
228
+ $fault = "client";
229
+ resourceName;
230
+ constructor(opts) {
231
+ super({
232
+ name: "TooManyTagsException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
237
+ this.resourceName = opts.resourceName;
238
+ }
239
+ }
240
+
241
+ const _AAD = "AssistantAssociationData";
242
+ const _AAID = "AssistantAssociationInputData";
243
+ const _AAOD = "AssistantAssociationOutputData";
244
+ const _AAS = "AssistantAssociationSummary";
245
+ const _AASL = "AssistantAssociationSummaryList";
246
+ const _AD = "AssistantData";
247
+ const _ADE = "AccessDeniedException";
248
+ const _AIC = "AppIntegrationsConfiguration";
249
+ const _AICs = "AssistantIntegrationConfiguration";
250
+ const _AL = "AssistantList";
251
+ const _AS = "AssistantSummary";
252
+ const _C = "Channel";
253
+ const _CA = "ContactAttributes";
254
+ const _CAA = "CreateAssistantAssociation";
255
+ const _CAAR = "CreateAssistantAssociationRequest";
256
+ const _CAARr = "CreateAssistantAssociationResponse";
257
+ const _CAK = "ContactAttributeKeys";
258
+ const _CAR = "CreateAssistantRequest";
259
+ const _CARr = "CreateAssistantResponse";
260
+ const _CAr = "CreateAssistant";
261
+ const _CC = "ConnectConfiguration";
262
+ const _CCR = "CreateContentRequest";
263
+ const _CCRr = "CreateContentResponse";
264
+ const _CCr = "CreateContent";
265
+ const _CD = "ContentData";
266
+ const _CE = "ConflictException";
267
+ const _CKB = "CreateKnowledgeBase";
268
+ const _CKBR = "CreateKnowledgeBaseRequest";
269
+ const _CKBRr = "CreateKnowledgeBaseResponse";
270
+ const _CQR = "CreateQuickResponse";
271
+ const _CQRR = "CreateQuickResponseRequest";
272
+ const _CQRRr = "CreateQuickResponseResponse";
273
+ const _CR = "ContentReference";
274
+ const _CS = "ContentSummary";
275
+ const _CSL = "ContentSummaryList";
276
+ const _CSR = "CreateSessionRequest";
277
+ const _CSRr = "CreateSessionResponse";
278
+ const _CSr = "CreateSession";
279
+ const _Ch = "Channels";
280
+ const _Co = "Configuration";
281
+ const _D = "Document";
282
+ const _DA = "DeleteAssistant";
283
+ const _DAA = "DeleteAssistantAssociation";
284
+ const _DAAR = "DeleteAssistantAssociationRequest";
285
+ const _DAARe = "DeleteAssistantAssociationResponse";
286
+ const _DAR = "DeleteAssistantRequest";
287
+ const _DARe = "DeleteAssistantResponse";
288
+ const _DC = "DeleteContent";
289
+ const _DCR = "DeleteContentRequest";
290
+ const _DCRe = "DeleteContentResponse";
291
+ const _DIJ = "DeleteImportJob";
292
+ const _DIJR = "DeleteImportJobRequest";
293
+ const _DIJRe = "DeleteImportJobResponse";
294
+ const _DKB = "DeleteKnowledgeBase";
295
+ const _DKBR = "DeleteKnowledgeBaseRequest";
296
+ const _DKBRe = "DeleteKnowledgeBaseResponse";
297
+ const _DQR = "DeleteQuickResponse";
298
+ const _DQRR = "DeleteQuickResponseRequest";
299
+ const _DQRRe = "DeleteQuickResponseResponse";
300
+ const _DT = "DocumentText";
301
+ const _ESC = "ExternalSourceConfiguration";
302
+ const _F = "Filter";
303
+ const _FL = "FilterList";
304
+ const _GA = "GetAssistant";
305
+ const _GAA = "GetAssistantAssociation";
306
+ const _GAAR = "GetAssistantAssociationRequest";
307
+ const _GAARe = "GetAssistantAssociationResponse";
308
+ const _GAR = "GetAssistantRequest";
309
+ const _GARe = "GetAssistantResponse";
310
+ const _GC = "GroupingCriteria";
311
+ const _GCR = "GetContentRequest";
312
+ const _GCRe = "GetContentResponse";
313
+ const _GCS = "GetContentSummary";
314
+ const _GCSR = "GetContentSummaryRequest";
315
+ const _GCSRe = "GetContentSummaryResponse";
316
+ const _GCe = "GetContent";
317
+ const _GCr = "GroupingConfiguration";
318
+ const _GIJ = "GetImportJob";
319
+ const _GIJR = "GetImportJobRequest";
320
+ const _GIJRe = "GetImportJobResponse";
321
+ const _GKB = "GetKnowledgeBase";
322
+ const _GKBR = "GetKnowledgeBaseRequest";
323
+ const _GKBRe = "GetKnowledgeBaseResponse";
324
+ const _GQR = "GetQuickResponse";
325
+ const _GQRR = "GetQuickResponseRequest";
326
+ const _GQRRe = "GetQuickResponseResponse";
327
+ const _GR = "GetRecommendations";
328
+ const _GRR = "GetRecommendationsRequest";
329
+ const _GRRe = "GetRecommendationsResponse";
330
+ const _GS = "GetSession";
331
+ const _GSR = "GetSessionRequest";
332
+ const _GSRe = "GetSessionResponse";
333
+ const _GV = "GroupingValue";
334
+ const _GVr = "GroupingValues";
335
+ const _H = "Highlight";
336
+ const _Hi = "Highlights";
337
+ const _IJD = "ImportJobData";
338
+ const _IJL = "ImportJobList";
339
+ const _IJS = "ImportJobSummary";
340
+ const _KBAD = "KnowledgeBaseAssociationData";
341
+ const _KBD = "KnowledgeBaseData";
342
+ const _KBL = "KnowledgeBaseList";
343
+ const _KBS = "KnowledgeBaseSummary";
344
+ const _LA = "ListAssistants";
345
+ const _LAA = "ListAssistantAssociations";
346
+ const _LAAR = "ListAssistantAssociationsRequest";
347
+ const _LAARi = "ListAssistantAssociationsResponse";
348
+ const _LAR = "ListAssistantsRequest";
349
+ const _LARi = "ListAssistantsResponse";
350
+ const _LC = "ListContents";
351
+ const _LCR = "ListContentsRequest";
352
+ const _LCRi = "ListContentsResponse";
353
+ const _LIJ = "ListImportJobs";
354
+ const _LIJR = "ListImportJobsRequest";
355
+ const _LIJRi = "ListImportJobsResponse";
356
+ const _LKB = "ListKnowledgeBases";
357
+ const _LKBR = "ListKnowledgeBasesRequest";
358
+ const _LKBRi = "ListKnowledgeBasesResponse";
359
+ const _LQR = "ListQuickResponses";
360
+ const _LQRR = "ListQuickResponsesRequest";
361
+ const _LQRRi = "ListQuickResponsesResponse";
362
+ const _LTFR = "ListTagsForResource";
363
+ const _LTFRR = "ListTagsForResourceRequest";
364
+ const _LTFRRi = "ListTagsForResourceResponse";
365
+ const _NRR = "NotifyRecommendationsReceived";
366
+ const _NRRE = "NotifyRecommendationsReceivedError";
367
+ const _NRREL = "NotifyRecommendationsReceivedErrorList";
368
+ const _NRRR = "NotifyRecommendationsReceivedRequest";
369
+ const _NRRRo = "NotifyRecommendationsReceivedResponse";
370
+ const _PFE = "PreconditionFailedException";
371
+ const _QA = "QueryAssistant";
372
+ const _QAR = "QueryAssistantRequest";
373
+ const _QARu = "QueryAssistantResponse";
374
+ const _QRC = "QuickResponseContent";
375
+ const _QRCP = "QuickResponseContentProvider";
376
+ const _QRCu = "QuickResponseContents";
377
+ const _QRD = "QuickResponseData";
378
+ const _QRDP = "QuickResponseDataProvider";
379
+ const _QRFF = "QuickResponseFilterField";
380
+ const _QRFFL = "QuickResponseFilterFieldList";
381
+ const _QRL = "QueryResultsList";
382
+ const _QROF = "QuickResponseOrderField";
383
+ const _QRQF = "QuickResponseQueryField";
384
+ const _QRQFL = "QuickResponseQueryFieldList";
385
+ const _QRS = "QuickResponseSummary";
386
+ const _QRSE = "QuickResponseSearchExpression";
387
+ const _QRSL = "QuickResponseSummaryList";
388
+ const _QRSRD = "QuickResponseSearchResultData";
389
+ const _QRSRL = "QuickResponseSearchResultsList";
390
+ const _QRTD = "QueryRecommendationTriggerData";
391
+ const _QT = "QueryText";
392
+ const _RC = "RenderingConfiguration";
393
+ const _RD = "RecommendationData";
394
+ const _RDe = "ResultData";
395
+ const _RKBTU = "RemoveKnowledgeBaseTemplateUri";
396
+ const _RKBTUR = "RemoveKnowledgeBaseTemplateUriRequest";
397
+ const _RKBTURe = "RemoveKnowledgeBaseTemplateUriResponse";
398
+ const _RL = "RecommendationList";
399
+ const _RNFE = "ResourceNotFoundException";
400
+ const _RT = "RecommendationTrigger";
401
+ const _RTD = "RecommendationTriggerData";
402
+ const _RTE = "RequestTimeoutException";
403
+ const _RTL = "RecommendationTriggerList";
404
+ const _SC = "SourceConfiguration";
405
+ const _SCR = "SearchContentRequest";
406
+ const _SCRe = "SearchContentResponse";
407
+ const _SCU = "StartContentUpload";
408
+ const _SCUR = "StartContentUploadRequest";
409
+ const _SCURt = "StartContentUploadResponse";
410
+ const _SCe = "SearchContent";
411
+ const _SD = "SessionData";
412
+ const _SE = "SearchExpression";
413
+ const _SIC = "SessionIntegrationConfiguration";
414
+ const _SIJ = "StartImportJob";
415
+ const _SIJR = "StartImportJobRequest";
416
+ const _SIJRt = "StartImportJobResponse";
417
+ const _SQEE = "ServiceQuotaExceededException";
418
+ const _SQR = "SearchQuickResponses";
419
+ const _SQRR = "SearchQuickResponsesRequest";
420
+ const _SQRRe = "SearchQuickResponsesResponse";
421
+ const _SS = "SensitiveString";
422
+ const _SSEC = "ServerSideEncryptionConfiguration";
423
+ const _SSR = "SearchSessionsRequest";
424
+ const _SSRe = "SearchSessionsResponse";
425
+ const _SSe = "SessionSummary";
426
+ const _SSea = "SearchSessions";
427
+ const _SSes = "SessionSummaries";
428
+ const _TMTE = "TooManyTagsException";
429
+ const _TR = "TagResource";
430
+ const _TRR = "TagResourceRequest";
431
+ const _TRRa = "TagResourceResponse";
432
+ const _U = "Url";
433
+ const _UC = "UpdateContent";
434
+ const _UCR = "UpdateContentRequest";
435
+ const _UCRp = "UpdateContentResponse";
436
+ const _UKBTU = "UpdateKnowledgeBaseTemplateUri";
437
+ const _UKBTUR = "UpdateKnowledgeBaseTemplateUriRequest";
438
+ const _UKBTURp = "UpdateKnowledgeBaseTemplateUriResponse";
439
+ const _UQR = "UpdateQuickResponse";
440
+ const _UQRR = "UpdateQuickResponseRequest";
441
+ const _UQRRp = "UpdateQuickResponseResponse";
442
+ const _UR = "UntagResource";
443
+ const _URR = "UntagResourceRequest";
444
+ const _URRn = "UntagResourceResponse";
445
+ const _VE = "ValidationException";
446
+ const _a = "association";
447
+ const _aA = "assistantArn";
448
+ const _aAA = "assistantAssociationArn";
449
+ const _aAI = "assistantAssociationId";
450
+ const _aAS = "assistantAssociationSummaries";
451
+ const _aAs = "assistantAssociation";
452
+ const _aD = "associationData";
453
+ const _aF = "allowFuzziness";
454
+ const _aI = "assistantId";
455
+ const _aIA = "appIntegrationArn";
456
+ const _aIp = "appIntegrations";
457
+ const _aIt = "attributesInterpolated";
458
+ const _aNI = "attributesNotInterpolated";
459
+ const _aS = "assistantSummaries";
460
+ const _aT = "associationType";
461
+ const _as = "assistant";
462
+ const _at = "attributes";
463
+ const _bOI = "beginOffsetInclusive";
464
+ const _c = "client";
465
+ const _cA = "contentArn";
466
+ const _cC = "connectConfiguration";
467
+ const _cI = "contentId";
468
+ const _cR = "contentReference";
469
+ const _cS = "contentSummary";
470
+ const _cSo = "contentSummaries";
471
+ const _cT = "contentType";
472
+ const _cTl = "clientToken";
473
+ const _cTr = "createdTime";
474
+ const _ch = "channels";
475
+ const _co = "content";
476
+ const _con = "configuration";
477
+ const _cont = "contents";
478
+ const _cr = "criteria";
479
+ const _d = "description";
480
+ const _da = "data";
481
+ const _do = "document";
482
+ const _e = "error";
483
+ const _eOE = "endOffsetExclusive";
484
+ const _eSC = "externalSourceConfiguration";
485
+ const _er = "errors";
486
+ const _ex = "excerpt";
487
+ const _f = "field";
488
+ const _fRR = "failedRecordReport";
489
+ const _fi = "filters";
490
+ const _gC = "groupingConfiguration";
491
+ const _h = "highlights";
492
+ const _hE = "httpError";
493
+ const _hQ = "httpQuery";
494
+ const _hTI = "headersToInclude";
495
+ const _ht = "http";
496
+ const _i = "id";
497
+ const _iA = "isActive";
498
+ const _iC = "integrationConfiguration";
499
+ const _iI = "instanceId";
500
+ const _iJ = "importJob";
501
+ const _iJI = "importJobId";
502
+ const _iJS = "importJobSummaries";
503
+ const _iJT = "importJobType";
504
+ const _iNE = "includeNoExistence";
505
+ const _kB = "knowledgeBase";
506
+ const _kBA = "knowledgeBaseArn";
507
+ const _kBAn = "knowledgeBaseAssociation";
508
+ const _kBI = "knowledgeBaseId";
509
+ const _kBS = "knowledgeBaseSummaries";
510
+ const _kBT = "knowledgeBaseType";
511
+ const _kKI = "kmsKeyId";
512
+ const _l = "language";
513
+ const _lCMT = "lastContentModificationTime";
514
+ const _lMB = "lastModifiedBy";
515
+ const _lMT = "lastModifiedTime";
516
+ const _lOU = "linkOutUri";
517
+ const _m = "message";
518
+ const _mR = "maxResults";
519
+ const _ma = "markdown";
520
+ const _me = "metadata";
521
+ const _n = "name";
522
+ const _nT = "nextToken";
523
+ const _o = "operator";
524
+ const _oF = "objectFields";
525
+ const _oLOU = "overrideLinkOutUri";
526
+ const _oOF = "orderOnField";
527
+ const _or = "order";
528
+ const _p = "priority";
529
+ const _pT = "plainText";
530
+ const _pUTTL = "presignedUrlTimeToLive";
531
+ const _q = "queries";
532
+ const _qR = "quickResponse";
533
+ const _qRA = "quickResponseArn";
534
+ const _qRI = "quickResponseId";
535
+ const _qRS = "quickResponseSummaries";
536
+ const _qT = "queryText";
537
+ const _qu = "query";
538
+ const _r = "recommendations";
539
+ const _rA = "resourceArn";
540
+ const _rC = "renderingConfiguration";
541
+ const _rD = "removeDescription";
542
+ const _rGC = "removeGroupingConfiguration";
543
+ const _rI = "revisionId";
544
+ const _rIe = "recommendationId";
545
+ const _rIec = "recommendationIds";
546
+ const _rIes = "resultId";
547
+ const _rL = "relevanceLevel";
548
+ const _rN = "resourceName";
549
+ const _rOLOU = "removeOverrideLinkOutUri";
550
+ const _rS = "relevanceScore";
551
+ const _rSK = "removeShortcutKey";
552
+ const _re = "results";
553
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.wisdom";
554
+ const _sA = "sessionArn";
555
+ const _sC = "sourceConfiguration";
556
+ const _sE = "searchExpression";
557
+ const _sI = "sessionId";
558
+ const _sK = "shortcutKey";
559
+ const _sS = "sessionSummaries";
560
+ const _sSEC = "serverSideEncryptionConfiguration";
561
+ const _se = "session";
562
+ const _so = "source";
563
+ const _st = "status";
564
+ const _t = "tags";
565
+ const _tIA = "topicIntegrationArn";
566
+ const _tK = "tagKeys";
567
+ const _tU = "templateUri";
568
+ const _te = "text";
569
+ const _ti = "title";
570
+ const _tr = "triggers";
571
+ const _ty = "type";
572
+ const _u = "url";
573
+ const _uE = "urlExpiry";
574
+ const _uI = "uploadId";
575
+ const _v = "value";
576
+ const _va = "values";
577
+ const _wTS = "waitTimeSeconds";
578
+ const n0 = "com.amazonaws.wisdom";
579
+ const _s_registry = TypeRegistry.for(_s);
580
+ var WisdomServiceException$ = [-3, _s, "WisdomServiceException", 0, [], []];
581
+ _s_registry.registerError(WisdomServiceException$, WisdomServiceException);
582
+ const n0_registry = TypeRegistry.for(n0);
583
+ var AccessDeniedException$ = [-3, n0, _ADE,
584
+ { [_e]: _c, [_hE]: 403 },
585
+ [_m],
586
+ [0]
587
+ ];
588
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
589
+ var ConflictException$ = [-3, n0, _CE,
590
+ { [_e]: _c, [_hE]: 409 },
591
+ [_m],
592
+ [0]
593
+ ];
594
+ n0_registry.registerError(ConflictException$, ConflictException);
595
+ var PreconditionFailedException$ = [-3, n0, _PFE,
596
+ { [_e]: _c, [_hE]: 412 },
597
+ [_m],
598
+ [0]
599
+ ];
600
+ n0_registry.registerError(PreconditionFailedException$, PreconditionFailedException);
601
+ var RequestTimeoutException$ = [-3, n0, _RTE,
602
+ { [_e]: _c, [_hE]: 408 },
603
+ [_m],
604
+ [0]
605
+ ];
606
+ n0_registry.registerError(RequestTimeoutException$, RequestTimeoutException);
607
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
608
+ { [_e]: _c, [_hE]: 404 },
609
+ [_m, _rN],
610
+ [0, 0]
611
+ ];
612
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
613
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
614
+ { [_e]: _c, [_hE]: 402 },
615
+ [_m],
616
+ [0]
617
+ ];
618
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
619
+ var TooManyTagsException$ = [-3, n0, _TMTE,
620
+ { [_e]: _c, [_hE]: 400 },
621
+ [_m, _rN],
622
+ [0, 0]
623
+ ];
624
+ n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
625
+ var ValidationException$ = [-3, n0, _VE,
626
+ { [_e]: _c, [_hE]: 400 },
627
+ [_m],
628
+ [0]
629
+ ];
630
+ n0_registry.registerError(ValidationException$, ValidationException);
631
+ const errorTypeRegistries = [
632
+ _s_registry,
633
+ n0_registry,
634
+ ];
635
+ var Channel = [0, n0, _C, 8, 0];
636
+ var GroupingCriteria = [0, n0, _GC, 8, 0];
637
+ var GroupingValue = [0, n0, _GV, 8, 0];
638
+ var QueryText = [0, n0, _QT, 8, 0];
639
+ var QuickResponseContent = [0, n0, _QRC, 8, 0];
640
+ var SensitiveString = [0, n0, _SS, 8, 0];
641
+ var Url = [0, n0, _U, 8, 0];
642
+ var AppIntegrationsConfiguration$ = [3, n0, _AIC,
643
+ 0,
644
+ [_aIA, _oF],
645
+ [0, 64 | 0], 1
646
+ ];
647
+ var AssistantAssociationData$ = [3, n0, _AAD,
648
+ 0,
649
+ [_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
650
+ [0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0], 6
651
+ ];
652
+ var AssistantAssociationSummary$ = [3, n0, _AAS,
653
+ 0,
654
+ [_aAI, _aAA, _aI, _aA, _aT, _aD, _t],
655
+ [0, 0, 0, 0, 0, () => AssistantAssociationOutputData$, 128 | 0], 6
656
+ ];
657
+ var AssistantData$ = [3, n0, _AD,
658
+ 0,
659
+ [_aI, _aA, _n, _ty, _st, _d, _t, _sSEC, _iC],
660
+ [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
661
+ ];
662
+ var AssistantIntegrationConfiguration$ = [3, n0, _AICs,
663
+ 0,
664
+ [_tIA],
665
+ [0]
666
+ ];
667
+ var AssistantSummary$ = [3, n0, _AS,
668
+ 0,
669
+ [_aI, _aA, _n, _ty, _st, _d, _t, _sSEC, _iC],
670
+ [0, 0, 0, 0, 0, 0, 128 | 0, () => ServerSideEncryptionConfiguration$, () => AssistantIntegrationConfiguration$], 5
671
+ ];
672
+ var ConnectConfiguration$ = [3, n0, _CC,
673
+ 0,
674
+ [_iI],
675
+ [0]
676
+ ];
677
+ var ContentData$ = [3, n0, _CD,
678
+ 0,
679
+ [_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _st, _me, _u, _uE, _t, _lOU],
680
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, [() => Url, 0], 7, 128 | 0, 0], 12
681
+ ];
682
+ var ContentReference$ = [3, n0, _CR,
683
+ 0,
684
+ [_kBA, _kBI, _cA, _cI],
685
+ [0, 0, 0, 0]
686
+ ];
687
+ var ContentSummary$ = [3, n0, _CS,
688
+ 0,
689
+ [_cA, _cI, _kBA, _kBI, _n, _rI, _ti, _cT, _st, _me, _t],
690
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0], 10
691
+ ];
692
+ var CreateAssistantAssociationRequest$ = [3, n0, _CAAR,
693
+ 0,
694
+ [_aI, _aT, _a, _cTl, _t],
695
+ [[0, 1], 0, () => AssistantAssociationInputData$, [0, 4], 128 | 0], 3
696
+ ];
697
+ var CreateAssistantAssociationResponse$ = [3, n0, _CAARr,
698
+ 0,
699
+ [_aAs],
700
+ [() => AssistantAssociationData$]
701
+ ];
702
+ var CreateAssistantRequest$ = [3, n0, _CAR,
703
+ 0,
704
+ [_n, _ty, _cTl, _d, _t, _sSEC],
705
+ [0, 0, [0, 4], 0, 128 | 0, () => ServerSideEncryptionConfiguration$], 2
706
+ ];
707
+ var CreateAssistantResponse$ = [3, n0, _CARr,
708
+ 0,
709
+ [_as],
710
+ [() => AssistantData$]
711
+ ];
712
+ var CreateContentRequest$ = [3, n0, _CCR,
713
+ 0,
714
+ [_kBI, _n, _uI, _ti, _oLOU, _me, _cTl, _t],
715
+ [[0, 1], 0, 0, 0, 0, 128 | 0, [0, 4], 128 | 0], 3
716
+ ];
717
+ var CreateContentResponse$ = [3, n0, _CCRr,
718
+ 0,
719
+ [_co],
720
+ [[() => ContentData$, 0]]
721
+ ];
722
+ var CreateKnowledgeBaseRequest$ = [3, n0, _CKBR,
723
+ 0,
724
+ [_n, _kBT, _cTl, _sC, _rC, _sSEC, _d, _t],
725
+ [0, 0, [0, 4], () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 2
726
+ ];
727
+ var CreateKnowledgeBaseResponse$ = [3, n0, _CKBRr,
728
+ 0,
729
+ [_kB],
730
+ [() => KnowledgeBaseData$]
731
+ ];
732
+ var CreateQuickResponseRequest$ = [3, n0, _CQRR,
733
+ 0,
734
+ [_kBI, _n, _co, _cT, _gC, _d, _sK, _iA, _ch, _l, _cTl, _t],
735
+ [[0, 1], 0, [() => QuickResponseDataProvider$, 0], 0, [() => GroupingConfiguration$, 0], 0, 0, 2, [() => Channels, 0], 0, [0, 4], 128 | 0], 3
736
+ ];
737
+ var CreateQuickResponseResponse$ = [3, n0, _CQRRr,
738
+ 0,
739
+ [_qR],
740
+ [[() => QuickResponseData$, 0]]
741
+ ];
742
+ var CreateSessionRequest$ = [3, n0, _CSR,
743
+ 0,
744
+ [_aI, _n, _cTl, _d, _t],
745
+ [[0, 1], 0, [0, 4], 0, 128 | 0], 2
746
+ ];
747
+ var CreateSessionResponse$ = [3, n0, _CSRr,
748
+ 0,
749
+ [_se],
750
+ [() => SessionData$]
751
+ ];
752
+ var DeleteAssistantAssociationRequest$ = [3, n0, _DAAR,
753
+ 0,
754
+ [_aAI, _aI],
755
+ [[0, 1], [0, 1]], 2
756
+ ];
757
+ var DeleteAssistantAssociationResponse$ = [3, n0, _DAARe,
758
+ 0,
759
+ [],
760
+ []
761
+ ];
762
+ var DeleteAssistantRequest$ = [3, n0, _DAR,
763
+ 0,
764
+ [_aI],
765
+ [[0, 1]], 1
766
+ ];
767
+ var DeleteAssistantResponse$ = [3, n0, _DARe,
768
+ 0,
769
+ [],
770
+ []
771
+ ];
772
+ var DeleteContentRequest$ = [3, n0, _DCR,
773
+ 0,
774
+ [_kBI, _cI],
775
+ [[0, 1], [0, 1]], 2
776
+ ];
777
+ var DeleteContentResponse$ = [3, n0, _DCRe,
778
+ 0,
779
+ [],
780
+ []
781
+ ];
782
+ var DeleteImportJobRequest$ = [3, n0, _DIJR,
783
+ 0,
784
+ [_kBI, _iJI],
785
+ [[0, 1], [0, 1]], 2
786
+ ];
787
+ var DeleteImportJobResponse$ = [3, n0, _DIJRe,
788
+ 0,
789
+ [],
790
+ []
791
+ ];
792
+ var DeleteKnowledgeBaseRequest$ = [3, n0, _DKBR,
793
+ 0,
794
+ [_kBI],
795
+ [[0, 1]], 1
796
+ ];
797
+ var DeleteKnowledgeBaseResponse$ = [3, n0, _DKBRe,
798
+ 0,
799
+ [],
800
+ []
801
+ ];
802
+ var DeleteQuickResponseRequest$ = [3, n0, _DQRR,
803
+ 0,
804
+ [_kBI, _qRI],
805
+ [[0, 1], [0, 1]], 2
806
+ ];
807
+ var DeleteQuickResponseResponse$ = [3, n0, _DQRRe,
808
+ 0,
809
+ [],
810
+ []
811
+ ];
812
+ var Document$ = [3, n0, _D,
813
+ 0,
814
+ [_cR, _ti, _ex],
815
+ [() => ContentReference$, [() => DocumentText$, 0], [() => DocumentText$, 0]], 1
816
+ ];
817
+ var DocumentText$ = [3, n0, _DT,
818
+ 0,
819
+ [_te, _h],
820
+ [[() => SensitiveString, 0], () => Highlights]
821
+ ];
822
+ var ExternalSourceConfiguration$ = [3, n0, _ESC,
823
+ 0,
824
+ [_so, _con],
825
+ [0, () => Configuration$], 2
826
+ ];
827
+ var Filter$ = [3, n0, _F,
828
+ 0,
829
+ [_f, _o, _v],
830
+ [0, 0, 0], 3
831
+ ];
832
+ var GetAssistantAssociationRequest$ = [3, n0, _GAAR,
833
+ 0,
834
+ [_aAI, _aI],
835
+ [[0, 1], [0, 1]], 2
836
+ ];
837
+ var GetAssistantAssociationResponse$ = [3, n0, _GAARe,
838
+ 0,
839
+ [_aAs],
840
+ [() => AssistantAssociationData$]
841
+ ];
842
+ var GetAssistantRequest$ = [3, n0, _GAR,
843
+ 0,
844
+ [_aI],
845
+ [[0, 1]], 1
846
+ ];
847
+ var GetAssistantResponse$ = [3, n0, _GARe,
848
+ 0,
849
+ [_as],
850
+ [() => AssistantData$]
851
+ ];
852
+ var GetContentRequest$ = [3, n0, _GCR,
853
+ 0,
854
+ [_cI, _kBI],
855
+ [[0, 1], [0, 1]], 2
856
+ ];
857
+ var GetContentResponse$ = [3, n0, _GCRe,
858
+ 0,
859
+ [_co],
860
+ [[() => ContentData$, 0]]
861
+ ];
862
+ var GetContentSummaryRequest$ = [3, n0, _GCSR,
863
+ 0,
864
+ [_cI, _kBI],
865
+ [[0, 1], [0, 1]], 2
866
+ ];
867
+ var GetContentSummaryResponse$ = [3, n0, _GCSRe,
868
+ 0,
869
+ [_cS],
870
+ [() => ContentSummary$]
871
+ ];
872
+ var GetImportJobRequest$ = [3, n0, _GIJR,
873
+ 0,
874
+ [_iJI, _kBI],
875
+ [[0, 1], [0, 1]], 2
876
+ ];
877
+ var GetImportJobResponse$ = [3, n0, _GIJRe,
878
+ 0,
879
+ [_iJ],
880
+ [[() => ImportJobData$, 0]]
881
+ ];
882
+ var GetKnowledgeBaseRequest$ = [3, n0, _GKBR,
883
+ 0,
884
+ [_kBI],
885
+ [[0, 1]], 1
886
+ ];
887
+ var GetKnowledgeBaseResponse$ = [3, n0, _GKBRe,
888
+ 0,
889
+ [_kB],
890
+ [() => KnowledgeBaseData$]
891
+ ];
892
+ var GetQuickResponseRequest$ = [3, n0, _GQRR,
893
+ 0,
894
+ [_qRI, _kBI],
895
+ [[0, 1], [0, 1]], 2
896
+ ];
897
+ var GetQuickResponseResponse$ = [3, n0, _GQRRe,
898
+ 0,
899
+ [_qR],
900
+ [[() => QuickResponseData$, 0]]
901
+ ];
902
+ var GetRecommendationsRequest$ = [3, n0, _GRR,
903
+ 0,
904
+ [_aI, _sI, _mR, _wTS],
905
+ [[0, 1], [0, 1], [1, { [_hQ]: _mR }], [1, { [_hQ]: _wTS }]], 2
906
+ ];
907
+ var GetRecommendationsResponse$ = [3, n0, _GRRe,
908
+ 0,
909
+ [_r, _tr],
910
+ [[() => RecommendationList, 0], [() => RecommendationTriggerList, 0]], 1
911
+ ];
912
+ var GetSessionRequest$ = [3, n0, _GSR,
913
+ 0,
914
+ [_aI, _sI],
915
+ [[0, 1], [0, 1]], 2
916
+ ];
917
+ var GetSessionResponse$ = [3, n0, _GSRe,
918
+ 0,
919
+ [_se],
920
+ [() => SessionData$]
921
+ ];
922
+ var GroupingConfiguration$ = [3, n0, _GCr,
923
+ 0,
924
+ [_cr, _va],
925
+ [[() => GroupingCriteria, 0], [() => GroupingValues, 0]]
926
+ ];
927
+ var Highlight$ = [3, n0, _H,
928
+ 0,
929
+ [_bOI, _eOE],
930
+ [1, 1]
931
+ ];
932
+ var ImportJobData$ = [3, n0, _IJD,
933
+ 0,
934
+ [_iJI, _kBI, _uI, _kBA, _iJT, _st, _u, _uE, _cTr, _lMT, _fRR, _me, _eSC],
935
+ [0, 0, 0, 0, 0, 0, [() => Url, 0], 7, 7, 7, [() => Url, 0], 128 | 0, () => ExternalSourceConfiguration$], 10
936
+ ];
937
+ var ImportJobSummary$ = [3, n0, _IJS,
938
+ 0,
939
+ [_iJI, _kBI, _uI, _kBA, _iJT, _st, _cTr, _lMT, _me, _eSC],
940
+ [0, 0, 0, 0, 0, 0, 7, 7, 128 | 0, () => ExternalSourceConfiguration$], 8
941
+ ];
942
+ var KnowledgeBaseAssociationData$ = [3, n0, _KBAD,
943
+ 0,
944
+ [_kBI, _kBA],
945
+ [0, 0]
946
+ ];
947
+ var KnowledgeBaseData$ = [3, n0, _KBD,
948
+ 0,
949
+ [_kBI, _kBA, _n, _kBT, _st, _lCMT, _sC, _rC, _sSEC, _d, _t],
950
+ [0, 0, 0, 0, 0, 7, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
951
+ ];
952
+ var KnowledgeBaseSummary$ = [3, n0, _KBS,
953
+ 0,
954
+ [_kBI, _kBA, _n, _kBT, _st, _sC, _rC, _sSEC, _d, _t],
955
+ [0, 0, 0, 0, 0, () => SourceConfiguration$, () => RenderingConfiguration$, () => ServerSideEncryptionConfiguration$, 0, 128 | 0], 5
956
+ ];
957
+ var ListAssistantAssociationsRequest$ = [3, n0, _LAAR,
958
+ 0,
959
+ [_aI, _nT, _mR],
960
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
961
+ ];
962
+ var ListAssistantAssociationsResponse$ = [3, n0, _LAARi,
963
+ 0,
964
+ [_aAS, _nT],
965
+ [() => AssistantAssociationSummaryList, 0], 1
966
+ ];
967
+ var ListAssistantsRequest$ = [3, n0, _LAR,
968
+ 0,
969
+ [_nT, _mR],
970
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
971
+ ];
972
+ var ListAssistantsResponse$ = [3, n0, _LARi,
973
+ 0,
974
+ [_aS, _nT],
975
+ [() => AssistantList, 0], 1
976
+ ];
977
+ var ListContentsRequest$ = [3, n0, _LCR,
978
+ 0,
979
+ [_kBI, _nT, _mR],
980
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
981
+ ];
982
+ var ListContentsResponse$ = [3, n0, _LCRi,
983
+ 0,
984
+ [_cSo, _nT],
985
+ [() => ContentSummaryList, 0], 1
986
+ ];
987
+ var ListImportJobsRequest$ = [3, n0, _LIJR,
988
+ 0,
989
+ [_kBI, _nT, _mR],
990
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
991
+ ];
992
+ var ListImportJobsResponse$ = [3, n0, _LIJRi,
993
+ 0,
994
+ [_iJS, _nT],
995
+ [() => ImportJobList, 0], 1
996
+ ];
997
+ var ListKnowledgeBasesRequest$ = [3, n0, _LKBR,
998
+ 0,
999
+ [_nT, _mR],
1000
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
1001
+ ];
1002
+ var ListKnowledgeBasesResponse$ = [3, n0, _LKBRi,
1003
+ 0,
1004
+ [_kBS, _nT],
1005
+ [() => KnowledgeBaseList, 0], 1
1006
+ ];
1007
+ var ListQuickResponsesRequest$ = [3, n0, _LQRR,
1008
+ 0,
1009
+ [_kBI, _nT, _mR],
1010
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1011
+ ];
1012
+ var ListQuickResponsesResponse$ = [3, n0, _LQRRi,
1013
+ 0,
1014
+ [_qRS, _nT],
1015
+ [[() => QuickResponseSummaryList, 0], 0], 1
1016
+ ];
1017
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1018
+ 0,
1019
+ [_rA],
1020
+ [[0, 1]], 1
1021
+ ];
1022
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1023
+ 0,
1024
+ [_t],
1025
+ [128 | 0]
1026
+ ];
1027
+ var NotifyRecommendationsReceivedError$ = [3, n0, _NRRE,
1028
+ 0,
1029
+ [_rIe, _m],
1030
+ [0, 0]
1031
+ ];
1032
+ var NotifyRecommendationsReceivedRequest$ = [3, n0, _NRRR,
1033
+ 0,
1034
+ [_aI, _sI, _rIec],
1035
+ [[0, 1], [0, 1], 64 | 0], 3
1036
+ ];
1037
+ var NotifyRecommendationsReceivedResponse$ = [3, n0, _NRRRo,
1038
+ 0,
1039
+ [_rIec, _er],
1040
+ [64 | 0, () => NotifyRecommendationsReceivedErrorList]
1041
+ ];
1042
+ var QueryAssistantRequest$ = [3, n0, _QAR,
1043
+ 0,
1044
+ [_aI, _qT, _nT, _mR],
1045
+ [[0, 1], [() => QueryText, 0], 0, 1], 2
1046
+ ];
1047
+ var QueryAssistantResponse$ = [3, n0, _QARu,
1048
+ 0,
1049
+ [_re, _nT],
1050
+ [[() => QueryResultsList, 0], 0], 1
1051
+ ];
1052
+ var QueryRecommendationTriggerData$ = [3, n0, _QRTD,
1053
+ 0,
1054
+ [_te],
1055
+ [[() => QueryText, 0]]
1056
+ ];
1057
+ var QuickResponseContents$ = [3, n0, _QRCu,
1058
+ 0,
1059
+ [_pT, _ma],
1060
+ [[() => QuickResponseContentProvider$, 0], [() => QuickResponseContentProvider$, 0]]
1061
+ ];
1062
+ var QuickResponseData$ = [3, n0, _QRD,
1063
+ 0,
1064
+ [_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cTr, _lMT, _cont, _d, _gC, _sK, _lMB, _iA, _ch, _l, _t],
1065
+ [0, 0, 0, 0, 0, 0, 0, 7, 7, [() => QuickResponseContents$, 0], 0, [() => GroupingConfiguration$, 0], 0, 0, 2, [() => Channels, 0], 0, 128 | 0], 9
1066
+ ];
1067
+ var QuickResponseFilterField$ = [3, n0, _QRFF,
1068
+ 0,
1069
+ [_n, _o, _va, _iNE],
1070
+ [0, 0, 64 | 0, 2], 2
1071
+ ];
1072
+ var QuickResponseOrderField$ = [3, n0, _QROF,
1073
+ 0,
1074
+ [_n, _or],
1075
+ [0, 0], 1
1076
+ ];
1077
+ var QuickResponseQueryField$ = [3, n0, _QRQF,
1078
+ 0,
1079
+ [_n, _va, _o, _aF, _p],
1080
+ [0, 64 | 0, 0, 2, 0], 3
1081
+ ];
1082
+ var QuickResponseSearchExpression$ = [3, n0, _QRSE,
1083
+ 0,
1084
+ [_q, _fi, _oOF],
1085
+ [() => QuickResponseQueryFieldList, () => QuickResponseFilterFieldList, () => QuickResponseOrderField$]
1086
+ ];
1087
+ var QuickResponseSearchResultData$ = [3, n0, _QRSRD,
1088
+ 0,
1089
+ [_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cont, _cTr, _lMT, _iA, _d, _gC, _sK, _lMB, _ch, _l, _aNI, _aIt, _t],
1090
+ [0, 0, 0, 0, 0, 0, 0, [() => QuickResponseContents$, 0], 7, 7, 2, 0, [() => GroupingConfiguration$, 0], 0, 0, [() => Channels, 0], 0, [() => ContactAttributeKeys, 0], [() => ContactAttributeKeys, 0], 128 | 0], 11
1091
+ ];
1092
+ var QuickResponseSummary$ = [3, n0, _QRS,
1093
+ 0,
1094
+ [_qRA, _qRI, _kBA, _kBI, _n, _cT, _st, _cTr, _lMT, _d, _lMB, _iA, _ch, _t],
1095
+ [0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 2, [() => Channels, 0], 128 | 0], 9
1096
+ ];
1097
+ var RecommendationData$ = [3, n0, _RD,
1098
+ 0,
1099
+ [_rIe, _do, _rS, _rL, _ty],
1100
+ [0, [() => Document$, 0], 1, 0, 0], 2
1101
+ ];
1102
+ var RecommendationTrigger$ = [3, n0, _RT,
1103
+ 0,
1104
+ [_i, _ty, _so, _da, _rIec],
1105
+ [0, 0, 0, [() => RecommendationTriggerData$, 0], 64 | 0], 5
1106
+ ];
1107
+ var RemoveKnowledgeBaseTemplateUriRequest$ = [3, n0, _RKBTUR,
1108
+ 0,
1109
+ [_kBI],
1110
+ [[0, 1]], 1
1111
+ ];
1112
+ var RemoveKnowledgeBaseTemplateUriResponse$ = [3, n0, _RKBTURe,
1113
+ 0,
1114
+ [],
1115
+ []
1116
+ ];
1117
+ var RenderingConfiguration$ = [3, n0, _RC,
1118
+ 0,
1119
+ [_tU],
1120
+ [0]
1121
+ ];
1122
+ var ResultData$ = [3, n0, _RDe,
1123
+ 0,
1124
+ [_rIes, _do, _rS],
1125
+ [0, [() => Document$, 0], 1], 2
1126
+ ];
1127
+ var SearchContentRequest$ = [3, n0, _SCR,
1128
+ 0,
1129
+ [_kBI, _sE, _nT, _mR],
1130
+ [[0, 1], () => SearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1131
+ ];
1132
+ var SearchContentResponse$ = [3, n0, _SCRe,
1133
+ 0,
1134
+ [_cSo, _nT],
1135
+ [() => ContentSummaryList, 0], 1
1136
+ ];
1137
+ var SearchExpression$ = [3, n0, _SE,
1138
+ 0,
1139
+ [_fi],
1140
+ [() => FilterList], 1
1141
+ ];
1142
+ var SearchQuickResponsesRequest$ = [3, n0, _SQRR,
1143
+ 0,
1144
+ [_kBI, _sE, _nT, _mR, _at],
1145
+ [[0, 1], () => QuickResponseSearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [() => ContactAttributes, 0]], 2
1146
+ ];
1147
+ var SearchQuickResponsesResponse$ = [3, n0, _SQRRe,
1148
+ 0,
1149
+ [_re, _nT],
1150
+ [[() => QuickResponseSearchResultsList, 0], 0], 1
1151
+ ];
1152
+ var SearchSessionsRequest$ = [3, n0, _SSR,
1153
+ 0,
1154
+ [_aI, _sE, _nT, _mR],
1155
+ [[0, 1], () => SearchExpression$, [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1156
+ ];
1157
+ var SearchSessionsResponse$ = [3, n0, _SSRe,
1158
+ 0,
1159
+ [_sS, _nT],
1160
+ [() => SessionSummaries, 0], 1
1161
+ ];
1162
+ var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
1163
+ 0,
1164
+ [_kKI],
1165
+ [0]
1166
+ ];
1167
+ var SessionData$ = [3, n0, _SD,
1168
+ 0,
1169
+ [_sA, _sI, _n, _d, _t, _iC],
1170
+ [0, 0, 0, 0, 128 | 0, () => SessionIntegrationConfiguration$], 3
1171
+ ];
1172
+ var SessionIntegrationConfiguration$ = [3, n0, _SIC,
1173
+ 0,
1174
+ [_tIA],
1175
+ [0]
1176
+ ];
1177
+ var SessionSummary$ = [3, n0, _SSe,
1178
+ 0,
1179
+ [_sI, _sA, _aI, _aA],
1180
+ [0, 0, 0, 0], 4
1181
+ ];
1182
+ var StartContentUploadRequest$ = [3, n0, _SCUR,
1183
+ 0,
1184
+ [_kBI, _cT, _pUTTL],
1185
+ [[0, 1], 0, 1], 2
1186
+ ];
1187
+ var StartContentUploadResponse$ = [3, n0, _SCURt,
1188
+ 0,
1189
+ [_uI, _u, _uE, _hTI],
1190
+ [0, [() => Url, 0], 7, 128 | 0], 4
1191
+ ];
1192
+ var StartImportJobRequest$ = [3, n0, _SIJR,
1193
+ 0,
1194
+ [_kBI, _iJT, _uI, _cTl, _me, _eSC],
1195
+ [[0, 1], 0, 0, [0, 4], 128 | 0, () => ExternalSourceConfiguration$], 3
1196
+ ];
1197
+ var StartImportJobResponse$ = [3, n0, _SIJRt,
1198
+ 0,
1199
+ [_iJ],
1200
+ [[() => ImportJobData$, 0]]
1201
+ ];
1202
+ var TagResourceRequest$ = [3, n0, _TRR,
1203
+ 0,
1204
+ [_rA, _t],
1205
+ [[0, 1], 128 | 0], 2
1206
+ ];
1207
+ var TagResourceResponse$ = [3, n0, _TRRa,
1208
+ 0,
1209
+ [],
1210
+ []
1211
+ ];
1212
+ var UntagResourceRequest$ = [3, n0, _URR,
1213
+ 0,
1214
+ [_rA, _tK],
1215
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1216
+ ];
1217
+ var UntagResourceResponse$ = [3, n0, _URRn,
1218
+ 0,
1219
+ [],
1220
+ []
1221
+ ];
1222
+ var UpdateContentRequest$ = [3, n0, _UCR,
1223
+ 0,
1224
+ [_kBI, _cI, _rI, _ti, _oLOU, _rOLOU, _me, _uI],
1225
+ [[0, 1], [0, 1], 0, 0, 0, 2, 128 | 0, 0], 2
1226
+ ];
1227
+ var UpdateContentResponse$ = [3, n0, _UCRp,
1228
+ 0,
1229
+ [_co],
1230
+ [[() => ContentData$, 0]]
1231
+ ];
1232
+ var UpdateKnowledgeBaseTemplateUriRequest$ = [3, n0, _UKBTUR,
1233
+ 0,
1234
+ [_kBI, _tU],
1235
+ [[0, 1], 0], 2
1236
+ ];
1237
+ var UpdateKnowledgeBaseTemplateUriResponse$ = [3, n0, _UKBTURp,
1238
+ 0,
1239
+ [_kB],
1240
+ [() => KnowledgeBaseData$]
1241
+ ];
1242
+ var UpdateQuickResponseRequest$ = [3, n0, _UQRR,
1243
+ 0,
1244
+ [_kBI, _qRI, _n, _co, _cT, _gC, _rGC, _d, _rD, _sK, _rSK, _iA, _ch, _l],
1245
+ [[0, 1], [0, 1], 0, [() => QuickResponseDataProvider$, 0], 0, [() => GroupingConfiguration$, 0], 2, 0, 2, 0, 2, 2, [() => Channels, 0], 0], 2
1246
+ ];
1247
+ var UpdateQuickResponseResponse$ = [3, n0, _UQRRp,
1248
+ 0,
1249
+ [_qR],
1250
+ [[() => QuickResponseData$, 0]]
1251
+ ];
1252
+ var AssistantAssociationSummaryList = [1, n0, _AASL,
1253
+ 0, () => AssistantAssociationSummary$
1254
+ ];
1255
+ var AssistantList = [1, n0, _AL,
1256
+ 0, () => AssistantSummary$
1257
+ ];
1258
+ var Channels = [1, n0, _Ch,
1259
+ 0, [() => Channel,
1260
+ 0]
1261
+ ];
1262
+ var ContactAttributeKeys = [1, n0, _CAK,
1263
+ 8, 0
1264
+ ];
1265
+ var ContentSummaryList = [1, n0, _CSL,
1266
+ 0, () => ContentSummary$
1267
+ ];
1268
+ var FilterList = [1, n0, _FL,
1269
+ 0, () => Filter$
1270
+ ];
1271
+ var GroupingValues = [1, n0, _GVr,
1272
+ 0, [() => GroupingValue,
1273
+ 0]
1274
+ ];
1275
+ var Highlights = [1, n0, _Hi,
1276
+ 0, () => Highlight$
1277
+ ];
1278
+ var ImportJobList = [1, n0, _IJL,
1279
+ 0, () => ImportJobSummary$
1280
+ ];
1281
+ var KnowledgeBaseList = [1, n0, _KBL,
1282
+ 0, () => KnowledgeBaseSummary$
1283
+ ];
1284
+ var NotifyRecommendationsReceivedErrorList = [1, n0, _NRREL,
1285
+ 0, () => NotifyRecommendationsReceivedError$
1286
+ ];
1287
+ var QueryResultsList = [1, n0, _QRL,
1288
+ 0, [() => ResultData$,
1289
+ 0]
1290
+ ];
1291
+ var QuickResponseFilterFieldList = [1, n0, _QRFFL,
1292
+ 0, () => QuickResponseFilterField$
1293
+ ];
1294
+ var QuickResponseQueryFieldList = [1, n0, _QRQFL,
1295
+ 0, () => QuickResponseQueryField$
1296
+ ];
1297
+ var QuickResponseSearchResultsList = [1, n0, _QRSRL,
1298
+ 0, [() => QuickResponseSearchResultData$,
1299
+ 0]
1300
+ ];
1301
+ var QuickResponseSummaryList = [1, n0, _QRSL,
1302
+ 0, [() => QuickResponseSummary$,
1303
+ 0]
1304
+ ];
1305
+ var RecommendationList = [1, n0, _RL,
1306
+ 0, [() => RecommendationData$,
1307
+ 0]
1308
+ ];
1309
+ var RecommendationTriggerList = [1, n0, _RTL,
1310
+ 0, [() => RecommendationTrigger$,
1311
+ 0]
1312
+ ];
1313
+ var SessionSummaries = [1, n0, _SSes,
1314
+ 0, () => SessionSummary$
1315
+ ];
1316
+ var ContactAttributes = [2, n0, _CA,
1317
+ 8, 0, 0
1318
+ ];
1319
+ var AssistantAssociationInputData$ = [4, n0, _AAID,
1320
+ 0,
1321
+ [_kBI],
1322
+ [0]
1323
+ ];
1324
+ var AssistantAssociationOutputData$ = [4, n0, _AAOD,
1325
+ 0,
1326
+ [_kBAn],
1327
+ [() => KnowledgeBaseAssociationData$]
1328
+ ];
1329
+ var Configuration$ = [4, n0, _Co,
1330
+ 0,
1331
+ [_cC],
1332
+ [() => ConnectConfiguration$]
1333
+ ];
1334
+ var QuickResponseContentProvider$ = [4, n0, _QRCP,
1335
+ 0,
1336
+ [_co],
1337
+ [[() => QuickResponseContent, 0]]
1338
+ ];
1339
+ var QuickResponseDataProvider$ = [4, n0, _QRDP,
1340
+ 0,
1341
+ [_co],
1342
+ [[() => QuickResponseContent, 0]]
1343
+ ];
1344
+ var RecommendationTriggerData$ = [4, n0, _RTD,
1345
+ 0,
1346
+ [_qu],
1347
+ [[() => QueryRecommendationTriggerData$, 0]]
1348
+ ];
1349
+ var SourceConfiguration$ = [4, n0, _SC,
1350
+ 0,
1351
+ [_aIp],
1352
+ [() => AppIntegrationsConfiguration$]
1353
+ ];
1354
+ var CreateAssistant$ = [9, n0, _CAr,
1355
+ { [_ht]: ["POST", "/assistants", 200] }, () => CreateAssistantRequest$, () => CreateAssistantResponse$
1356
+ ];
1357
+ var CreateAssistantAssociation$ = [9, n0, _CAA,
1358
+ { [_ht]: ["POST", "/assistants/{assistantId}/associations", 200] }, () => CreateAssistantAssociationRequest$, () => CreateAssistantAssociationResponse$
1359
+ ];
1360
+ var CreateContent$ = [9, n0, _CCr,
1361
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents", 200] }, () => CreateContentRequest$, () => CreateContentResponse$
1362
+ ];
1363
+ var CreateKnowledgeBase$ = [9, n0, _CKB,
1364
+ { [_ht]: ["POST", "/knowledgeBases", 200] }, () => CreateKnowledgeBaseRequest$, () => CreateKnowledgeBaseResponse$
1365
+ ];
1366
+ var CreateQuickResponse$ = [9, n0, _CQR,
1367
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] }, () => CreateQuickResponseRequest$, () => CreateQuickResponseResponse$
1368
+ ];
1369
+ var CreateSession$ = [9, n0, _CSr,
1370
+ { [_ht]: ["POST", "/assistants/{assistantId}/sessions", 200] }, () => CreateSessionRequest$, () => CreateSessionResponse$
1371
+ ];
1372
+ var DeleteAssistant$ = [9, n0, _DA,
1373
+ { [_ht]: ["DELETE", "/assistants/{assistantId}", 204] }, () => DeleteAssistantRequest$, () => DeleteAssistantResponse$
1374
+ ];
1375
+ var DeleteAssistantAssociation$ = [9, n0, _DAA,
1376
+ { [_ht]: ["DELETE", "/assistants/{assistantId}/associations/{assistantAssociationId}", 204] }, () => DeleteAssistantAssociationRequest$, () => DeleteAssistantAssociationResponse$
1377
+ ];
1378
+ var DeleteContent$ = [9, n0, _DC,
1379
+ { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 204] }, () => DeleteContentRequest$, () => DeleteContentResponse$
1380
+ ];
1381
+ var DeleteImportJob$ = [9, n0, _DIJ,
1382
+ { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 204] }, () => DeleteImportJobRequest$, () => DeleteImportJobResponse$
1383
+ ];
1384
+ var DeleteKnowledgeBase$ = [9, n0, _DKB,
1385
+ { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}", 204] }, () => DeleteKnowledgeBaseRequest$, () => DeleteKnowledgeBaseResponse$
1386
+ ];
1387
+ var DeleteQuickResponse$ = [9, n0, _DQR,
1388
+ { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 204] }, () => DeleteQuickResponseRequest$, () => DeleteQuickResponseResponse$
1389
+ ];
1390
+ var GetAssistant$ = [9, n0, _GA,
1391
+ { [_ht]: ["GET", "/assistants/{assistantId}", 200] }, () => GetAssistantRequest$, () => GetAssistantResponse$
1392
+ ];
1393
+ var GetAssistantAssociation$ = [9, n0, _GAA,
1394
+ { [_ht]: ["GET", "/assistants/{assistantId}/associations/{assistantAssociationId}", 200] }, () => GetAssistantAssociationRequest$, () => GetAssistantAssociationResponse$
1395
+ ];
1396
+ var GetContent$ = [9, n0, _GCe,
1397
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] }, () => GetContentRequest$, () => GetContentResponse$
1398
+ ];
1399
+ var GetContentSummary$ = [9, n0, _GCS,
1400
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary", 200] }, () => GetContentSummaryRequest$, () => GetContentSummaryResponse$
1401
+ ];
1402
+ var GetImportJob$ = [9, n0, _GIJ,
1403
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs/{importJobId}", 200] }, () => GetImportJobRequest$, () => GetImportJobResponse$
1404
+ ];
1405
+ var GetKnowledgeBase$ = [9, n0, _GKB,
1406
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}", 200] }, () => GetKnowledgeBaseRequest$, () => GetKnowledgeBaseResponse$
1407
+ ];
1408
+ var GetQuickResponse$ = [9, n0, _GQR,
1409
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] }, () => GetQuickResponseRequest$, () => GetQuickResponseResponse$
1410
+ ];
1411
+ var GetRecommendations$ = [9, n0, _GR,
1412
+ { [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}/recommendations", 200] }, () => GetRecommendationsRequest$, () => GetRecommendationsResponse$
1413
+ ];
1414
+ var GetSession$ = [9, n0, _GS,
1415
+ { [_ht]: ["GET", "/assistants/{assistantId}/sessions/{sessionId}", 200] }, () => GetSessionRequest$, () => GetSessionResponse$
1416
+ ];
1417
+ var ListAssistantAssociations$ = [9, n0, _LAA,
1418
+ { [_ht]: ["GET", "/assistants/{assistantId}/associations", 200] }, () => ListAssistantAssociationsRequest$, () => ListAssistantAssociationsResponse$
1419
+ ];
1420
+ var ListAssistants$ = [9, n0, _LA,
1421
+ { [_ht]: ["GET", "/assistants", 200] }, () => ListAssistantsRequest$, () => ListAssistantsResponse$
1422
+ ];
1423
+ var ListContents$ = [9, n0, _LC,
1424
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/contents", 200] }, () => ListContentsRequest$, () => ListContentsResponse$
1425
+ ];
1426
+ var ListImportJobs$ = [9, n0, _LIJ,
1427
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] }, () => ListImportJobsRequest$, () => ListImportJobsResponse$
1428
+ ];
1429
+ var ListKnowledgeBases$ = [9, n0, _LKB,
1430
+ { [_ht]: ["GET", "/knowledgeBases", 200] }, () => ListKnowledgeBasesRequest$, () => ListKnowledgeBasesResponse$
1431
+ ];
1432
+ var ListQuickResponses$ = [9, n0, _LQR,
1433
+ { [_ht]: ["GET", "/knowledgeBases/{knowledgeBaseId}/quickResponses", 200] }, () => ListQuickResponsesRequest$, () => ListQuickResponsesResponse$
1434
+ ];
1435
+ var ListTagsForResource$ = [9, n0, _LTFR,
1436
+ { [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1437
+ ];
1438
+ var NotifyRecommendationsReceived$ = [9, n0, _NRR,
1439
+ { [_ht]: ["POST", "/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify", 200] }, () => NotifyRecommendationsReceivedRequest$, () => NotifyRecommendationsReceivedResponse$
1440
+ ];
1441
+ var QueryAssistant$ = [9, n0, _QA,
1442
+ { [_ht]: ["POST", "/assistants/{assistantId}/query", 200] }, () => QueryAssistantRequest$, () => QueryAssistantResponse$
1443
+ ];
1444
+ var RemoveKnowledgeBaseTemplateUri$ = [9, n0, _RKBTU,
1445
+ { [_ht]: ["DELETE", "/knowledgeBases/{knowledgeBaseId}/templateUri", 204] }, () => RemoveKnowledgeBaseTemplateUriRequest$, () => RemoveKnowledgeBaseTemplateUriResponse$
1446
+ ];
1447
+ var SearchContent$ = [9, n0, _SCe,
1448
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search", 200] }, () => SearchContentRequest$, () => SearchContentResponse$
1449
+ ];
1450
+ var SearchQuickResponses$ = [9, n0, _SQR,
1451
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/search/quickResponses", 200] }, () => SearchQuickResponsesRequest$, () => SearchQuickResponsesResponse$
1452
+ ];
1453
+ var SearchSessions$ = [9, n0, _SSea,
1454
+ { [_ht]: ["POST", "/assistants/{assistantId}/searchSessions", 200] }, () => SearchSessionsRequest$, () => SearchSessionsResponse$
1455
+ ];
1456
+ var StartContentUpload$ = [9, n0, _SCU,
1457
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/upload", 200] }, () => StartContentUploadRequest$, () => StartContentUploadResponse$
1458
+ ];
1459
+ var StartImportJob$ = [9, n0, _SIJ,
1460
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/importJobs", 200] }, () => StartImportJobRequest$, () => StartImportJobResponse$
1461
+ ];
1462
+ var TagResource$ = [9, n0, _TR,
1463
+ { [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1464
+ ];
1465
+ var UntagResource$ = [9, n0, _UR,
1466
+ { [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1467
+ ];
1468
+ var UpdateContent$ = [9, n0, _UC,
1469
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/contents/{contentId}", 200] }, () => UpdateContentRequest$, () => UpdateContentResponse$
1470
+ ];
1471
+ var UpdateKnowledgeBaseTemplateUri$ = [9, n0, _UKBTU,
1472
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/templateUri", 200] }, () => UpdateKnowledgeBaseTemplateUriRequest$, () => UpdateKnowledgeBaseTemplateUriResponse$
1473
+ ];
1474
+ var UpdateQuickResponse$ = [9, n0, _UQR,
1475
+ { [_ht]: ["POST", "/knowledgeBases/{knowledgeBaseId}/quickResponses/{quickResponseId}", 200] }, () => UpdateQuickResponseRequest$, () => UpdateQuickResponseResponse$
1476
+ ];
1477
+
1478
+ const getRuntimeConfig$1 = (config) => {
1479
+ return {
1480
+ apiVersion: "2020-10-19",
1481
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1482
+ base64Encoder: config?.base64Encoder ?? toBase64,
1483
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1484
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1485
+ extensions: config?.extensions ?? [],
1486
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultWisdomHttpAuthSchemeProvider,
1487
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1488
+ {
1489
+ schemeId: "aws.auth#sigv4",
1490
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1491
+ signer: new AwsSdkSigV4Signer(),
1492
+ },
1493
+ ],
1494
+ logger: config?.logger ?? new NoOpLogger(),
1495
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1496
+ protocolSettings: config?.protocolSettings ?? {
1497
+ defaultNamespace: "com.amazonaws.wisdom",
1498
+ errorTypeRegistries,
1499
+ version: "2020-10-19",
1500
+ serviceTarget: "WisdomService",
1501
+ },
1502
+ serviceId: config?.serviceId ?? "Wisdom",
1503
+ urlParser: config?.urlParser ?? parseUrl,
1504
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1505
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1506
+ };
1507
+ };
1508
+
1509
+ const getRuntimeConfig = (config) => {
1510
+ emitWarningIfUnsupportedVersion(process.version);
1511
+ const defaultsMode = resolveDefaultsModeConfig(config);
1512
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1513
+ const clientSharedValues = getRuntimeConfig$1(config);
1514
+ emitWarningIfUnsupportedVersion$1(process.version);
1515
+ const loaderConfig = {
1516
+ profile: config?.profile,
1517
+ logger: clientSharedValues.logger,
1518
+ };
1519
+ return {
1520
+ ...clientSharedValues,
1521
+ ...config,
1522
+ runtime: "node",
1523
+ defaultsMode,
1524
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1525
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1526
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1527
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1528
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1529
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1530
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1531
+ retryMode: config?.retryMode ??
1532
+ loadConfig({
1533
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1534
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1535
+ }, config),
1536
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1537
+ streamCollector: config?.streamCollector ?? streamCollector,
1538
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1539
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1540
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1541
+ };
1542
+ };
1543
+
34
1544
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1545
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1546
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -782,69 +2292,258 @@ const Priority = {
782
2292
  MEDIUM: "MEDIUM",
783
2293
  };
784
2294
 
2295
+ exports.AccessDeniedException = AccessDeniedException;
2296
+ exports.AccessDeniedException$ = AccessDeniedException$;
2297
+ exports.AppIntegrationsConfiguration$ = AppIntegrationsConfiguration$;
2298
+ exports.AssistantAssociationData$ = AssistantAssociationData$;
2299
+ exports.AssistantAssociationInputData$ = AssistantAssociationInputData$;
2300
+ exports.AssistantAssociationOutputData$ = AssistantAssociationOutputData$;
2301
+ exports.AssistantAssociationSummary$ = AssistantAssociationSummary$;
2302
+ exports.AssistantData$ = AssistantData$;
2303
+ exports.AssistantIntegrationConfiguration$ = AssistantIntegrationConfiguration$;
785
2304
  exports.AssistantStatus = AssistantStatus;
2305
+ exports.AssistantSummary$ = AssistantSummary$;
786
2306
  exports.AssistantType = AssistantType;
787
2307
  exports.AssociationType = AssociationType;
2308
+ exports.Configuration$ = Configuration$;
2309
+ exports.ConflictException = ConflictException;
2310
+ exports.ConflictException$ = ConflictException$;
2311
+ exports.ConnectConfiguration$ = ConnectConfiguration$;
2312
+ exports.ContentData$ = ContentData$;
2313
+ exports.ContentReference$ = ContentReference$;
788
2314
  exports.ContentStatus = ContentStatus;
2315
+ exports.ContentSummary$ = ContentSummary$;
2316
+ exports.CreateAssistant$ = CreateAssistant$;
2317
+ exports.CreateAssistantAssociation$ = CreateAssistantAssociation$;
789
2318
  exports.CreateAssistantAssociationCommand = CreateAssistantAssociationCommand;
2319
+ exports.CreateAssistantAssociationRequest$ = CreateAssistantAssociationRequest$;
2320
+ exports.CreateAssistantAssociationResponse$ = CreateAssistantAssociationResponse$;
790
2321
  exports.CreateAssistantCommand = CreateAssistantCommand;
2322
+ exports.CreateAssistantRequest$ = CreateAssistantRequest$;
2323
+ exports.CreateAssistantResponse$ = CreateAssistantResponse$;
2324
+ exports.CreateContent$ = CreateContent$;
791
2325
  exports.CreateContentCommand = CreateContentCommand;
2326
+ exports.CreateContentRequest$ = CreateContentRequest$;
2327
+ exports.CreateContentResponse$ = CreateContentResponse$;
2328
+ exports.CreateKnowledgeBase$ = CreateKnowledgeBase$;
792
2329
  exports.CreateKnowledgeBaseCommand = CreateKnowledgeBaseCommand;
2330
+ exports.CreateKnowledgeBaseRequest$ = CreateKnowledgeBaseRequest$;
2331
+ exports.CreateKnowledgeBaseResponse$ = CreateKnowledgeBaseResponse$;
2332
+ exports.CreateQuickResponse$ = CreateQuickResponse$;
793
2333
  exports.CreateQuickResponseCommand = CreateQuickResponseCommand;
2334
+ exports.CreateQuickResponseRequest$ = CreateQuickResponseRequest$;
2335
+ exports.CreateQuickResponseResponse$ = CreateQuickResponseResponse$;
2336
+ exports.CreateSession$ = CreateSession$;
794
2337
  exports.CreateSessionCommand = CreateSessionCommand;
2338
+ exports.CreateSessionRequest$ = CreateSessionRequest$;
2339
+ exports.CreateSessionResponse$ = CreateSessionResponse$;
2340
+ exports.DeleteAssistant$ = DeleteAssistant$;
2341
+ exports.DeleteAssistantAssociation$ = DeleteAssistantAssociation$;
795
2342
  exports.DeleteAssistantAssociationCommand = DeleteAssistantAssociationCommand;
2343
+ exports.DeleteAssistantAssociationRequest$ = DeleteAssistantAssociationRequest$;
2344
+ exports.DeleteAssistantAssociationResponse$ = DeleteAssistantAssociationResponse$;
796
2345
  exports.DeleteAssistantCommand = DeleteAssistantCommand;
2346
+ exports.DeleteAssistantRequest$ = DeleteAssistantRequest$;
2347
+ exports.DeleteAssistantResponse$ = DeleteAssistantResponse$;
2348
+ exports.DeleteContent$ = DeleteContent$;
797
2349
  exports.DeleteContentCommand = DeleteContentCommand;
2350
+ exports.DeleteContentRequest$ = DeleteContentRequest$;
2351
+ exports.DeleteContentResponse$ = DeleteContentResponse$;
2352
+ exports.DeleteImportJob$ = DeleteImportJob$;
798
2353
  exports.DeleteImportJobCommand = DeleteImportJobCommand;
2354
+ exports.DeleteImportJobRequest$ = DeleteImportJobRequest$;
2355
+ exports.DeleteImportJobResponse$ = DeleteImportJobResponse$;
2356
+ exports.DeleteKnowledgeBase$ = DeleteKnowledgeBase$;
799
2357
  exports.DeleteKnowledgeBaseCommand = DeleteKnowledgeBaseCommand;
2358
+ exports.DeleteKnowledgeBaseRequest$ = DeleteKnowledgeBaseRequest$;
2359
+ exports.DeleteKnowledgeBaseResponse$ = DeleteKnowledgeBaseResponse$;
2360
+ exports.DeleteQuickResponse$ = DeleteQuickResponse$;
800
2361
  exports.DeleteQuickResponseCommand = DeleteQuickResponseCommand;
2362
+ exports.DeleteQuickResponseRequest$ = DeleteQuickResponseRequest$;
2363
+ exports.DeleteQuickResponseResponse$ = DeleteQuickResponseResponse$;
2364
+ exports.Document$ = Document$;
2365
+ exports.DocumentText$ = DocumentText$;
801
2366
  exports.ExternalSource = ExternalSource;
2367
+ exports.ExternalSourceConfiguration$ = ExternalSourceConfiguration$;
2368
+ exports.Filter$ = Filter$;
802
2369
  exports.FilterField = FilterField;
803
2370
  exports.FilterOperator = FilterOperator;
2371
+ exports.GetAssistant$ = GetAssistant$;
2372
+ exports.GetAssistantAssociation$ = GetAssistantAssociation$;
804
2373
  exports.GetAssistantAssociationCommand = GetAssistantAssociationCommand;
2374
+ exports.GetAssistantAssociationRequest$ = GetAssistantAssociationRequest$;
2375
+ exports.GetAssistantAssociationResponse$ = GetAssistantAssociationResponse$;
805
2376
  exports.GetAssistantCommand = GetAssistantCommand;
2377
+ exports.GetAssistantRequest$ = GetAssistantRequest$;
2378
+ exports.GetAssistantResponse$ = GetAssistantResponse$;
2379
+ exports.GetContent$ = GetContent$;
806
2380
  exports.GetContentCommand = GetContentCommand;
2381
+ exports.GetContentRequest$ = GetContentRequest$;
2382
+ exports.GetContentResponse$ = GetContentResponse$;
2383
+ exports.GetContentSummary$ = GetContentSummary$;
807
2384
  exports.GetContentSummaryCommand = GetContentSummaryCommand;
2385
+ exports.GetContentSummaryRequest$ = GetContentSummaryRequest$;
2386
+ exports.GetContentSummaryResponse$ = GetContentSummaryResponse$;
2387
+ exports.GetImportJob$ = GetImportJob$;
808
2388
  exports.GetImportJobCommand = GetImportJobCommand;
2389
+ exports.GetImportJobRequest$ = GetImportJobRequest$;
2390
+ exports.GetImportJobResponse$ = GetImportJobResponse$;
2391
+ exports.GetKnowledgeBase$ = GetKnowledgeBase$;
809
2392
  exports.GetKnowledgeBaseCommand = GetKnowledgeBaseCommand;
2393
+ exports.GetKnowledgeBaseRequest$ = GetKnowledgeBaseRequest$;
2394
+ exports.GetKnowledgeBaseResponse$ = GetKnowledgeBaseResponse$;
2395
+ exports.GetQuickResponse$ = GetQuickResponse$;
810
2396
  exports.GetQuickResponseCommand = GetQuickResponseCommand;
2397
+ exports.GetQuickResponseRequest$ = GetQuickResponseRequest$;
2398
+ exports.GetQuickResponseResponse$ = GetQuickResponseResponse$;
2399
+ exports.GetRecommendations$ = GetRecommendations$;
811
2400
  exports.GetRecommendationsCommand = GetRecommendationsCommand;
2401
+ exports.GetRecommendationsRequest$ = GetRecommendationsRequest$;
2402
+ exports.GetRecommendationsResponse$ = GetRecommendationsResponse$;
2403
+ exports.GetSession$ = GetSession$;
812
2404
  exports.GetSessionCommand = GetSessionCommand;
2405
+ exports.GetSessionRequest$ = GetSessionRequest$;
2406
+ exports.GetSessionResponse$ = GetSessionResponse$;
2407
+ exports.GroupingConfiguration$ = GroupingConfiguration$;
2408
+ exports.Highlight$ = Highlight$;
2409
+ exports.ImportJobData$ = ImportJobData$;
813
2410
  exports.ImportJobStatus = ImportJobStatus;
2411
+ exports.ImportJobSummary$ = ImportJobSummary$;
814
2412
  exports.ImportJobType = ImportJobType;
2413
+ exports.KnowledgeBaseAssociationData$ = KnowledgeBaseAssociationData$;
2414
+ exports.KnowledgeBaseData$ = KnowledgeBaseData$;
815
2415
  exports.KnowledgeBaseStatus = KnowledgeBaseStatus;
2416
+ exports.KnowledgeBaseSummary$ = KnowledgeBaseSummary$;
816
2417
  exports.KnowledgeBaseType = KnowledgeBaseType;
2418
+ exports.ListAssistantAssociations$ = ListAssistantAssociations$;
817
2419
  exports.ListAssistantAssociationsCommand = ListAssistantAssociationsCommand;
2420
+ exports.ListAssistantAssociationsRequest$ = ListAssistantAssociationsRequest$;
2421
+ exports.ListAssistantAssociationsResponse$ = ListAssistantAssociationsResponse$;
2422
+ exports.ListAssistants$ = ListAssistants$;
818
2423
  exports.ListAssistantsCommand = ListAssistantsCommand;
2424
+ exports.ListAssistantsRequest$ = ListAssistantsRequest$;
2425
+ exports.ListAssistantsResponse$ = ListAssistantsResponse$;
2426
+ exports.ListContents$ = ListContents$;
819
2427
  exports.ListContentsCommand = ListContentsCommand;
2428
+ exports.ListContentsRequest$ = ListContentsRequest$;
2429
+ exports.ListContentsResponse$ = ListContentsResponse$;
2430
+ exports.ListImportJobs$ = ListImportJobs$;
820
2431
  exports.ListImportJobsCommand = ListImportJobsCommand;
2432
+ exports.ListImportJobsRequest$ = ListImportJobsRequest$;
2433
+ exports.ListImportJobsResponse$ = ListImportJobsResponse$;
2434
+ exports.ListKnowledgeBases$ = ListKnowledgeBases$;
821
2435
  exports.ListKnowledgeBasesCommand = ListKnowledgeBasesCommand;
2436
+ exports.ListKnowledgeBasesRequest$ = ListKnowledgeBasesRequest$;
2437
+ exports.ListKnowledgeBasesResponse$ = ListKnowledgeBasesResponse$;
2438
+ exports.ListQuickResponses$ = ListQuickResponses$;
822
2439
  exports.ListQuickResponsesCommand = ListQuickResponsesCommand;
2440
+ exports.ListQuickResponsesRequest$ = ListQuickResponsesRequest$;
2441
+ exports.ListQuickResponsesResponse$ = ListQuickResponsesResponse$;
2442
+ exports.ListTagsForResource$ = ListTagsForResource$;
823
2443
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2444
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2445
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2446
+ exports.NotifyRecommendationsReceived$ = NotifyRecommendationsReceived$;
824
2447
  exports.NotifyRecommendationsReceivedCommand = NotifyRecommendationsReceivedCommand;
2448
+ exports.NotifyRecommendationsReceivedError$ = NotifyRecommendationsReceivedError$;
2449
+ exports.NotifyRecommendationsReceivedRequest$ = NotifyRecommendationsReceivedRequest$;
2450
+ exports.NotifyRecommendationsReceivedResponse$ = NotifyRecommendationsReceivedResponse$;
825
2451
  exports.Order = Order;
2452
+ exports.PreconditionFailedException = PreconditionFailedException;
2453
+ exports.PreconditionFailedException$ = PreconditionFailedException$;
826
2454
  exports.Priority = Priority;
2455
+ exports.QueryAssistant$ = QueryAssistant$;
827
2456
  exports.QueryAssistantCommand = QueryAssistantCommand;
2457
+ exports.QueryAssistantRequest$ = QueryAssistantRequest$;
2458
+ exports.QueryAssistantResponse$ = QueryAssistantResponse$;
2459
+ exports.QueryRecommendationTriggerData$ = QueryRecommendationTriggerData$;
2460
+ exports.QuickResponseContentProvider$ = QuickResponseContentProvider$;
2461
+ exports.QuickResponseContents$ = QuickResponseContents$;
2462
+ exports.QuickResponseData$ = QuickResponseData$;
2463
+ exports.QuickResponseDataProvider$ = QuickResponseDataProvider$;
2464
+ exports.QuickResponseFilterField$ = QuickResponseFilterField$;
828
2465
  exports.QuickResponseFilterOperator = QuickResponseFilterOperator;
2466
+ exports.QuickResponseOrderField$ = QuickResponseOrderField$;
2467
+ exports.QuickResponseQueryField$ = QuickResponseQueryField$;
829
2468
  exports.QuickResponseQueryOperator = QuickResponseQueryOperator;
2469
+ exports.QuickResponseSearchExpression$ = QuickResponseSearchExpression$;
2470
+ exports.QuickResponseSearchResultData$ = QuickResponseSearchResultData$;
830
2471
  exports.QuickResponseStatus = QuickResponseStatus;
2472
+ exports.QuickResponseSummary$ = QuickResponseSummary$;
2473
+ exports.RecommendationData$ = RecommendationData$;
831
2474
  exports.RecommendationSourceType = RecommendationSourceType;
2475
+ exports.RecommendationTrigger$ = RecommendationTrigger$;
2476
+ exports.RecommendationTriggerData$ = RecommendationTriggerData$;
832
2477
  exports.RecommendationTriggerType = RecommendationTriggerType;
833
2478
  exports.RecommendationType = RecommendationType;
834
2479
  exports.RelevanceLevel = RelevanceLevel;
2480
+ exports.RemoveKnowledgeBaseTemplateUri$ = RemoveKnowledgeBaseTemplateUri$;
835
2481
  exports.RemoveKnowledgeBaseTemplateUriCommand = RemoveKnowledgeBaseTemplateUriCommand;
2482
+ exports.RemoveKnowledgeBaseTemplateUriRequest$ = RemoveKnowledgeBaseTemplateUriRequest$;
2483
+ exports.RemoveKnowledgeBaseTemplateUriResponse$ = RemoveKnowledgeBaseTemplateUriResponse$;
2484
+ exports.RenderingConfiguration$ = RenderingConfiguration$;
2485
+ exports.RequestTimeoutException = RequestTimeoutException;
2486
+ exports.RequestTimeoutException$ = RequestTimeoutException$;
2487
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2488
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2489
+ exports.ResultData$ = ResultData$;
2490
+ exports.SearchContent$ = SearchContent$;
836
2491
  exports.SearchContentCommand = SearchContentCommand;
2492
+ exports.SearchContentRequest$ = SearchContentRequest$;
2493
+ exports.SearchContentResponse$ = SearchContentResponse$;
2494
+ exports.SearchExpression$ = SearchExpression$;
2495
+ exports.SearchQuickResponses$ = SearchQuickResponses$;
837
2496
  exports.SearchQuickResponsesCommand = SearchQuickResponsesCommand;
2497
+ exports.SearchQuickResponsesRequest$ = SearchQuickResponsesRequest$;
2498
+ exports.SearchQuickResponsesResponse$ = SearchQuickResponsesResponse$;
2499
+ exports.SearchSessions$ = SearchSessions$;
838
2500
  exports.SearchSessionsCommand = SearchSessionsCommand;
2501
+ exports.SearchSessionsRequest$ = SearchSessionsRequest$;
2502
+ exports.SearchSessionsResponse$ = SearchSessionsResponse$;
2503
+ exports.ServerSideEncryptionConfiguration$ = ServerSideEncryptionConfiguration$;
2504
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2505
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2506
+ exports.SessionData$ = SessionData$;
2507
+ exports.SessionIntegrationConfiguration$ = SessionIntegrationConfiguration$;
2508
+ exports.SessionSummary$ = SessionSummary$;
2509
+ exports.SourceConfiguration$ = SourceConfiguration$;
2510
+ exports.StartContentUpload$ = StartContentUpload$;
839
2511
  exports.StartContentUploadCommand = StartContentUploadCommand;
2512
+ exports.StartContentUploadRequest$ = StartContentUploadRequest$;
2513
+ exports.StartContentUploadResponse$ = StartContentUploadResponse$;
2514
+ exports.StartImportJob$ = StartImportJob$;
840
2515
  exports.StartImportJobCommand = StartImportJobCommand;
2516
+ exports.StartImportJobRequest$ = StartImportJobRequest$;
2517
+ exports.StartImportJobResponse$ = StartImportJobResponse$;
2518
+ exports.TagResource$ = TagResource$;
841
2519
  exports.TagResourceCommand = TagResourceCommand;
2520
+ exports.TagResourceRequest$ = TagResourceRequest$;
2521
+ exports.TagResourceResponse$ = TagResourceResponse$;
2522
+ exports.TooManyTagsException = TooManyTagsException;
2523
+ exports.TooManyTagsException$ = TooManyTagsException$;
2524
+ exports.UntagResource$ = UntagResource$;
842
2525
  exports.UntagResourceCommand = UntagResourceCommand;
2526
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2527
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2528
+ exports.UpdateContent$ = UpdateContent$;
843
2529
  exports.UpdateContentCommand = UpdateContentCommand;
2530
+ exports.UpdateContentRequest$ = UpdateContentRequest$;
2531
+ exports.UpdateContentResponse$ = UpdateContentResponse$;
2532
+ exports.UpdateKnowledgeBaseTemplateUri$ = UpdateKnowledgeBaseTemplateUri$;
844
2533
  exports.UpdateKnowledgeBaseTemplateUriCommand = UpdateKnowledgeBaseTemplateUriCommand;
2534
+ exports.UpdateKnowledgeBaseTemplateUriRequest$ = UpdateKnowledgeBaseTemplateUriRequest$;
2535
+ exports.UpdateKnowledgeBaseTemplateUriResponse$ = UpdateKnowledgeBaseTemplateUriResponse$;
2536
+ exports.UpdateQuickResponse$ = UpdateQuickResponse$;
845
2537
  exports.UpdateQuickResponseCommand = UpdateQuickResponseCommand;
2538
+ exports.UpdateQuickResponseRequest$ = UpdateQuickResponseRequest$;
2539
+ exports.UpdateQuickResponseResponse$ = UpdateQuickResponseResponse$;
2540
+ exports.ValidationException = ValidationException;
2541
+ exports.ValidationException$ = ValidationException$;
846
2542
  exports.Wisdom = Wisdom;
847
2543
  exports.WisdomClient = WisdomClient;
2544
+ exports.WisdomServiceException = WisdomServiceException;
2545
+ exports.WisdomServiceException$ = WisdomServiceException$;
2546
+ exports.errorTypeRegistries = errorTypeRegistries;
848
2547
  exports.paginateListAssistantAssociations = paginateListAssistantAssociations;
849
2548
  exports.paginateListAssistants = paginateListAssistants;
850
2549
  exports.paginateListContents = paginateListContents;