@aws-sdk/client-connect 3.100.0 → 3.109.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.
Files changed (131) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist-cjs/Connect.js +105 -0
  3. package/dist-cjs/ConnectClient.js +2 -0
  4. package/dist-cjs/commands/CreateTaskTemplateCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteTaskTemplateCommand.js +36 -0
  6. package/dist-cjs/commands/GetCurrentUserDataCommand.js +36 -0
  7. package/dist-cjs/commands/GetTaskTemplateCommand.js +36 -0
  8. package/dist-cjs/commands/ListQueuesCommand.js +3 -3
  9. package/dist-cjs/commands/ListQuickConnectsCommand.js +3 -3
  10. package/dist-cjs/commands/ListRoutingProfileQueuesCommand.js +3 -3
  11. package/dist-cjs/commands/ListRoutingProfilesCommand.js +3 -3
  12. package/dist-cjs/commands/ListSecurityKeysCommand.js +3 -3
  13. package/dist-cjs/commands/ListSecurityProfilePermissionsCommand.js +3 -3
  14. package/dist-cjs/commands/ListSecurityProfilesCommand.js +3 -3
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  16. package/dist-cjs/commands/ListTaskTemplatesCommand.js +36 -0
  17. package/dist-cjs/commands/ListUseCasesCommand.js +3 -3
  18. package/dist-cjs/commands/ListUserHierarchyGroupsCommand.js +3 -3
  19. package/dist-cjs/commands/ListUsersCommand.js +3 -3
  20. package/dist-cjs/commands/PutUserStatusCommand.js +3 -3
  21. package/dist-cjs/commands/ReleasePhoneNumberCommand.js +2 -2
  22. package/dist-cjs/commands/ResumeContactRecordingCommand.js +3 -3
  23. package/dist-cjs/commands/TransferContactCommand.js +36 -0
  24. package/dist-cjs/commands/UpdateTaskTemplateCommand.js +36 -0
  25. package/dist-cjs/commands/index.js +7 -0
  26. package/dist-cjs/models/models_0.js +283 -236
  27. package/dist-cjs/models/models_1.js +254 -2
  28. package/dist-cjs/pagination/GetCurrentUserDataPaginator.js +36 -0
  29. package/dist-cjs/pagination/ListTaskTemplatesPaginator.js +36 -0
  30. package/dist-cjs/pagination/index.js +2 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +1279 -34
  32. package/dist-es/Connect.js +105 -0
  33. package/dist-es/ConnectClient.js +2 -0
  34. package/dist-es/commands/CreateTaskTemplateCommand.js +39 -0
  35. package/dist-es/commands/DeleteTaskTemplateCommand.js +39 -0
  36. package/dist-es/commands/GetCurrentUserDataCommand.js +39 -0
  37. package/dist-es/commands/GetTaskTemplateCommand.js +39 -0
  38. package/dist-es/commands/ListQueuesCommand.js +1 -1
  39. package/dist-es/commands/ListQuickConnectsCommand.js +1 -1
  40. package/dist-es/commands/ListRoutingProfileQueuesCommand.js +1 -1
  41. package/dist-es/commands/ListRoutingProfilesCommand.js +1 -1
  42. package/dist-es/commands/ListSecurityKeysCommand.js +1 -1
  43. package/dist-es/commands/ListSecurityProfilePermissionsCommand.js +1 -1
  44. package/dist-es/commands/ListSecurityProfilesCommand.js +1 -1
  45. package/dist-es/commands/ListTagsForResourceCommand.js +1 -1
  46. package/dist-es/commands/ListTaskTemplatesCommand.js +39 -0
  47. package/dist-es/commands/ListUseCasesCommand.js +1 -1
  48. package/dist-es/commands/ListUserHierarchyGroupsCommand.js +1 -1
  49. package/dist-es/commands/ListUsersCommand.js +1 -1
  50. package/dist-es/commands/PutUserStatusCommand.js +1 -1
  51. package/dist-es/commands/ReleasePhoneNumberCommand.js +1 -1
  52. package/dist-es/commands/ResumeContactRecordingCommand.js +1 -1
  53. package/dist-es/commands/TransferContactCommand.js +39 -0
  54. package/dist-es/commands/UpdateTaskTemplateCommand.js +39 -0
  55. package/dist-es/commands/index.js +7 -0
  56. package/dist-es/models/models_0.js +214 -160
  57. package/dist-es/models/models_1.js +169 -0
  58. package/dist-es/pagination/GetCurrentUserDataPaginator.js +75 -0
  59. package/dist-es/pagination/ListTaskTemplatesPaginator.js +75 -0
  60. package/dist-es/pagination/index.js +2 -0
  61. package/dist-es/protocols/Aws_restJson1.js +1440 -63
  62. package/dist-types/Connect.d.ts +104 -22
  63. package/dist-types/ConnectClient.d.ts +9 -2
  64. package/dist-types/commands/AssociateDefaultVocabularyCommand.d.ts +2 -1
  65. package/dist-types/commands/CreateTaskTemplateCommand.d.ts +35 -0
  66. package/dist-types/commands/DeleteTaskTemplateCommand.d.ts +35 -0
  67. package/dist-types/commands/DisassociatePhoneNumberContactFlowCommand.d.ts +2 -1
  68. package/dist-types/commands/GetCurrentUserDataCommand.d.ts +35 -0
  69. package/dist-types/commands/GetTaskTemplateCommand.d.ts +35 -0
  70. package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +1 -1
  71. package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
  72. package/dist-types/commands/ListQuickConnectsCommand.d.ts +1 -1
  73. package/dist-types/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  74. package/dist-types/commands/ListRoutingProfilesCommand.d.ts +1 -1
  75. package/dist-types/commands/ListSecurityKeysCommand.d.ts +1 -1
  76. package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
  77. package/dist-types/commands/ListSecurityProfilesCommand.d.ts +1 -1
  78. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  79. package/dist-types/commands/ListTaskTemplatesCommand.d.ts +35 -0
  80. package/dist-types/commands/ListUseCasesCommand.d.ts +1 -1
  81. package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  82. package/dist-types/commands/ListUsersCommand.d.ts +1 -1
  83. package/dist-types/commands/PutUserStatusCommand.d.ts +5 -6
  84. package/dist-types/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  85. package/dist-types/commands/ResumeContactRecordingCommand.d.ts +1 -1
  86. package/dist-types/commands/SearchVocabulariesCommand.d.ts +2 -1
  87. package/dist-types/commands/StartChatContactCommand.d.ts +3 -3
  88. package/dist-types/commands/StartContactRecordingCommand.d.ts +9 -7
  89. package/dist-types/commands/StopContactCommand.d.ts +3 -1
  90. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  91. package/dist-types/commands/TransferContactCommand.d.ts +58 -0
  92. package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +2 -1
  93. package/dist-types/commands/UpdateTaskTemplateCommand.d.ts +37 -0
  94. package/dist-types/commands/index.d.ts +7 -0
  95. package/dist-types/models/models_0.d.ts +927 -850
  96. package/dist-types/models/models_1.d.ts +979 -50
  97. package/dist-types/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  98. package/dist-types/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
  99. package/dist-types/pagination/index.d.ts +2 -0
  100. package/dist-types/protocols/Aws_restJson1.d.ts +21 -0
  101. package/dist-types/ts3.4/Connect.d.ts +35 -0
  102. package/dist-types/ts3.4/ConnectClient.d.ts +9 -2
  103. package/dist-types/ts3.4/commands/CreateTaskTemplateCommand.d.ts +17 -0
  104. package/dist-types/ts3.4/commands/DeleteTaskTemplateCommand.d.ts +17 -0
  105. package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +17 -0
  106. package/dist-types/ts3.4/commands/GetTaskTemplateCommand.d.ts +17 -0
  107. package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +1 -1
  108. package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +1 -1
  109. package/dist-types/ts3.4/commands/ListRoutingProfileQueuesCommand.d.ts +1 -1
  110. package/dist-types/ts3.4/commands/ListRoutingProfilesCommand.d.ts +1 -1
  111. package/dist-types/ts3.4/commands/ListSecurityKeysCommand.d.ts +1 -1
  112. package/dist-types/ts3.4/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -1
  113. package/dist-types/ts3.4/commands/ListSecurityProfilesCommand.d.ts +1 -1
  114. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  115. package/dist-types/ts3.4/commands/ListTaskTemplatesCommand.d.ts +17 -0
  116. package/dist-types/ts3.4/commands/ListUseCasesCommand.d.ts +1 -1
  117. package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
  118. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
  119. package/dist-types/ts3.4/commands/PutUserStatusCommand.d.ts +1 -1
  120. package/dist-types/ts3.4/commands/ReleasePhoneNumberCommand.d.ts +1 -1
  121. package/dist-types/ts3.4/commands/ResumeContactRecordingCommand.d.ts +1 -1
  122. package/dist-types/ts3.4/commands/TransferContactCommand.d.ts +17 -0
  123. package/dist-types/ts3.4/commands/UpdateTaskTemplateCommand.d.ts +17 -0
  124. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  125. package/dist-types/ts3.4/models/models_0.d.ts +555 -517
  126. package/dist-types/ts3.4/models/models_1.d.ts +539 -26
  127. package/dist-types/ts3.4/pagination/GetCurrentUserDataPaginator.d.ts +4 -0
  128. package/dist-types/ts3.4/pagination/ListTaskTemplatesPaginator.d.ts +4 -0
  129. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  130. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +21 -0
  131. package/package.json +29 -28
