@aws-sdk/client-wisdom 3.450.0 → 3.454.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/README.md +80 -0
- package/dist-cjs/Wisdom.js +20 -0
- package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
- package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
- package/dist-cjs/commands/GetImportJobCommand.js +52 -0
- package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
- package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
- package/dist-cjs/commands/StartImportJobCommand.js +52 -0
- package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +200 -1
- package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +816 -18
- package/dist-es/Wisdom.js +20 -0
- package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
- package/dist-es/commands/DeleteImportJobCommand.js +47 -0
- package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
- package/dist-es/commands/GetImportJobCommand.js +48 -0
- package/dist-es/commands/GetQuickResponseCommand.js +48 -0
- package/dist-es/commands/ListImportJobsCommand.js +47 -0
- package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
- package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
- package/dist-es/commands/StartImportJobCommand.js +48 -0
- package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +179 -0
- package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +794 -16
- package/dist-types/Wisdom.d.ts +70 -0
- package/dist-types/WisdomClient.d.ts +12 -2
- package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
- package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
- package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
- package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
- package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
- package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +5 -0
- package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
- package/dist-types/commands/StartContentUploadCommand.d.ts +1 -0
- package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
- package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1631 -167
- package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Wisdom.d.ts +170 -0
- package/dist-types/ts3.4/WisdomClient.d.ts +62 -2
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +397 -0
- package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +35 -35
|
@@ -115,12 +115,33 @@ export const RecommendationSourceType = {
|
|
|
115
115
|
export const RecommendationTriggerType = {
|
|
116
116
|
QUERY: "QUERY",
|
|
117
117
|
};
|
|
118
|
+
export class RequestTimeoutException extends __BaseException {
|
|
119
|
+
constructor(opts) {
|
|
120
|
+
super({
|
|
121
|
+
name: "RequestTimeoutException",
|
|
122
|
+
$fault: "client",
|
|
123
|
+
...opts,
|
|
124
|
+
});
|
|
125
|
+
this.name = "RequestTimeoutException";
|
|
126
|
+
this.$fault = "client";
|
|
127
|
+
this.$retryable = {};
|
|
128
|
+
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
118
131
|
export const FilterField = {
|
|
119
132
|
NAME: "NAME",
|
|
120
133
|
};
|
|
121
134
|
export const FilterOperator = {
|
|
122
135
|
EQUALS: "EQUALS",
|
|
123
136
|
};
|
|
137
|
+
export var Configuration;
|
|
138
|
+
(function (Configuration) {
|
|
139
|
+
Configuration.visit = (value, visitor) => {
|
|
140
|
+
if (value.connectConfiguration !== undefined)
|
|
141
|
+
return visitor.connectConfiguration(value.connectConfiguration);
|
|
142
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
143
|
+
};
|
|
144
|
+
})(Configuration || (Configuration = {}));
|
|
124
145
|
export const ContentStatus = {
|
|
125
146
|
ACTIVE: "ACTIVE",
|
|
126
147
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -145,6 +166,7 @@ export class PreconditionFailedException extends __BaseException {
|
|
|
145
166
|
export const KnowledgeBaseType = {
|
|
146
167
|
CUSTOM: "CUSTOM",
|
|
147
168
|
EXTERNAL: "EXTERNAL",
|
|
169
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
148
170
|
};
|
|
149
171
|
export var SourceConfiguration;
|
|
150
172
|
(function (SourceConfiguration) {
|
|
@@ -162,6 +184,63 @@ export const KnowledgeBaseStatus = {
|
|
|
162
184
|
DELETE_FAILED: "DELETE_FAILED",
|
|
163
185
|
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
164
186
|
};
|
|
187
|
+
export var QuickResponseDataProvider;
|
|
188
|
+
(function (QuickResponseDataProvider) {
|
|
189
|
+
QuickResponseDataProvider.visit = (value, visitor) => {
|
|
190
|
+
if (value.content !== undefined)
|
|
191
|
+
return visitor.content(value.content);
|
|
192
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
193
|
+
};
|
|
194
|
+
})(QuickResponseDataProvider || (QuickResponseDataProvider = {}));
|
|
195
|
+
export var QuickResponseContentProvider;
|
|
196
|
+
(function (QuickResponseContentProvider) {
|
|
197
|
+
QuickResponseContentProvider.visit = (value, visitor) => {
|
|
198
|
+
if (value.content !== undefined)
|
|
199
|
+
return visitor.content(value.content);
|
|
200
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
201
|
+
};
|
|
202
|
+
})(QuickResponseContentProvider || (QuickResponseContentProvider = {}));
|
|
203
|
+
export const QuickResponseStatus = {
|
|
204
|
+
CREATED: "CREATED",
|
|
205
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
206
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
207
|
+
DELETED: "DELETED",
|
|
208
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
209
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
210
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
211
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
212
|
+
};
|
|
213
|
+
export const ExternalSource = {
|
|
214
|
+
AMAZON_CONNECT: "AMAZON_CONNECT",
|
|
215
|
+
};
|
|
216
|
+
export const ImportJobType = {
|
|
217
|
+
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
218
|
+
};
|
|
219
|
+
export const ImportJobStatus = {
|
|
220
|
+
COMPLETE: "COMPLETE",
|
|
221
|
+
DELETED: "DELETED",
|
|
222
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
223
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
224
|
+
FAILED: "FAILED",
|
|
225
|
+
START_IN_PROGRESS: "START_IN_PROGRESS",
|
|
226
|
+
};
|
|
227
|
+
export const QuickResponseFilterOperator = {
|
|
228
|
+
EQUALS: "EQUALS",
|
|
229
|
+
PREFIX: "PREFIX",
|
|
230
|
+
};
|
|
231
|
+
export const Order = {
|
|
232
|
+
ASC: "ASC",
|
|
233
|
+
DESC: "DESC",
|
|
234
|
+
};
|
|
235
|
+
export const QuickResponseQueryOperator = {
|
|
236
|
+
CONTAINS: "CONTAINS",
|
|
237
|
+
CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX",
|
|
238
|
+
};
|
|
239
|
+
export const Priority = {
|
|
240
|
+
HIGH: "HIGH",
|
|
241
|
+
LOW: "LOW",
|
|
242
|
+
MEDIUM: "MEDIUM",
|
|
243
|
+
};
|
|
165
244
|
export class TooManyTagsException extends __BaseException {
|
|
166
245
|
constructor(opts) {
|
|
167
246
|
super({
|
|
@@ -237,7 +316,107 @@ export const UpdateContentResponseFilterSensitiveLog = (obj) => ({
|
|
|
237
316
|
...obj,
|
|
238
317
|
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
239
318
|
});
|
|
319
|
+
export const QuickResponseDataProviderFilterSensitiveLog = (obj) => {
|
|
320
|
+
if (obj.content !== undefined)
|
|
321
|
+
return { content: SENSITIVE_STRING };
|
|
322
|
+
if (obj.$unknown !== undefined)
|
|
323
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
324
|
+
};
|
|
325
|
+
export const GroupingConfigurationFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
...(obj.criteria && { criteria: SENSITIVE_STRING }),
|
|
328
|
+
...(obj.values && { values: SENSITIVE_STRING }),
|
|
329
|
+
});
|
|
330
|
+
export const CreateQuickResponseRequestFilterSensitiveLog = (obj) => ({
|
|
331
|
+
...obj,
|
|
332
|
+
...(obj.content && { content: QuickResponseDataProviderFilterSensitiveLog(obj.content) }),
|
|
333
|
+
...(obj.groupingConfiguration && {
|
|
334
|
+
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
335
|
+
}),
|
|
336
|
+
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
337
|
+
});
|
|
338
|
+
export const QuickResponseContentProviderFilterSensitiveLog = (obj) => {
|
|
339
|
+
if (obj.content !== undefined)
|
|
340
|
+
return { content: SENSITIVE_STRING };
|
|
341
|
+
if (obj.$unknown !== undefined)
|
|
342
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
343
|
+
};
|
|
344
|
+
export const QuickResponseContentsFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
...(obj.plainText && { plainText: QuickResponseContentProviderFilterSensitiveLog(obj.plainText) }),
|
|
347
|
+
...(obj.markdown && { markdown: QuickResponseContentProviderFilterSensitiveLog(obj.markdown) }),
|
|
348
|
+
});
|
|
349
|
+
export const QuickResponseDataFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
...(obj.contents && { contents: QuickResponseContentsFilterSensitiveLog(obj.contents) }),
|
|
352
|
+
...(obj.groupingConfiguration && {
|
|
353
|
+
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
354
|
+
}),
|
|
355
|
+
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
356
|
+
});
|
|
357
|
+
export const CreateQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
360
|
+
});
|
|
361
|
+
export const ImportJobDataFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
...(obj.url && { url: SENSITIVE_STRING }),
|
|
364
|
+
...(obj.failedRecordReport && { failedRecordReport: SENSITIVE_STRING }),
|
|
365
|
+
...(obj.externalSourceConfiguration && { externalSourceConfiguration: obj.externalSourceConfiguration }),
|
|
366
|
+
});
|
|
367
|
+
export const GetImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
370
|
+
});
|
|
371
|
+
export const GetQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
374
|
+
});
|
|
375
|
+
export const QuickResponseSummaryFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
378
|
+
});
|
|
379
|
+
export const ListQuickResponsesResponseFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
...(obj.quickResponseSummaries && {
|
|
382
|
+
quickResponseSummaries: obj.quickResponseSummaries.map((item) => QuickResponseSummaryFilterSensitiveLog(item)),
|
|
383
|
+
}),
|
|
384
|
+
});
|
|
385
|
+
export const UpdateQuickResponseRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
...(obj.content && { content: QuickResponseDataProviderFilterSensitiveLog(obj.content) }),
|
|
388
|
+
...(obj.groupingConfiguration && {
|
|
389
|
+
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
390
|
+
}),
|
|
391
|
+
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
392
|
+
});
|
|
393
|
+
export const UpdateQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
394
|
+
...obj,
|
|
395
|
+
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
396
|
+
});
|
|
397
|
+
export const SearchQuickResponsesRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
...(obj.attributes && { attributes: SENSITIVE_STRING }),
|
|
400
|
+
});
|
|
401
|
+
export const QuickResponseSearchResultDataFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
...(obj.contents && { contents: QuickResponseContentsFilterSensitiveLog(obj.contents) }),
|
|
404
|
+
...(obj.groupingConfiguration && {
|
|
405
|
+
groupingConfiguration: GroupingConfigurationFilterSensitiveLog(obj.groupingConfiguration),
|
|
406
|
+
}),
|
|
407
|
+
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
408
|
+
...(obj.attributesNotInterpolated && { attributesNotInterpolated: SENSITIVE_STRING }),
|
|
409
|
+
...(obj.attributesInterpolated && { attributesInterpolated: SENSITIVE_STRING }),
|
|
410
|
+
});
|
|
411
|
+
export const SearchQuickResponsesResponseFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
...(obj.results && { results: obj.results.map((item) => QuickResponseSearchResultDataFilterSensitiveLog(item)) }),
|
|
414
|
+
});
|
|
240
415
|
export const StartContentUploadResponseFilterSensitiveLog = (obj) => ({
|
|
241
416
|
...obj,
|
|
242
417
|
...(obj.url && { url: SENSITIVE_STRING }),
|
|
243
418
|
});
|
|
419
|
+
export const StartImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
422
|
+
});
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ListImportJobsCommand, } from "../commands/ListImportJobsCommand";
|
|
2
|
+
import { WisdomClient } from "../WisdomClient";
|
|
3
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
4
|
+
return await client.send(new ListImportJobsCommand(input), ...args);
|
|
5
|
+
};
|
|
6
|
+
export async function* paginateListImportJobs(config, input, ...additionalArguments) {
|
|
7
|
+
let token = config.startingToken || undefined;
|
|
8
|
+
let hasNext = true;
|
|
9
|
+
let page;
|
|
10
|
+
while (hasNext) {
|
|
11
|
+
input.nextToken = token;
|
|
12
|
+
input["maxResults"] = config.pageSize;
|
|
13
|
+
if (config.client instanceof WisdomClient) {
|
|
14
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
throw new Error("Invalid client, expected Wisdom | WisdomClient");
|
|
18
|
+
}
|
|
19
|
+
yield page;
|
|
20
|
+
const prevToken = token;
|
|
21
|
+
token = page.nextToken;
|
|
22
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
+
}
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ListQuickResponsesCommand, } from "../commands/ListQuickResponsesCommand";
|
|
2
|
+
import { WisdomClient } from "../WisdomClient";
|
|
3
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
4
|
+
return await client.send(new ListQuickResponsesCommand(input), ...args);
|
|
5
|
+
};
|
|
6
|
+
export async function* paginateListQuickResponses(config, input, ...additionalArguments) {
|
|
7
|
+
let token = config.startingToken || undefined;
|
|
8
|
+
let hasNext = true;
|
|
9
|
+
let page;
|
|
10
|
+
while (hasNext) {
|
|
11
|
+
input.nextToken = token;
|
|
12
|
+
input["maxResults"] = config.pageSize;
|
|
13
|
+
if (config.client instanceof WisdomClient) {
|
|
14
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
throw new Error("Invalid client, expected Wisdom | WisdomClient");
|
|
18
|
+
}
|
|
19
|
+
yield page;
|
|
20
|
+
const prevToken = token;
|
|
21
|
+
token = page.nextToken;
|
|
22
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
+
}
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { SearchQuickResponsesCommand, } from "../commands/SearchQuickResponsesCommand";
|
|
2
|
+
import { WisdomClient } from "../WisdomClient";
|
|
3
|
+
const makePagedClientRequest = async (client, input, ...args) => {
|
|
4
|
+
return await client.send(new SearchQuickResponsesCommand(input), ...args);
|
|
5
|
+
};
|
|
6
|
+
export async function* paginateSearchQuickResponses(config, input, ...additionalArguments) {
|
|
7
|
+
let token = config.startingToken || undefined;
|
|
8
|
+
let hasNext = true;
|
|
9
|
+
let page;
|
|
10
|
+
while (hasNext) {
|
|
11
|
+
input.nextToken = token;
|
|
12
|
+
input["maxResults"] = config.pageSize;
|
|
13
|
+
if (config.client instanceof WisdomClient) {
|
|
14
|
+
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
throw new Error("Invalid client, expected Wisdom | WisdomClient");
|
|
18
|
+
}
|
|
19
|
+
yield page;
|
|
20
|
+
const prevToken = token;
|
|
21
|
+
token = page.nextToken;
|
|
22
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
+
}
|
|
24
|
+
return undefined;
|
|
25
|
+
}
|
|
@@ -2,7 +2,10 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListAssistantAssociationsPaginator";
|
|
3
3
|
export * from "./ListAssistantsPaginator";
|
|
4
4
|
export * from "./ListContentsPaginator";
|
|
5
|
+
export * from "./ListImportJobsPaginator";
|
|
5
6
|
export * from "./ListKnowledgeBasesPaginator";
|
|
7
|
+
export * from "./ListQuickResponsesPaginator";
|
|
6
8
|
export * from "./QueryAssistantPaginator";
|
|
7
9
|
export * from "./SearchContentPaginator";
|
|
10
|
+
export * from "./SearchQuickResponsesPaginator";
|
|
8
11
|
export * from "./SearchSessionsPaginator";
|