@aws-sdk/client-connect 3.100.0 → 3.104.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 +11 -0
- package/dist-cjs/Connect.js +90 -0
- package/dist-cjs/commands/CreateTaskTemplateCommand.js +36 -0
- package/dist-cjs/commands/DeleteTaskTemplateCommand.js +36 -0
- package/dist-cjs/commands/GetTaskTemplateCommand.js +36 -0
- package/dist-cjs/commands/ListSecurityKeysCommand.js +3 -3
- package/dist-cjs/commands/ListSecurityProfilePermissionsCommand.js +3 -3
- package/dist-cjs/commands/ListSecurityProfilesCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListTaskTemplatesCommand.js +36 -0
- package/dist-cjs/commands/ListUseCasesCommand.js +3 -3
- package/dist-cjs/commands/ListUserHierarchyGroupsCommand.js +3 -3
- package/dist-cjs/commands/ListUsersCommand.js +3 -3
- package/dist-cjs/commands/PutUserStatusCommand.js +3 -3
- package/dist-cjs/commands/ReleasePhoneNumberCommand.js +2 -2
- package/dist-cjs/commands/ResumeContactRecordingCommand.js +3 -3
- package/dist-cjs/commands/TransferContactCommand.js +36 -0
- package/dist-cjs/commands/UpdateTaskTemplateCommand.js +36 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +183 -143
- package/dist-cjs/models/models_1.js +183 -2
- package/dist-cjs/pagination/ListTaskTemplatesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1044 -38
- package/dist-es/Connect.js +90 -0
- package/dist-es/commands/CreateTaskTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteTaskTemplateCommand.js +39 -0
- package/dist-es/commands/GetTaskTemplateCommand.js +39 -0
- package/dist-es/commands/ListSecurityKeysCommand.js +1 -1
- package/dist-es/commands/ListSecurityProfilePermissionsCommand.js +1 -1
- package/dist-es/commands/ListSecurityProfilesCommand.js +1 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-es/commands/ListTaskTemplatesCommand.js +39 -0
- package/dist-es/commands/ListUseCasesCommand.js +1 -1
- package/dist-es/commands/ListUserHierarchyGroupsCommand.js +1 -1
- package/dist-es/commands/ListUsersCommand.js +1 -1
- package/dist-es/commands/PutUserStatusCommand.js +1 -1
- package/dist-es/commands/ReleasePhoneNumberCommand.js +1 -1
- package/dist-es/commands/ResumeContactRecordingCommand.js +1 -1
- package/dist-es/commands/TransferContactCommand.js +39 -0
- package/dist-es/commands/UpdateTaskTemplateCommand.js +39 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +139 -92
- package/dist-es/models/models_1.js +120 -0
- package/dist-es/pagination/ListTaskTemplatesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1175 -54
- package/dist-types/Connect.d.ts +97 -22
- package/dist-types/ConnectClient.d.ts +8 -2
- package/dist-types/commands/AssociateDefaultVocabularyCommand.d.ts +2 -1
- package/dist-types/commands/CreateTaskTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DeleteTaskTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DisassociatePhoneNumberContactFlowCommand.d.ts +2 -1
- package/dist-types/commands/GetTaskTemplateCommand.d.ts +35 -0
- package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +1 -1
- package/dist-types/commands/ListSecurityKeysCommand.d.ts +1 -1
- package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
- package/dist-types/commands/ListSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTaskTemplatesCommand.d.ts +35 -0
- package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/PutUserStatusCommand.d.ts +5 -6
- package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +1 -1
- package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/commands/SearchVocabulariesCommand.d.ts +2 -1
- package/dist-types/commands/StartChatContactCommand.d.ts +3 -3
- package/dist-types/commands/StartContactRecordingCommand.d.ts +9 -7
- package/dist-types/commands/StopContactCommand.d.ts +3 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/TransferContactCommand.d.ts +58 -0
- package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTaskTemplateCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +573 -470
- package/dist-types/models/models_1.d.ts +719 -26
- package/dist-types/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -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/CreateTaskTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTaskTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetTaskTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSecurityKeysCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTaskTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutUserStatusCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReleasePhoneNumberCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TransferContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateTaskTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +333 -254
- package/dist-types/ts3.4/models/models_1.d.ts +388 -2
- package/dist-types/ts3.4/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +1 -1
|
@@ -1,6 +1,306 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { AgentStatusState, ContactFlowModuleState, ContactFlowState, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, ReferenceType, RoutingProfileQueueConfig, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
3
|
+
import { AgentStatusState, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, ReferenceType, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
export interface ListSecurityKeysRequest {
|
|
5
|
+
|
|
6
|
+
InstanceId: string | undefined;
|
|
7
|
+
|
|
8
|
+
NextToken?: string;
|
|
9
|
+
|
|
10
|
+
MaxResults?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace ListSecurityKeysRequest {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: ListSecurityKeysRequest) => any;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface SecurityKey {
|
|
18
|
+
|
|
19
|
+
AssociationId?: string;
|
|
20
|
+
|
|
21
|
+
Key?: string;
|
|
22
|
+
|
|
23
|
+
CreationTime?: Date;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace SecurityKey {
|
|
26
|
+
|
|
27
|
+
const filterSensitiveLog: (obj: SecurityKey) => any;
|
|
28
|
+
}
|
|
29
|
+
export interface ListSecurityKeysResponse {
|
|
30
|
+
|
|
31
|
+
SecurityKeys?: SecurityKey[];
|
|
32
|
+
|
|
33
|
+
NextToken?: string;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace ListSecurityKeysResponse {
|
|
36
|
+
|
|
37
|
+
const filterSensitiveLog: (obj: ListSecurityKeysResponse) => any;
|
|
38
|
+
}
|
|
39
|
+
export interface ListSecurityProfilePermissionsRequest {
|
|
40
|
+
|
|
41
|
+
SecurityProfileId: string | undefined;
|
|
42
|
+
|
|
43
|
+
InstanceId: string | undefined;
|
|
44
|
+
|
|
45
|
+
NextToken?: string;
|
|
46
|
+
|
|
47
|
+
MaxResults?: number;
|
|
48
|
+
}
|
|
49
|
+
export declare namespace ListSecurityProfilePermissionsRequest {
|
|
50
|
+
|
|
51
|
+
const filterSensitiveLog: (obj: ListSecurityProfilePermissionsRequest) => any;
|
|
52
|
+
}
|
|
53
|
+
export interface ListSecurityProfilePermissionsResponse {
|
|
54
|
+
|
|
55
|
+
Permissions?: string[];
|
|
56
|
+
|
|
57
|
+
NextToken?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace ListSecurityProfilePermissionsResponse {
|
|
60
|
+
|
|
61
|
+
const filterSensitiveLog: (obj: ListSecurityProfilePermissionsResponse) => any;
|
|
62
|
+
}
|
|
63
|
+
export interface ListSecurityProfilesRequest {
|
|
64
|
+
|
|
65
|
+
InstanceId: string | undefined;
|
|
66
|
+
|
|
67
|
+
NextToken?: string;
|
|
68
|
+
|
|
69
|
+
MaxResults?: number;
|
|
70
|
+
}
|
|
71
|
+
export declare namespace ListSecurityProfilesRequest {
|
|
72
|
+
|
|
73
|
+
const filterSensitiveLog: (obj: ListSecurityProfilesRequest) => any;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface SecurityProfileSummary {
|
|
77
|
+
|
|
78
|
+
Id?: string;
|
|
79
|
+
|
|
80
|
+
Arn?: string;
|
|
81
|
+
|
|
82
|
+
Name?: string;
|
|
83
|
+
}
|
|
84
|
+
export declare namespace SecurityProfileSummary {
|
|
85
|
+
|
|
86
|
+
const filterSensitiveLog: (obj: SecurityProfileSummary) => any;
|
|
87
|
+
}
|
|
88
|
+
export interface ListSecurityProfilesResponse {
|
|
89
|
+
|
|
90
|
+
SecurityProfileSummaryList?: SecurityProfileSummary[];
|
|
91
|
+
|
|
92
|
+
NextToken?: string;
|
|
93
|
+
}
|
|
94
|
+
export declare namespace ListSecurityProfilesResponse {
|
|
95
|
+
|
|
96
|
+
const filterSensitiveLog: (obj: ListSecurityProfilesResponse) => any;
|
|
97
|
+
}
|
|
98
|
+
export interface ListTagsForResourceRequest {
|
|
99
|
+
|
|
100
|
+
resourceArn: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export declare namespace ListTagsForResourceRequest {
|
|
103
|
+
|
|
104
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
105
|
+
}
|
|
106
|
+
export interface ListTagsForResourceResponse {
|
|
107
|
+
|
|
108
|
+
tags?: {
|
|
109
|
+
[key: string]: string;
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
export declare namespace ListTagsForResourceResponse {
|
|
113
|
+
|
|
114
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
115
|
+
}
|
|
116
|
+
export interface ListTaskTemplatesRequest {
|
|
117
|
+
|
|
118
|
+
InstanceId: string | undefined;
|
|
119
|
+
|
|
120
|
+
NextToken?: string;
|
|
121
|
+
|
|
122
|
+
MaxResults?: number;
|
|
123
|
+
|
|
124
|
+
Status?: TaskTemplateStatus | string;
|
|
125
|
+
|
|
126
|
+
Name?: string;
|
|
127
|
+
}
|
|
128
|
+
export declare namespace ListTaskTemplatesRequest {
|
|
129
|
+
|
|
130
|
+
const filterSensitiveLog: (obj: ListTaskTemplatesRequest) => any;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface TaskTemplateMetadata {
|
|
134
|
+
|
|
135
|
+
Id?: string;
|
|
136
|
+
|
|
137
|
+
Arn?: string;
|
|
138
|
+
|
|
139
|
+
Name?: string;
|
|
140
|
+
|
|
141
|
+
Description?: string;
|
|
142
|
+
|
|
143
|
+
Status?: TaskTemplateStatus | string;
|
|
144
|
+
|
|
145
|
+
LastModifiedTime?: Date;
|
|
146
|
+
|
|
147
|
+
CreatedTime?: Date;
|
|
148
|
+
}
|
|
149
|
+
export declare namespace TaskTemplateMetadata {
|
|
150
|
+
|
|
151
|
+
const filterSensitiveLog: (obj: TaskTemplateMetadata) => any;
|
|
152
|
+
}
|
|
153
|
+
export interface ListTaskTemplatesResponse {
|
|
154
|
+
|
|
155
|
+
TaskTemplates?: TaskTemplateMetadata[];
|
|
156
|
+
|
|
157
|
+
NextToken?: string;
|
|
158
|
+
}
|
|
159
|
+
export declare namespace ListTaskTemplatesResponse {
|
|
160
|
+
|
|
161
|
+
const filterSensitiveLog: (obj: ListTaskTemplatesResponse) => any;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface ListUseCasesRequest {
|
|
165
|
+
|
|
166
|
+
InstanceId: string | undefined;
|
|
167
|
+
|
|
168
|
+
IntegrationAssociationId: string | undefined;
|
|
169
|
+
|
|
170
|
+
NextToken?: string;
|
|
171
|
+
|
|
172
|
+
MaxResults?: number;
|
|
173
|
+
}
|
|
174
|
+
export declare namespace ListUseCasesRequest {
|
|
175
|
+
|
|
176
|
+
const filterSensitiveLog: (obj: ListUseCasesRequest) => any;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface UseCase {
|
|
180
|
+
|
|
181
|
+
UseCaseId?: string;
|
|
182
|
+
|
|
183
|
+
UseCaseArn?: string;
|
|
184
|
+
|
|
185
|
+
UseCaseType?: UseCaseType | string;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace UseCase {
|
|
188
|
+
|
|
189
|
+
const filterSensitiveLog: (obj: UseCase) => any;
|
|
190
|
+
}
|
|
191
|
+
export interface ListUseCasesResponse {
|
|
192
|
+
|
|
193
|
+
UseCaseSummaryList?: UseCase[];
|
|
194
|
+
|
|
195
|
+
NextToken?: string;
|
|
196
|
+
}
|
|
197
|
+
export declare namespace ListUseCasesResponse {
|
|
198
|
+
|
|
199
|
+
const filterSensitiveLog: (obj: ListUseCasesResponse) => any;
|
|
200
|
+
}
|
|
201
|
+
export interface ListUserHierarchyGroupsRequest {
|
|
202
|
+
|
|
203
|
+
InstanceId: string | undefined;
|
|
204
|
+
|
|
205
|
+
NextToken?: string;
|
|
206
|
+
|
|
207
|
+
MaxResults?: number;
|
|
208
|
+
}
|
|
209
|
+
export declare namespace ListUserHierarchyGroupsRequest {
|
|
210
|
+
|
|
211
|
+
const filterSensitiveLog: (obj: ListUserHierarchyGroupsRequest) => any;
|
|
212
|
+
}
|
|
213
|
+
export interface ListUserHierarchyGroupsResponse {
|
|
214
|
+
|
|
215
|
+
UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
|
|
216
|
+
|
|
217
|
+
NextToken?: string;
|
|
218
|
+
}
|
|
219
|
+
export declare namespace ListUserHierarchyGroupsResponse {
|
|
220
|
+
|
|
221
|
+
const filterSensitiveLog: (obj: ListUserHierarchyGroupsResponse) => any;
|
|
222
|
+
}
|
|
223
|
+
export interface ListUsersRequest {
|
|
224
|
+
|
|
225
|
+
InstanceId: string | undefined;
|
|
226
|
+
|
|
227
|
+
NextToken?: string;
|
|
228
|
+
|
|
229
|
+
MaxResults?: number;
|
|
230
|
+
}
|
|
231
|
+
export declare namespace ListUsersRequest {
|
|
232
|
+
|
|
233
|
+
const filterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface UserSummary {
|
|
237
|
+
|
|
238
|
+
Id?: string;
|
|
239
|
+
|
|
240
|
+
Arn?: string;
|
|
241
|
+
|
|
242
|
+
Username?: string;
|
|
243
|
+
}
|
|
244
|
+
export declare namespace UserSummary {
|
|
245
|
+
|
|
246
|
+
const filterSensitiveLog: (obj: UserSummary) => any;
|
|
247
|
+
}
|
|
248
|
+
export interface ListUsersResponse {
|
|
249
|
+
|
|
250
|
+
UserSummaryList?: UserSummary[];
|
|
251
|
+
|
|
252
|
+
NextToken?: string;
|
|
253
|
+
}
|
|
254
|
+
export declare namespace ListUsersResponse {
|
|
255
|
+
|
|
256
|
+
const filterSensitiveLog: (obj: ListUsersResponse) => any;
|
|
257
|
+
}
|
|
258
|
+
export interface PutUserStatusRequest {
|
|
259
|
+
|
|
260
|
+
UserId: string | undefined;
|
|
261
|
+
|
|
262
|
+
InstanceId: string | undefined;
|
|
263
|
+
|
|
264
|
+
AgentStatusId: string | undefined;
|
|
265
|
+
}
|
|
266
|
+
export declare namespace PutUserStatusRequest {
|
|
267
|
+
|
|
268
|
+
const filterSensitiveLog: (obj: PutUserStatusRequest) => any;
|
|
269
|
+
}
|
|
270
|
+
export interface PutUserStatusResponse {
|
|
271
|
+
}
|
|
272
|
+
export declare namespace PutUserStatusResponse {
|
|
273
|
+
|
|
274
|
+
const filterSensitiveLog: (obj: PutUserStatusResponse) => any;
|
|
275
|
+
}
|
|
276
|
+
export interface ReleasePhoneNumberRequest {
|
|
277
|
+
|
|
278
|
+
PhoneNumberId: string | undefined;
|
|
279
|
+
|
|
280
|
+
ClientToken?: string;
|
|
281
|
+
}
|
|
282
|
+
export declare namespace ReleasePhoneNumberRequest {
|
|
283
|
+
|
|
284
|
+
const filterSensitiveLog: (obj: ReleasePhoneNumberRequest) => any;
|
|
285
|
+
}
|
|
286
|
+
export interface ResumeContactRecordingRequest {
|
|
287
|
+
|
|
288
|
+
InstanceId: string | undefined;
|
|
289
|
+
|
|
290
|
+
ContactId: string | undefined;
|
|
291
|
+
|
|
292
|
+
InitialContactId: string | undefined;
|
|
293
|
+
}
|
|
294
|
+
export declare namespace ResumeContactRecordingRequest {
|
|
295
|
+
|
|
296
|
+
const filterSensitiveLog: (obj: ResumeContactRecordingRequest) => any;
|
|
297
|
+
}
|
|
298
|
+
export interface ResumeContactRecordingResponse {
|
|
299
|
+
}
|
|
300
|
+
export declare namespace ResumeContactRecordingResponse {
|
|
301
|
+
|
|
302
|
+
const filterSensitiveLog: (obj: ResumeContactRecordingResponse) => any;
|
|
303
|
+
}
|
|
4
304
|
export interface SearchAvailablePhoneNumbersRequest {
|
|
5
305
|
|
|
6
306
|
TargetArn: string | undefined;
|
|
@@ -416,7 +716,7 @@ export interface StartTaskContactRequest {
|
|
|
416
716
|
|
|
417
717
|
PreviousContactId?: string;
|
|
418
718
|
|
|
419
|
-
ContactFlowId
|
|
719
|
+
ContactFlowId?: string;
|
|
420
720
|
|
|
421
721
|
Attributes?: {
|
|
422
722
|
[key: string]: string;
|
|
@@ -433,6 +733,10 @@ export interface StartTaskContactRequest {
|
|
|
433
733
|
ClientToken?: string;
|
|
434
734
|
|
|
435
735
|
ScheduledTime?: Date;
|
|
736
|
+
|
|
737
|
+
TaskTemplateId?: string;
|
|
738
|
+
|
|
739
|
+
QuickConnectId?: string;
|
|
436
740
|
}
|
|
437
741
|
export declare namespace StartTaskContactRequest {
|
|
438
742
|
|
|
@@ -537,6 +841,34 @@ export declare namespace TagResourceRequest {
|
|
|
537
841
|
|
|
538
842
|
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
539
843
|
}
|
|
844
|
+
export interface TransferContactRequest {
|
|
845
|
+
|
|
846
|
+
InstanceId: string | undefined;
|
|
847
|
+
|
|
848
|
+
ContactId: string | undefined;
|
|
849
|
+
|
|
850
|
+
QueueId?: string;
|
|
851
|
+
|
|
852
|
+
UserId?: string;
|
|
853
|
+
|
|
854
|
+
ContactFlowId: string | undefined;
|
|
855
|
+
|
|
856
|
+
ClientToken?: string;
|
|
857
|
+
}
|
|
858
|
+
export declare namespace TransferContactRequest {
|
|
859
|
+
|
|
860
|
+
const filterSensitiveLog: (obj: TransferContactRequest) => any;
|
|
861
|
+
}
|
|
862
|
+
export interface TransferContactResponse {
|
|
863
|
+
|
|
864
|
+
ContactId?: string;
|
|
865
|
+
|
|
866
|
+
ContactArn?: string;
|
|
867
|
+
}
|
|
868
|
+
export declare namespace TransferContactResponse {
|
|
869
|
+
|
|
870
|
+
const filterSensitiveLog: (obj: TransferContactResponse) => any;
|
|
871
|
+
}
|
|
540
872
|
export interface UntagResourceRequest {
|
|
541
873
|
|
|
542
874
|
resourceArn: string | undefined;
|
|
@@ -929,6 +1261,60 @@ export declare namespace UpdateSecurityProfileRequest {
|
|
|
929
1261
|
|
|
930
1262
|
const filterSensitiveLog: (obj: UpdateSecurityProfileRequest) => any;
|
|
931
1263
|
}
|
|
1264
|
+
export interface UpdateTaskTemplateRequest {
|
|
1265
|
+
|
|
1266
|
+
TaskTemplateId: string | undefined;
|
|
1267
|
+
|
|
1268
|
+
InstanceId: string | undefined;
|
|
1269
|
+
|
|
1270
|
+
Name?: string;
|
|
1271
|
+
|
|
1272
|
+
Description?: string;
|
|
1273
|
+
|
|
1274
|
+
ContactFlowId?: string;
|
|
1275
|
+
|
|
1276
|
+
Constraints?: TaskTemplateConstraints;
|
|
1277
|
+
|
|
1278
|
+
Defaults?: TaskTemplateDefaults;
|
|
1279
|
+
|
|
1280
|
+
Status?: TaskTemplateStatus | string;
|
|
1281
|
+
|
|
1282
|
+
Fields?: TaskTemplateField[];
|
|
1283
|
+
}
|
|
1284
|
+
export declare namespace UpdateTaskTemplateRequest {
|
|
1285
|
+
|
|
1286
|
+
const filterSensitiveLog: (obj: UpdateTaskTemplateRequest) => any;
|
|
1287
|
+
}
|
|
1288
|
+
export interface UpdateTaskTemplateResponse {
|
|
1289
|
+
|
|
1290
|
+
InstanceId?: string;
|
|
1291
|
+
|
|
1292
|
+
Id?: string;
|
|
1293
|
+
|
|
1294
|
+
Arn?: string;
|
|
1295
|
+
|
|
1296
|
+
Name?: string;
|
|
1297
|
+
|
|
1298
|
+
Description?: string;
|
|
1299
|
+
|
|
1300
|
+
ContactFlowId?: string;
|
|
1301
|
+
|
|
1302
|
+
Constraints?: TaskTemplateConstraints;
|
|
1303
|
+
|
|
1304
|
+
Defaults?: TaskTemplateDefaults;
|
|
1305
|
+
|
|
1306
|
+
Fields?: TaskTemplateField[];
|
|
1307
|
+
|
|
1308
|
+
Status?: TaskTemplateStatus | string;
|
|
1309
|
+
|
|
1310
|
+
LastModifiedTime?: Date;
|
|
1311
|
+
|
|
1312
|
+
CreatedTime?: Date;
|
|
1313
|
+
}
|
|
1314
|
+
export declare namespace UpdateTaskTemplateResponse {
|
|
1315
|
+
|
|
1316
|
+
const filterSensitiveLog: (obj: UpdateTaskTemplateResponse) => any;
|
|
1317
|
+
}
|
|
932
1318
|
export interface UpdateUserHierarchyRequest {
|
|
933
1319
|
|
|
934
1320
|
HierarchyGroupId?: string;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTaskTemplatesCommandInput, ListTaskTemplatesCommandOutput } from "../commands/ListTaskTemplatesCommand";
|
|
3
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTaskTemplates(config: ConnectPaginationConfiguration, input: ListTaskTemplatesCommandInput, ...additionalArguments: any): Paginator<ListTaskTemplatesCommandOutput>;
|
|
@@ -26,6 +26,7 @@ export * from "./ListRoutingProfilesPaginator";
|
|
|
26
26
|
export * from "./ListSecurityKeysPaginator";
|
|
27
27
|
export * from "./ListSecurityProfilePermissionsPaginator";
|
|
28
28
|
export * from "./ListSecurityProfilesPaginator";
|
|
29
|
+
export * from "./ListTaskTemplatesPaginator";
|
|
29
30
|
export * from "./ListUseCasesPaginator";
|
|
30
31
|
export * from "./ListUserHierarchyGroupsPaginator";
|
|
31
32
|
export * from "./ListUsersPaginator";
|
|
@@ -21,6 +21,7 @@ import { CreateQueueCommandInput, CreateQueueCommandOutput } from "../commands/C
|
|
|
21
21
|
import { CreateQuickConnectCommandInput, CreateQuickConnectCommandOutput } from "../commands/CreateQuickConnectCommand";
|
|
22
22
|
import { CreateRoutingProfileCommandInput, CreateRoutingProfileCommandOutput } from "../commands/CreateRoutingProfileCommand";
|
|
23
23
|
import { CreateSecurityProfileCommandInput, CreateSecurityProfileCommandOutput } from "../commands/CreateSecurityProfileCommand";
|
|
24
|
+
import { CreateTaskTemplateCommandInput, CreateTaskTemplateCommandOutput } from "../commands/CreateTaskTemplateCommand";
|
|
24
25
|
import { CreateUseCaseCommandInput, CreateUseCaseCommandOutput } from "../commands/CreateUseCaseCommand";
|
|
25
26
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
26
27
|
import { CreateUserHierarchyGroupCommandInput, CreateUserHierarchyGroupCommandOutput } from "../commands/CreateUserHierarchyGroupCommand";
|
|
@@ -32,6 +33,7 @@ import { DeleteInstanceCommandInput, DeleteInstanceCommandOutput } from "../comm
|
|
|
32
33
|
import { DeleteIntegrationAssociationCommandInput, DeleteIntegrationAssociationCommandOutput } from "../commands/DeleteIntegrationAssociationCommand";
|
|
33
34
|
import { DeleteQuickConnectCommandInput, DeleteQuickConnectCommandOutput } from "../commands/DeleteQuickConnectCommand";
|
|
34
35
|
import { DeleteSecurityProfileCommandInput, DeleteSecurityProfileCommandOutput } from "../commands/DeleteSecurityProfileCommand";
|
|
36
|
+
import { DeleteTaskTemplateCommandInput, DeleteTaskTemplateCommandOutput } from "../commands/DeleteTaskTemplateCommand";
|
|
35
37
|
import { DeleteUseCaseCommandInput, DeleteUseCaseCommandOutput } from "../commands/DeleteUseCaseCommand";
|
|
36
38
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
37
39
|
import { DeleteUserHierarchyGroupCommandInput, DeleteUserHierarchyGroupCommandOutput } from "../commands/DeleteUserHierarchyGroupCommand";
|
|
@@ -66,6 +68,7 @@ import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } f
|
|
|
66
68
|
import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "../commands/GetCurrentMetricDataCommand";
|
|
67
69
|
import { GetFederationTokenCommandInput, GetFederationTokenCommandOutput } from "../commands/GetFederationTokenCommand";
|
|
68
70
|
import { GetMetricDataCommandInput, GetMetricDataCommandOutput } from "../commands/GetMetricDataCommand";
|
|
71
|
+
import { GetTaskTemplateCommandInput, GetTaskTemplateCommandOutput } from "../commands/GetTaskTemplateCommand";
|
|
69
72
|
import { ListAgentStatusesCommandInput, ListAgentStatusesCommandOutput } from "../commands/ListAgentStatusesCommand";
|
|
70
73
|
import { ListApprovedOriginsCommandInput, ListApprovedOriginsCommandOutput } from "../commands/ListApprovedOriginsCommand";
|
|
71
74
|
import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
|
|
@@ -92,6 +95,7 @@ import { ListSecurityKeysCommandInput, ListSecurityKeysCommandOutput } from "../
|
|
|
92
95
|
import { ListSecurityProfilePermissionsCommandInput, ListSecurityProfilePermissionsCommandOutput } from "../commands/ListSecurityProfilePermissionsCommand";
|
|
93
96
|
import { ListSecurityProfilesCommandInput, ListSecurityProfilesCommandOutput } from "../commands/ListSecurityProfilesCommand";
|
|
94
97
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
98
|
+
import { ListTaskTemplatesCommandInput, ListTaskTemplatesCommandOutput } from "../commands/ListTaskTemplatesCommand";
|
|
95
99
|
import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "../commands/ListUseCasesCommand";
|
|
96
100
|
import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "../commands/ListUserHierarchyGroupsCommand";
|
|
97
101
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
@@ -111,6 +115,7 @@ import { StopContactRecordingCommandInput, StopContactRecordingCommandOutput } f
|
|
|
111
115
|
import { StopContactStreamingCommandInput, StopContactStreamingCommandOutput } from "../commands/StopContactStreamingCommand";
|
|
112
116
|
import { SuspendContactRecordingCommandInput, SuspendContactRecordingCommandOutput } from "../commands/SuspendContactRecordingCommand";
|
|
113
117
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
118
|
+
import { TransferContactCommandInput, TransferContactCommandOutput } from "../commands/TransferContactCommand";
|
|
114
119
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
115
120
|
import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "../commands/UpdateAgentStatusCommand";
|
|
116
121
|
import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "../commands/UpdateContactAttributesCommand";
|
|
@@ -137,6 +142,7 @@ import { UpdateRoutingProfileDefaultOutboundQueueCommandInput, UpdateRoutingProf
|
|
|
137
142
|
import { UpdateRoutingProfileNameCommandInput, UpdateRoutingProfileNameCommandOutput } from "../commands/UpdateRoutingProfileNameCommand";
|
|
138
143
|
import { UpdateRoutingProfileQueuesCommandInput, UpdateRoutingProfileQueuesCommandOutput } from "../commands/UpdateRoutingProfileQueuesCommand";
|
|
139
144
|
import { UpdateSecurityProfileCommandInput, UpdateSecurityProfileCommandOutput } from "../commands/UpdateSecurityProfileCommand";
|
|
145
|
+
import { UpdateTaskTemplateCommandInput, UpdateTaskTemplateCommandOutput } from "../commands/UpdateTaskTemplateCommand";
|
|
140
146
|
import { UpdateUserHierarchyCommandInput, UpdateUserHierarchyCommandOutput } from "../commands/UpdateUserHierarchyCommand";
|
|
141
147
|
import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameCommandOutput } from "../commands/UpdateUserHierarchyGroupNameCommand";
|
|
142
148
|
import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "../commands/UpdateUserHierarchyStructureCommand";
|
|
@@ -165,6 +171,7 @@ export declare const serializeAws_restJson1CreateQueueCommand: (input: CreateQue
|
|
|
165
171
|
export declare const serializeAws_restJson1CreateQuickConnectCommand: (input: CreateQuickConnectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
172
|
export declare const serializeAws_restJson1CreateRoutingProfileCommand: (input: CreateRoutingProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
173
|
export declare const serializeAws_restJson1CreateSecurityProfileCommand: (input: CreateSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1CreateTaskTemplateCommand: (input: CreateTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
168
175
|
export declare const serializeAws_restJson1CreateUseCaseCommand: (input: CreateUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
169
176
|
export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
177
|
export declare const serializeAws_restJson1CreateUserHierarchyGroupCommand: (input: CreateUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -176,6 +183,7 @@ export declare const serializeAws_restJson1DeleteInstanceCommand: (input: Delete
|
|
|
176
183
|
export declare const serializeAws_restJson1DeleteIntegrationAssociationCommand: (input: DeleteIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
184
|
export declare const serializeAws_restJson1DeleteQuickConnectCommand: (input: DeleteQuickConnectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
185
|
export declare const serializeAws_restJson1DeleteSecurityProfileCommand: (input: DeleteSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1DeleteTaskTemplateCommand: (input: DeleteTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
179
187
|
export declare const serializeAws_restJson1DeleteUseCaseCommand: (input: DeleteUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
188
|
export declare const serializeAws_restJson1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
181
189
|
export declare const serializeAws_restJson1DeleteUserHierarchyGroupCommand: (input: DeleteUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -210,6 +218,7 @@ export declare const serializeAws_restJson1GetContactAttributesCommand: (input:
|
|
|
210
218
|
export declare const serializeAws_restJson1GetCurrentMetricDataCommand: (input: GetCurrentMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
211
219
|
export declare const serializeAws_restJson1GetFederationTokenCommand: (input: GetFederationTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
212
220
|
export declare const serializeAws_restJson1GetMetricDataCommand: (input: GetMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
221
|
+
export declare const serializeAws_restJson1GetTaskTemplateCommand: (input: GetTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
213
222
|
export declare const serializeAws_restJson1ListAgentStatusesCommand: (input: ListAgentStatusesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
214
223
|
export declare const serializeAws_restJson1ListApprovedOriginsCommand: (input: ListApprovedOriginsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
215
224
|
export declare const serializeAws_restJson1ListBotsCommand: (input: ListBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -236,6 +245,7 @@ export declare const serializeAws_restJson1ListSecurityKeysCommand: (input: List
|
|
|
236
245
|
export declare const serializeAws_restJson1ListSecurityProfilePermissionsCommand: (input: ListSecurityProfilePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
237
246
|
export declare const serializeAws_restJson1ListSecurityProfilesCommand: (input: ListSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
238
247
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
248
|
+
export declare const serializeAws_restJson1ListTaskTemplatesCommand: (input: ListTaskTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
239
249
|
export declare const serializeAws_restJson1ListUseCasesCommand: (input: ListUseCasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
240
250
|
export declare const serializeAws_restJson1ListUserHierarchyGroupsCommand: (input: ListUserHierarchyGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
241
251
|
export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -255,6 +265,7 @@ export declare const serializeAws_restJson1StopContactRecordingCommand: (input:
|
|
|
255
265
|
export declare const serializeAws_restJson1StopContactStreamingCommand: (input: StopContactStreamingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
256
266
|
export declare const serializeAws_restJson1SuspendContactRecordingCommand: (input: SuspendContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
257
267
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
268
|
+
export declare const serializeAws_restJson1TransferContactCommand: (input: TransferContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
258
269
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
270
|
export declare const serializeAws_restJson1UpdateAgentStatusCommand: (input: UpdateAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
260
271
|
export declare const serializeAws_restJson1UpdateContactCommand: (input: UpdateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -281,6 +292,7 @@ export declare const serializeAws_restJson1UpdateRoutingProfileDefaultOutboundQu
|
|
|
281
292
|
export declare const serializeAws_restJson1UpdateRoutingProfileNameCommand: (input: UpdateRoutingProfileNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
282
293
|
export declare const serializeAws_restJson1UpdateRoutingProfileQueuesCommand: (input: UpdateRoutingProfileQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
283
294
|
export declare const serializeAws_restJson1UpdateSecurityProfileCommand: (input: UpdateSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
295
|
+
export declare const serializeAws_restJson1UpdateTaskTemplateCommand: (input: UpdateTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
284
296
|
export declare const serializeAws_restJson1UpdateUserHierarchyCommand: (input: UpdateUserHierarchyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
285
297
|
export declare const serializeAws_restJson1UpdateUserHierarchyGroupNameCommand: (input: UpdateUserHierarchyGroupNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
286
298
|
export declare const serializeAws_restJson1UpdateUserHierarchyStructureCommand: (input: UpdateUserHierarchyStructureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -309,6 +321,7 @@ export declare const deserializeAws_restJson1CreateQueueCommand: (output: __Http
|
|
|
309
321
|
export declare const deserializeAws_restJson1CreateQuickConnectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuickConnectCommandOutput>;
|
|
310
322
|
export declare const deserializeAws_restJson1CreateRoutingProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRoutingProfileCommandOutput>;
|
|
311
323
|
export declare const deserializeAws_restJson1CreateSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSecurityProfileCommandOutput>;
|
|
324
|
+
export declare const deserializeAws_restJson1CreateTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTaskTemplateCommandOutput>;
|
|
312
325
|
export declare const deserializeAws_restJson1CreateUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUseCaseCommandOutput>;
|
|
313
326
|
export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
314
327
|
export declare const deserializeAws_restJson1CreateUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserHierarchyGroupCommandOutput>;
|
|
@@ -320,6 +333,7 @@ export declare const deserializeAws_restJson1DeleteInstanceCommand: (output: __H
|
|
|
320
333
|
export declare const deserializeAws_restJson1DeleteIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIntegrationAssociationCommandOutput>;
|
|
321
334
|
export declare const deserializeAws_restJson1DeleteQuickConnectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuickConnectCommandOutput>;
|
|
322
335
|
export declare const deserializeAws_restJson1DeleteSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSecurityProfileCommandOutput>;
|
|
336
|
+
export declare const deserializeAws_restJson1DeleteTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTaskTemplateCommandOutput>;
|
|
323
337
|
export declare const deserializeAws_restJson1DeleteUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUseCaseCommandOutput>;
|
|
324
338
|
export declare const deserializeAws_restJson1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
325
339
|
export declare const deserializeAws_restJson1DeleteUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserHierarchyGroupCommandOutput>;
|
|
@@ -354,6 +368,7 @@ export declare const deserializeAws_restJson1GetContactAttributesCommand: (outpu
|
|
|
354
368
|
export declare const deserializeAws_restJson1GetCurrentMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCurrentMetricDataCommandOutput>;
|
|
355
369
|
export declare const deserializeAws_restJson1GetFederationTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFederationTokenCommandOutput>;
|
|
356
370
|
export declare const deserializeAws_restJson1GetMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMetricDataCommandOutput>;
|
|
371
|
+
export declare const deserializeAws_restJson1GetTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTaskTemplateCommandOutput>;
|
|
357
372
|
export declare const deserializeAws_restJson1ListAgentStatusesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentStatusesCommandOutput>;
|
|
358
373
|
export declare const deserializeAws_restJson1ListApprovedOriginsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApprovedOriginsCommandOutput>;
|
|
359
374
|
export declare const deserializeAws_restJson1ListBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBotsCommandOutput>;
|
|
@@ -380,6 +395,7 @@ export declare const deserializeAws_restJson1ListSecurityKeysCommand: (output: _
|
|
|
380
395
|
export declare const deserializeAws_restJson1ListSecurityProfilePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityProfilePermissionsCommandOutput>;
|
|
381
396
|
export declare const deserializeAws_restJson1ListSecurityProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityProfilesCommandOutput>;
|
|
382
397
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
398
|
+
export declare const deserializeAws_restJson1ListTaskTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTaskTemplatesCommandOutput>;
|
|
383
399
|
export declare const deserializeAws_restJson1ListUseCasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUseCasesCommandOutput>;
|
|
384
400
|
export declare const deserializeAws_restJson1ListUserHierarchyGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserHierarchyGroupsCommandOutput>;
|
|
385
401
|
export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
@@ -399,6 +415,7 @@ export declare const deserializeAws_restJson1StopContactRecordingCommand: (outpu
|
|
|
399
415
|
export declare const deserializeAws_restJson1StopContactStreamingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopContactStreamingCommandOutput>;
|
|
400
416
|
export declare const deserializeAws_restJson1SuspendContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SuspendContactRecordingCommandOutput>;
|
|
401
417
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
418
|
+
export declare const deserializeAws_restJson1TransferContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TransferContactCommandOutput>;
|
|
402
419
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
403
420
|
export declare const deserializeAws_restJson1UpdateAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentStatusCommandOutput>;
|
|
404
421
|
export declare const deserializeAws_restJson1UpdateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactCommandOutput>;
|
|
@@ -425,6 +442,7 @@ export declare const deserializeAws_restJson1UpdateRoutingProfileDefaultOutbound
|
|
|
425
442
|
export declare const deserializeAws_restJson1UpdateRoutingProfileNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRoutingProfileNameCommandOutput>;
|
|
426
443
|
export declare const deserializeAws_restJson1UpdateRoutingProfileQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRoutingProfileQueuesCommandOutput>;
|
|
427
444
|
export declare const deserializeAws_restJson1UpdateSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSecurityProfileCommandOutput>;
|
|
445
|
+
export declare const deserializeAws_restJson1UpdateTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTaskTemplateCommandOutput>;
|
|
428
446
|
export declare const deserializeAws_restJson1UpdateUserHierarchyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserHierarchyCommandOutput>;
|
|
429
447
|
export declare const deserializeAws_restJson1UpdateUserHierarchyGroupNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserHierarchyGroupNameCommandOutput>;
|
|
430
448
|
export declare const deserializeAws_restJson1UpdateUserHierarchyStructureCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserHierarchyStructureCommandOutput>;
|
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.104.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",
|