@@ -1,6 +1,449 @@
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, Channel, ContactFlowModuleState, ContactFlowState, HierarchyGroupSummary, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PhoneNumberCountryCode, PhoneNumberType, QueueStatus, QuickConnectConfig, QuickConnectSummary, QuickConnectType, ReferenceType, RoutingProfileQueueConfig, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, VocabularyLanguageCode, VocabularyState } from "./models_0";
4
+ export declare enum QueueType {
5
+ AGENT = "AGENT",
6
+ STANDARD = "STANDARD"
7
+ }
8
+ export interface ListQueuesRequest {
9
+
10
+ InstanceId: string | undefined;
11
+
12
+ QueueTypes?: (QueueType | string)[];
13
+
14
+ NextToken?: string;
15
+
16
+ MaxResults?: number;
17
+ }
18
+ export declare namespace ListQueuesRequest {
19
+
20
+ const filterSensitiveLog: (obj: ListQueuesRequest) => any;
21
+ }
22
+
23
+ export interface QueueSummary {
24
+
25
+ Id?: string;
26
+
27
+ Arn?: string;
28
+
29
+ Name?: string;
30
+
31
+ QueueType?: QueueType | string;
32
+ }
33
+ export declare namespace QueueSummary {
34
+
35
+ const filterSensitiveLog: (obj: QueueSummary) => any;
36
+ }
37
+ export interface ListQueuesResponse {
38
+
39
+ QueueSummaryList?: QueueSummary[];
40
+
41
+ NextToken?: string;
42
+ }
43
+ export declare namespace ListQueuesResponse {
44
+
45
+ const filterSensitiveLog: (obj: ListQueuesResponse) => any;
46
+ }
47
+ export interface ListQuickConnectsRequest {
48
+
49
+ InstanceId: string | undefined;
50
+
51
+ NextToken?: string;
52
+
53
+ MaxResults?: number;
54
+
55
+ QuickConnectTypes?: (QuickConnectType | string)[];
56
+ }
57
+ export declare namespace ListQuickConnectsRequest {
58
+
59
+ const filterSensitiveLog: (obj: ListQuickConnectsRequest) => any;
60
+ }
61
+ export interface ListQuickConnectsResponse {
62
+
63
+ QuickConnectSummaryList?: QuickConnectSummary[];
64
+
65
+ NextToken?: string;
66
+ }
67
+ export declare namespace ListQuickConnectsResponse {
68
+
69
+ const filterSensitiveLog: (obj: ListQuickConnectsResponse) => any;
70
+ }
71
+ export interface ListRoutingProfileQueuesRequest {
72
+
73
+ InstanceId: string | undefined;
74
+
75
+ RoutingProfileId: string | undefined;
76
+
77
+ NextToken?: string;
78
+
79
+ MaxResults?: number;
80
+ }
81
+ export declare namespace ListRoutingProfileQueuesRequest {
82
+
83
+ const filterSensitiveLog: (obj: ListRoutingProfileQueuesRequest) => any;
84
+ }
85
+
86
+ export interface RoutingProfileQueueConfigSummary {
87
+
88
+ QueueId: string | undefined;
89
+
90
+ QueueArn: string | undefined;
91
+
92
+ QueueName: string | undefined;
93
+
94
+ Priority: number | undefined;
95
+
96
+ Delay: number | undefined;
97
+
98
+ Channel: Channel | string | undefined;
99
+ }
100
+ export declare namespace RoutingProfileQueueConfigSummary {
101
+
102
+ const filterSensitiveLog: (obj: RoutingProfileQueueConfigSummary) => any;
103
+ }
104
+ export interface ListRoutingProfileQueuesResponse {
105
+
106
+ NextToken?: string;
107
+
108
+ RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
109
+ }
110
+ export declare namespace ListRoutingProfileQueuesResponse {
111
+
112
+ const filterSensitiveLog: (obj: ListRoutingProfileQueuesResponse) => any;
113
+ }
114
+ export interface ListRoutingProfilesRequest {
115
+
116
+ InstanceId: string | undefined;
117
+
118
+ NextToken?: string;
119
+
120
+ MaxResults?: number;
121
+ }
122
+ export declare namespace ListRoutingProfilesRequest {
123
+
124
+ const filterSensitiveLog: (obj: ListRoutingProfilesRequest) => any;
125
+ }
126
+
127
+ export interface RoutingProfileSummary {
128
+
129
+ Id?: string;
130
+
131
+ Arn?: string;
132
+
133
+ Name?: string;
134
+ }
135
+ export declare namespace RoutingProfileSummary {
136
+
137
+ const filterSensitiveLog: (obj: RoutingProfileSummary) => any;
138
+ }
139
+ export interface ListRoutingProfilesResponse {
140
+
141
+ RoutingProfileSummaryList?: RoutingProfileSummary[];
142
+
143
+ NextToken?: string;
144
+ }
145
+ export declare namespace ListRoutingProfilesResponse {
146
+
147
+ const filterSensitiveLog: (obj: ListRoutingProfilesResponse) => any;
148
+ }
149
+ export interface ListSecurityKeysRequest {
150
+
151
+ InstanceId: string | undefined;
152
+
153
+ NextToken?: string;
154
+
155
+ MaxResults?: number;
156
+ }
157
+ export declare namespace ListSecurityKeysRequest {
158
+
159
+ const filterSensitiveLog: (obj: ListSecurityKeysRequest) => any;
160
+ }
161
+
162
+ export interface SecurityKey {
163
+
164
+ AssociationId?: string;
165
+
166
+ Key?: string;
167
+
168
+ CreationTime?: Date;
169
+ }
170
+ export declare namespace SecurityKey {
171
+
172
+ const filterSensitiveLog: (obj: SecurityKey) => any;
173
+ }
174
+ export interface ListSecurityKeysResponse {
175
+
176
+ SecurityKeys?: SecurityKey[];
177
+
178
+ NextToken?: string;
179
+ }
180
+ export declare namespace ListSecurityKeysResponse {
181
+
182
+ const filterSensitiveLog: (obj: ListSecurityKeysResponse) => any;
183
+ }
184
+ export interface ListSecurityProfilePermissionsRequest {
185
+
186
+ SecurityProfileId: string | undefined;
187
+
188
+ InstanceId: string | undefined;
189
+
190
+ NextToken?: string;
191
+
192
+ MaxResults?: number;
193
+ }
194
+ export declare namespace ListSecurityProfilePermissionsRequest {
195
+
196
+ const filterSensitiveLog: (obj: ListSecurityProfilePermissionsRequest) => any;
197
+ }
198
+ export interface ListSecurityProfilePermissionsResponse {
199
+
200
+ Permissions?: string[];
201
+
202
+ NextToken?: string;
203
+ }
204
+ export declare namespace ListSecurityProfilePermissionsResponse {
205
+
206
+ const filterSensitiveLog: (obj: ListSecurityProfilePermissionsResponse) => any;
207
+ }
208
+ export interface ListSecurityProfilesRequest {
209
+
210
+ InstanceId: string | undefined;
211
+
212
+ NextToken?: string;
213
+
214
+ MaxResults?: number;
215
+ }
216
+ export declare namespace ListSecurityProfilesRequest {
217
+
218
+ const filterSensitiveLog: (obj: ListSecurityProfilesRequest) => any;
219
+ }
220
+
221
+ export interface SecurityProfileSummary {
222
+
223
+ Id?: string;
224
+
225
+ Arn?: string;
226
+
227
+ Name?: string;
228
+ }
229
+ export declare namespace SecurityProfileSummary {
230
+
231
+ const filterSensitiveLog: (obj: SecurityProfileSummary) => any;
232
+ }
233
+ export interface ListSecurityProfilesResponse {
234
+
235
+ SecurityProfileSummaryList?: SecurityProfileSummary[];
236
+
237
+ NextToken?: string;
238
+ }
239
+ export declare namespace ListSecurityProfilesResponse {
240
+
241
+ const filterSensitiveLog: (obj: ListSecurityProfilesResponse) => any;
242
+ }
243
+ export interface ListTagsForResourceRequest {
244
+
245
+ resourceArn: string | undefined;
246
+ }
247
+ export declare namespace ListTagsForResourceRequest {
248
+
249
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
250
+ }
251
+ export interface ListTagsForResourceResponse {
252
+
253
+ tags?: Record<string, string>;
254
+ }
255
+ export declare namespace ListTagsForResourceResponse {
256
+
257
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
258
+ }
259
+ export interface ListTaskTemplatesRequest {
260
+
261
+ InstanceId: string | undefined;
262
+
263
+ NextToken?: string;
264
+
265
+ MaxResults?: number;
266
+
267
+ Status?: TaskTemplateStatus | string;
268
+
269
+ Name?: string;
270
+ }
271
+ export declare namespace ListTaskTemplatesRequest {
272
+
273
+ const filterSensitiveLog: (obj: ListTaskTemplatesRequest) => any;
274
+ }
275
+
276
+ export interface TaskTemplateMetadata {
277
+
278
+ Id?: string;
279
+
280
+ Arn?: string;
281
+
282
+ Name?: string;
283
+
284
+ Description?: string;
285
+
286
+ Status?: TaskTemplateStatus | string;
287
+
288
+ LastModifiedTime?: Date;
289
+
290
+ CreatedTime?: Date;
291
+ }
292
+ export declare namespace TaskTemplateMetadata {
293
+
294
+ const filterSensitiveLog: (obj: TaskTemplateMetadata) => any;
295
+ }
296
+ export interface ListTaskTemplatesResponse {
297
+
298
+ TaskTemplates?: TaskTemplateMetadata[];
299
+
300
+ NextToken?: string;
301
+ }
302
+ export declare namespace ListTaskTemplatesResponse {
303
+
304
+ const filterSensitiveLog: (obj: ListTaskTemplatesResponse) => any;
305
+ }
306
+
307
+ export interface ListUseCasesRequest {
308
+
309
+ InstanceId: string | undefined;
310
+
311
+ IntegrationAssociationId: string | undefined;
312
+
313
+ NextToken?: string;
314
+
315
+ MaxResults?: number;
316
+ }
317
+ export declare namespace ListUseCasesRequest {
318
+
319
+ const filterSensitiveLog: (obj: ListUseCasesRequest) => any;
320
+ }
321
+
322
+ export interface UseCase {
323
+
324
+ UseCaseId?: string;
325
+
326
+ UseCaseArn?: string;
327
+
328
+ UseCaseType?: UseCaseType | string;
329
+ }
330
+ export declare namespace UseCase {
331
+
332
+ const filterSensitiveLog: (obj: UseCase) => any;
333
+ }
334
+ export interface ListUseCasesResponse {
335
+
336
+ UseCaseSummaryList?: UseCase[];
337
+
338
+ NextToken?: string;
339
+ }
340
+ export declare namespace ListUseCasesResponse {
341
+
342
+ const filterSensitiveLog: (obj: ListUseCasesResponse) => any;
343
+ }
344
+ export interface ListUserHierarchyGroupsRequest {
345
+
346
+ InstanceId: string | undefined;
347
+
348
+ NextToken?: string;
349
+
350
+ MaxResults?: number;
351
+ }
352
+ export declare namespace ListUserHierarchyGroupsRequest {
353
+
354
+ const filterSensitiveLog: (obj: ListUserHierarchyGroupsRequest) => any;
355
+ }
356
+ export interface ListUserHierarchyGroupsResponse {
357
+
358
+ UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
359
+
360
+ NextToken?: string;
361
+ }
362
+ export declare namespace ListUserHierarchyGroupsResponse {
363
+
364
+ const filterSensitiveLog: (obj: ListUserHierarchyGroupsResponse) => any;
365
+ }
366
+ export interface ListUsersRequest {
367
+
368
+ InstanceId: string | undefined;
369
+
370
+ NextToken?: string;
371
+
372
+ MaxResults?: number;
373
+ }
374
+ export declare namespace ListUsersRequest {
375
+
376
+ const filterSensitiveLog: (obj: ListUsersRequest) => any;
377
+ }
378
+
379
+ export interface UserSummary {
380
+
381
+ Id?: string;
382
+
383
+ Arn?: string;
384
+
385
+ Username?: string;
386
+ }
387
+ export declare namespace UserSummary {
388
+
389
+ const filterSensitiveLog: (obj: UserSummary) => any;
390
+ }
391
+ export interface ListUsersResponse {
392
+
393
+ UserSummaryList?: UserSummary[];
394
+
395
+ NextToken?: string;
396
+ }
397
+ export declare namespace ListUsersResponse {
398
+
399
+ const filterSensitiveLog: (obj: ListUsersResponse) => any;
400
+ }
401
+ export interface PutUserStatusRequest {
402
+
403
+ UserId: string | undefined;
404
+
405
+ InstanceId: string | undefined;
406
+
407
+ AgentStatusId: string | undefined;
408
+ }
409
+ export declare namespace PutUserStatusRequest {
410
+
411
+ const filterSensitiveLog: (obj: PutUserStatusRequest) => any;
412
+ }
413
+ export interface PutUserStatusResponse {
414
+ }
415
+ export declare namespace PutUserStatusResponse {
416
+
417
+ const filterSensitiveLog: (obj: PutUserStatusResponse) => any;
418
+ }
419
+ export interface ReleasePhoneNumberRequest {
420
+
421
+ PhoneNumberId: string | undefined;
422
+
423
+ ClientToken?: string;
424
+ }
425
+ export declare namespace ReleasePhoneNumberRequest {
426
+
427
+ const filterSensitiveLog: (obj: ReleasePhoneNumberRequest) => any;
428
+ }
429
+ export interface ResumeContactRecordingRequest {
430
+
431
+ InstanceId: string | undefined;
432
+
433
+ ContactId: string | undefined;
434
+
435
+ InitialContactId: string | undefined;
436
+ }
437
+ export declare namespace ResumeContactRecordingRequest {
438
+
439
+ const filterSensitiveLog: (obj: ResumeContactRecordingRequest) => any;
440
+ }
441
+ export interface ResumeContactRecordingResponse {
442
+ }
443
+ export declare namespace ResumeContactRecordingResponse {
444
+
445
+ const filterSensitiveLog: (obj: ResumeContactRecordingResponse) => any;
446
+ }
4
447
  export interface SearchAvailablePhoneNumbersRequest {
5
448
 
6
449
  TargetArn: string | undefined;
@@ -138,9 +581,7 @@ export interface UserSearchSummary {
138
581
 
139
582
  SecurityProfileIds?: string[];
140
583
 
141
- Tags?: {
142
- [key: string]: string;
143
- };
584
+ Tags?: Record<string, string>;
144
585
 
145
586
  Username?: string;
146
587
  }
@@ -235,9 +676,7 @@ export interface StartChatContactRequest {
235
676
 
236
677
  ContactFlowId: string | undefined;
237
678
 
238
- Attributes?: {
239
- [key: string]: string;
240
- };
679
+ Attributes?: Record<string, string>;
241
680
 
242
681
  ParticipantDetails: ParticipantDetails | undefined;
243
682
 
@@ -377,9 +816,7 @@ export interface StartOutboundVoiceContactRequest {
377
816
 
378
817
  QueueId?: string;
379
818
 
380
- Attributes?: {
381
- [key: string]: string;
382
- };
819
+ Attributes?: Record<string, string>;
383
820
 
384
821
  AnswerMachineDetectionConfig?: AnswerMachineDetectionConfig;
385
822
 
@@ -416,23 +853,23 @@ export interface StartTaskContactRequest {
416
853
 
417
854
  PreviousContactId?: string;
418
855
 
419
- ContactFlowId: string | undefined;
856
+ ContactFlowId?: string;
420
857
 
421
- Attributes?: {
422
- [key: string]: string;
423
- };
858
+ Attributes?: Record<string, string>;
424
859
 
425
860
  Name: string | undefined;
426
861
 
427
- References?: {
428
- [key: string]: Reference;
429
- };
862
+ References?: Record<string, Reference>;
430
863
 
431
864
  Description?: string;
432
865
 
433
866
  ClientToken?: string;
434
867
 
435
868
  ScheduledTime?: Date;
869
+
870
+ TaskTemplateId?: string;
871
+
872
+ QuickConnectId?: string;
436
873
  }
437
874
  export declare namespace StartTaskContactRequest {
438
875
 
@@ -529,14 +966,40 @@ export interface TagResourceRequest {
529
966
 
530
967
  resourceArn: string | undefined;
531
968
 
532
- tags: {
533
- [key: string]: string;
534
- } | undefined;
969
+ tags: Record<string, string> | undefined;
535
970
  }
536
971
  export declare namespace TagResourceRequest {
537
972
 
538
973
  const filterSensitiveLog: (obj: TagResourceRequest) => any;
539
974
  }
975
+ export interface TransferContactRequest {
976
+
977
+ InstanceId: string | undefined;
978
+
979
+ ContactId: string | undefined;
980
+
981
+ QueueId?: string;
982
+
983
+ UserId?: string;
984
+
985
+ ContactFlowId: string | undefined;
986
+
987
+ ClientToken?: string;
988
+ }
989
+ export declare namespace TransferContactRequest {
990
+
991
+ const filterSensitiveLog: (obj: TransferContactRequest) => any;
992
+ }
993
+ export interface TransferContactResponse {
994
+
995
+ ContactId?: string;
996
+
997
+ ContactArn?: string;
998
+ }
999
+ export declare namespace TransferContactResponse {
1000
+
1001
+ const filterSensitiveLog: (obj: TransferContactResponse) => any;
1002
+ }
540
1003
  export interface UntagResourceRequest {
541
1004
 
542
1005
  resourceArn: string | undefined;
@@ -577,9 +1040,7 @@ export interface UpdateContactRequest {
577
1040
 
578
1041
  Description?: string;
579
1042
 
580
- References?: {
581
- [key: string]: Reference;
582
- };
1043
+ References?: Record<string, Reference>;
583
1044
  }
584
1045
  export declare namespace UpdateContactRequest {
585
1046
 
@@ -597,9 +1058,7 @@ export interface UpdateContactAttributesRequest {
597
1058
 
598
1059
  InstanceId: string | undefined;
599
1060
 
600
- Attributes: {
601
- [key: string]: string;
602
- } | undefined;
1061
+ Attributes: Record<string, string> | undefined;
603
1062
  }
604
1063
  export declare namespace UpdateContactAttributesRequest {
605
1064
 
@@ -929,6 +1388,60 @@ export declare namespace UpdateSecurityProfileRequest {
929
1388
 
930
1389
  const filterSensitiveLog: (obj: UpdateSecurityProfileRequest) => any;
931
1390
  }
1391
+ export interface UpdateTaskTemplateRequest {
1392
+
1393
+ TaskTemplateId: string | undefined;
1394
+
1395
+ InstanceId: string | undefined;
1396
+
1397
+ Name?: string;
1398
+
1399
+ Description?: string;
1400
+
1401
+ ContactFlowId?: string;
1402
+
1403
+ Constraints?: TaskTemplateConstraints;
1404
+
1405
+ Defaults?: TaskTemplateDefaults;
1406
+
1407
+ Status?: TaskTemplateStatus | string;
1408
+
1409
+ Fields?: TaskTemplateField[];
1410
+ }
1411
+ export declare namespace UpdateTaskTemplateRequest {
1412
+
1413
+ const filterSensitiveLog: (obj: UpdateTaskTemplateRequest) => any;
1414
+ }
1415
+ export interface UpdateTaskTemplateResponse {
1416
+
1417
+ InstanceId?: string;
1418
+
1419
+ Id?: string;
1420
+
1421
+ Arn?: string;
1422
+
1423
+ Name?: string;
1424
+
1425
+ Description?: string;
1426
+
1427
+ ContactFlowId?: string;
1428
+
1429
+ Constraints?: TaskTemplateConstraints;
1430
+
1431
+ Defaults?: TaskTemplateDefaults;
1432
+
1433
+ Fields?: TaskTemplateField[];
1434
+
1435
+ Status?: TaskTemplateStatus | string;
1436
+
1437
+ LastModifiedTime?: Date;
1438
+
1439
+ CreatedTime?: Date;
1440
+ }
1441
+ export declare namespace UpdateTaskTemplateResponse {
1442
+
1443
+ const filterSensitiveLog: (obj: UpdateTaskTemplateResponse) => any;
1444
+ }
932
1445
  export interface UpdateUserHierarchyRequest {
933
1446
 
934
1447
  HierarchyGroupId?: string;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "../commands/GetCurrentUserDataCommand";
3
+ import { ConnectPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetCurrentUserData(config: ConnectPaginationConfiguration, input: GetCurrentUserDataCommandInput, ...additionalArguments: any): Paginator<GetCurrentUserDataCommandOutput>;
@@ -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>;
@@ -1,4 +1,5 @@
1
1
  export * from "./GetCurrentMetricDataPaginator";
2
+ export * from "./GetCurrentUserDataPaginator";
2
3
  export * from "./GetMetricDataPaginator";
3
4
  export * from "./Interfaces";
4
5
  export * from "./ListAgentStatusesPaginator";
@@ -26,6 +27,7 @@ export * from "./ListRoutingProfilesPaginator";
26
27
  export * from "./ListSecurityKeysPaginator";
27
28
  export * from "./ListSecurityProfilePermissionsPaginator";
28
29
  export * from "./ListSecurityProfilesPaginator";
30
+ export * from "./ListTaskTemplatesPaginator";
29
31
  export * from "./ListUseCasesPaginator";
30
32
  export * from "./ListUserHierarchyGroupsPaginator";
31
33
  export * from "./ListUsersPaginator";