@aws-sdk/client-connect 3.478.0 → 3.479.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/README.md +96 -0
- package/dist-cjs/Connect.js +24 -0
- package/dist-cjs/commands/AssociateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/CreatePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DeletePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DescribePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/DisassociateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/ListPredefinedAttributesCommand.js +51 -0
- package/dist-cjs/commands/ListUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/SearchContactsCommand.js +52 -0
- package/dist-cjs/commands/SearchPredefinedAttributesCommand.js +51 -0
- package/dist-cjs/commands/UpdateContactRoutingDataCommand.js +51 -0
- package/dist-cjs/commands/UpdatePredefinedAttributeCommand.js +51 -0
- package/dist-cjs/commands/UpdateUserProficienciesCommand.js +51 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/models/models_0.js +10 -16
- package/dist-cjs/models/models_1.js +62 -25
- package/dist-cjs/models/models_2.js +39 -1
- package/dist-cjs/pagination/ListPredefinedAttributesPaginator.js +7 -0
- package/dist-cjs/pagination/ListUserProficienciesPaginator.js +7 -0
- package/dist-cjs/pagination/SearchContactsPaginator.js +7 -0
- package/dist-cjs/pagination/SearchPredefinedAttributesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +4 -0
- package/dist-cjs/protocols/Aws_restJson1.js +878 -32
- package/dist-es/Connect.js +24 -0
- package/dist-es/commands/AssociateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/CreatePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DeletePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DescribePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/DisassociateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/ListPredefinedAttributesCommand.js +47 -0
- package/dist-es/commands/ListUserProficienciesCommand.js +47 -0
- package/dist-es/commands/SearchContactsCommand.js +48 -0
- package/dist-es/commands/SearchPredefinedAttributesCommand.js +47 -0
- package/dist-es/commands/UpdateContactRoutingDataCommand.js +47 -0
- package/dist-es/commands/UpdatePredefinedAttributeCommand.js +47 -0
- package/dist-es/commands/UpdateUserProficienciesCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/models_0.js +8 -14
- package/dist-es/models/models_1.js +55 -23
- package/dist-es/models/models_2.js +36 -0
- package/dist-es/pagination/ListPredefinedAttributesPaginator.js +4 -0
- package/dist-es/pagination/ListUserProficienciesPaginator.js +4 -0
- package/dist-es/pagination/SearchContactsPaginator.js +4 -0
- package/dist-es/pagination/SearchPredefinedAttributesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +846 -24
- package/dist-types/Connect.d.ts +84 -0
- package/dist-types/ConnectClient.d.ts +14 -2
- package/dist-types/commands/AssociateUserProficienciesCommand.d.ts +94 -0
- package/dist-types/commands/CreatePredefinedAttributeCommand.d.ts +98 -0
- package/dist-types/commands/DeletePredefinedAttributeCommand.d.ts +90 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +2 -0
- package/dist-types/commands/DescribePhoneNumberCommand.d.ts +2 -1
- package/dist-types/commands/DescribePredefinedAttributeCommand.d.ts +98 -0
- package/dist-types/commands/DescribePromptCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateUserProficienciesCommand.d.ts +93 -0
- package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +5 -1
- package/dist-types/commands/GetMetricDataCommand.d.ts +5 -1
- package/dist-types/commands/ListPredefinedAttributesCommand.d.ts +97 -0
- package/dist-types/commands/ListUserProficienciesCommand.d.ts +100 -0
- package/dist-types/commands/PauseContactCommand.d.ts +2 -1
- package/dist-types/commands/ResumeContactCommand.d.ts +2 -1
- package/dist-types/commands/SearchContactsCommand.d.ts +177 -0
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +1 -2
- package/dist-types/commands/SearchPredefinedAttributesCommand.d.ts +128 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +1 -2
- package/dist-types/commands/SearchQueuesCommand.d.ts +1 -2
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +1 -2
- package/dist-types/commands/SearchResourceTagsCommand.d.ts +1 -1
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +1 -2
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +1 -2
- package/dist-types/commands/TagContactCommand.d.ts +3 -3
- package/dist-types/commands/UntagContactCommand.d.ts +3 -2
- package/dist-types/commands/UpdateContactRoutingDataCommand.d.ts +101 -0
- package/dist-types/commands/UpdatePredefinedAttributeCommand.d.ts +92 -0
- package/dist-types/commands/UpdateUserProficienciesCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +159 -185
- package/dist-types/models/models_1.d.ts +495 -423
- package/dist-types/models/models_2.d.ts +875 -12
- package/dist-types/pagination/ListPredefinedAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUserProficienciesPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchContactsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchPredefinedAttributesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/Connect.d.ts +204 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/AssociateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreatePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeletePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribePhoneNumberCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePredefinedAttributeCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribePromptCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DisassociateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPredefinedAttributesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContactsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SearchHoursOfOperationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchPredefinedAttributesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchPromptsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchQueuesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchResourceTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateContactRoutingDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdatePredefinedAttributeCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateUserProficienciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -42
- package/dist-types/ts3.4/models/models_1.d.ts +153 -113
- package/dist-types/ts3.4/models/models_2.d.ts +215 -10
- package/dist-types/ts3.4/pagination/ListPredefinedAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUserProficienciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchContactsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchPredefinedAttributesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
- package/package.json +1 -1
|
@@ -55,6 +55,10 @@ import {
|
|
|
55
55
|
AssociateTrafficDistributionGroupUserCommandInput,
|
|
56
56
|
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
57
57
|
} from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
58
|
+
import {
|
|
59
|
+
AssociateUserProficienciesCommandInput,
|
|
60
|
+
AssociateUserProficienciesCommandOutput,
|
|
61
|
+
} from "./commands/AssociateUserProficienciesCommand";
|
|
58
62
|
import {
|
|
59
63
|
BatchAssociateAnalyticsDataSetCommandInput,
|
|
60
64
|
BatchAssociateAnalyticsDataSetCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
CreatePersistentContactAssociationCommandInput,
|
|
112
116
|
CreatePersistentContactAssociationCommandOutput,
|
|
113
117
|
} from "./commands/CreatePersistentContactAssociationCommand";
|
|
118
|
+
import {
|
|
119
|
+
CreatePredefinedAttributeCommandInput,
|
|
120
|
+
CreatePredefinedAttributeCommandOutput,
|
|
121
|
+
} from "./commands/CreatePredefinedAttributeCommand";
|
|
114
122
|
import {
|
|
115
123
|
CreatePromptCommandInput,
|
|
116
124
|
CreatePromptCommandOutput,
|
|
@@ -199,6 +207,10 @@ import {
|
|
|
199
207
|
DeleteIntegrationAssociationCommandInput,
|
|
200
208
|
DeleteIntegrationAssociationCommandOutput,
|
|
201
209
|
} from "./commands/DeleteIntegrationAssociationCommand";
|
|
210
|
+
import {
|
|
211
|
+
DeletePredefinedAttributeCommandInput,
|
|
212
|
+
DeletePredefinedAttributeCommandOutput,
|
|
213
|
+
} from "./commands/DeletePredefinedAttributeCommand";
|
|
202
214
|
import {
|
|
203
215
|
DeletePromptCommandInput,
|
|
204
216
|
DeletePromptCommandOutput,
|
|
@@ -299,6 +311,10 @@ import {
|
|
|
299
311
|
DescribePhoneNumberCommandInput,
|
|
300
312
|
DescribePhoneNumberCommandOutput,
|
|
301
313
|
} from "./commands/DescribePhoneNumberCommand";
|
|
314
|
+
import {
|
|
315
|
+
DescribePredefinedAttributeCommandInput,
|
|
316
|
+
DescribePredefinedAttributeCommandOutput,
|
|
317
|
+
} from "./commands/DescribePredefinedAttributeCommand";
|
|
302
318
|
import {
|
|
303
319
|
DescribePromptCommandInput,
|
|
304
320
|
DescribePromptCommandOutput,
|
|
@@ -395,6 +411,10 @@ import {
|
|
|
395
411
|
DisassociateTrafficDistributionGroupUserCommandInput,
|
|
396
412
|
DisassociateTrafficDistributionGroupUserCommandOutput,
|
|
397
413
|
} from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
414
|
+
import {
|
|
415
|
+
DisassociateUserProficienciesCommandInput,
|
|
416
|
+
DisassociateUserProficienciesCommandOutput,
|
|
417
|
+
} from "./commands/DisassociateUserProficienciesCommand";
|
|
398
418
|
import {
|
|
399
419
|
DismissUserContactCommandInput,
|
|
400
420
|
DismissUserContactCommandOutput,
|
|
@@ -527,6 +547,10 @@ import {
|
|
|
527
547
|
ListPhoneNumbersV2CommandInput,
|
|
528
548
|
ListPhoneNumbersV2CommandOutput,
|
|
529
549
|
} from "./commands/ListPhoneNumbersV2Command";
|
|
550
|
+
import {
|
|
551
|
+
ListPredefinedAttributesCommandInput,
|
|
552
|
+
ListPredefinedAttributesCommandOutput,
|
|
553
|
+
} from "./commands/ListPredefinedAttributesCommand";
|
|
530
554
|
import {
|
|
531
555
|
ListPromptsCommandInput,
|
|
532
556
|
ListPromptsCommandOutput,
|
|
@@ -599,6 +623,10 @@ import {
|
|
|
599
623
|
ListUserHierarchyGroupsCommandInput,
|
|
600
624
|
ListUserHierarchyGroupsCommandOutput,
|
|
601
625
|
} from "./commands/ListUserHierarchyGroupsCommand";
|
|
626
|
+
import {
|
|
627
|
+
ListUserProficienciesCommandInput,
|
|
628
|
+
ListUserProficienciesCommandOutput,
|
|
629
|
+
} from "./commands/ListUserProficienciesCommand";
|
|
602
630
|
import {
|
|
603
631
|
ListUsersCommandInput,
|
|
604
632
|
ListUsersCommandOutput,
|
|
@@ -643,10 +671,18 @@ import {
|
|
|
643
671
|
SearchAvailablePhoneNumbersCommandInput,
|
|
644
672
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
645
673
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
674
|
+
import {
|
|
675
|
+
SearchContactsCommandInput,
|
|
676
|
+
SearchContactsCommandOutput,
|
|
677
|
+
} from "./commands/SearchContactsCommand";
|
|
646
678
|
import {
|
|
647
679
|
SearchHoursOfOperationsCommandInput,
|
|
648
680
|
SearchHoursOfOperationsCommandOutput,
|
|
649
681
|
} from "./commands/SearchHoursOfOperationsCommand";
|
|
682
|
+
import {
|
|
683
|
+
SearchPredefinedAttributesCommandInput,
|
|
684
|
+
SearchPredefinedAttributesCommandOutput,
|
|
685
|
+
} from "./commands/SearchPredefinedAttributesCommand";
|
|
650
686
|
import {
|
|
651
687
|
SearchPromptsCommandInput,
|
|
652
688
|
SearchPromptsCommandOutput,
|
|
@@ -787,6 +823,10 @@ import {
|
|
|
787
823
|
UpdateContactFlowNameCommandInput,
|
|
788
824
|
UpdateContactFlowNameCommandOutput,
|
|
789
825
|
} from "./commands/UpdateContactFlowNameCommand";
|
|
826
|
+
import {
|
|
827
|
+
UpdateContactRoutingDataCommandInput,
|
|
828
|
+
UpdateContactRoutingDataCommandOutput,
|
|
829
|
+
} from "./commands/UpdateContactRoutingDataCommand";
|
|
790
830
|
import {
|
|
791
831
|
UpdateContactScheduleCommandInput,
|
|
792
832
|
UpdateContactScheduleCommandOutput,
|
|
@@ -819,6 +859,10 @@ import {
|
|
|
819
859
|
UpdatePhoneNumberMetadataCommandInput,
|
|
820
860
|
UpdatePhoneNumberMetadataCommandOutput,
|
|
821
861
|
} from "./commands/UpdatePhoneNumberMetadataCommand";
|
|
862
|
+
import {
|
|
863
|
+
UpdatePredefinedAttributeCommandInput,
|
|
864
|
+
UpdatePredefinedAttributeCommandOutput,
|
|
865
|
+
} from "./commands/UpdatePredefinedAttributeCommand";
|
|
822
866
|
import {
|
|
823
867
|
UpdatePromptCommandInput,
|
|
824
868
|
UpdatePromptCommandOutput,
|
|
@@ -907,6 +951,10 @@ import {
|
|
|
907
951
|
UpdateUserPhoneConfigCommandInput,
|
|
908
952
|
UpdateUserPhoneConfigCommandOutput,
|
|
909
953
|
} from "./commands/UpdateUserPhoneConfigCommand";
|
|
954
|
+
import {
|
|
955
|
+
UpdateUserProficienciesCommandInput,
|
|
956
|
+
UpdateUserProficienciesCommandOutput,
|
|
957
|
+
} from "./commands/UpdateUserProficienciesCommand";
|
|
910
958
|
import {
|
|
911
959
|
UpdateUserRoutingProfileCommandInput,
|
|
912
960
|
UpdateUserRoutingProfileCommandOutput,
|
|
@@ -1113,6 +1161,19 @@ export interface Connect {
|
|
|
1113
1161
|
data?: AssociateTrafficDistributionGroupUserCommandOutput
|
|
1114
1162
|
) => void
|
|
1115
1163
|
): void;
|
|
1164
|
+
associateUserProficiencies(
|
|
1165
|
+
args: AssociateUserProficienciesCommandInput,
|
|
1166
|
+
options?: __HttpHandlerOptions
|
|
1167
|
+
): Promise<AssociateUserProficienciesCommandOutput>;
|
|
1168
|
+
associateUserProficiencies(
|
|
1169
|
+
args: AssociateUserProficienciesCommandInput,
|
|
1170
|
+
cb: (err: any, data?: AssociateUserProficienciesCommandOutput) => void
|
|
1171
|
+
): void;
|
|
1172
|
+
associateUserProficiencies(
|
|
1173
|
+
args: AssociateUserProficienciesCommandInput,
|
|
1174
|
+
options: __HttpHandlerOptions,
|
|
1175
|
+
cb: (err: any, data?: AssociateUserProficienciesCommandOutput) => void
|
|
1176
|
+
): void;
|
|
1116
1177
|
batchAssociateAnalyticsDataSet(
|
|
1117
1178
|
args: BatchAssociateAnalyticsDataSetCommandInput,
|
|
1118
1179
|
options?: __HttpHandlerOptions
|
|
@@ -1307,6 +1368,19 @@ export interface Connect {
|
|
|
1307
1368
|
data?: CreatePersistentContactAssociationCommandOutput
|
|
1308
1369
|
) => void
|
|
1309
1370
|
): void;
|
|
1371
|
+
createPredefinedAttribute(
|
|
1372
|
+
args: CreatePredefinedAttributeCommandInput,
|
|
1373
|
+
options?: __HttpHandlerOptions
|
|
1374
|
+
): Promise<CreatePredefinedAttributeCommandOutput>;
|
|
1375
|
+
createPredefinedAttribute(
|
|
1376
|
+
args: CreatePredefinedAttributeCommandInput,
|
|
1377
|
+
cb: (err: any, data?: CreatePredefinedAttributeCommandOutput) => void
|
|
1378
|
+
): void;
|
|
1379
|
+
createPredefinedAttribute(
|
|
1380
|
+
args: CreatePredefinedAttributeCommandInput,
|
|
1381
|
+
options: __HttpHandlerOptions,
|
|
1382
|
+
cb: (err: any, data?: CreatePredefinedAttributeCommandOutput) => void
|
|
1383
|
+
): void;
|
|
1310
1384
|
createPrompt(
|
|
1311
1385
|
args: CreatePromptCommandInput,
|
|
1312
1386
|
options?: __HttpHandlerOptions
|
|
@@ -1593,6 +1667,19 @@ export interface Connect {
|
|
|
1593
1667
|
options: __HttpHandlerOptions,
|
|
1594
1668
|
cb: (err: any, data?: DeleteIntegrationAssociationCommandOutput) => void
|
|
1595
1669
|
): void;
|
|
1670
|
+
deletePredefinedAttribute(
|
|
1671
|
+
args: DeletePredefinedAttributeCommandInput,
|
|
1672
|
+
options?: __HttpHandlerOptions
|
|
1673
|
+
): Promise<DeletePredefinedAttributeCommandOutput>;
|
|
1674
|
+
deletePredefinedAttribute(
|
|
1675
|
+
args: DeletePredefinedAttributeCommandInput,
|
|
1676
|
+
cb: (err: any, data?: DeletePredefinedAttributeCommandOutput) => void
|
|
1677
|
+
): void;
|
|
1678
|
+
deletePredefinedAttribute(
|
|
1679
|
+
args: DeletePredefinedAttributeCommandInput,
|
|
1680
|
+
options: __HttpHandlerOptions,
|
|
1681
|
+
cb: (err: any, data?: DeletePredefinedAttributeCommandOutput) => void
|
|
1682
|
+
): void;
|
|
1596
1683
|
deletePrompt(
|
|
1597
1684
|
args: DeletePromptCommandInput,
|
|
1598
1685
|
options?: __HttpHandlerOptions
|
|
@@ -1918,6 +2005,19 @@ export interface Connect {
|
|
|
1918
2005
|
options: __HttpHandlerOptions,
|
|
1919
2006
|
cb: (err: any, data?: DescribePhoneNumberCommandOutput) => void
|
|
1920
2007
|
): void;
|
|
2008
|
+
describePredefinedAttribute(
|
|
2009
|
+
args: DescribePredefinedAttributeCommandInput,
|
|
2010
|
+
options?: __HttpHandlerOptions
|
|
2011
|
+
): Promise<DescribePredefinedAttributeCommandOutput>;
|
|
2012
|
+
describePredefinedAttribute(
|
|
2013
|
+
args: DescribePredefinedAttributeCommandInput,
|
|
2014
|
+
cb: (err: any, data?: DescribePredefinedAttributeCommandOutput) => void
|
|
2015
|
+
): void;
|
|
2016
|
+
describePredefinedAttribute(
|
|
2017
|
+
args: DescribePredefinedAttributeCommandInput,
|
|
2018
|
+
options: __HttpHandlerOptions,
|
|
2019
|
+
cb: (err: any, data?: DescribePredefinedAttributeCommandOutput) => void
|
|
2020
|
+
): void;
|
|
1921
2021
|
describePrompt(
|
|
1922
2022
|
args: DescribePromptCommandInput,
|
|
1923
2023
|
options?: __HttpHandlerOptions
|
|
@@ -2248,6 +2348,19 @@ export interface Connect {
|
|
|
2248
2348
|
data?: DisassociateTrafficDistributionGroupUserCommandOutput
|
|
2249
2349
|
) => void
|
|
2250
2350
|
): void;
|
|
2351
|
+
disassociateUserProficiencies(
|
|
2352
|
+
args: DisassociateUserProficienciesCommandInput,
|
|
2353
|
+
options?: __HttpHandlerOptions
|
|
2354
|
+
): Promise<DisassociateUserProficienciesCommandOutput>;
|
|
2355
|
+
disassociateUserProficiencies(
|
|
2356
|
+
args: DisassociateUserProficienciesCommandInput,
|
|
2357
|
+
cb: (err: any, data?: DisassociateUserProficienciesCommandOutput) => void
|
|
2358
|
+
): void;
|
|
2359
|
+
disassociateUserProficiencies(
|
|
2360
|
+
args: DisassociateUserProficienciesCommandInput,
|
|
2361
|
+
options: __HttpHandlerOptions,
|
|
2362
|
+
cb: (err: any, data?: DisassociateUserProficienciesCommandOutput) => void
|
|
2363
|
+
): void;
|
|
2251
2364
|
dismissUserContact(
|
|
2252
2365
|
args: DismissUserContactCommandInput,
|
|
2253
2366
|
options?: __HttpHandlerOptions
|
|
@@ -2677,6 +2790,19 @@ export interface Connect {
|
|
|
2677
2790
|
options: __HttpHandlerOptions,
|
|
2678
2791
|
cb: (err: any, data?: ListPhoneNumbersV2CommandOutput) => void
|
|
2679
2792
|
): void;
|
|
2793
|
+
listPredefinedAttributes(
|
|
2794
|
+
args: ListPredefinedAttributesCommandInput,
|
|
2795
|
+
options?: __HttpHandlerOptions
|
|
2796
|
+
): Promise<ListPredefinedAttributesCommandOutput>;
|
|
2797
|
+
listPredefinedAttributes(
|
|
2798
|
+
args: ListPredefinedAttributesCommandInput,
|
|
2799
|
+
cb: (err: any, data?: ListPredefinedAttributesCommandOutput) => void
|
|
2800
|
+
): void;
|
|
2801
|
+
listPredefinedAttributes(
|
|
2802
|
+
args: ListPredefinedAttributesCommandInput,
|
|
2803
|
+
options: __HttpHandlerOptions,
|
|
2804
|
+
cb: (err: any, data?: ListPredefinedAttributesCommandOutput) => void
|
|
2805
|
+
): void;
|
|
2680
2806
|
listPrompts(
|
|
2681
2807
|
args: ListPromptsCommandInput,
|
|
2682
2808
|
options?: __HttpHandlerOptions
|
|
@@ -2923,6 +3049,19 @@ export interface Connect {
|
|
|
2923
3049
|
options: __HttpHandlerOptions,
|
|
2924
3050
|
cb: (err: any, data?: ListUserHierarchyGroupsCommandOutput) => void
|
|
2925
3051
|
): void;
|
|
3052
|
+
listUserProficiencies(
|
|
3053
|
+
args: ListUserProficienciesCommandInput,
|
|
3054
|
+
options?: __HttpHandlerOptions
|
|
3055
|
+
): Promise<ListUserProficienciesCommandOutput>;
|
|
3056
|
+
listUserProficiencies(
|
|
3057
|
+
args: ListUserProficienciesCommandInput,
|
|
3058
|
+
cb: (err: any, data?: ListUserProficienciesCommandOutput) => void
|
|
3059
|
+
): void;
|
|
3060
|
+
listUserProficiencies(
|
|
3061
|
+
args: ListUserProficienciesCommandInput,
|
|
3062
|
+
options: __HttpHandlerOptions,
|
|
3063
|
+
cb: (err: any, data?: ListUserProficienciesCommandOutput) => void
|
|
3064
|
+
): void;
|
|
2926
3065
|
listUsers(
|
|
2927
3066
|
args: ListUsersCommandInput,
|
|
2928
3067
|
options?: __HttpHandlerOptions
|
|
@@ -3066,6 +3205,19 @@ export interface Connect {
|
|
|
3066
3205
|
options: __HttpHandlerOptions,
|
|
3067
3206
|
cb: (err: any, data?: SearchAvailablePhoneNumbersCommandOutput) => void
|
|
3068
3207
|
): void;
|
|
3208
|
+
searchContacts(
|
|
3209
|
+
args: SearchContactsCommandInput,
|
|
3210
|
+
options?: __HttpHandlerOptions
|
|
3211
|
+
): Promise<SearchContactsCommandOutput>;
|
|
3212
|
+
searchContacts(
|
|
3213
|
+
args: SearchContactsCommandInput,
|
|
3214
|
+
cb: (err: any, data?: SearchContactsCommandOutput) => void
|
|
3215
|
+
): void;
|
|
3216
|
+
searchContacts(
|
|
3217
|
+
args: SearchContactsCommandInput,
|
|
3218
|
+
options: __HttpHandlerOptions,
|
|
3219
|
+
cb: (err: any, data?: SearchContactsCommandOutput) => void
|
|
3220
|
+
): void;
|
|
3069
3221
|
searchHoursOfOperations(
|
|
3070
3222
|
args: SearchHoursOfOperationsCommandInput,
|
|
3071
3223
|
options?: __HttpHandlerOptions
|
|
@@ -3079,6 +3231,19 @@ export interface Connect {
|
|
|
3079
3231
|
options: __HttpHandlerOptions,
|
|
3080
3232
|
cb: (err: any, data?: SearchHoursOfOperationsCommandOutput) => void
|
|
3081
3233
|
): void;
|
|
3234
|
+
searchPredefinedAttributes(
|
|
3235
|
+
args: SearchPredefinedAttributesCommandInput,
|
|
3236
|
+
options?: __HttpHandlerOptions
|
|
3237
|
+
): Promise<SearchPredefinedAttributesCommandOutput>;
|
|
3238
|
+
searchPredefinedAttributes(
|
|
3239
|
+
args: SearchPredefinedAttributesCommandInput,
|
|
3240
|
+
cb: (err: any, data?: SearchPredefinedAttributesCommandOutput) => void
|
|
3241
|
+
): void;
|
|
3242
|
+
searchPredefinedAttributes(
|
|
3243
|
+
args: SearchPredefinedAttributesCommandInput,
|
|
3244
|
+
options: __HttpHandlerOptions,
|
|
3245
|
+
cb: (err: any, data?: SearchPredefinedAttributesCommandOutput) => void
|
|
3246
|
+
): void;
|
|
3082
3247
|
searchPrompts(
|
|
3083
3248
|
args: SearchPromptsCommandInput,
|
|
3084
3249
|
options?: __HttpHandlerOptions
|
|
@@ -3534,6 +3699,19 @@ export interface Connect {
|
|
|
3534
3699
|
options: __HttpHandlerOptions,
|
|
3535
3700
|
cb: (err: any, data?: UpdateContactFlowNameCommandOutput) => void
|
|
3536
3701
|
): void;
|
|
3702
|
+
updateContactRoutingData(
|
|
3703
|
+
args: UpdateContactRoutingDataCommandInput,
|
|
3704
|
+
options?: __HttpHandlerOptions
|
|
3705
|
+
): Promise<UpdateContactRoutingDataCommandOutput>;
|
|
3706
|
+
updateContactRoutingData(
|
|
3707
|
+
args: UpdateContactRoutingDataCommandInput,
|
|
3708
|
+
cb: (err: any, data?: UpdateContactRoutingDataCommandOutput) => void
|
|
3709
|
+
): void;
|
|
3710
|
+
updateContactRoutingData(
|
|
3711
|
+
args: UpdateContactRoutingDataCommandInput,
|
|
3712
|
+
options: __HttpHandlerOptions,
|
|
3713
|
+
cb: (err: any, data?: UpdateContactRoutingDataCommandOutput) => void
|
|
3714
|
+
): void;
|
|
3537
3715
|
updateContactSchedule(
|
|
3538
3716
|
args: UpdateContactScheduleCommandInput,
|
|
3539
3717
|
options?: __HttpHandlerOptions
|
|
@@ -3638,6 +3816,19 @@ export interface Connect {
|
|
|
3638
3816
|
options: __HttpHandlerOptions,
|
|
3639
3817
|
cb: (err: any, data?: UpdatePhoneNumberMetadataCommandOutput) => void
|
|
3640
3818
|
): void;
|
|
3819
|
+
updatePredefinedAttribute(
|
|
3820
|
+
args: UpdatePredefinedAttributeCommandInput,
|
|
3821
|
+
options?: __HttpHandlerOptions
|
|
3822
|
+
): Promise<UpdatePredefinedAttributeCommandOutput>;
|
|
3823
|
+
updatePredefinedAttribute(
|
|
3824
|
+
args: UpdatePredefinedAttributeCommandInput,
|
|
3825
|
+
cb: (err: any, data?: UpdatePredefinedAttributeCommandOutput) => void
|
|
3826
|
+
): void;
|
|
3827
|
+
updatePredefinedAttribute(
|
|
3828
|
+
args: UpdatePredefinedAttributeCommandInput,
|
|
3829
|
+
options: __HttpHandlerOptions,
|
|
3830
|
+
cb: (err: any, data?: UpdatePredefinedAttributeCommandOutput) => void
|
|
3831
|
+
): void;
|
|
3641
3832
|
updatePrompt(
|
|
3642
3833
|
args: UpdatePromptCommandInput,
|
|
3643
3834
|
options?: __HttpHandlerOptions
|
|
@@ -3936,6 +4127,19 @@ export interface Connect {
|
|
|
3936
4127
|
options: __HttpHandlerOptions,
|
|
3937
4128
|
cb: (err: any, data?: UpdateUserPhoneConfigCommandOutput) => void
|
|
3938
4129
|
): void;
|
|
4130
|
+
updateUserProficiencies(
|
|
4131
|
+
args: UpdateUserProficienciesCommandInput,
|
|
4132
|
+
options?: __HttpHandlerOptions
|
|
4133
|
+
): Promise<UpdateUserProficienciesCommandOutput>;
|
|
4134
|
+
updateUserProficiencies(
|
|
4135
|
+
args: UpdateUserProficienciesCommandInput,
|
|
4136
|
+
cb: (err: any, data?: UpdateUserProficienciesCommandOutput) => void
|
|
4137
|
+
): void;
|
|
4138
|
+
updateUserProficiencies(
|
|
4139
|
+
args: UpdateUserProficienciesCommandInput,
|
|
4140
|
+
options: __HttpHandlerOptions,
|
|
4141
|
+
cb: (err: any, data?: UpdateUserProficienciesCommandOutput) => void
|
|
4142
|
+
): void;
|
|
3939
4143
|
updateUserRoutingProfile(
|
|
3940
4144
|
args: UpdateUserRoutingProfileCommandInput,
|
|
3941
4145
|
options?: __HttpHandlerOptions
|
|
@@ -101,6 +101,10 @@ import {
|
|
|
101
101
|
AssociateTrafficDistributionGroupUserCommandInput,
|
|
102
102
|
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
103
103
|
} from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
104
|
+
import {
|
|
105
|
+
AssociateUserProficienciesCommandInput,
|
|
106
|
+
AssociateUserProficienciesCommandOutput,
|
|
107
|
+
} from "./commands/AssociateUserProficienciesCommand";
|
|
104
108
|
import {
|
|
105
109
|
BatchAssociateAnalyticsDataSetCommandInput,
|
|
106
110
|
BatchAssociateAnalyticsDataSetCommandOutput,
|
|
@@ -157,6 +161,10 @@ import {
|
|
|
157
161
|
CreatePersistentContactAssociationCommandInput,
|
|
158
162
|
CreatePersistentContactAssociationCommandOutput,
|
|
159
163
|
} from "./commands/CreatePersistentContactAssociationCommand";
|
|
164
|
+
import {
|
|
165
|
+
CreatePredefinedAttributeCommandInput,
|
|
166
|
+
CreatePredefinedAttributeCommandOutput,
|
|
167
|
+
} from "./commands/CreatePredefinedAttributeCommand";
|
|
160
168
|
import {
|
|
161
169
|
CreatePromptCommandInput,
|
|
162
170
|
CreatePromptCommandOutput,
|
|
@@ -245,6 +253,10 @@ import {
|
|
|
245
253
|
DeleteIntegrationAssociationCommandInput,
|
|
246
254
|
DeleteIntegrationAssociationCommandOutput,
|
|
247
255
|
} from "./commands/DeleteIntegrationAssociationCommand";
|
|
256
|
+
import {
|
|
257
|
+
DeletePredefinedAttributeCommandInput,
|
|
258
|
+
DeletePredefinedAttributeCommandOutput,
|
|
259
|
+
} from "./commands/DeletePredefinedAttributeCommand";
|
|
248
260
|
import {
|
|
249
261
|
DeletePromptCommandInput,
|
|
250
262
|
DeletePromptCommandOutput,
|
|
@@ -345,6 +357,10 @@ import {
|
|
|
345
357
|
DescribePhoneNumberCommandInput,
|
|
346
358
|
DescribePhoneNumberCommandOutput,
|
|
347
359
|
} from "./commands/DescribePhoneNumberCommand";
|
|
360
|
+
import {
|
|
361
|
+
DescribePredefinedAttributeCommandInput,
|
|
362
|
+
DescribePredefinedAttributeCommandOutput,
|
|
363
|
+
} from "./commands/DescribePredefinedAttributeCommand";
|
|
348
364
|
import {
|
|
349
365
|
DescribePromptCommandInput,
|
|
350
366
|
DescribePromptCommandOutput,
|
|
@@ -441,6 +457,10 @@ import {
|
|
|
441
457
|
DisassociateTrafficDistributionGroupUserCommandInput,
|
|
442
458
|
DisassociateTrafficDistributionGroupUserCommandOutput,
|
|
443
459
|
} from "./commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
460
|
+
import {
|
|
461
|
+
DisassociateUserProficienciesCommandInput,
|
|
462
|
+
DisassociateUserProficienciesCommandOutput,
|
|
463
|
+
} from "./commands/DisassociateUserProficienciesCommand";
|
|
444
464
|
import {
|
|
445
465
|
DismissUserContactCommandInput,
|
|
446
466
|
DismissUserContactCommandOutput,
|
|
@@ -573,6 +593,10 @@ import {
|
|
|
573
593
|
ListPhoneNumbersV2CommandInput,
|
|
574
594
|
ListPhoneNumbersV2CommandOutput,
|
|
575
595
|
} from "./commands/ListPhoneNumbersV2Command";
|
|
596
|
+
import {
|
|
597
|
+
ListPredefinedAttributesCommandInput,
|
|
598
|
+
ListPredefinedAttributesCommandOutput,
|
|
599
|
+
} from "./commands/ListPredefinedAttributesCommand";
|
|
576
600
|
import {
|
|
577
601
|
ListPromptsCommandInput,
|
|
578
602
|
ListPromptsCommandOutput,
|
|
@@ -645,6 +669,10 @@ import {
|
|
|
645
669
|
ListUserHierarchyGroupsCommandInput,
|
|
646
670
|
ListUserHierarchyGroupsCommandOutput,
|
|
647
671
|
} from "./commands/ListUserHierarchyGroupsCommand";
|
|
672
|
+
import {
|
|
673
|
+
ListUserProficienciesCommandInput,
|
|
674
|
+
ListUserProficienciesCommandOutput,
|
|
675
|
+
} from "./commands/ListUserProficienciesCommand";
|
|
648
676
|
import {
|
|
649
677
|
ListUsersCommandInput,
|
|
650
678
|
ListUsersCommandOutput,
|
|
@@ -689,10 +717,18 @@ import {
|
|
|
689
717
|
SearchAvailablePhoneNumbersCommandInput,
|
|
690
718
|
SearchAvailablePhoneNumbersCommandOutput,
|
|
691
719
|
} from "./commands/SearchAvailablePhoneNumbersCommand";
|
|
720
|
+
import {
|
|
721
|
+
SearchContactsCommandInput,
|
|
722
|
+
SearchContactsCommandOutput,
|
|
723
|
+
} from "./commands/SearchContactsCommand";
|
|
692
724
|
import {
|
|
693
725
|
SearchHoursOfOperationsCommandInput,
|
|
694
726
|
SearchHoursOfOperationsCommandOutput,
|
|
695
727
|
} from "./commands/SearchHoursOfOperationsCommand";
|
|
728
|
+
import {
|
|
729
|
+
SearchPredefinedAttributesCommandInput,
|
|
730
|
+
SearchPredefinedAttributesCommandOutput,
|
|
731
|
+
} from "./commands/SearchPredefinedAttributesCommand";
|
|
696
732
|
import {
|
|
697
733
|
SearchPromptsCommandInput,
|
|
698
734
|
SearchPromptsCommandOutput,
|
|
@@ -833,6 +869,10 @@ import {
|
|
|
833
869
|
UpdateContactFlowNameCommandInput,
|
|
834
870
|
UpdateContactFlowNameCommandOutput,
|
|
835
871
|
} from "./commands/UpdateContactFlowNameCommand";
|
|
872
|
+
import {
|
|
873
|
+
UpdateContactRoutingDataCommandInput,
|
|
874
|
+
UpdateContactRoutingDataCommandOutput,
|
|
875
|
+
} from "./commands/UpdateContactRoutingDataCommand";
|
|
836
876
|
import {
|
|
837
877
|
UpdateContactScheduleCommandInput,
|
|
838
878
|
UpdateContactScheduleCommandOutput,
|
|
@@ -865,6 +905,10 @@ import {
|
|
|
865
905
|
UpdatePhoneNumberMetadataCommandInput,
|
|
866
906
|
UpdatePhoneNumberMetadataCommandOutput,
|
|
867
907
|
} from "./commands/UpdatePhoneNumberMetadataCommand";
|
|
908
|
+
import {
|
|
909
|
+
UpdatePredefinedAttributeCommandInput,
|
|
910
|
+
UpdatePredefinedAttributeCommandOutput,
|
|
911
|
+
} from "./commands/UpdatePredefinedAttributeCommand";
|
|
868
912
|
import {
|
|
869
913
|
UpdatePromptCommandInput,
|
|
870
914
|
UpdatePromptCommandOutput,
|
|
@@ -953,6 +997,10 @@ import {
|
|
|
953
997
|
UpdateUserPhoneConfigCommandInput,
|
|
954
998
|
UpdateUserPhoneConfigCommandOutput,
|
|
955
999
|
} from "./commands/UpdateUserPhoneConfigCommand";
|
|
1000
|
+
import {
|
|
1001
|
+
UpdateUserProficienciesCommandInput,
|
|
1002
|
+
UpdateUserProficienciesCommandOutput,
|
|
1003
|
+
} from "./commands/UpdateUserProficienciesCommand";
|
|
956
1004
|
import {
|
|
957
1005
|
UpdateUserRoutingProfileCommandInput,
|
|
958
1006
|
UpdateUserRoutingProfileCommandOutput,
|
|
@@ -991,6 +1039,7 @@ export type ServiceInputTypes =
|
|
|
991
1039
|
| AssociateRoutingProfileQueuesCommandInput
|
|
992
1040
|
| AssociateSecurityKeyCommandInput
|
|
993
1041
|
| AssociateTrafficDistributionGroupUserCommandInput
|
|
1042
|
+
| AssociateUserProficienciesCommandInput
|
|
994
1043
|
| BatchAssociateAnalyticsDataSetCommandInput
|
|
995
1044
|
| BatchDisassociateAnalyticsDataSetCommandInput
|
|
996
1045
|
| BatchGetFlowAssociationCommandInput
|
|
@@ -1005,6 +1054,7 @@ export type ServiceInputTypes =
|
|
|
1005
1054
|
| CreateIntegrationAssociationCommandInput
|
|
1006
1055
|
| CreateParticipantCommandInput
|
|
1007
1056
|
| CreatePersistentContactAssociationCommandInput
|
|
1057
|
+
| CreatePredefinedAttributeCommandInput
|
|
1008
1058
|
| CreatePromptCommandInput
|
|
1009
1059
|
| CreateQueueCommandInput
|
|
1010
1060
|
| CreateQuickConnectCommandInput
|
|
@@ -1027,6 +1077,7 @@ export type ServiceInputTypes =
|
|
|
1027
1077
|
| DeleteHoursOfOperationCommandInput
|
|
1028
1078
|
| DeleteInstanceCommandInput
|
|
1029
1079
|
| DeleteIntegrationAssociationCommandInput
|
|
1080
|
+
| DeletePredefinedAttributeCommandInput
|
|
1030
1081
|
| DeletePromptCommandInput
|
|
1031
1082
|
| DeleteQueueCommandInput
|
|
1032
1083
|
| DeleteQuickConnectCommandInput
|
|
@@ -1052,6 +1103,7 @@ export type ServiceInputTypes =
|
|
|
1052
1103
|
| DescribeInstanceCommandInput
|
|
1053
1104
|
| DescribeInstanceStorageConfigCommandInput
|
|
1054
1105
|
| DescribePhoneNumberCommandInput
|
|
1106
|
+
| DescribePredefinedAttributeCommandInput
|
|
1055
1107
|
| DescribePromptCommandInput
|
|
1056
1108
|
| DescribeQueueCommandInput
|
|
1057
1109
|
| DescribeQuickConnectCommandInput
|
|
@@ -1076,6 +1128,7 @@ export type ServiceInputTypes =
|
|
|
1076
1128
|
| DisassociateRoutingProfileQueuesCommandInput
|
|
1077
1129
|
| DisassociateSecurityKeyCommandInput
|
|
1078
1130
|
| DisassociateTrafficDistributionGroupUserCommandInput
|
|
1131
|
+
| DisassociateUserProficienciesCommandInput
|
|
1079
1132
|
| DismissUserContactCommandInput
|
|
1080
1133
|
| GetContactAttributesCommandInput
|
|
1081
1134
|
| GetCurrentMetricDataCommandInput
|
|
@@ -1109,6 +1162,7 @@ export type ServiceInputTypes =
|
|
|
1109
1162
|
| ListLexBotsCommandInput
|
|
1110
1163
|
| ListPhoneNumbersCommandInput
|
|
1111
1164
|
| ListPhoneNumbersV2CommandInput
|
|
1165
|
+
| ListPredefinedAttributesCommandInput
|
|
1112
1166
|
| ListPromptsCommandInput
|
|
1113
1167
|
| ListQueueQuickConnectsCommandInput
|
|
1114
1168
|
| ListQueuesCommandInput
|
|
@@ -1127,6 +1181,7 @@ export type ServiceInputTypes =
|
|
|
1127
1181
|
| ListTrafficDistributionGroupsCommandInput
|
|
1128
1182
|
| ListUseCasesCommandInput
|
|
1129
1183
|
| ListUserHierarchyGroupsCommandInput
|
|
1184
|
+
| ListUserProficienciesCommandInput
|
|
1130
1185
|
| ListUsersCommandInput
|
|
1131
1186
|
| ListViewVersionsCommandInput
|
|
1132
1187
|
| ListViewsCommandInput
|
|
@@ -1138,7 +1193,9 @@ export type ServiceInputTypes =
|
|
|
1138
1193
|
| ResumeContactCommandInput
|
|
1139
1194
|
| ResumeContactRecordingCommandInput
|
|
1140
1195
|
| SearchAvailablePhoneNumbersCommandInput
|
|
1196
|
+
| SearchContactsCommandInput
|
|
1141
1197
|
| SearchHoursOfOperationsCommandInput
|
|
1198
|
+
| SearchPredefinedAttributesCommandInput
|
|
1142
1199
|
| SearchPromptsCommandInput
|
|
1143
1200
|
| SearchQueuesCommandInput
|
|
1144
1201
|
| SearchQuickConnectsCommandInput
|
|
@@ -1174,6 +1231,7 @@ export type ServiceInputTypes =
|
|
|
1174
1231
|
| UpdateContactFlowModuleContentCommandInput
|
|
1175
1232
|
| UpdateContactFlowModuleMetadataCommandInput
|
|
1176
1233
|
| UpdateContactFlowNameCommandInput
|
|
1234
|
+
| UpdateContactRoutingDataCommandInput
|
|
1177
1235
|
| UpdateContactScheduleCommandInput
|
|
1178
1236
|
| UpdateEvaluationFormCommandInput
|
|
1179
1237
|
| UpdateHoursOfOperationCommandInput
|
|
@@ -1182,6 +1240,7 @@ export type ServiceInputTypes =
|
|
|
1182
1240
|
| UpdateParticipantRoleConfigCommandInput
|
|
1183
1241
|
| UpdatePhoneNumberCommandInput
|
|
1184
1242
|
| UpdatePhoneNumberMetadataCommandInput
|
|
1243
|
+
| UpdatePredefinedAttributeCommandInput
|
|
1185
1244
|
| UpdatePromptCommandInput
|
|
1186
1245
|
| UpdateQueueHoursOfOperationCommandInput
|
|
1187
1246
|
| UpdateQueueMaxContactsCommandInput
|
|
@@ -1204,6 +1263,7 @@ export type ServiceInputTypes =
|
|
|
1204
1263
|
| UpdateUserHierarchyStructureCommandInput
|
|
1205
1264
|
| UpdateUserIdentityInfoCommandInput
|
|
1206
1265
|
| UpdateUserPhoneConfigCommandInput
|
|
1266
|
+
| UpdateUserProficienciesCommandInput
|
|
1207
1267
|
| UpdateUserRoutingProfileCommandInput
|
|
1208
1268
|
| UpdateUserSecurityProfilesCommandInput
|
|
1209
1269
|
| UpdateViewContentCommandInput
|
|
@@ -1223,6 +1283,7 @@ export type ServiceOutputTypes =
|
|
|
1223
1283
|
| AssociateRoutingProfileQueuesCommandOutput
|
|
1224
1284
|
| AssociateSecurityKeyCommandOutput
|
|
1225
1285
|
| AssociateTrafficDistributionGroupUserCommandOutput
|
|
1286
|
+
| AssociateUserProficienciesCommandOutput
|
|
1226
1287
|
| BatchAssociateAnalyticsDataSetCommandOutput
|
|
1227
1288
|
| BatchDisassociateAnalyticsDataSetCommandOutput
|
|
1228
1289
|
| BatchGetFlowAssociationCommandOutput
|
|
@@ -1237,6 +1298,7 @@ export type ServiceOutputTypes =
|
|
|
1237
1298
|
| CreateIntegrationAssociationCommandOutput
|
|
1238
1299
|
| CreateParticipantCommandOutput
|
|
1239
1300
|
| CreatePersistentContactAssociationCommandOutput
|
|
1301
|
+
| CreatePredefinedAttributeCommandOutput
|
|
1240
1302
|
| CreatePromptCommandOutput
|
|
1241
1303
|
| CreateQueueCommandOutput
|
|
1242
1304
|
| CreateQuickConnectCommandOutput
|
|
@@ -1259,6 +1321,7 @@ export type ServiceOutputTypes =
|
|
|
1259
1321
|
| DeleteHoursOfOperationCommandOutput
|
|
1260
1322
|
| DeleteInstanceCommandOutput
|
|
1261
1323
|
| DeleteIntegrationAssociationCommandOutput
|
|
1324
|
+
| DeletePredefinedAttributeCommandOutput
|
|
1262
1325
|
| DeletePromptCommandOutput
|
|
1263
1326
|
| DeleteQueueCommandOutput
|
|
1264
1327
|
| DeleteQuickConnectCommandOutput
|
|
@@ -1284,6 +1347,7 @@ export type ServiceOutputTypes =
|
|
|
1284
1347
|
| DescribeInstanceCommandOutput
|
|
1285
1348
|
| DescribeInstanceStorageConfigCommandOutput
|
|
1286
1349
|
| DescribePhoneNumberCommandOutput
|
|
1350
|
+
| DescribePredefinedAttributeCommandOutput
|
|
1287
1351
|
| DescribePromptCommandOutput
|
|
1288
1352
|
| DescribeQueueCommandOutput
|
|
1289
1353
|
| DescribeQuickConnectCommandOutput
|
|
@@ -1308,6 +1372,7 @@ export type ServiceOutputTypes =
|
|
|
1308
1372
|
| DisassociateRoutingProfileQueuesCommandOutput
|
|
1309
1373
|
| DisassociateSecurityKeyCommandOutput
|
|
1310
1374
|
| DisassociateTrafficDistributionGroupUserCommandOutput
|
|
1375
|
+
| DisassociateUserProficienciesCommandOutput
|
|
1311
1376
|
| DismissUserContactCommandOutput
|
|
1312
1377
|
| GetContactAttributesCommandOutput
|
|
1313
1378
|
| GetCurrentMetricDataCommandOutput
|
|
@@ -1341,6 +1406,7 @@ export type ServiceOutputTypes =
|
|
|
1341
1406
|
| ListLexBotsCommandOutput
|
|
1342
1407
|
| ListPhoneNumbersCommandOutput
|
|
1343
1408
|
| ListPhoneNumbersV2CommandOutput
|
|
1409
|
+
| ListPredefinedAttributesCommandOutput
|
|
1344
1410
|
| ListPromptsCommandOutput
|
|
1345
1411
|
| ListQueueQuickConnectsCommandOutput
|
|
1346
1412
|
| ListQueuesCommandOutput
|
|
@@ -1359,6 +1425,7 @@ export type ServiceOutputTypes =
|
|
|
1359
1425
|
| ListTrafficDistributionGroupsCommandOutput
|
|
1360
1426
|
| ListUseCasesCommandOutput
|
|
1361
1427
|
| ListUserHierarchyGroupsCommandOutput
|
|
1428
|
+
| ListUserProficienciesCommandOutput
|
|
1362
1429
|
| ListUsersCommandOutput
|
|
1363
1430
|
| ListViewVersionsCommandOutput
|
|
1364
1431
|
| ListViewsCommandOutput
|
|
@@ -1370,7 +1437,9 @@ export type ServiceOutputTypes =
|
|
|
1370
1437
|
| ResumeContactCommandOutput
|
|
1371
1438
|
| ResumeContactRecordingCommandOutput
|
|
1372
1439
|
| SearchAvailablePhoneNumbersCommandOutput
|
|
1440
|
+
| SearchContactsCommandOutput
|
|
1373
1441
|
| SearchHoursOfOperationsCommandOutput
|
|
1442
|
+
| SearchPredefinedAttributesCommandOutput
|
|
1374
1443
|
| SearchPromptsCommandOutput
|
|
1375
1444
|
| SearchQueuesCommandOutput
|
|
1376
1445
|
| SearchQuickConnectsCommandOutput
|
|
@@ -1406,6 +1475,7 @@ export type ServiceOutputTypes =
|
|
|
1406
1475
|
| UpdateContactFlowModuleContentCommandOutput
|
|
1407
1476
|
| UpdateContactFlowModuleMetadataCommandOutput
|
|
1408
1477
|
| UpdateContactFlowNameCommandOutput
|
|
1478
|
+
| UpdateContactRoutingDataCommandOutput
|
|
1409
1479
|
| UpdateContactScheduleCommandOutput
|
|
1410
1480
|
| UpdateEvaluationFormCommandOutput
|
|
1411
1481
|
| UpdateHoursOfOperationCommandOutput
|
|
@@ -1414,6 +1484,7 @@ export type ServiceOutputTypes =
|
|
|
1414
1484
|
| UpdateParticipantRoleConfigCommandOutput
|
|
1415
1485
|
| UpdatePhoneNumberCommandOutput
|
|
1416
1486
|
| UpdatePhoneNumberMetadataCommandOutput
|
|
1487
|
+
| UpdatePredefinedAttributeCommandOutput
|
|
1417
1488
|
| UpdatePromptCommandOutput
|
|
1418
1489
|
| UpdateQueueHoursOfOperationCommandOutput
|
|
1419
1490
|
| UpdateQueueMaxContactsCommandOutput
|
|
@@ -1436,6 +1507,7 @@ export type ServiceOutputTypes =
|
|
|
1436
1507
|
| UpdateUserHierarchyStructureCommandOutput
|
|
1437
1508
|
| UpdateUserIdentityInfoCommandOutput
|
|
1438
1509
|
| UpdateUserPhoneConfigCommandOutput
|
|
1510
|
+
| UpdateUserProficienciesCommandOutput
|
|
1439
1511
|
| UpdateUserRoutingProfileCommandOutput
|
|
1440
1512
|
| UpdateUserSecurityProfilesCommandOutput
|
|
1441
1513
|
| UpdateViewContentCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import { AssociateUserProficienciesRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface AssociateUserProficienciesCommandInput
|
|
17
|
+
extends AssociateUserProficienciesRequest {}
|
|
18
|
+
export interface AssociateUserProficienciesCommandOutput
|
|
19
|
+
extends __MetadataBearer {}
|
|
20
|
+
export declare class AssociateUserProficienciesCommand extends $Command<
|
|
21
|
+
AssociateUserProficienciesCommandInput,
|
|
22
|
+
AssociateUserProficienciesCommandOutput,
|
|
23
|
+
ConnectClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: AssociateUserProficienciesCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: AssociateUserProficienciesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ConnectClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<
|
|
33
|
+
AssociateUserProficienciesCommandInput,
|
|
34
|
+
AssociateUserProficienciesCommandOutput
|
|
35
|
+
>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|