@aws-sdk/client-qconnect 3.665.0 → 3.667.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 +166 -0
- package/dist-cjs/index.js +1501 -102
- package/dist-es/QConnect.js +38 -0
- package/dist-es/commands/CreateAIAgentCommand.js +22 -0
- package/dist-es/commands/CreateAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/CreateAIPromptCommand.js +23 -0
- package/dist-es/commands/CreateAIPromptVersionCommand.js +23 -0
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/DeleteAIAgentCommand.js +22 -0
- package/dist-es/commands/DeleteAIAgentVersionCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptCommand.js +22 -0
- package/dist-es/commands/DeleteAIPromptVersionCommand.js +22 -0
- package/dist-es/commands/GetAIAgentCommand.js +22 -0
- package/dist-es/commands/GetAIPromptCommand.js +23 -0
- package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -1
- package/dist-es/commands/ListAIAgentVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIAgentsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptVersionsCommand.js +22 -0
- package/dist-es/commands/ListAIPromptsCommand.js +22 -0
- package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -1
- package/dist-es/commands/RemoveAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateAIPromptCommand.js +23 -0
- package/dist-es/commands/UpdateAssistantAIAgentCommand.js +22 -0
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -1
- package/dist-es/commands/UpdateSessionDataCommand.js +23 -0
- package/dist-es/commands/index.js +19 -0
- package/dist-es/models/models_0.js +310 -46
- package/dist-es/pagination/ListAIAgentVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIAgentsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAIPromptsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +692 -8
- package/dist-types/QConnect.d.ts +148 -1
- package/dist-types/QConnectClient.d.ts +36 -3
- package/dist-types/commands/CreateAIAgentCommand.d.ts +252 -0
- package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +180 -0
- package/dist-types/commands/CreateAIPromptCommand.d.ts +132 -0
- package/dist-types/commands/CreateAIPromptVersionCommand.d.ts +120 -0
- package/dist-types/commands/CreateAssistantCommand.d.ts +5 -0
- package/dist-types/commands/CreateContentAssociationCommand.d.ts +5 -6
- package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +108 -0
- package/dist-types/commands/CreateSessionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteAIAgentCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIAgentVersionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAIPromptCommand.d.ts +82 -0
- package/dist-types/commands/DeleteAIPromptVersionCommand.d.ts +89 -0
- package/dist-types/commands/GetAIAgentCommand.d.ts +168 -0
- package/dist-types/commands/GetAIPromptCommand.d.ts +108 -0
- package/dist-types/commands/GetAssistantCommand.d.ts +5 -0
- package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +56 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +20 -0
- package/dist-types/commands/GetSessionCommand.d.ts +5 -0
- package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +176 -0
- package/dist-types/commands/ListAIAgentsCommand.d.ts +172 -0
- package/dist-types/commands/ListAIPromptVersionsCommand.d.ts +111 -0
- package/dist-types/commands/ListAIPromptsCommand.d.ts +107 -0
- package/dist-types/commands/ListAssistantsCommand.d.ts +5 -0
- package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +52 -0
- package/dist-types/commands/QueryAssistantCommand.d.ts +30 -1
- package/dist-types/commands/RemoveAssistantAIAgentCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAIAgentCommand.d.ts +244 -0
- package/dist-types/commands/UpdateAIPromptCommand.d.ts +121 -0
- package/dist-types/commands/UpdateAssistantAIAgentCommand.d.ts +112 -0
- package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +56 -0
- package/dist-types/commands/UpdateSessionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateSessionDataCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +19 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +2454 -275
- package/dist-types/pagination/ListAIAgentVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIAgentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAIPromptsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +171 -0
- package/dist-types/ts3.4/QConnect.d.ts +323 -0
- package/dist-types/ts3.4/QConnectClient.d.ts +116 -2
- package/dist-types/ts3.4/commands/CreateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIAgentVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAIPromptVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAIAgentCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAIPromptCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIAgentVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIAgentsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAIPromptVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAIPromptsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RemoveAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAIAgentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAIPromptCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAssistantAIAgentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSessionDataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +794 -103
- package/dist-types/ts3.4/pagination/ListAIAgentVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIAgentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAIPromptsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +228 -0
- package/package.json +19 -19
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export * from "./CreateAIAgentCommand";
|
|
2
|
+
export * from "./CreateAIAgentVersionCommand";
|
|
3
|
+
export * from "./CreateAIPromptCommand";
|
|
4
|
+
export * from "./CreateAIPromptVersionCommand";
|
|
1
5
|
export * from "./CreateAssistantAssociationCommand";
|
|
2
6
|
export * from "./CreateAssistantCommand";
|
|
3
7
|
export * from "./CreateContentAssociationCommand";
|
|
@@ -5,6 +9,10 @@ export * from "./CreateContentCommand";
|
|
|
5
9
|
export * from "./CreateKnowledgeBaseCommand";
|
|
6
10
|
export * from "./CreateQuickResponseCommand";
|
|
7
11
|
export * from "./CreateSessionCommand";
|
|
12
|
+
export * from "./DeleteAIAgentCommand";
|
|
13
|
+
export * from "./DeleteAIAgentVersionCommand";
|
|
14
|
+
export * from "./DeleteAIPromptCommand";
|
|
15
|
+
export * from "./DeleteAIPromptVersionCommand";
|
|
8
16
|
export * from "./DeleteAssistantAssociationCommand";
|
|
9
17
|
export * from "./DeleteAssistantCommand";
|
|
10
18
|
export * from "./DeleteContentAssociationCommand";
|
|
@@ -12,6 +20,8 @@ export * from "./DeleteContentCommand";
|
|
|
12
20
|
export * from "./DeleteImportJobCommand";
|
|
13
21
|
export * from "./DeleteKnowledgeBaseCommand";
|
|
14
22
|
export * from "./DeleteQuickResponseCommand";
|
|
23
|
+
export * from "./GetAIAgentCommand";
|
|
24
|
+
export * from "./GetAIPromptCommand";
|
|
15
25
|
export * from "./GetAssistantAssociationCommand";
|
|
16
26
|
export * from "./GetAssistantCommand";
|
|
17
27
|
export * from "./GetContentAssociationCommand";
|
|
@@ -22,6 +32,10 @@ export * from "./GetKnowledgeBaseCommand";
|
|
|
22
32
|
export * from "./GetQuickResponseCommand";
|
|
23
33
|
export * from "./GetRecommendationsCommand";
|
|
24
34
|
export * from "./GetSessionCommand";
|
|
35
|
+
export * from "./ListAIAgentVersionsCommand";
|
|
36
|
+
export * from "./ListAIAgentsCommand";
|
|
37
|
+
export * from "./ListAIPromptVersionsCommand";
|
|
38
|
+
export * from "./ListAIPromptsCommand";
|
|
25
39
|
export * from "./ListAssistantAssociationsCommand";
|
|
26
40
|
export * from "./ListAssistantsCommand";
|
|
27
41
|
export * from "./ListContentAssociationsCommand";
|
|
@@ -33,6 +47,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
33
47
|
export * from "./NotifyRecommendationsReceivedCommand";
|
|
34
48
|
export * from "./PutFeedbackCommand";
|
|
35
49
|
export * from "./QueryAssistantCommand";
|
|
50
|
+
export * from "./RemoveAssistantAIAgentCommand";
|
|
36
51
|
export * from "./RemoveKnowledgeBaseTemplateUriCommand";
|
|
37
52
|
export * from "./SearchContentCommand";
|
|
38
53
|
export * from "./SearchQuickResponsesCommand";
|
|
@@ -41,7 +56,11 @@ export * from "./StartContentUploadCommand";
|
|
|
41
56
|
export * from "./StartImportJobCommand";
|
|
42
57
|
export * from "./TagResourceCommand";
|
|
43
58
|
export * from "./UntagResourceCommand";
|
|
59
|
+
export * from "./UpdateAIAgentCommand";
|
|
60
|
+
export * from "./UpdateAIPromptCommand";
|
|
61
|
+
export * from "./UpdateAssistantAIAgentCommand";
|
|
44
62
|
export * from "./UpdateContentCommand";
|
|
45
63
|
export * from "./UpdateKnowledgeBaseTemplateUriCommand";
|
|
46
64
|
export * from "./UpdateQuickResponseCommand";
|
|
47
65
|
export * from "./UpdateSessionCommand";
|
|
66
|
+
export * from "./UpdateSessionDataCommand";
|
|
@@ -24,25 +24,73 @@ export class ConflictException extends __BaseException {
|
|
|
24
24
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
export var
|
|
28
|
-
(function (
|
|
29
|
-
|
|
30
|
-
if (value.
|
|
31
|
-
return visitor.
|
|
27
|
+
export var OrCondition;
|
|
28
|
+
(function (OrCondition) {
|
|
29
|
+
OrCondition.visit = (value, visitor) => {
|
|
30
|
+
if (value.andConditions !== undefined)
|
|
31
|
+
return visitor.andConditions(value.andConditions);
|
|
32
|
+
if (value.tagCondition !== undefined)
|
|
33
|
+
return visitor.tagCondition(value.tagCondition);
|
|
32
34
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
33
35
|
};
|
|
34
|
-
})(
|
|
35
|
-
export
|
|
36
|
+
})(OrCondition || (OrCondition = {}));
|
|
37
|
+
export var TagFilter;
|
|
38
|
+
(function (TagFilter) {
|
|
39
|
+
TagFilter.visit = (value, visitor) => {
|
|
40
|
+
if (value.tagCondition !== undefined)
|
|
41
|
+
return visitor.tagCondition(value.tagCondition);
|
|
42
|
+
if (value.andConditions !== undefined)
|
|
43
|
+
return visitor.andConditions(value.andConditions);
|
|
44
|
+
if (value.orConditions !== undefined)
|
|
45
|
+
return visitor.orConditions(value.orConditions);
|
|
46
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
47
|
+
};
|
|
48
|
+
})(TagFilter || (TagFilter = {}));
|
|
49
|
+
export const KnowledgeBaseSearchType = {
|
|
50
|
+
HYBRID: "HYBRID",
|
|
51
|
+
SEMANTIC: "SEMANTIC",
|
|
52
|
+
};
|
|
53
|
+
export var AssociationConfigurationData;
|
|
54
|
+
(function (AssociationConfigurationData) {
|
|
55
|
+
AssociationConfigurationData.visit = (value, visitor) => {
|
|
56
|
+
if (value.knowledgeBaseAssociationConfigurationData !== undefined)
|
|
57
|
+
return visitor.knowledgeBaseAssociationConfigurationData(value.knowledgeBaseAssociationConfigurationData);
|
|
58
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
59
|
+
};
|
|
60
|
+
})(AssociationConfigurationData || (AssociationConfigurationData = {}));
|
|
61
|
+
export const AIAgentAssociationConfigurationType = {
|
|
36
62
|
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
37
63
|
};
|
|
38
|
-
export var
|
|
39
|
-
(function (
|
|
40
|
-
|
|
41
|
-
if (value.
|
|
42
|
-
return visitor.
|
|
64
|
+
export var AIAgentConfiguration;
|
|
65
|
+
(function (AIAgentConfiguration) {
|
|
66
|
+
AIAgentConfiguration.visit = (value, visitor) => {
|
|
67
|
+
if (value.manualSearchAIAgentConfiguration !== undefined)
|
|
68
|
+
return visitor.manualSearchAIAgentConfiguration(value.manualSearchAIAgentConfiguration);
|
|
69
|
+
if (value.answerRecommendationAIAgentConfiguration !== undefined)
|
|
70
|
+
return visitor.answerRecommendationAIAgentConfiguration(value.answerRecommendationAIAgentConfiguration);
|
|
43
71
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
44
72
|
};
|
|
45
|
-
})(
|
|
73
|
+
})(AIAgentConfiguration || (AIAgentConfiguration = {}));
|
|
74
|
+
export const AIAgentType = {
|
|
75
|
+
ANSWER_RECOMMENDATION: "ANSWER_RECOMMENDATION",
|
|
76
|
+
MANUAL_SEARCH: "MANUAL_SEARCH",
|
|
77
|
+
};
|
|
78
|
+
export const VisibilityStatus = {
|
|
79
|
+
PUBLISHED: "PUBLISHED",
|
|
80
|
+
SAVED: "SAVED",
|
|
81
|
+
};
|
|
82
|
+
export const Origin = {
|
|
83
|
+
CUSTOMER: "CUSTOMER",
|
|
84
|
+
SYSTEM: "SYSTEM",
|
|
85
|
+
};
|
|
86
|
+
export const Status = {
|
|
87
|
+
ACTIVE: "ACTIVE",
|
|
88
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
89
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
90
|
+
DELETED: "DELETED",
|
|
91
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
92
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
|
93
|
+
};
|
|
46
94
|
export class ResourceNotFoundException extends __BaseException {
|
|
47
95
|
constructor(opts) {
|
|
48
96
|
super({
|
|
@@ -68,6 +116,19 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
68
116
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
69
117
|
}
|
|
70
118
|
}
|
|
119
|
+
export class ThrottlingException extends __BaseException {
|
|
120
|
+
constructor(opts) {
|
|
121
|
+
super({
|
|
122
|
+
name: "ThrottlingException",
|
|
123
|
+
$fault: "client",
|
|
124
|
+
...opts,
|
|
125
|
+
});
|
|
126
|
+
this.name = "ThrottlingException";
|
|
127
|
+
this.$fault = "client";
|
|
128
|
+
this.$retryable = {};
|
|
129
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
71
132
|
export class ValidationException extends __BaseException {
|
|
72
133
|
constructor(opts) {
|
|
73
134
|
super({
|
|
@@ -80,6 +141,45 @@ export class ValidationException extends __BaseException {
|
|
|
80
141
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
81
142
|
}
|
|
82
143
|
}
|
|
144
|
+
export const AIPromptAPIFormat = {
|
|
145
|
+
ANTHROPIC_CLAUDE_MESSAGES: "ANTHROPIC_CLAUDE_MESSAGES",
|
|
146
|
+
ANTHROPIC_CLAUDE_TEXT_COMPLETIONS: "ANTHROPIC_CLAUDE_TEXT_COMPLETIONS",
|
|
147
|
+
};
|
|
148
|
+
export var AIPromptTemplateConfiguration;
|
|
149
|
+
(function (AIPromptTemplateConfiguration) {
|
|
150
|
+
AIPromptTemplateConfiguration.visit = (value, visitor) => {
|
|
151
|
+
if (value.textFullAIPromptEditTemplateConfiguration !== undefined)
|
|
152
|
+
return visitor.textFullAIPromptEditTemplateConfiguration(value.textFullAIPromptEditTemplateConfiguration);
|
|
153
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
154
|
+
};
|
|
155
|
+
})(AIPromptTemplateConfiguration || (AIPromptTemplateConfiguration = {}));
|
|
156
|
+
export const AIPromptTemplateType = {
|
|
157
|
+
TEXT: "TEXT",
|
|
158
|
+
};
|
|
159
|
+
export const AIPromptType = {
|
|
160
|
+
ANSWER_GENERATION: "ANSWER_GENERATION",
|
|
161
|
+
INTENT_LABELING_GENERATION: "INTENT_LABELING_GENERATION",
|
|
162
|
+
QUERY_REFORMULATION: "QUERY_REFORMULATION",
|
|
163
|
+
};
|
|
164
|
+
export var AssistantAssociationInputData;
|
|
165
|
+
(function (AssistantAssociationInputData) {
|
|
166
|
+
AssistantAssociationInputData.visit = (value, visitor) => {
|
|
167
|
+
if (value.knowledgeBaseId !== undefined)
|
|
168
|
+
return visitor.knowledgeBaseId(value.knowledgeBaseId);
|
|
169
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
170
|
+
};
|
|
171
|
+
})(AssistantAssociationInputData || (AssistantAssociationInputData = {}));
|
|
172
|
+
export const AssociationType = {
|
|
173
|
+
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
174
|
+
};
|
|
175
|
+
export var AssistantAssociationOutputData;
|
|
176
|
+
(function (AssistantAssociationOutputData) {
|
|
177
|
+
AssistantAssociationOutputData.visit = (value, visitor) => {
|
|
178
|
+
if (value.knowledgeBaseAssociation !== undefined)
|
|
179
|
+
return visitor.knowledgeBaseAssociation(value.knowledgeBaseAssociation);
|
|
180
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
181
|
+
};
|
|
182
|
+
})(AssistantAssociationOutputData || (AssistantAssociationOutputData = {}));
|
|
83
183
|
export const AssistantType = {
|
|
84
184
|
AGENT: "AGENT",
|
|
85
185
|
};
|
|
@@ -103,6 +203,10 @@ export const RelevanceLevel = {
|
|
|
103
203
|
export const SourceContentType = {
|
|
104
204
|
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
105
205
|
};
|
|
206
|
+
export const ReferenceType = {
|
|
207
|
+
KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
|
|
208
|
+
WEB_CRAWLER: "WEB_CRAWLER",
|
|
209
|
+
};
|
|
106
210
|
export var DataReference;
|
|
107
211
|
(function (DataReference) {
|
|
108
212
|
DataReference.visit = (value, visitor) => {
|
|
@@ -114,6 +218,7 @@ export var DataReference;
|
|
|
114
218
|
};
|
|
115
219
|
})(DataReference || (DataReference = {}));
|
|
116
220
|
export const RecommendationType = {
|
|
221
|
+
DETECTED_INTENT: "DETECTED_INTENT",
|
|
117
222
|
GENERATIVE_ANSWER: "GENERATIVE_ANSWER",
|
|
118
223
|
GENERATIVE_RESPONSE: "GENERATIVE_RESPONSE",
|
|
119
224
|
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
@@ -165,8 +270,19 @@ export var QueryCondition;
|
|
|
165
270
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
166
271
|
};
|
|
167
272
|
})(QueryCondition || (QueryCondition = {}));
|
|
273
|
+
export var QueryInputData;
|
|
274
|
+
(function (QueryInputData) {
|
|
275
|
+
QueryInputData.visit = (value, visitor) => {
|
|
276
|
+
if (value.queryTextInputData !== undefined)
|
|
277
|
+
return visitor.queryTextInputData(value.queryTextInputData);
|
|
278
|
+
if (value.intentInputData !== undefined)
|
|
279
|
+
return visitor.intentInputData(value.intentInputData);
|
|
280
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
281
|
+
};
|
|
282
|
+
})(QueryInputData || (QueryInputData = {}));
|
|
168
283
|
export const QueryResultType = {
|
|
169
284
|
GENERATIVE_ANSWER: "GENERATIVE_ANSWER",
|
|
285
|
+
INTENT_ANSWER: "INTENT_ANSWER",
|
|
170
286
|
KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT",
|
|
171
287
|
};
|
|
172
288
|
export class RequestTimeoutException extends __BaseException {
|
|
@@ -188,28 +304,23 @@ export const FilterField = {
|
|
|
188
304
|
export const FilterOperator = {
|
|
189
305
|
EQUALS: "EQUALS",
|
|
190
306
|
};
|
|
191
|
-
export var
|
|
192
|
-
(function (
|
|
193
|
-
|
|
194
|
-
if (value.
|
|
195
|
-
return visitor.
|
|
196
|
-
if (value.tagCondition !== undefined)
|
|
197
|
-
return visitor.tagCondition(value.tagCondition);
|
|
198
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
199
|
-
};
|
|
200
|
-
})(OrCondition || (OrCondition = {}));
|
|
201
|
-
export var TagFilter;
|
|
202
|
-
(function (TagFilter) {
|
|
203
|
-
TagFilter.visit = (value, visitor) => {
|
|
204
|
-
if (value.tagCondition !== undefined)
|
|
205
|
-
return visitor.tagCondition(value.tagCondition);
|
|
206
|
-
if (value.andConditions !== undefined)
|
|
207
|
-
return visitor.andConditions(value.andConditions);
|
|
208
|
-
if (value.orConditions !== undefined)
|
|
209
|
-
return visitor.orConditions(value.orConditions);
|
|
307
|
+
export var RuntimeSessionDataValue;
|
|
308
|
+
(function (RuntimeSessionDataValue) {
|
|
309
|
+
RuntimeSessionDataValue.visit = (value, visitor) => {
|
|
310
|
+
if (value.stringValue !== undefined)
|
|
311
|
+
return visitor.stringValue(value.stringValue);
|
|
210
312
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
211
313
|
};
|
|
212
|
-
})(
|
|
314
|
+
})(RuntimeSessionDataValue || (RuntimeSessionDataValue = {}));
|
|
315
|
+
export const SessionDataNamespace = {
|
|
316
|
+
Custom: "Custom",
|
|
317
|
+
};
|
|
318
|
+
export const ChunkingStrategy = {
|
|
319
|
+
FIXED_SIZE: "FIXED_SIZE",
|
|
320
|
+
HIERARCHICAL: "HIERARCHICAL",
|
|
321
|
+
NONE: "NONE",
|
|
322
|
+
SEMANTIC: "SEMANTIC",
|
|
323
|
+
};
|
|
213
324
|
export var Configuration;
|
|
214
325
|
(function (Configuration) {
|
|
215
326
|
Configuration.visit = (value, visitor) => {
|
|
@@ -229,19 +340,6 @@ export var ContentAssociationContents;
|
|
|
229
340
|
export const ContentAssociationType = {
|
|
230
341
|
AMAZON_CONNECT_GUIDE: "AMAZON_CONNECT_GUIDE",
|
|
231
342
|
};
|
|
232
|
-
export class ThrottlingException extends __BaseException {
|
|
233
|
-
constructor(opts) {
|
|
234
|
-
super({
|
|
235
|
-
name: "ThrottlingException",
|
|
236
|
-
$fault: "client",
|
|
237
|
-
...opts,
|
|
238
|
-
});
|
|
239
|
-
this.name = "ThrottlingException";
|
|
240
|
-
this.$fault = "client";
|
|
241
|
-
this.$retryable = {};
|
|
242
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
343
|
export const ContentStatus = {
|
|
246
344
|
ACTIVE: "ACTIVE",
|
|
247
345
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -266,16 +364,41 @@ export class PreconditionFailedException extends __BaseException {
|
|
|
266
364
|
export const KnowledgeBaseType = {
|
|
267
365
|
CUSTOM: "CUSTOM",
|
|
268
366
|
EXTERNAL: "EXTERNAL",
|
|
367
|
+
MANAGED: "MANAGED",
|
|
368
|
+
MESSAGE_TEMPLATES: "MESSAGE_TEMPLATES",
|
|
269
369
|
QUICK_RESPONSES: "QUICK_RESPONSES",
|
|
270
370
|
};
|
|
371
|
+
export const WebScopeType = {
|
|
372
|
+
HOST_ONLY: "HOST_ONLY",
|
|
373
|
+
SUBDOMAINS: "SUBDOMAINS",
|
|
374
|
+
};
|
|
375
|
+
export var ManagedSourceConfiguration;
|
|
376
|
+
(function (ManagedSourceConfiguration) {
|
|
377
|
+
ManagedSourceConfiguration.visit = (value, visitor) => {
|
|
378
|
+
if (value.webCrawlerConfiguration !== undefined)
|
|
379
|
+
return visitor.webCrawlerConfiguration(value.webCrawlerConfiguration);
|
|
380
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
381
|
+
};
|
|
382
|
+
})(ManagedSourceConfiguration || (ManagedSourceConfiguration = {}));
|
|
271
383
|
export var SourceConfiguration;
|
|
272
384
|
(function (SourceConfiguration) {
|
|
273
385
|
SourceConfiguration.visit = (value, visitor) => {
|
|
274
386
|
if (value.appIntegrations !== undefined)
|
|
275
387
|
return visitor.appIntegrations(value.appIntegrations);
|
|
388
|
+
if (value.managedSourceConfiguration !== undefined)
|
|
389
|
+
return visitor.managedSourceConfiguration(value.managedSourceConfiguration);
|
|
276
390
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
277
391
|
};
|
|
278
392
|
})(SourceConfiguration || (SourceConfiguration = {}));
|
|
393
|
+
export const ParsingStrategy = {
|
|
394
|
+
BEDROCK_FOUNDATION_MODEL: "BEDROCK_FOUNDATION_MODEL",
|
|
395
|
+
};
|
|
396
|
+
export const SyncStatus = {
|
|
397
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
398
|
+
SYNCING_IN_PROGRESS: "SYNCING_IN_PROGRESS",
|
|
399
|
+
SYNC_FAILED: "SYNC_FAILED",
|
|
400
|
+
SYNC_SUCCESS: "SYNC_SUCCESS",
|
|
401
|
+
};
|
|
279
402
|
export const KnowledgeBaseStatus = {
|
|
280
403
|
ACTIVE: "ACTIVE",
|
|
281
404
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -361,11 +484,59 @@ export var DataDetails;
|
|
|
361
484
|
return visitor.contentData(value.contentData);
|
|
362
485
|
if (value.generativeData !== undefined)
|
|
363
486
|
return visitor.generativeData(value.generativeData);
|
|
487
|
+
if (value.intentDetectedData !== undefined)
|
|
488
|
+
return visitor.intentDetectedData(value.intentDetectedData);
|
|
364
489
|
if (value.sourceContentData !== undefined)
|
|
365
490
|
return visitor.sourceContentData(value.sourceContentData);
|
|
366
491
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
367
492
|
};
|
|
368
493
|
})(DataDetails || (DataDetails = {}));
|
|
494
|
+
export const TextFullAIPromptEditTemplateConfigurationFilterSensitiveLog = (obj) => ({
|
|
495
|
+
...obj,
|
|
496
|
+
...(obj.text && { text: SENSITIVE_STRING }),
|
|
497
|
+
});
|
|
498
|
+
export const AIPromptTemplateConfigurationFilterSensitiveLog = (obj) => {
|
|
499
|
+
if (obj.textFullAIPromptEditTemplateConfiguration !== undefined)
|
|
500
|
+
return {
|
|
501
|
+
textFullAIPromptEditTemplateConfiguration: TextFullAIPromptEditTemplateConfigurationFilterSensitiveLog(obj.textFullAIPromptEditTemplateConfiguration),
|
|
502
|
+
};
|
|
503
|
+
if (obj.$unknown !== undefined)
|
|
504
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
505
|
+
};
|
|
506
|
+
export const CreateAIPromptRequestFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
...(obj.templateConfiguration && {
|
|
509
|
+
templateConfiguration: AIPromptTemplateConfigurationFilterSensitiveLog(obj.templateConfiguration),
|
|
510
|
+
}),
|
|
511
|
+
});
|
|
512
|
+
export const AIPromptDataFilterSensitiveLog = (obj) => ({
|
|
513
|
+
...obj,
|
|
514
|
+
...(obj.templateConfiguration && {
|
|
515
|
+
templateConfiguration: AIPromptTemplateConfigurationFilterSensitiveLog(obj.templateConfiguration),
|
|
516
|
+
}),
|
|
517
|
+
});
|
|
518
|
+
export const CreateAIPromptResponseFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
...(obj.aiPrompt && { aiPrompt: AIPromptDataFilterSensitiveLog(obj.aiPrompt) }),
|
|
521
|
+
});
|
|
522
|
+
export const CreateAIPromptVersionResponseFilterSensitiveLog = (obj) => ({
|
|
523
|
+
...obj,
|
|
524
|
+
...(obj.aiPrompt && { aiPrompt: AIPromptDataFilterSensitiveLog(obj.aiPrompt) }),
|
|
525
|
+
});
|
|
526
|
+
export const GetAIPromptResponseFilterSensitiveLog = (obj) => ({
|
|
527
|
+
...obj,
|
|
528
|
+
...(obj.aiPrompt && { aiPrompt: AIPromptDataFilterSensitiveLog(obj.aiPrompt) }),
|
|
529
|
+
});
|
|
530
|
+
export const UpdateAIPromptRequestFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
...(obj.templateConfiguration && {
|
|
533
|
+
templateConfiguration: AIPromptTemplateConfigurationFilterSensitiveLog(obj.templateConfiguration),
|
|
534
|
+
}),
|
|
535
|
+
});
|
|
536
|
+
export const UpdateAIPromptResponseFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
...(obj.aiPrompt && { aiPrompt: AIPromptDataFilterSensitiveLog(obj.aiPrompt) }),
|
|
539
|
+
});
|
|
369
540
|
export const DocumentTextFilterSensitiveLog = (obj) => ({
|
|
370
541
|
...obj,
|
|
371
542
|
...(obj.text && { text: SENSITIVE_STRING }),
|
|
@@ -379,6 +550,10 @@ export const ContentDataDetailsFilterSensitiveLog = (obj) => ({
|
|
|
379
550
|
...obj,
|
|
380
551
|
...(obj.textData && { textData: TextDataFilterSensitiveLog(obj.textData) }),
|
|
381
552
|
});
|
|
553
|
+
export const IntentDetectedDataDetailsFilterSensitiveLog = (obj) => ({
|
|
554
|
+
...obj,
|
|
555
|
+
...(obj.intent && { intent: SENSITIVE_STRING }),
|
|
556
|
+
});
|
|
382
557
|
export const SourceContentDataDetailsFilterSensitiveLog = (obj) => ({
|
|
383
558
|
...obj,
|
|
384
559
|
...(obj.textData && { textData: TextDataFilterSensitiveLog(obj.textData) }),
|
|
@@ -402,10 +577,42 @@ export const RecommendationTriggerFilterSensitiveLog = (obj) => ({
|
|
|
402
577
|
...obj,
|
|
403
578
|
...(obj.data && { data: RecommendationTriggerDataFilterSensitiveLog(obj.data) }),
|
|
404
579
|
});
|
|
580
|
+
export const QueryTextInputDataFilterSensitiveLog = (obj) => ({
|
|
581
|
+
...obj,
|
|
582
|
+
...(obj.text && { text: SENSITIVE_STRING }),
|
|
583
|
+
});
|
|
584
|
+
export const QueryInputDataFilterSensitiveLog = (obj) => {
|
|
585
|
+
if (obj.queryTextInputData !== undefined)
|
|
586
|
+
return { queryTextInputData: QueryTextInputDataFilterSensitiveLog(obj.queryTextInputData) };
|
|
587
|
+
if (obj.intentInputData !== undefined)
|
|
588
|
+
return { intentInputData: obj.intentInputData };
|
|
589
|
+
if (obj.$unknown !== undefined)
|
|
590
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
591
|
+
};
|
|
405
592
|
export const QueryAssistantRequestFilterSensitiveLog = (obj) => ({
|
|
406
593
|
...obj,
|
|
407
594
|
...(obj.queryText && { queryText: SENSITIVE_STRING }),
|
|
408
595
|
...(obj.queryCondition && { queryCondition: obj.queryCondition.map((item) => item) }),
|
|
596
|
+
...(obj.queryInputData && { queryInputData: QueryInputDataFilterSensitiveLog(obj.queryInputData) }),
|
|
597
|
+
});
|
|
598
|
+
export const RuntimeSessionDataValueFilterSensitiveLog = (obj) => {
|
|
599
|
+
if (obj.stringValue !== undefined)
|
|
600
|
+
return { stringValue: SENSITIVE_STRING };
|
|
601
|
+
if (obj.$unknown !== undefined)
|
|
602
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
603
|
+
};
|
|
604
|
+
export const RuntimeSessionDataFilterSensitiveLog = (obj) => ({
|
|
605
|
+
...obj,
|
|
606
|
+
...(obj.key && { key: SENSITIVE_STRING }),
|
|
607
|
+
...(obj.value && { value: RuntimeSessionDataValueFilterSensitiveLog(obj.value) }),
|
|
608
|
+
});
|
|
609
|
+
export const UpdateSessionDataRequestFilterSensitiveLog = (obj) => ({
|
|
610
|
+
...obj,
|
|
611
|
+
...(obj.data && { data: obj.data.map((item) => RuntimeSessionDataFilterSensitiveLog(item)) }),
|
|
612
|
+
});
|
|
613
|
+
export const UpdateSessionDataResponseFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
...(obj.data && { data: obj.data.map((item) => RuntimeSessionDataFilterSensitiveLog(item)) }),
|
|
409
616
|
});
|
|
410
617
|
export const ContentDataFilterSensitiveLog = (obj) => ({
|
|
411
618
|
...obj,
|
|
@@ -423,6 +630,41 @@ export const UpdateContentResponseFilterSensitiveLog = (obj) => ({
|
|
|
423
630
|
...obj,
|
|
424
631
|
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
425
632
|
});
|
|
633
|
+
export const WebCrawlerConfigurationFilterSensitiveLog = (obj) => ({
|
|
634
|
+
...obj,
|
|
635
|
+
...(obj.inclusionFilters && { inclusionFilters: SENSITIVE_STRING }),
|
|
636
|
+
...(obj.exclusionFilters && { exclusionFilters: SENSITIVE_STRING }),
|
|
637
|
+
});
|
|
638
|
+
export const ManagedSourceConfigurationFilterSensitiveLog = (obj) => {
|
|
639
|
+
if (obj.webCrawlerConfiguration !== undefined)
|
|
640
|
+
return { webCrawlerConfiguration: WebCrawlerConfigurationFilterSensitiveLog(obj.webCrawlerConfiguration) };
|
|
641
|
+
if (obj.$unknown !== undefined)
|
|
642
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
643
|
+
};
|
|
644
|
+
export const SourceConfigurationFilterSensitiveLog = (obj) => {
|
|
645
|
+
if (obj.appIntegrations !== undefined)
|
|
646
|
+
return { appIntegrations: obj.appIntegrations };
|
|
647
|
+
if (obj.managedSourceConfiguration !== undefined)
|
|
648
|
+
return { managedSourceConfiguration: ManagedSourceConfigurationFilterSensitiveLog(obj.managedSourceConfiguration) };
|
|
649
|
+
if (obj.$unknown !== undefined)
|
|
650
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
651
|
+
};
|
|
652
|
+
export const CreateKnowledgeBaseRequestFilterSensitiveLog = (obj) => ({
|
|
653
|
+
...obj,
|
|
654
|
+
...(obj.sourceConfiguration && {
|
|
655
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
656
|
+
}),
|
|
657
|
+
});
|
|
658
|
+
export const KnowledgeBaseDataFilterSensitiveLog = (obj) => ({
|
|
659
|
+
...obj,
|
|
660
|
+
...(obj.sourceConfiguration && {
|
|
661
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
662
|
+
}),
|
|
663
|
+
});
|
|
664
|
+
export const CreateKnowledgeBaseResponseFilterSensitiveLog = (obj) => ({
|
|
665
|
+
...obj,
|
|
666
|
+
...(obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }),
|
|
667
|
+
});
|
|
426
668
|
export const QuickResponseDataProviderFilterSensitiveLog = (obj) => {
|
|
427
669
|
if (obj.content !== undefined)
|
|
428
670
|
return { content: SENSITIVE_STRING };
|
|
@@ -475,10 +717,26 @@ export const GetImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
|
475
717
|
...obj,
|
|
476
718
|
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
477
719
|
});
|
|
720
|
+
export const GetKnowledgeBaseResponseFilterSensitiveLog = (obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
...(obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }),
|
|
723
|
+
});
|
|
478
724
|
export const GetQuickResponseResponseFilterSensitiveLog = (obj) => ({
|
|
479
725
|
...obj,
|
|
480
726
|
...(obj.quickResponse && { quickResponse: QuickResponseDataFilterSensitiveLog(obj.quickResponse) }),
|
|
481
727
|
});
|
|
728
|
+
export const KnowledgeBaseSummaryFilterSensitiveLog = (obj) => ({
|
|
729
|
+
...obj,
|
|
730
|
+
...(obj.sourceConfiguration && {
|
|
731
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
732
|
+
}),
|
|
733
|
+
});
|
|
734
|
+
export const ListKnowledgeBasesResponseFilterSensitiveLog = (obj) => ({
|
|
735
|
+
...obj,
|
|
736
|
+
...(obj.knowledgeBaseSummaries && {
|
|
737
|
+
knowledgeBaseSummaries: obj.knowledgeBaseSummaries.map((item) => KnowledgeBaseSummaryFilterSensitiveLog(item)),
|
|
738
|
+
}),
|
|
739
|
+
});
|
|
482
740
|
export const QuickResponseSummaryFilterSensitiveLog = (obj) => ({
|
|
483
741
|
...obj,
|
|
484
742
|
...(obj.channels && { channels: SENSITIVE_STRING }),
|
|
@@ -527,11 +785,17 @@ export const StartImportJobResponseFilterSensitiveLog = (obj) => ({
|
|
|
527
785
|
...obj,
|
|
528
786
|
...(obj.importJob && { importJob: ImportJobDataFilterSensitiveLog(obj.importJob) }),
|
|
529
787
|
});
|
|
788
|
+
export const UpdateKnowledgeBaseTemplateUriResponseFilterSensitiveLog = (obj) => ({
|
|
789
|
+
...obj,
|
|
790
|
+
...(obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }),
|
|
791
|
+
});
|
|
530
792
|
export const DataDetailsFilterSensitiveLog = (obj) => {
|
|
531
793
|
if (obj.contentData !== undefined)
|
|
532
794
|
return { contentData: ContentDataDetailsFilterSensitiveLog(obj.contentData) };
|
|
533
795
|
if (obj.generativeData !== undefined)
|
|
534
796
|
return { generativeData: GenerativeDataDetailsFilterSensitiveLog(obj.generativeData) };
|
|
797
|
+
if (obj.intentDetectedData !== undefined)
|
|
798
|
+
return { intentDetectedData: IntentDetectedDataDetailsFilterSensitiveLog(obj.intentDetectedData) };
|
|
535
799
|
if (obj.sourceContentData !== undefined)
|
|
536
800
|
return { sourceContentData: SourceContentDataDetailsFilterSensitiveLog(obj.sourceContentData) };
|
|
537
801
|
if (obj.$unknown !== undefined)
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAIAgentVersionsCommand, } from "../commands/ListAIAgentVersionsCommand";
|
|
3
|
+
import { QConnectClient } from "../QConnectClient";
|
|
4
|
+
export const paginateListAIAgentVersions = createPaginator(QConnectClient, ListAIAgentVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAIAgentsCommand, } from "../commands/ListAIAgentsCommand";
|
|
3
|
+
import { QConnectClient } from "../QConnectClient";
|
|
4
|
+
export const paginateListAIAgents = createPaginator(QConnectClient, ListAIAgentsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAIPromptVersionsCommand, } from "../commands/ListAIPromptVersionsCommand";
|
|
3
|
+
import { QConnectClient } from "../QConnectClient";
|
|
4
|
+
export const paginateListAIPromptVersions = createPaginator(QConnectClient, ListAIPromptVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListAIPromptsCommand, } from "../commands/ListAIPromptsCommand";
|
|
3
|
+
import { QConnectClient } from "../QConnectClient";
|
|
4
|
+
export const paginateListAIPrompts = createPaginator(QConnectClient, ListAIPromptsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAIAgentVersionsPaginator";
|
|
3
|
+
export * from "./ListAIAgentsPaginator";
|
|
4
|
+
export * from "./ListAIPromptVersionsPaginator";
|
|
5
|
+
export * from "./ListAIPromptsPaginator";
|
|
2
6
|
export * from "./ListAssistantAssociationsPaginator";
|
|
3
7
|
export * from "./ListAssistantsPaginator";
|
|
4
8
|
export * from "./ListContentAssociationsPaginator";
|