@aws-sdk/client-connect 3.977.0 → 3.978.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/dist-cjs/index.js +263 -175
- package/dist-es/Connect.js +173 -1
- package/dist-es/schemas/schemas_0.js +5 -4
- package/dist-types/Connect.d.ts +596 -1
- package/dist-types/commands/SearchContactsCommand.d.ts +20 -0
- package/dist-types/models/models_2.d.ts +14 -0
- package/dist-types/models/models_3.d.ts +5 -0
- package/dist-types/ts3.4/Connect.d.ts +600 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +1 -0
- package/package.json +9 -9
|
@@ -6933,6 +6933,11 @@ export interface ContactSearchSummary {
|
|
|
6933
6933
|
* @public
|
|
6934
6934
|
*/
|
|
6935
6935
|
RoutingCriteria?: RoutingCriteria | undefined;
|
|
6936
|
+
/**
|
|
6937
|
+
* <p>Tags associated with the contact. This contains both Amazon Web Services generated and user-defined tags.</p>
|
|
6938
|
+
* @public
|
|
6939
|
+
*/
|
|
6940
|
+
Tags?: Record<string, string> | undefined;
|
|
6936
6941
|
/**
|
|
6937
6942
|
* <p>Additional routing information for contacts created in ACGR instances.</p>
|
|
6938
6943
|
* @public
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
ActivateEvaluationFormCommandInput,
|
|
4
8
|
ActivateEvaluationFormCommandOutput,
|
|
@@ -6119,5 +6123,600 @@ export interface Connect {
|
|
|
6119
6123
|
options: __HttpHandlerOptions,
|
|
6120
6124
|
cb: (err: any, data?: UpdateWorkspaceVisibilityCommandOutput) => void
|
|
6121
6125
|
): void;
|
|
6126
|
+
paginateEvaluateDataTableValues(
|
|
6127
|
+
args: EvaluateDataTableValuesCommandInput,
|
|
6128
|
+
paginationConfig?: Pick<
|
|
6129
|
+
PaginationConfiguration,
|
|
6130
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6131
|
+
>
|
|
6132
|
+
): Paginator<EvaluateDataTableValuesCommandOutput>;
|
|
6133
|
+
paginateGetCurrentMetricData(
|
|
6134
|
+
args: GetCurrentMetricDataCommandInput,
|
|
6135
|
+
paginationConfig?: Pick<
|
|
6136
|
+
PaginationConfiguration,
|
|
6137
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6138
|
+
>
|
|
6139
|
+
): Paginator<GetCurrentMetricDataCommandOutput>;
|
|
6140
|
+
paginateGetCurrentUserData(
|
|
6141
|
+
args: GetCurrentUserDataCommandInput,
|
|
6142
|
+
paginationConfig?: Pick<
|
|
6143
|
+
PaginationConfiguration,
|
|
6144
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6145
|
+
>
|
|
6146
|
+
): Paginator<GetCurrentUserDataCommandOutput>;
|
|
6147
|
+
paginateGetMetricData(
|
|
6148
|
+
args: GetMetricDataCommandInput,
|
|
6149
|
+
paginationConfig?: Pick<
|
|
6150
|
+
PaginationConfiguration,
|
|
6151
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6152
|
+
>
|
|
6153
|
+
): Paginator<GetMetricDataCommandOutput>;
|
|
6154
|
+
paginateGetMetricDataV2(
|
|
6155
|
+
args: GetMetricDataV2CommandInput,
|
|
6156
|
+
paginationConfig?: Pick<
|
|
6157
|
+
PaginationConfiguration,
|
|
6158
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6159
|
+
>
|
|
6160
|
+
): Paginator<GetMetricDataV2CommandOutput>;
|
|
6161
|
+
paginateListAgentStatuses(
|
|
6162
|
+
args: ListAgentStatusesCommandInput,
|
|
6163
|
+
paginationConfig?: Pick<
|
|
6164
|
+
PaginationConfiguration,
|
|
6165
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6166
|
+
>
|
|
6167
|
+
): Paginator<ListAgentStatusesCommandOutput>;
|
|
6168
|
+
paginateListApprovedOrigins(
|
|
6169
|
+
args: ListApprovedOriginsCommandInput,
|
|
6170
|
+
paginationConfig?: Pick<
|
|
6171
|
+
PaginationConfiguration,
|
|
6172
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6173
|
+
>
|
|
6174
|
+
): Paginator<ListApprovedOriginsCommandOutput>;
|
|
6175
|
+
paginateListAuthenticationProfiles(
|
|
6176
|
+
args: ListAuthenticationProfilesCommandInput,
|
|
6177
|
+
paginationConfig?: Pick<
|
|
6178
|
+
PaginationConfiguration,
|
|
6179
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6180
|
+
>
|
|
6181
|
+
): Paginator<ListAuthenticationProfilesCommandOutput>;
|
|
6182
|
+
paginateListBots(
|
|
6183
|
+
args: ListBotsCommandInput,
|
|
6184
|
+
paginationConfig?: Pick<
|
|
6185
|
+
PaginationConfiguration,
|
|
6186
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6187
|
+
>
|
|
6188
|
+
): Paginator<ListBotsCommandOutput>;
|
|
6189
|
+
paginateListChildHoursOfOperations(
|
|
6190
|
+
args: ListChildHoursOfOperationsCommandInput,
|
|
6191
|
+
paginationConfig?: Pick<
|
|
6192
|
+
PaginationConfiguration,
|
|
6193
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6194
|
+
>
|
|
6195
|
+
): Paginator<ListChildHoursOfOperationsCommandOutput>;
|
|
6196
|
+
paginateListContactEvaluations(
|
|
6197
|
+
args: ListContactEvaluationsCommandInput,
|
|
6198
|
+
paginationConfig?: Pick<
|
|
6199
|
+
PaginationConfiguration,
|
|
6200
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6201
|
+
>
|
|
6202
|
+
): Paginator<ListContactEvaluationsCommandOutput>;
|
|
6203
|
+
paginateListContactFlowModuleAliases(
|
|
6204
|
+
args: ListContactFlowModuleAliasesCommandInput,
|
|
6205
|
+
paginationConfig?: Pick<
|
|
6206
|
+
PaginationConfiguration,
|
|
6207
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6208
|
+
>
|
|
6209
|
+
): Paginator<ListContactFlowModuleAliasesCommandOutput>;
|
|
6210
|
+
paginateListContactFlowModules(
|
|
6211
|
+
args: ListContactFlowModulesCommandInput,
|
|
6212
|
+
paginationConfig?: Pick<
|
|
6213
|
+
PaginationConfiguration,
|
|
6214
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6215
|
+
>
|
|
6216
|
+
): Paginator<ListContactFlowModulesCommandOutput>;
|
|
6217
|
+
paginateListContactFlowModuleVersions(
|
|
6218
|
+
args: ListContactFlowModuleVersionsCommandInput,
|
|
6219
|
+
paginationConfig?: Pick<
|
|
6220
|
+
PaginationConfiguration,
|
|
6221
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6222
|
+
>
|
|
6223
|
+
): Paginator<ListContactFlowModuleVersionsCommandOutput>;
|
|
6224
|
+
paginateListContactFlows(
|
|
6225
|
+
args: ListContactFlowsCommandInput,
|
|
6226
|
+
paginationConfig?: Pick<
|
|
6227
|
+
PaginationConfiguration,
|
|
6228
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6229
|
+
>
|
|
6230
|
+
): Paginator<ListContactFlowsCommandOutput>;
|
|
6231
|
+
paginateListContactFlowVersions(
|
|
6232
|
+
args: ListContactFlowVersionsCommandInput,
|
|
6233
|
+
paginationConfig?: Pick<
|
|
6234
|
+
PaginationConfiguration,
|
|
6235
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6236
|
+
>
|
|
6237
|
+
): Paginator<ListContactFlowVersionsCommandOutput>;
|
|
6238
|
+
paginateListContactReferences(
|
|
6239
|
+
args: ListContactReferencesCommandInput,
|
|
6240
|
+
paginationConfig?: Pick<
|
|
6241
|
+
PaginationConfiguration,
|
|
6242
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6243
|
+
>
|
|
6244
|
+
): Paginator<ListContactReferencesCommandOutput>;
|
|
6245
|
+
paginateListDataTableAttributes(
|
|
6246
|
+
args: ListDataTableAttributesCommandInput,
|
|
6247
|
+
paginationConfig?: Pick<
|
|
6248
|
+
PaginationConfiguration,
|
|
6249
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6250
|
+
>
|
|
6251
|
+
): Paginator<ListDataTableAttributesCommandOutput>;
|
|
6252
|
+
paginateListDataTablePrimaryValues(
|
|
6253
|
+
args: ListDataTablePrimaryValuesCommandInput,
|
|
6254
|
+
paginationConfig?: Pick<
|
|
6255
|
+
PaginationConfiguration,
|
|
6256
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6257
|
+
>
|
|
6258
|
+
): Paginator<ListDataTablePrimaryValuesCommandOutput>;
|
|
6259
|
+
paginateListDataTables(
|
|
6260
|
+
args: ListDataTablesCommandInput,
|
|
6261
|
+
paginationConfig?: Pick<
|
|
6262
|
+
PaginationConfiguration,
|
|
6263
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6264
|
+
>
|
|
6265
|
+
): Paginator<ListDataTablesCommandOutput>;
|
|
6266
|
+
paginateListDataTableValues(
|
|
6267
|
+
args: ListDataTableValuesCommandInput,
|
|
6268
|
+
paginationConfig?: Pick<
|
|
6269
|
+
PaginationConfiguration,
|
|
6270
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6271
|
+
>
|
|
6272
|
+
): Paginator<ListDataTableValuesCommandOutput>;
|
|
6273
|
+
paginateListDefaultVocabularies(
|
|
6274
|
+
args: ListDefaultVocabulariesCommandInput,
|
|
6275
|
+
paginationConfig?: Pick<
|
|
6276
|
+
PaginationConfiguration,
|
|
6277
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6278
|
+
>
|
|
6279
|
+
): Paginator<ListDefaultVocabulariesCommandOutput>;
|
|
6280
|
+
paginateListEntitySecurityProfiles(
|
|
6281
|
+
args: ListEntitySecurityProfilesCommandInput,
|
|
6282
|
+
paginationConfig?: Pick<
|
|
6283
|
+
PaginationConfiguration,
|
|
6284
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6285
|
+
>
|
|
6286
|
+
): Paginator<ListEntitySecurityProfilesCommandOutput>;
|
|
6287
|
+
paginateListEvaluationForms(
|
|
6288
|
+
args: ListEvaluationFormsCommandInput,
|
|
6289
|
+
paginationConfig?: Pick<
|
|
6290
|
+
PaginationConfiguration,
|
|
6291
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6292
|
+
>
|
|
6293
|
+
): Paginator<ListEvaluationFormsCommandOutput>;
|
|
6294
|
+
paginateListEvaluationFormVersions(
|
|
6295
|
+
args: ListEvaluationFormVersionsCommandInput,
|
|
6296
|
+
paginationConfig?: Pick<
|
|
6297
|
+
PaginationConfiguration,
|
|
6298
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6299
|
+
>
|
|
6300
|
+
): Paginator<ListEvaluationFormVersionsCommandOutput>;
|
|
6301
|
+
paginateListFlowAssociations(
|
|
6302
|
+
args: ListFlowAssociationsCommandInput,
|
|
6303
|
+
paginationConfig?: Pick<
|
|
6304
|
+
PaginationConfiguration,
|
|
6305
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6306
|
+
>
|
|
6307
|
+
): Paginator<ListFlowAssociationsCommandOutput>;
|
|
6308
|
+
paginateListHoursOfOperationOverrides(
|
|
6309
|
+
args: ListHoursOfOperationOverridesCommandInput,
|
|
6310
|
+
paginationConfig?: Pick<
|
|
6311
|
+
PaginationConfiguration,
|
|
6312
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6313
|
+
>
|
|
6314
|
+
): Paginator<ListHoursOfOperationOverridesCommandOutput>;
|
|
6315
|
+
paginateListHoursOfOperations(
|
|
6316
|
+
args: ListHoursOfOperationsCommandInput,
|
|
6317
|
+
paginationConfig?: Pick<
|
|
6318
|
+
PaginationConfiguration,
|
|
6319
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6320
|
+
>
|
|
6321
|
+
): Paginator<ListHoursOfOperationsCommandOutput>;
|
|
6322
|
+
paginateListInstanceAttributes(
|
|
6323
|
+
args: ListInstanceAttributesCommandInput,
|
|
6324
|
+
paginationConfig?: Pick<
|
|
6325
|
+
PaginationConfiguration,
|
|
6326
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6327
|
+
>
|
|
6328
|
+
): Paginator<ListInstanceAttributesCommandOutput>;
|
|
6329
|
+
paginateListInstances(
|
|
6330
|
+
args?: ListInstancesCommandInput,
|
|
6331
|
+
paginationConfig?: Pick<
|
|
6332
|
+
PaginationConfiguration,
|
|
6333
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6334
|
+
>
|
|
6335
|
+
): Paginator<ListInstancesCommandOutput>;
|
|
6336
|
+
paginateListInstanceStorageConfigs(
|
|
6337
|
+
args: ListInstanceStorageConfigsCommandInput,
|
|
6338
|
+
paginationConfig?: Pick<
|
|
6339
|
+
PaginationConfiguration,
|
|
6340
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6341
|
+
>
|
|
6342
|
+
): Paginator<ListInstanceStorageConfigsCommandOutput>;
|
|
6343
|
+
paginateListIntegrationAssociations(
|
|
6344
|
+
args: ListIntegrationAssociationsCommandInput,
|
|
6345
|
+
paginationConfig?: Pick<
|
|
6346
|
+
PaginationConfiguration,
|
|
6347
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6348
|
+
>
|
|
6349
|
+
): Paginator<ListIntegrationAssociationsCommandOutput>;
|
|
6350
|
+
paginateListLambdaFunctions(
|
|
6351
|
+
args: ListLambdaFunctionsCommandInput,
|
|
6352
|
+
paginationConfig?: Pick<
|
|
6353
|
+
PaginationConfiguration,
|
|
6354
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6355
|
+
>
|
|
6356
|
+
): Paginator<ListLambdaFunctionsCommandOutput>;
|
|
6357
|
+
paginateListLexBots(
|
|
6358
|
+
args: ListLexBotsCommandInput,
|
|
6359
|
+
paginationConfig?: Pick<
|
|
6360
|
+
PaginationConfiguration,
|
|
6361
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6362
|
+
>
|
|
6363
|
+
): Paginator<ListLexBotsCommandOutput>;
|
|
6364
|
+
paginateListPhoneNumbers(
|
|
6365
|
+
args: ListPhoneNumbersCommandInput,
|
|
6366
|
+
paginationConfig?: Pick<
|
|
6367
|
+
PaginationConfiguration,
|
|
6368
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6369
|
+
>
|
|
6370
|
+
): Paginator<ListPhoneNumbersCommandOutput>;
|
|
6371
|
+
paginateListPhoneNumbersV2(
|
|
6372
|
+
args?: ListPhoneNumbersV2CommandInput,
|
|
6373
|
+
paginationConfig?: Pick<
|
|
6374
|
+
PaginationConfiguration,
|
|
6375
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6376
|
+
>
|
|
6377
|
+
): Paginator<ListPhoneNumbersV2CommandOutput>;
|
|
6378
|
+
paginateListPredefinedAttributes(
|
|
6379
|
+
args: ListPredefinedAttributesCommandInput,
|
|
6380
|
+
paginationConfig?: Pick<
|
|
6381
|
+
PaginationConfiguration,
|
|
6382
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6383
|
+
>
|
|
6384
|
+
): Paginator<ListPredefinedAttributesCommandOutput>;
|
|
6385
|
+
paginateListPrompts(
|
|
6386
|
+
args: ListPromptsCommandInput,
|
|
6387
|
+
paginationConfig?: Pick<
|
|
6388
|
+
PaginationConfiguration,
|
|
6389
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6390
|
+
>
|
|
6391
|
+
): Paginator<ListPromptsCommandOutput>;
|
|
6392
|
+
paginateListQueueQuickConnects(
|
|
6393
|
+
args: ListQueueQuickConnectsCommandInput,
|
|
6394
|
+
paginationConfig?: Pick<
|
|
6395
|
+
PaginationConfiguration,
|
|
6396
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6397
|
+
>
|
|
6398
|
+
): Paginator<ListQueueQuickConnectsCommandOutput>;
|
|
6399
|
+
paginateListQueues(
|
|
6400
|
+
args: ListQueuesCommandInput,
|
|
6401
|
+
paginationConfig?: Pick<
|
|
6402
|
+
PaginationConfiguration,
|
|
6403
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6404
|
+
>
|
|
6405
|
+
): Paginator<ListQueuesCommandOutput>;
|
|
6406
|
+
paginateListQuickConnects(
|
|
6407
|
+
args: ListQuickConnectsCommandInput,
|
|
6408
|
+
paginationConfig?: Pick<
|
|
6409
|
+
PaginationConfiguration,
|
|
6410
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6411
|
+
>
|
|
6412
|
+
): Paginator<ListQuickConnectsCommandOutput>;
|
|
6413
|
+
paginateListRealtimeContactAnalysisSegmentsV2(
|
|
6414
|
+
args: ListRealtimeContactAnalysisSegmentsV2CommandInput,
|
|
6415
|
+
paginationConfig?: Pick<
|
|
6416
|
+
PaginationConfiguration,
|
|
6417
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6418
|
+
>
|
|
6419
|
+
): Paginator<ListRealtimeContactAnalysisSegmentsV2CommandOutput>;
|
|
6420
|
+
paginateListRoutingProfileManualAssignmentQueues(
|
|
6421
|
+
args: ListRoutingProfileManualAssignmentQueuesCommandInput,
|
|
6422
|
+
paginationConfig?: Pick<
|
|
6423
|
+
PaginationConfiguration,
|
|
6424
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6425
|
+
>
|
|
6426
|
+
): Paginator<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
6427
|
+
paginateListRoutingProfileQueues(
|
|
6428
|
+
args: ListRoutingProfileQueuesCommandInput,
|
|
6429
|
+
paginationConfig?: Pick<
|
|
6430
|
+
PaginationConfiguration,
|
|
6431
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6432
|
+
>
|
|
6433
|
+
): Paginator<ListRoutingProfileQueuesCommandOutput>;
|
|
6434
|
+
paginateListRoutingProfiles(
|
|
6435
|
+
args: ListRoutingProfilesCommandInput,
|
|
6436
|
+
paginationConfig?: Pick<
|
|
6437
|
+
PaginationConfiguration,
|
|
6438
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6439
|
+
>
|
|
6440
|
+
): Paginator<ListRoutingProfilesCommandOutput>;
|
|
6441
|
+
paginateListRules(
|
|
6442
|
+
args: ListRulesCommandInput,
|
|
6443
|
+
paginationConfig?: Pick<
|
|
6444
|
+
PaginationConfiguration,
|
|
6445
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6446
|
+
>
|
|
6447
|
+
): Paginator<ListRulesCommandOutput>;
|
|
6448
|
+
paginateListSecurityKeys(
|
|
6449
|
+
args: ListSecurityKeysCommandInput,
|
|
6450
|
+
paginationConfig?: Pick<
|
|
6451
|
+
PaginationConfiguration,
|
|
6452
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6453
|
+
>
|
|
6454
|
+
): Paginator<ListSecurityKeysCommandOutput>;
|
|
6455
|
+
paginateListSecurityProfileApplications(
|
|
6456
|
+
args: ListSecurityProfileApplicationsCommandInput,
|
|
6457
|
+
paginationConfig?: Pick<
|
|
6458
|
+
PaginationConfiguration,
|
|
6459
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6460
|
+
>
|
|
6461
|
+
): Paginator<ListSecurityProfileApplicationsCommandOutput>;
|
|
6462
|
+
paginateListSecurityProfileFlowModules(
|
|
6463
|
+
args: ListSecurityProfileFlowModulesCommandInput,
|
|
6464
|
+
paginationConfig?: Pick<
|
|
6465
|
+
PaginationConfiguration,
|
|
6466
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6467
|
+
>
|
|
6468
|
+
): Paginator<ListSecurityProfileFlowModulesCommandOutput>;
|
|
6469
|
+
paginateListSecurityProfilePermissions(
|
|
6470
|
+
args: ListSecurityProfilePermissionsCommandInput,
|
|
6471
|
+
paginationConfig?: Pick<
|
|
6472
|
+
PaginationConfiguration,
|
|
6473
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6474
|
+
>
|
|
6475
|
+
): Paginator<ListSecurityProfilePermissionsCommandOutput>;
|
|
6476
|
+
paginateListSecurityProfiles(
|
|
6477
|
+
args: ListSecurityProfilesCommandInput,
|
|
6478
|
+
paginationConfig?: Pick<
|
|
6479
|
+
PaginationConfiguration,
|
|
6480
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6481
|
+
>
|
|
6482
|
+
): Paginator<ListSecurityProfilesCommandOutput>;
|
|
6483
|
+
paginateListTaskTemplates(
|
|
6484
|
+
args: ListTaskTemplatesCommandInput,
|
|
6485
|
+
paginationConfig?: Pick<
|
|
6486
|
+
PaginationConfiguration,
|
|
6487
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6488
|
+
>
|
|
6489
|
+
): Paginator<ListTaskTemplatesCommandOutput>;
|
|
6490
|
+
paginateListTestCases(
|
|
6491
|
+
args: ListTestCasesCommandInput,
|
|
6492
|
+
paginationConfig?: Pick<
|
|
6493
|
+
PaginationConfiguration,
|
|
6494
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6495
|
+
>
|
|
6496
|
+
): Paginator<ListTestCasesCommandOutput>;
|
|
6497
|
+
paginateListTrafficDistributionGroups(
|
|
6498
|
+
args?: ListTrafficDistributionGroupsCommandInput,
|
|
6499
|
+
paginationConfig?: Pick<
|
|
6500
|
+
PaginationConfiguration,
|
|
6501
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6502
|
+
>
|
|
6503
|
+
): Paginator<ListTrafficDistributionGroupsCommandOutput>;
|
|
6504
|
+
paginateListTrafficDistributionGroupUsers(
|
|
6505
|
+
args: ListTrafficDistributionGroupUsersCommandInput,
|
|
6506
|
+
paginationConfig?: Pick<
|
|
6507
|
+
PaginationConfiguration,
|
|
6508
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6509
|
+
>
|
|
6510
|
+
): Paginator<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
6511
|
+
paginateListUseCases(
|
|
6512
|
+
args: ListUseCasesCommandInput,
|
|
6513
|
+
paginationConfig?: Pick<
|
|
6514
|
+
PaginationConfiguration,
|
|
6515
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6516
|
+
>
|
|
6517
|
+
): Paginator<ListUseCasesCommandOutput>;
|
|
6518
|
+
paginateListUserHierarchyGroups(
|
|
6519
|
+
args: ListUserHierarchyGroupsCommandInput,
|
|
6520
|
+
paginationConfig?: Pick<
|
|
6521
|
+
PaginationConfiguration,
|
|
6522
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6523
|
+
>
|
|
6524
|
+
): Paginator<ListUserHierarchyGroupsCommandOutput>;
|
|
6525
|
+
paginateListUserProficiencies(
|
|
6526
|
+
args: ListUserProficienciesCommandInput,
|
|
6527
|
+
paginationConfig?: Pick<
|
|
6528
|
+
PaginationConfiguration,
|
|
6529
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6530
|
+
>
|
|
6531
|
+
): Paginator<ListUserProficienciesCommandOutput>;
|
|
6532
|
+
paginateListUsers(
|
|
6533
|
+
args: ListUsersCommandInput,
|
|
6534
|
+
paginationConfig?: Pick<
|
|
6535
|
+
PaginationConfiguration,
|
|
6536
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6537
|
+
>
|
|
6538
|
+
): Paginator<ListUsersCommandOutput>;
|
|
6539
|
+
paginateListViews(
|
|
6540
|
+
args: ListViewsCommandInput,
|
|
6541
|
+
paginationConfig?: Pick<
|
|
6542
|
+
PaginationConfiguration,
|
|
6543
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6544
|
+
>
|
|
6545
|
+
): Paginator<ListViewsCommandOutput>;
|
|
6546
|
+
paginateListViewVersions(
|
|
6547
|
+
args: ListViewVersionsCommandInput,
|
|
6548
|
+
paginationConfig?: Pick<
|
|
6549
|
+
PaginationConfiguration,
|
|
6550
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6551
|
+
>
|
|
6552
|
+
): Paginator<ListViewVersionsCommandOutput>;
|
|
6553
|
+
paginateListWorkspacePages(
|
|
6554
|
+
args: ListWorkspacePagesCommandInput,
|
|
6555
|
+
paginationConfig?: Pick<
|
|
6556
|
+
PaginationConfiguration,
|
|
6557
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6558
|
+
>
|
|
6559
|
+
): Paginator<ListWorkspacePagesCommandOutput>;
|
|
6560
|
+
paginateListWorkspaces(
|
|
6561
|
+
args: ListWorkspacesCommandInput,
|
|
6562
|
+
paginationConfig?: Pick<
|
|
6563
|
+
PaginationConfiguration,
|
|
6564
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6565
|
+
>
|
|
6566
|
+
): Paginator<ListWorkspacesCommandOutput>;
|
|
6567
|
+
paginateSearchAgentStatuses(
|
|
6568
|
+
args: SearchAgentStatusesCommandInput,
|
|
6569
|
+
paginationConfig?: Pick<
|
|
6570
|
+
PaginationConfiguration,
|
|
6571
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6572
|
+
>
|
|
6573
|
+
): Paginator<SearchAgentStatusesCommandOutput>;
|
|
6574
|
+
paginateSearchAvailablePhoneNumbers(
|
|
6575
|
+
args: SearchAvailablePhoneNumbersCommandInput,
|
|
6576
|
+
paginationConfig?: Pick<
|
|
6577
|
+
PaginationConfiguration,
|
|
6578
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6579
|
+
>
|
|
6580
|
+
): Paginator<SearchAvailablePhoneNumbersCommandOutput>;
|
|
6581
|
+
paginateSearchContactFlowModules(
|
|
6582
|
+
args: SearchContactFlowModulesCommandInput,
|
|
6583
|
+
paginationConfig?: Pick<
|
|
6584
|
+
PaginationConfiguration,
|
|
6585
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6586
|
+
>
|
|
6587
|
+
): Paginator<SearchContactFlowModulesCommandOutput>;
|
|
6588
|
+
paginateSearchContactFlows(
|
|
6589
|
+
args: SearchContactFlowsCommandInput,
|
|
6590
|
+
paginationConfig?: Pick<
|
|
6591
|
+
PaginationConfiguration,
|
|
6592
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6593
|
+
>
|
|
6594
|
+
): Paginator<SearchContactFlowsCommandOutput>;
|
|
6595
|
+
paginateSearchContacts(
|
|
6596
|
+
args: SearchContactsCommandInput,
|
|
6597
|
+
paginationConfig?: Pick<
|
|
6598
|
+
PaginationConfiguration,
|
|
6599
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6600
|
+
>
|
|
6601
|
+
): Paginator<SearchContactsCommandOutput>;
|
|
6602
|
+
paginateSearchDataTables(
|
|
6603
|
+
args: SearchDataTablesCommandInput,
|
|
6604
|
+
paginationConfig?: Pick<
|
|
6605
|
+
PaginationConfiguration,
|
|
6606
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6607
|
+
>
|
|
6608
|
+
): Paginator<SearchDataTablesCommandOutput>;
|
|
6609
|
+
paginateSearchHoursOfOperationOverrides(
|
|
6610
|
+
args: SearchHoursOfOperationOverridesCommandInput,
|
|
6611
|
+
paginationConfig?: Pick<
|
|
6612
|
+
PaginationConfiguration,
|
|
6613
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6614
|
+
>
|
|
6615
|
+
): Paginator<SearchHoursOfOperationOverridesCommandOutput>;
|
|
6616
|
+
paginateSearchHoursOfOperations(
|
|
6617
|
+
args: SearchHoursOfOperationsCommandInput,
|
|
6618
|
+
paginationConfig?: Pick<
|
|
6619
|
+
PaginationConfiguration,
|
|
6620
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6621
|
+
>
|
|
6622
|
+
): Paginator<SearchHoursOfOperationsCommandOutput>;
|
|
6623
|
+
paginateSearchPredefinedAttributes(
|
|
6624
|
+
args: SearchPredefinedAttributesCommandInput,
|
|
6625
|
+
paginationConfig?: Pick<
|
|
6626
|
+
PaginationConfiguration,
|
|
6627
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6628
|
+
>
|
|
6629
|
+
): Paginator<SearchPredefinedAttributesCommandOutput>;
|
|
6630
|
+
paginateSearchPrompts(
|
|
6631
|
+
args: SearchPromptsCommandInput,
|
|
6632
|
+
paginationConfig?: Pick<
|
|
6633
|
+
PaginationConfiguration,
|
|
6634
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6635
|
+
>
|
|
6636
|
+
): Paginator<SearchPromptsCommandOutput>;
|
|
6637
|
+
paginateSearchQueues(
|
|
6638
|
+
args: SearchQueuesCommandInput,
|
|
6639
|
+
paginationConfig?: Pick<
|
|
6640
|
+
PaginationConfiguration,
|
|
6641
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6642
|
+
>
|
|
6643
|
+
): Paginator<SearchQueuesCommandOutput>;
|
|
6644
|
+
paginateSearchQuickConnects(
|
|
6645
|
+
args: SearchQuickConnectsCommandInput,
|
|
6646
|
+
paginationConfig?: Pick<
|
|
6647
|
+
PaginationConfiguration,
|
|
6648
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6649
|
+
>
|
|
6650
|
+
): Paginator<SearchQuickConnectsCommandOutput>;
|
|
6651
|
+
paginateSearchResourceTags(
|
|
6652
|
+
args: SearchResourceTagsCommandInput,
|
|
6653
|
+
paginationConfig?: Pick<
|
|
6654
|
+
PaginationConfiguration,
|
|
6655
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6656
|
+
>
|
|
6657
|
+
): Paginator<SearchResourceTagsCommandOutput>;
|
|
6658
|
+
paginateSearchRoutingProfiles(
|
|
6659
|
+
args: SearchRoutingProfilesCommandInput,
|
|
6660
|
+
paginationConfig?: Pick<
|
|
6661
|
+
PaginationConfiguration,
|
|
6662
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6663
|
+
>
|
|
6664
|
+
): Paginator<SearchRoutingProfilesCommandOutput>;
|
|
6665
|
+
paginateSearchSecurityProfiles(
|
|
6666
|
+
args: SearchSecurityProfilesCommandInput,
|
|
6667
|
+
paginationConfig?: Pick<
|
|
6668
|
+
PaginationConfiguration,
|
|
6669
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6670
|
+
>
|
|
6671
|
+
): Paginator<SearchSecurityProfilesCommandOutput>;
|
|
6672
|
+
paginateSearchTestCases(
|
|
6673
|
+
args: SearchTestCasesCommandInput,
|
|
6674
|
+
paginationConfig?: Pick<
|
|
6675
|
+
PaginationConfiguration,
|
|
6676
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6677
|
+
>
|
|
6678
|
+
): Paginator<SearchTestCasesCommandOutput>;
|
|
6679
|
+
paginateSearchUserHierarchyGroups(
|
|
6680
|
+
args: SearchUserHierarchyGroupsCommandInput,
|
|
6681
|
+
paginationConfig?: Pick<
|
|
6682
|
+
PaginationConfiguration,
|
|
6683
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6684
|
+
>
|
|
6685
|
+
): Paginator<SearchUserHierarchyGroupsCommandOutput>;
|
|
6686
|
+
paginateSearchUsers(
|
|
6687
|
+
args: SearchUsersCommandInput,
|
|
6688
|
+
paginationConfig?: Pick<
|
|
6689
|
+
PaginationConfiguration,
|
|
6690
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6691
|
+
>
|
|
6692
|
+
): Paginator<SearchUsersCommandOutput>;
|
|
6693
|
+
paginateSearchViews(
|
|
6694
|
+
args: SearchViewsCommandInput,
|
|
6695
|
+
paginationConfig?: Pick<
|
|
6696
|
+
PaginationConfiguration,
|
|
6697
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6698
|
+
>
|
|
6699
|
+
): Paginator<SearchViewsCommandOutput>;
|
|
6700
|
+
paginateSearchVocabularies(
|
|
6701
|
+
args: SearchVocabulariesCommandInput,
|
|
6702
|
+
paginationConfig?: Pick<
|
|
6703
|
+
PaginationConfiguration,
|
|
6704
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6705
|
+
>
|
|
6706
|
+
): Paginator<SearchVocabulariesCommandOutput>;
|
|
6707
|
+
paginateSearchWorkspaceAssociations(
|
|
6708
|
+
args: SearchWorkspaceAssociationsCommandInput,
|
|
6709
|
+
paginationConfig?: Pick<
|
|
6710
|
+
PaginationConfiguration,
|
|
6711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6712
|
+
>
|
|
6713
|
+
): Paginator<SearchWorkspaceAssociationsCommandOutput>;
|
|
6714
|
+
paginateSearchWorkspaces(
|
|
6715
|
+
args: SearchWorkspacesCommandInput,
|
|
6716
|
+
paginationConfig?: Pick<
|
|
6717
|
+
PaginationConfiguration,
|
|
6718
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
6719
|
+
>
|
|
6720
|
+
): Paginator<SearchWorkspacesCommandOutput>;
|
|
6122
6721
|
}
|
|
6123
6722
|
export declare class Connect extends ConnectClient implements Connect {}
|
|
@@ -1670,6 +1670,7 @@ export interface SearchCriteria {
|
|
|
1670
1670
|
SearchableContactAttributes?: SearchableContactAttributes | undefined;
|
|
1671
1671
|
SearchableSegmentAttributes?: SearchableSegmentAttributes | undefined;
|
|
1672
1672
|
ActiveRegions?: string[] | undefined;
|
|
1673
|
+
ContactTags?: ControlPlaneTagFilter | undefined;
|
|
1673
1674
|
}
|
|
1674
1675
|
export interface Sort {
|
|
1675
1676
|
FieldName: SortableFieldName | undefined;
|
|
@@ -1671,6 +1671,7 @@ export interface ContactSearchSummary {
|
|
|
1671
1671
|
| undefined;
|
|
1672
1672
|
Name?: string | undefined;
|
|
1673
1673
|
RoutingCriteria?: RoutingCriteria | undefined;
|
|
1674
|
+
Tags?: Record<string, string> | undefined;
|
|
1674
1675
|
GlobalResiliencyMetadata?: GlobalResiliencyMetadata | undefined;
|
|
1675
1676
|
}
|
|
1676
1677
|
export interface DescribeContactResponse {
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|