@aws-sdk/client-connect 3.47.2 → 3.51.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/CHANGELOG.md +38 -0
- package/README.md +2 -3
- package/dist-cjs/Connect.js +90 -0
- package/dist-cjs/commands/AssociateDefaultVocabularyCommand.js +36 -0
- package/dist-cjs/commands/CreateVocabularyCommand.js +36 -0
- package/dist-cjs/commands/DeleteVocabularyCommand.js +36 -0
- package/dist-cjs/commands/DescribeVocabularyCommand.js +36 -0
- package/dist-cjs/commands/ListDefaultVocabulariesCommand.js +36 -0
- package/dist-cjs/commands/SearchVocabulariesCommand.js +36 -0
- package/dist-cjs/commands/StartOutboundVoiceContactCommand.js +3 -3
- package/dist-cjs/commands/StartTaskContactCommand.js +3 -3
- package/dist-cjs/commands/StopContactCommand.js +3 -3
- package/dist-cjs/commands/StopContactRecordingCommand.js +3 -3
- package/dist-cjs/commands/StopContactStreamingCommand.js +3 -3
- package/dist-cjs/commands/SuspendContactRecordingCommand.js +3 -3
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +127 -95
- package/dist-cjs/models/models_1.js +91 -1
- package/dist-cjs/pagination/ListDefaultVocabulariesPaginator.js +35 -0
- package/dist-cjs/pagination/SearchVocabulariesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +800 -7
- package/dist-es/Connect.js +90 -0
- package/dist-es/commands/AssociateDefaultVocabularyCommand.js +39 -0
- package/dist-es/commands/CreateVocabularyCommand.js +39 -0
- package/dist-es/commands/DeleteVocabularyCommand.js +39 -0
- package/dist-es/commands/DescribeVocabularyCommand.js +39 -0
- package/dist-es/commands/ListDefaultVocabulariesCommand.js +39 -0
- package/dist-es/commands/SearchVocabulariesCommand.js +39 -0
- package/dist-es/commands/StartOutboundVoiceContactCommand.js +1 -1
- package/dist-es/commands/StartTaskContactCommand.js +1 -1
- package/dist-es/commands/StopContactCommand.js +1 -1
- package/dist-es/commands/StopContactRecordingCommand.js +1 -1
- package/dist-es/commands/StopContactStreamingCommand.js +1 -1
- package/dist-es/commands/SuspendContactRecordingCommand.js +1 -1
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +91 -61
- package/dist-es/models/models_1.js +61 -0
- package/dist-es/pagination/ListDefaultVocabulariesPaginator.js +74 -0
- package/dist-es/pagination/SearchVocabulariesPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +948 -63
- package/dist-types/Connect.d.ts +63 -16
- package/dist-types/ConnectClient.d.ts +10 -5
- package/dist-types/commands/AssociateDefaultVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/CreateIntegrationAssociationCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteIntegrationAssociationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/DescribeVocabularyCommand.d.ts +35 -0
- package/dist-types/commands/ListBotsCommand.d.ts +2 -2
- package/dist-types/commands/ListDefaultVocabulariesCommand.d.ts +35 -0
- package/dist-types/commands/ListIntegrationAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/SearchVocabulariesCommand.d.ts +35 -0
- package/dist-types/commands/StartChatContactCommand.d.ts +4 -1
- package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
- package/dist-types/commands/StartOutboundVoiceContactCommand.d.ts +4 -3
- package/dist-types/commands/StartTaskContactCommand.d.ts +1 -1
- package/dist-types/commands/StopContactCommand.d.ts +1 -1
- package/dist-types/commands/StopContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/StopContactStreamingCommand.d.ts +1 -1
- package/dist-types/commands/SuspendContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +445 -347
- package/dist-types/models/models_1.d.ts +337 -2
- package/dist-types/pagination/ListDefaultVocabulariesPaginator.d.ts +4 -0
- package/dist-types/pagination/SearchVocabulariesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Connect.d.ts +30 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +8 -2
- package/dist-types/ts3.4/commands/AssociateDefaultVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeVocabularyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDefaultVocabulariesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchVocabulariesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartOutboundVoiceContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTaskContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopContactStreamingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SuspendContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +244 -182
- package/dist-types/ts3.4/models/models_1.d.ts +184 -1
- package/dist-types/ts3.4/pagination/ListDefaultVocabulariesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchVocabulariesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +39 -33
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@a
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "../commands/AssociateApprovedOriginCommand";
|
|
4
4
|
import { AssociateBotCommandInput, AssociateBotCommandOutput } from "../commands/AssociateBotCommand";
|
|
5
|
+
import { AssociateDefaultVocabularyCommandInput, AssociateDefaultVocabularyCommandOutput } from "../commands/AssociateDefaultVocabularyCommand";
|
|
5
6
|
import { AssociateInstanceStorageConfigCommandInput, AssociateInstanceStorageConfigCommandOutput } from "../commands/AssociateInstanceStorageConfigCommand";
|
|
6
7
|
import { AssociateLambdaFunctionCommandInput, AssociateLambdaFunctionCommandOutput } from "../commands/AssociateLambdaFunctionCommand";
|
|
7
8
|
import { AssociateLexBotCommandInput, AssociateLexBotCommandOutput } from "../commands/AssociateLexBotCommand";
|
|
@@ -21,6 +22,7 @@ import { CreateSecurityProfileCommandInput, CreateSecurityProfileCommandOutput }
|
|
|
21
22
|
import { CreateUseCaseCommandInput, CreateUseCaseCommandOutput } from "../commands/CreateUseCaseCommand";
|
|
22
23
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
23
24
|
import { CreateUserHierarchyGroupCommandInput, CreateUserHierarchyGroupCommandOutput } from "../commands/CreateUserHierarchyGroupCommand";
|
|
25
|
+
import { CreateVocabularyCommandInput, CreateVocabularyCommandOutput } from "../commands/CreateVocabularyCommand";
|
|
24
26
|
import { DeleteContactFlowCommandInput, DeleteContactFlowCommandOutput } from "../commands/DeleteContactFlowCommand";
|
|
25
27
|
import { DeleteContactFlowModuleCommandInput, DeleteContactFlowModuleCommandOutput } from "../commands/DeleteContactFlowModuleCommand";
|
|
26
28
|
import { DeleteHoursOfOperationCommandInput, DeleteHoursOfOperationCommandOutput } from "../commands/DeleteHoursOfOperationCommand";
|
|
@@ -31,6 +33,7 @@ import { DeleteSecurityProfileCommandInput, DeleteSecurityProfileCommandOutput }
|
|
|
31
33
|
import { DeleteUseCaseCommandInput, DeleteUseCaseCommandOutput } from "../commands/DeleteUseCaseCommand";
|
|
32
34
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
33
35
|
import { DeleteUserHierarchyGroupCommandInput, DeleteUserHierarchyGroupCommandOutput } from "../commands/DeleteUserHierarchyGroupCommand";
|
|
36
|
+
import { DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput } from "../commands/DeleteVocabularyCommand";
|
|
34
37
|
import { DescribeAgentStatusCommandInput, DescribeAgentStatusCommandOutput } from "../commands/DescribeAgentStatusCommand";
|
|
35
38
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
|
|
36
39
|
import { DescribeContactFlowCommandInput, DescribeContactFlowCommandOutput } from "../commands/DescribeContactFlowCommand";
|
|
@@ -46,6 +49,7 @@ import { DescribeSecurityProfileCommandInput, DescribeSecurityProfileCommandOutp
|
|
|
46
49
|
import { DescribeUserCommandInput, DescribeUserCommandOutput } from "../commands/DescribeUserCommand";
|
|
47
50
|
import { DescribeUserHierarchyGroupCommandInput, DescribeUserHierarchyGroupCommandOutput } from "../commands/DescribeUserHierarchyGroupCommand";
|
|
48
51
|
import { DescribeUserHierarchyStructureCommandInput, DescribeUserHierarchyStructureCommandOutput } from "../commands/DescribeUserHierarchyStructureCommand";
|
|
52
|
+
import { DescribeVocabularyCommandInput, DescribeVocabularyCommandOutput } from "../commands/DescribeVocabularyCommand";
|
|
49
53
|
import { DisassociateApprovedOriginCommandInput, DisassociateApprovedOriginCommandOutput } from "../commands/DisassociateApprovedOriginCommand";
|
|
50
54
|
import { DisassociateBotCommandInput, DisassociateBotCommandOutput } from "../commands/DisassociateBotCommand";
|
|
51
55
|
import { DisassociateInstanceStorageConfigCommandInput, DisassociateInstanceStorageConfigCommandOutput } from "../commands/DisassociateInstanceStorageConfigCommand";
|
|
@@ -64,6 +68,7 @@ import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBot
|
|
|
64
68
|
import { ListContactFlowModulesCommandInput, ListContactFlowModulesCommandOutput } from "../commands/ListContactFlowModulesCommand";
|
|
65
69
|
import { ListContactFlowsCommandInput, ListContactFlowsCommandOutput } from "../commands/ListContactFlowsCommand";
|
|
66
70
|
import { ListContactReferencesCommandInput, ListContactReferencesCommandOutput } from "../commands/ListContactReferencesCommand";
|
|
71
|
+
import { ListDefaultVocabulariesCommandInput, ListDefaultVocabulariesCommandOutput } from "../commands/ListDefaultVocabulariesCommand";
|
|
67
72
|
import { ListHoursOfOperationsCommandInput, ListHoursOfOperationsCommandOutput } from "../commands/ListHoursOfOperationsCommand";
|
|
68
73
|
import { ListInstanceAttributesCommandInput, ListInstanceAttributesCommandOutput } from "../commands/ListInstanceAttributesCommand";
|
|
69
74
|
import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
|
|
@@ -86,6 +91,7 @@ import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "../commands
|
|
|
86
91
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "../commands/ListUserHierarchyGroupsCommand";
|
|
87
92
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
88
93
|
import { ResumeContactRecordingCommandInput, ResumeContactRecordingCommandOutput } from "../commands/ResumeContactRecordingCommand";
|
|
94
|
+
import { SearchVocabulariesCommandInput, SearchVocabulariesCommandOutput } from "../commands/SearchVocabulariesCommand";
|
|
89
95
|
import { StartChatContactCommandInput, StartChatContactCommandOutput } from "../commands/StartChatContactCommand";
|
|
90
96
|
import { StartContactRecordingCommandInput, StartContactRecordingCommandOutput } from "../commands/StartContactRecordingCommand";
|
|
91
97
|
import { StartContactStreamingCommandInput, StartContactStreamingCommandOutput } from "../commands/StartContactStreamingCommand";
|
|
@@ -130,6 +136,7 @@ import { UpdateUserRoutingProfileCommandInput, UpdateUserRoutingProfileCommandOu
|
|
|
130
136
|
import { UpdateUserSecurityProfilesCommandInput, UpdateUserSecurityProfilesCommandOutput } from "../commands/UpdateUserSecurityProfilesCommand";
|
|
131
137
|
export declare const serializeAws_restJson1AssociateApprovedOriginCommand: (input: AssociateApprovedOriginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
138
|
export declare const serializeAws_restJson1AssociateBotCommand: (input: AssociateBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
|
+
export declare const serializeAws_restJson1AssociateDefaultVocabularyCommand: (input: AssociateDefaultVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
140
|
export declare const serializeAws_restJson1AssociateInstanceStorageConfigCommand: (input: AssociateInstanceStorageConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
141
|
export declare const serializeAws_restJson1AssociateLambdaFunctionCommand: (input: AssociateLambdaFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
135
142
|
export declare const serializeAws_restJson1AssociateLexBotCommand: (input: AssociateLexBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -149,6 +156,7 @@ export declare const serializeAws_restJson1CreateSecurityProfileCommand: (input:
|
|
|
149
156
|
export declare const serializeAws_restJson1CreateUseCaseCommand: (input: CreateUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
157
|
export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
158
|
export declare const serializeAws_restJson1CreateUserHierarchyGroupCommand: (input: CreateUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
|
+
export declare const serializeAws_restJson1CreateVocabularyCommand: (input: CreateVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
160
|
export declare const serializeAws_restJson1DeleteContactFlowCommand: (input: DeleteContactFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
161
|
export declare const serializeAws_restJson1DeleteContactFlowModuleCommand: (input: DeleteContactFlowModuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
162
|
export declare const serializeAws_restJson1DeleteHoursOfOperationCommand: (input: DeleteHoursOfOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -159,6 +167,7 @@ export declare const serializeAws_restJson1DeleteSecurityProfileCommand: (input:
|
|
|
159
167
|
export declare const serializeAws_restJson1DeleteUseCaseCommand: (input: DeleteUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
168
|
export declare const serializeAws_restJson1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
169
|
export declare const serializeAws_restJson1DeleteUserHierarchyGroupCommand: (input: DeleteUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1DeleteVocabularyCommand: (input: DeleteVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
171
|
export declare const serializeAws_restJson1DescribeAgentStatusCommand: (input: DescribeAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
172
|
export declare const serializeAws_restJson1DescribeContactCommand: (input: DescribeContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
173
|
export declare const serializeAws_restJson1DescribeContactFlowCommand: (input: DescribeContactFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -174,6 +183,7 @@ export declare const serializeAws_restJson1DescribeSecurityProfileCommand: (inpu
|
|
|
174
183
|
export declare const serializeAws_restJson1DescribeUserCommand: (input: DescribeUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
175
184
|
export declare const serializeAws_restJson1DescribeUserHierarchyGroupCommand: (input: DescribeUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
185
|
export declare const serializeAws_restJson1DescribeUserHierarchyStructureCommand: (input: DescribeUserHierarchyStructureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1DescribeVocabularyCommand: (input: DescribeVocabularyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
187
|
export declare const serializeAws_restJson1DisassociateApprovedOriginCommand: (input: DisassociateApprovedOriginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
188
|
export declare const serializeAws_restJson1DisassociateBotCommand: (input: DisassociateBotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
179
189
|
export declare const serializeAws_restJson1DisassociateInstanceStorageConfigCommand: (input: DisassociateInstanceStorageConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -192,6 +202,7 @@ export declare const serializeAws_restJson1ListBotsCommand: (input: ListBotsComm
|
|
|
192
202
|
export declare const serializeAws_restJson1ListContactFlowModulesCommand: (input: ListContactFlowModulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
193
203
|
export declare const serializeAws_restJson1ListContactFlowsCommand: (input: ListContactFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
194
204
|
export declare const serializeAws_restJson1ListContactReferencesCommand: (input: ListContactReferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
205
|
+
export declare const serializeAws_restJson1ListDefaultVocabulariesCommand: (input: ListDefaultVocabulariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
195
206
|
export declare const serializeAws_restJson1ListHoursOfOperationsCommand: (input: ListHoursOfOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
196
207
|
export declare const serializeAws_restJson1ListInstanceAttributesCommand: (input: ListInstanceAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
197
208
|
export declare const serializeAws_restJson1ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -214,6 +225,7 @@ export declare const serializeAws_restJson1ListUseCasesCommand: (input: ListUseC
|
|
|
214
225
|
export declare const serializeAws_restJson1ListUserHierarchyGroupsCommand: (input: ListUserHierarchyGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
215
226
|
export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
216
227
|
export declare const serializeAws_restJson1ResumeContactRecordingCommand: (input: ResumeContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
|
+
export declare const serializeAws_restJson1SearchVocabulariesCommand: (input: SearchVocabulariesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
217
229
|
export declare const serializeAws_restJson1StartChatContactCommand: (input: StartChatContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
218
230
|
export declare const serializeAws_restJson1StartContactRecordingCommand: (input: StartContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
219
231
|
export declare const serializeAws_restJson1StartContactStreamingCommand: (input: StartContactStreamingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -258,6 +270,7 @@ export declare const serializeAws_restJson1UpdateUserRoutingProfileCommand: (inp
|
|
|
258
270
|
export declare const serializeAws_restJson1UpdateUserSecurityProfilesCommand: (input: UpdateUserSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
271
|
export declare const deserializeAws_restJson1AssociateApprovedOriginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApprovedOriginCommandOutput>;
|
|
260
272
|
export declare const deserializeAws_restJson1AssociateBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateBotCommandOutput>;
|
|
273
|
+
export declare const deserializeAws_restJson1AssociateDefaultVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateDefaultVocabularyCommandOutput>;
|
|
261
274
|
export declare const deserializeAws_restJson1AssociateInstanceStorageConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateInstanceStorageConfigCommandOutput>;
|
|
262
275
|
export declare const deserializeAws_restJson1AssociateLambdaFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLambdaFunctionCommandOutput>;
|
|
263
276
|
export declare const deserializeAws_restJson1AssociateLexBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLexBotCommandOutput>;
|
|
@@ -277,6 +290,7 @@ export declare const deserializeAws_restJson1CreateSecurityProfileCommand: (outp
|
|
|
277
290
|
export declare const deserializeAws_restJson1CreateUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUseCaseCommandOutput>;
|
|
278
291
|
export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
279
292
|
export declare const deserializeAws_restJson1CreateUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserHierarchyGroupCommandOutput>;
|
|
293
|
+
export declare const deserializeAws_restJson1CreateVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVocabularyCommandOutput>;
|
|
280
294
|
export declare const deserializeAws_restJson1DeleteContactFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactFlowCommandOutput>;
|
|
281
295
|
export declare const deserializeAws_restJson1DeleteContactFlowModuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteContactFlowModuleCommandOutput>;
|
|
282
296
|
export declare const deserializeAws_restJson1DeleteHoursOfOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteHoursOfOperationCommandOutput>;
|
|
@@ -287,6 +301,7 @@ export declare const deserializeAws_restJson1DeleteSecurityProfileCommand: (outp
|
|
|
287
301
|
export declare const deserializeAws_restJson1DeleteUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUseCaseCommandOutput>;
|
|
288
302
|
export declare const deserializeAws_restJson1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
289
303
|
export declare const deserializeAws_restJson1DeleteUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserHierarchyGroupCommandOutput>;
|
|
304
|
+
export declare const deserializeAws_restJson1DeleteVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVocabularyCommandOutput>;
|
|
290
305
|
export declare const deserializeAws_restJson1DescribeAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAgentStatusCommandOutput>;
|
|
291
306
|
export declare const deserializeAws_restJson1DescribeContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactCommandOutput>;
|
|
292
307
|
export declare const deserializeAws_restJson1DescribeContactFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactFlowCommandOutput>;
|
|
@@ -302,6 +317,7 @@ export declare const deserializeAws_restJson1DescribeSecurityProfileCommand: (ou
|
|
|
302
317
|
export declare const deserializeAws_restJson1DescribeUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserCommandOutput>;
|
|
303
318
|
export declare const deserializeAws_restJson1DescribeUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserHierarchyGroupCommandOutput>;
|
|
304
319
|
export declare const deserializeAws_restJson1DescribeUserHierarchyStructureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUserHierarchyStructureCommandOutput>;
|
|
320
|
+
export declare const deserializeAws_restJson1DescribeVocabularyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVocabularyCommandOutput>;
|
|
305
321
|
export declare const deserializeAws_restJson1DisassociateApprovedOriginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApprovedOriginCommandOutput>;
|
|
306
322
|
export declare const deserializeAws_restJson1DisassociateBotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateBotCommandOutput>;
|
|
307
323
|
export declare const deserializeAws_restJson1DisassociateInstanceStorageConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateInstanceStorageConfigCommandOutput>;
|
|
@@ -320,6 +336,7 @@ export declare const deserializeAws_restJson1ListBotsCommand: (output: __HttpRes
|
|
|
320
336
|
export declare const deserializeAws_restJson1ListContactFlowModulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactFlowModulesCommandOutput>;
|
|
321
337
|
export declare const deserializeAws_restJson1ListContactFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactFlowsCommandOutput>;
|
|
322
338
|
export declare const deserializeAws_restJson1ListContactReferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListContactReferencesCommandOutput>;
|
|
339
|
+
export declare const deserializeAws_restJson1ListDefaultVocabulariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDefaultVocabulariesCommandOutput>;
|
|
323
340
|
export declare const deserializeAws_restJson1ListHoursOfOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHoursOfOperationsCommandOutput>;
|
|
324
341
|
export declare const deserializeAws_restJson1ListInstanceAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstanceAttributesCommandOutput>;
|
|
325
342
|
export declare const deserializeAws_restJson1ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
|
|
@@ -342,6 +359,7 @@ export declare const deserializeAws_restJson1ListUseCasesCommand: (output: __Htt
|
|
|
342
359
|
export declare const deserializeAws_restJson1ListUserHierarchyGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserHierarchyGroupsCommandOutput>;
|
|
343
360
|
export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
344
361
|
export declare const deserializeAws_restJson1ResumeContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeContactRecordingCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_restJson1SearchVocabulariesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchVocabulariesCommandOutput>;
|
|
345
363
|
export declare const deserializeAws_restJson1StartChatContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartChatContactCommandOutput>;
|
|
346
364
|
export declare const deserializeAws_restJson1StartContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContactRecordingCommandOutput>;
|
|
347
365
|
export declare const deserializeAws_restJson1StartContactStreamingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartContactStreamingCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,43 +18,49 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
56
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
57
|
"@types/node": "^12.7.5",
|
|
57
|
-
"@types/uuid": "^8.3.0"
|
|
58
|
+
"@types/uuid": "^8.3.0",
|
|
59
|
+
"concurrently": "7.0.0",
|
|
60
|
+
"downlevel-dts": "0.7.0",
|
|
61
|
+
"rimraf": "3.0.2",
|
|
62
|
+
"typedoc": "0.19.2",
|
|
63
|
+
"typescript": "~4.3.5"
|
|
58
64
|
},
|
|
59
65
|
"engines": {
|
|
60
66
|
"node": ">=12.0.0"
|