@aws-sdk/client-connect 3.99.0 → 3.105.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 +4 -3
@@ -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";
@@ -64,8 +66,10 @@ import { DisassociateRoutingProfileQueuesCommandInput, DisassociateRoutingProfil
64
66
  import { DisassociateSecurityKeyCommandInput, DisassociateSecurityKeyCommandOutput } from "../commands/DisassociateSecurityKeyCommand";
65
67
  import { GetContactAttributesCommandInput, GetContactAttributesCommandOutput } from "../commands/GetContactAttributesCommand";
66
68
  import { GetCurrentMetricDataCommandInput, GetCurrentMetricDataCommandOutput } from "../commands/GetCurrentMetricDataCommand";
69
+ import { GetCurrentUserDataCommandInput, GetCurrentUserDataCommandOutput } from "../commands/GetCurrentUserDataCommand";
67
70
  import { GetFederationTokenCommandInput, GetFederationTokenCommandOutput } from "../commands/GetFederationTokenCommand";
68
71
  import { GetMetricDataCommandInput, GetMetricDataCommandOutput } from "../commands/GetMetricDataCommand";
72
+ import { GetTaskTemplateCommandInput, GetTaskTemplateCommandOutput } from "../commands/GetTaskTemplateCommand";
69
73
  import { ListAgentStatusesCommandInput, ListAgentStatusesCommandOutput } from "../commands/ListAgentStatusesCommand";
70
74
  import { ListApprovedOriginsCommandInput, ListApprovedOriginsCommandOutput } from "../commands/ListApprovedOriginsCommand";
71
75
  import { ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand";
@@ -92,6 +96,7 @@ import { ListSecurityKeysCommandInput, ListSecurityKeysCommandOutput } from "../
92
96
  import { ListSecurityProfilePermissionsCommandInput, ListSecurityProfilePermissionsCommandOutput } from "../commands/ListSecurityProfilePermissionsCommand";
93
97
  import { ListSecurityProfilesCommandInput, ListSecurityProfilesCommandOutput } from "../commands/ListSecurityProfilesCommand";
94
98
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
99
+ import { ListTaskTemplatesCommandInput, ListTaskTemplatesCommandOutput } from "../commands/ListTaskTemplatesCommand";
95
100
  import { ListUseCasesCommandInput, ListUseCasesCommandOutput } from "../commands/ListUseCasesCommand";
96
101
  import { ListUserHierarchyGroupsCommandInput, ListUserHierarchyGroupsCommandOutput } from "../commands/ListUserHierarchyGroupsCommand";
97
102
  import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
@@ -111,6 +116,7 @@ import { StopContactRecordingCommandInput, StopContactRecordingCommandOutput } f
111
116
  import { StopContactStreamingCommandInput, StopContactStreamingCommandOutput } from "../commands/StopContactStreamingCommand";
112
117
  import { SuspendContactRecordingCommandInput, SuspendContactRecordingCommandOutput } from "../commands/SuspendContactRecordingCommand";
113
118
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
119
+ import { TransferContactCommandInput, TransferContactCommandOutput } from "../commands/TransferContactCommand";
114
120
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
115
121
  import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "../commands/UpdateAgentStatusCommand";
116
122
  import { UpdateContactAttributesCommandInput, UpdateContactAttributesCommandOutput } from "../commands/UpdateContactAttributesCommand";
@@ -137,6 +143,7 @@ import { UpdateRoutingProfileDefaultOutboundQueueCommandInput, UpdateRoutingProf
137
143
  import { UpdateRoutingProfileNameCommandInput, UpdateRoutingProfileNameCommandOutput } from "../commands/UpdateRoutingProfileNameCommand";
138
144
  import { UpdateRoutingProfileQueuesCommandInput, UpdateRoutingProfileQueuesCommandOutput } from "../commands/UpdateRoutingProfileQueuesCommand";
139
145
  import { UpdateSecurityProfileCommandInput, UpdateSecurityProfileCommandOutput } from "../commands/UpdateSecurityProfileCommand";
146
+ import { UpdateTaskTemplateCommandInput, UpdateTaskTemplateCommandOutput } from "../commands/UpdateTaskTemplateCommand";
140
147
  import { UpdateUserHierarchyCommandInput, UpdateUserHierarchyCommandOutput } from "../commands/UpdateUserHierarchyCommand";
141
148
  import { UpdateUserHierarchyGroupNameCommandInput, UpdateUserHierarchyGroupNameCommandOutput } from "../commands/UpdateUserHierarchyGroupNameCommand";
142
149
  import { UpdateUserHierarchyStructureCommandInput, UpdateUserHierarchyStructureCommandOutput } from "../commands/UpdateUserHierarchyStructureCommand";
@@ -165,6 +172,7 @@ export declare const serializeAws_restJson1CreateQueueCommand: (input: CreateQue
165
172
  export declare const serializeAws_restJson1CreateQuickConnectCommand: (input: CreateQuickConnectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
173
  export declare const serializeAws_restJson1CreateRoutingProfileCommand: (input: CreateRoutingProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
167
174
  export declare const serializeAws_restJson1CreateSecurityProfileCommand: (input: CreateSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
175
+ export declare const serializeAws_restJson1CreateTaskTemplateCommand: (input: CreateTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
168
176
  export declare const serializeAws_restJson1CreateUseCaseCommand: (input: CreateUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
169
177
  export declare const serializeAws_restJson1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
178
  export declare const serializeAws_restJson1CreateUserHierarchyGroupCommand: (input: CreateUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -176,6 +184,7 @@ export declare const serializeAws_restJson1DeleteInstanceCommand: (input: Delete
176
184
  export declare const serializeAws_restJson1DeleteIntegrationAssociationCommand: (input: DeleteIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
177
185
  export declare const serializeAws_restJson1DeleteQuickConnectCommand: (input: DeleteQuickConnectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
186
  export declare const serializeAws_restJson1DeleteSecurityProfileCommand: (input: DeleteSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
187
+ export declare const serializeAws_restJson1DeleteTaskTemplateCommand: (input: DeleteTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
179
188
  export declare const serializeAws_restJson1DeleteUseCaseCommand: (input: DeleteUseCaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
180
189
  export declare const serializeAws_restJson1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
181
190
  export declare const serializeAws_restJson1DeleteUserHierarchyGroupCommand: (input: DeleteUserHierarchyGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -208,8 +217,10 @@ export declare const serializeAws_restJson1DisassociateRoutingProfileQueuesComma
208
217
  export declare const serializeAws_restJson1DisassociateSecurityKeyCommand: (input: DisassociateSecurityKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
209
218
  export declare const serializeAws_restJson1GetContactAttributesCommand: (input: GetContactAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
210
219
  export declare const serializeAws_restJson1GetCurrentMetricDataCommand: (input: GetCurrentMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
220
+ export declare const serializeAws_restJson1GetCurrentUserDataCommand: (input: GetCurrentUserDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
211
221
  export declare const serializeAws_restJson1GetFederationTokenCommand: (input: GetFederationTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
212
222
  export declare const serializeAws_restJson1GetMetricDataCommand: (input: GetMetricDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
223
+ export declare const serializeAws_restJson1GetTaskTemplateCommand: (input: GetTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
213
224
  export declare const serializeAws_restJson1ListAgentStatusesCommand: (input: ListAgentStatusesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
214
225
  export declare const serializeAws_restJson1ListApprovedOriginsCommand: (input: ListApprovedOriginsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
215
226
  export declare const serializeAws_restJson1ListBotsCommand: (input: ListBotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -236,6 +247,7 @@ export declare const serializeAws_restJson1ListSecurityKeysCommand: (input: List
236
247
  export declare const serializeAws_restJson1ListSecurityProfilePermissionsCommand: (input: ListSecurityProfilePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
237
248
  export declare const serializeAws_restJson1ListSecurityProfilesCommand: (input: ListSecurityProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
238
249
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
250
+ export declare const serializeAws_restJson1ListTaskTemplatesCommand: (input: ListTaskTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
239
251
  export declare const serializeAws_restJson1ListUseCasesCommand: (input: ListUseCasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
240
252
  export declare const serializeAws_restJson1ListUserHierarchyGroupsCommand: (input: ListUserHierarchyGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
241
253
  export declare const serializeAws_restJson1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -255,6 +267,7 @@ export declare const serializeAws_restJson1StopContactRecordingCommand: (input:
255
267
  export declare const serializeAws_restJson1StopContactStreamingCommand: (input: StopContactStreamingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
256
268
  export declare const serializeAws_restJson1SuspendContactRecordingCommand: (input: SuspendContactRecordingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
257
269
  export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
270
+ export declare const serializeAws_restJson1TransferContactCommand: (input: TransferContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
258
271
  export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
259
272
  export declare const serializeAws_restJson1UpdateAgentStatusCommand: (input: UpdateAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
260
273
  export declare const serializeAws_restJson1UpdateContactCommand: (input: UpdateContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -281,6 +294,7 @@ export declare const serializeAws_restJson1UpdateRoutingProfileDefaultOutboundQu
281
294
  export declare const serializeAws_restJson1UpdateRoutingProfileNameCommand: (input: UpdateRoutingProfileNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
282
295
  export declare const serializeAws_restJson1UpdateRoutingProfileQueuesCommand: (input: UpdateRoutingProfileQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
283
296
  export declare const serializeAws_restJson1UpdateSecurityProfileCommand: (input: UpdateSecurityProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
297
+ export declare const serializeAws_restJson1UpdateTaskTemplateCommand: (input: UpdateTaskTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
284
298
  export declare const serializeAws_restJson1UpdateUserHierarchyCommand: (input: UpdateUserHierarchyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
285
299
  export declare const serializeAws_restJson1UpdateUserHierarchyGroupNameCommand: (input: UpdateUserHierarchyGroupNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
286
300
  export declare const serializeAws_restJson1UpdateUserHierarchyStructureCommand: (input: UpdateUserHierarchyStructureCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -309,6 +323,7 @@ export declare const deserializeAws_restJson1CreateQueueCommand: (output: __Http
309
323
  export declare const deserializeAws_restJson1CreateQuickConnectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuickConnectCommandOutput>;
310
324
  export declare const deserializeAws_restJson1CreateRoutingProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRoutingProfileCommandOutput>;
311
325
  export declare const deserializeAws_restJson1CreateSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSecurityProfileCommandOutput>;
326
+ export declare const deserializeAws_restJson1CreateTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTaskTemplateCommandOutput>;
312
327
  export declare const deserializeAws_restJson1CreateUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUseCaseCommandOutput>;
313
328
  export declare const deserializeAws_restJson1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
314
329
  export declare const deserializeAws_restJson1CreateUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserHierarchyGroupCommandOutput>;
@@ -320,6 +335,7 @@ export declare const deserializeAws_restJson1DeleteInstanceCommand: (output: __H
320
335
  export declare const deserializeAws_restJson1DeleteIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIntegrationAssociationCommandOutput>;
321
336
  export declare const deserializeAws_restJson1DeleteQuickConnectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuickConnectCommandOutput>;
322
337
  export declare const deserializeAws_restJson1DeleteSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSecurityProfileCommandOutput>;
338
+ export declare const deserializeAws_restJson1DeleteTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTaskTemplateCommandOutput>;
323
339
  export declare const deserializeAws_restJson1DeleteUseCaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUseCaseCommandOutput>;
324
340
  export declare const deserializeAws_restJson1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
325
341
  export declare const deserializeAws_restJson1DeleteUserHierarchyGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserHierarchyGroupCommandOutput>;
@@ -352,8 +368,10 @@ export declare const deserializeAws_restJson1DisassociateRoutingProfileQueuesCom
352
368
  export declare const deserializeAws_restJson1DisassociateSecurityKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateSecurityKeyCommandOutput>;
353
369
  export declare const deserializeAws_restJson1GetContactAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetContactAttributesCommandOutput>;
354
370
  export declare const deserializeAws_restJson1GetCurrentMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCurrentMetricDataCommandOutput>;
371
+ export declare const deserializeAws_restJson1GetCurrentUserDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCurrentUserDataCommandOutput>;
355
372
  export declare const deserializeAws_restJson1GetFederationTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFederationTokenCommandOutput>;
356
373
  export declare const deserializeAws_restJson1GetMetricDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMetricDataCommandOutput>;
374
+ export declare const deserializeAws_restJson1GetTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTaskTemplateCommandOutput>;
357
375
  export declare const deserializeAws_restJson1ListAgentStatusesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAgentStatusesCommandOutput>;
358
376
  export declare const deserializeAws_restJson1ListApprovedOriginsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApprovedOriginsCommandOutput>;
359
377
  export declare const deserializeAws_restJson1ListBotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBotsCommandOutput>;
@@ -380,6 +398,7 @@ export declare const deserializeAws_restJson1ListSecurityKeysCommand: (output: _
380
398
  export declare const deserializeAws_restJson1ListSecurityProfilePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityProfilePermissionsCommandOutput>;
381
399
  export declare const deserializeAws_restJson1ListSecurityProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityProfilesCommandOutput>;
382
400
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
401
+ export declare const deserializeAws_restJson1ListTaskTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTaskTemplatesCommandOutput>;
383
402
  export declare const deserializeAws_restJson1ListUseCasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUseCasesCommandOutput>;
384
403
  export declare const deserializeAws_restJson1ListUserHierarchyGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserHierarchyGroupsCommandOutput>;
385
404
  export declare const deserializeAws_restJson1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
@@ -399,6 +418,7 @@ export declare const deserializeAws_restJson1StopContactRecordingCommand: (outpu
399
418
  export declare const deserializeAws_restJson1StopContactStreamingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopContactStreamingCommandOutput>;
400
419
  export declare const deserializeAws_restJson1SuspendContactRecordingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SuspendContactRecordingCommandOutput>;
401
420
  export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
421
+ export declare const deserializeAws_restJson1TransferContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TransferContactCommandOutput>;
402
422
  export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
403
423
  export declare const deserializeAws_restJson1UpdateAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentStatusCommandOutput>;
404
424
  export declare const deserializeAws_restJson1UpdateContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateContactCommandOutput>;
@@ -425,6 +445,7 @@ export declare const deserializeAws_restJson1UpdateRoutingProfileDefaultOutbound
425
445
  export declare const deserializeAws_restJson1UpdateRoutingProfileNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRoutingProfileNameCommandOutput>;
426
446
  export declare const deserializeAws_restJson1UpdateRoutingProfileQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRoutingProfileQueuesCommandOutput>;
427
447
  export declare const deserializeAws_restJson1UpdateSecurityProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSecurityProfileCommandOutput>;
448
+ export declare const deserializeAws_restJson1UpdateTaskTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTaskTemplateCommandOutput>;
428
449
  export declare const deserializeAws_restJson1UpdateUserHierarchyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserHierarchyCommandOutput>;
429
450
  export declare const deserializeAws_restJson1UpdateUserHierarchyGroupNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateUserHierarchyGroupNameCommandOutput>;
430
451
  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.99.0",
4
+ "version": "3.105.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,15 +18,16 @@
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.99.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",