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