@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
package/README.md
CHANGED
|
@@ -324,6 +324,14 @@ AssociateTrafficDistributionGroupUser
|
|
|
324
324
|
|
|
325
325
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/AssociateTrafficDistributionGroupUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateTrafficDistributionGroupUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateTrafficDistributionGroupUserCommandOutput/)
|
|
326
326
|
|
|
327
|
+
</details>
|
|
328
|
+
<details>
|
|
329
|
+
<summary>
|
|
330
|
+
AssociateUserProficiencies
|
|
331
|
+
</summary>
|
|
332
|
+
|
|
333
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/AssociateUserProficienciesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateUserProficienciesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/AssociateUserProficienciesCommandOutput/)
|
|
334
|
+
|
|
327
335
|
</details>
|
|
328
336
|
<details>
|
|
329
337
|
<summary>
|
|
@@ -436,6 +444,14 @@ CreatePersistentContactAssociation
|
|
|
436
444
|
|
|
437
445
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/CreatePersistentContactAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreatePersistentContactAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreatePersistentContactAssociationCommandOutput/)
|
|
438
446
|
|
|
447
|
+
</details>
|
|
448
|
+
<details>
|
|
449
|
+
<summary>
|
|
450
|
+
CreatePredefinedAttribute
|
|
451
|
+
</summary>
|
|
452
|
+
|
|
453
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/CreatePredefinedAttributeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreatePredefinedAttributeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreatePredefinedAttributeCommandOutput/)
|
|
454
|
+
|
|
439
455
|
</details>
|
|
440
456
|
<details>
|
|
441
457
|
<summary>
|
|
@@ -612,6 +628,14 @@ DeleteIntegrationAssociation
|
|
|
612
628
|
|
|
613
629
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeleteIntegrationAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteIntegrationAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteIntegrationAssociationCommandOutput/)
|
|
614
630
|
|
|
631
|
+
</details>
|
|
632
|
+
<details>
|
|
633
|
+
<summary>
|
|
634
|
+
DeletePredefinedAttribute
|
|
635
|
+
</summary>
|
|
636
|
+
|
|
637
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeletePredefinedAttributeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeletePredefinedAttributeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeletePredefinedAttributeCommandOutput/)
|
|
638
|
+
|
|
615
639
|
</details>
|
|
616
640
|
<details>
|
|
617
641
|
<summary>
|
|
@@ -812,6 +836,14 @@ DescribePhoneNumber
|
|
|
812
836
|
|
|
813
837
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DescribePhoneNumberCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribePhoneNumberCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribePhoneNumberCommandOutput/)
|
|
814
838
|
|
|
839
|
+
</details>
|
|
840
|
+
<details>
|
|
841
|
+
<summary>
|
|
842
|
+
DescribePredefinedAttribute
|
|
843
|
+
</summary>
|
|
844
|
+
|
|
845
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DescribePredefinedAttributeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribePredefinedAttributeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribePredefinedAttributeCommandOutput/)
|
|
846
|
+
|
|
815
847
|
</details>
|
|
816
848
|
<details>
|
|
817
849
|
<summary>
|
|
@@ -1004,6 +1036,14 @@ DisassociateTrafficDistributionGroupUser
|
|
|
1004
1036
|
|
|
1005
1037
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DisassociateTrafficDistributionGroupUserCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateTrafficDistributionGroupUserCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateTrafficDistributionGroupUserCommandOutput/)
|
|
1006
1038
|
|
|
1039
|
+
</details>
|
|
1040
|
+
<details>
|
|
1041
|
+
<summary>
|
|
1042
|
+
DisassociateUserProficiencies
|
|
1043
|
+
</summary>
|
|
1044
|
+
|
|
1045
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DisassociateUserProficienciesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateUserProficienciesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DisassociateUserProficienciesCommandOutput/)
|
|
1046
|
+
|
|
1007
1047
|
</details>
|
|
1008
1048
|
<details>
|
|
1009
1049
|
<summary>
|
|
@@ -1268,6 +1308,14 @@ ListPhoneNumbersV2
|
|
|
1268
1308
|
|
|
1269
1309
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListPhoneNumbersV2Command/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListPhoneNumbersV2CommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListPhoneNumbersV2CommandOutput/)
|
|
1270
1310
|
|
|
1311
|
+
</details>
|
|
1312
|
+
<details>
|
|
1313
|
+
<summary>
|
|
1314
|
+
ListPredefinedAttributes
|
|
1315
|
+
</summary>
|
|
1316
|
+
|
|
1317
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListPredefinedAttributesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListPredefinedAttributesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListPredefinedAttributesCommandOutput/)
|
|
1318
|
+
|
|
1271
1319
|
</details>
|
|
1272
1320
|
<details>
|
|
1273
1321
|
<summary>
|
|
@@ -1412,6 +1460,14 @@ ListUserHierarchyGroups
|
|
|
1412
1460
|
|
|
1413
1461
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListUserHierarchyGroupsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListUserHierarchyGroupsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListUserHierarchyGroupsCommandOutput/)
|
|
1414
1462
|
|
|
1463
|
+
</details>
|
|
1464
|
+
<details>
|
|
1465
|
+
<summary>
|
|
1466
|
+
ListUserProficiencies
|
|
1467
|
+
</summary>
|
|
1468
|
+
|
|
1469
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListUserProficienciesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListUserProficienciesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListUserProficienciesCommandOutput/)
|
|
1470
|
+
|
|
1415
1471
|
</details>
|
|
1416
1472
|
<details>
|
|
1417
1473
|
<summary>
|
|
@@ -1500,6 +1556,14 @@ SearchAvailablePhoneNumbers
|
|
|
1500
1556
|
|
|
1501
1557
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/SearchAvailablePhoneNumbersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchAvailablePhoneNumbersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchAvailablePhoneNumbersCommandOutput/)
|
|
1502
1558
|
|
|
1559
|
+
</details>
|
|
1560
|
+
<details>
|
|
1561
|
+
<summary>
|
|
1562
|
+
SearchContacts
|
|
1563
|
+
</summary>
|
|
1564
|
+
|
|
1565
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/SearchContactsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchContactsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchContactsCommandOutput/)
|
|
1566
|
+
|
|
1503
1567
|
</details>
|
|
1504
1568
|
<details>
|
|
1505
1569
|
<summary>
|
|
@@ -1508,6 +1572,14 @@ SearchHoursOfOperations
|
|
|
1508
1572
|
|
|
1509
1573
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/SearchHoursOfOperationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchHoursOfOperationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchHoursOfOperationsCommandOutput/)
|
|
1510
1574
|
|
|
1575
|
+
</details>
|
|
1576
|
+
<details>
|
|
1577
|
+
<summary>
|
|
1578
|
+
SearchPredefinedAttributes
|
|
1579
|
+
</summary>
|
|
1580
|
+
|
|
1581
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/SearchPredefinedAttributesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchPredefinedAttributesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/SearchPredefinedAttributesCommandOutput/)
|
|
1582
|
+
|
|
1511
1583
|
</details>
|
|
1512
1584
|
<details>
|
|
1513
1585
|
<summary>
|
|
@@ -1788,6 +1860,14 @@ UpdateContactFlowName
|
|
|
1788
1860
|
|
|
1789
1861
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdateContactFlowNameCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateContactFlowNameCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateContactFlowNameCommandOutput/)
|
|
1790
1862
|
|
|
1863
|
+
</details>
|
|
1864
|
+
<details>
|
|
1865
|
+
<summary>
|
|
1866
|
+
UpdateContactRoutingData
|
|
1867
|
+
</summary>
|
|
1868
|
+
|
|
1869
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdateContactRoutingDataCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateContactRoutingDataCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateContactRoutingDataCommandOutput/)
|
|
1870
|
+
|
|
1791
1871
|
</details>
|
|
1792
1872
|
<details>
|
|
1793
1873
|
<summary>
|
|
@@ -1852,6 +1932,14 @@ UpdatePhoneNumberMetadata
|
|
|
1852
1932
|
|
|
1853
1933
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdatePhoneNumberMetadataCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdatePhoneNumberMetadataCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdatePhoneNumberMetadataCommandOutput/)
|
|
1854
1934
|
|
|
1935
|
+
</details>
|
|
1936
|
+
<details>
|
|
1937
|
+
<summary>
|
|
1938
|
+
UpdatePredefinedAttribute
|
|
1939
|
+
</summary>
|
|
1940
|
+
|
|
1941
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdatePredefinedAttributeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdatePredefinedAttributeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdatePredefinedAttributeCommandOutput/)
|
|
1942
|
+
|
|
1855
1943
|
</details>
|
|
1856
1944
|
<details>
|
|
1857
1945
|
<summary>
|
|
@@ -2028,6 +2116,14 @@ UpdateUserPhoneConfig
|
|
|
2028
2116
|
|
|
2029
2117
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdateUserPhoneConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateUserPhoneConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateUserPhoneConfigCommandOutput/)
|
|
2030
2118
|
|
|
2119
|
+
</details>
|
|
2120
|
+
<details>
|
|
2121
|
+
<summary>
|
|
2122
|
+
UpdateUserProficiencies
|
|
2123
|
+
</summary>
|
|
2124
|
+
|
|
2125
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdateUserProficienciesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateUserProficienciesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateUserProficienciesCommandOutput/)
|
|
2126
|
+
|
|
2031
2127
|
</details>
|
|
2032
2128
|
<details>
|
|
2033
2129
|
<summary>
|
package/dist-cjs/Connect.js
CHANGED
|
@@ -16,6 +16,7 @@ const AssociateQueueQuickConnectsCommand_1 = require("./commands/AssociateQueueQ
|
|
|
16
16
|
const AssociateRoutingProfileQueuesCommand_1 = require("./commands/AssociateRoutingProfileQueuesCommand");
|
|
17
17
|
const AssociateSecurityKeyCommand_1 = require("./commands/AssociateSecurityKeyCommand");
|
|
18
18
|
const AssociateTrafficDistributionGroupUserCommand_1 = require("./commands/AssociateTrafficDistributionGroupUserCommand");
|
|
19
|
+
const AssociateUserProficienciesCommand_1 = require("./commands/AssociateUserProficienciesCommand");
|
|
19
20
|
const BatchAssociateAnalyticsDataSetCommand_1 = require("./commands/BatchAssociateAnalyticsDataSetCommand");
|
|
20
21
|
const BatchDisassociateAnalyticsDataSetCommand_1 = require("./commands/BatchDisassociateAnalyticsDataSetCommand");
|
|
21
22
|
const BatchGetFlowAssociationCommand_1 = require("./commands/BatchGetFlowAssociationCommand");
|
|
@@ -30,6 +31,7 @@ const CreateInstanceCommand_1 = require("./commands/CreateInstanceCommand");
|
|
|
30
31
|
const CreateIntegrationAssociationCommand_1 = require("./commands/CreateIntegrationAssociationCommand");
|
|
31
32
|
const CreateParticipantCommand_1 = require("./commands/CreateParticipantCommand");
|
|
32
33
|
const CreatePersistentContactAssociationCommand_1 = require("./commands/CreatePersistentContactAssociationCommand");
|
|
34
|
+
const CreatePredefinedAttributeCommand_1 = require("./commands/CreatePredefinedAttributeCommand");
|
|
33
35
|
const CreatePromptCommand_1 = require("./commands/CreatePromptCommand");
|
|
34
36
|
const CreateQueueCommand_1 = require("./commands/CreateQueueCommand");
|
|
35
37
|
const CreateQuickConnectCommand_1 = require("./commands/CreateQuickConnectCommand");
|
|
@@ -52,6 +54,7 @@ const DeleteEvaluationFormCommand_1 = require("./commands/DeleteEvaluationFormCo
|
|
|
52
54
|
const DeleteHoursOfOperationCommand_1 = require("./commands/DeleteHoursOfOperationCommand");
|
|
53
55
|
const DeleteInstanceCommand_1 = require("./commands/DeleteInstanceCommand");
|
|
54
56
|
const DeleteIntegrationAssociationCommand_1 = require("./commands/DeleteIntegrationAssociationCommand");
|
|
57
|
+
const DeletePredefinedAttributeCommand_1 = require("./commands/DeletePredefinedAttributeCommand");
|
|
55
58
|
const DeletePromptCommand_1 = require("./commands/DeletePromptCommand");
|
|
56
59
|
const DeleteQueueCommand_1 = require("./commands/DeleteQueueCommand");
|
|
57
60
|
const DeleteQuickConnectCommand_1 = require("./commands/DeleteQuickConnectCommand");
|
|
@@ -77,6 +80,7 @@ const DescribeInstanceAttributeCommand_1 = require("./commands/DescribeInstanceA
|
|
|
77
80
|
const DescribeInstanceCommand_1 = require("./commands/DescribeInstanceCommand");
|
|
78
81
|
const DescribeInstanceStorageConfigCommand_1 = require("./commands/DescribeInstanceStorageConfigCommand");
|
|
79
82
|
const DescribePhoneNumberCommand_1 = require("./commands/DescribePhoneNumberCommand");
|
|
83
|
+
const DescribePredefinedAttributeCommand_1 = require("./commands/DescribePredefinedAttributeCommand");
|
|
80
84
|
const DescribePromptCommand_1 = require("./commands/DescribePromptCommand");
|
|
81
85
|
const DescribeQueueCommand_1 = require("./commands/DescribeQueueCommand");
|
|
82
86
|
const DescribeQuickConnectCommand_1 = require("./commands/DescribeQuickConnectCommand");
|
|
@@ -101,6 +105,7 @@ const DisassociateQueueQuickConnectsCommand_1 = require("./commands/Disassociate
|
|
|
101
105
|
const DisassociateRoutingProfileQueuesCommand_1 = require("./commands/DisassociateRoutingProfileQueuesCommand");
|
|
102
106
|
const DisassociateSecurityKeyCommand_1 = require("./commands/DisassociateSecurityKeyCommand");
|
|
103
107
|
const DisassociateTrafficDistributionGroupUserCommand_1 = require("./commands/DisassociateTrafficDistributionGroupUserCommand");
|
|
108
|
+
const DisassociateUserProficienciesCommand_1 = require("./commands/DisassociateUserProficienciesCommand");
|
|
104
109
|
const DismissUserContactCommand_1 = require("./commands/DismissUserContactCommand");
|
|
105
110
|
const GetContactAttributesCommand_1 = require("./commands/GetContactAttributesCommand");
|
|
106
111
|
const GetCurrentMetricDataCommand_1 = require("./commands/GetCurrentMetricDataCommand");
|
|
@@ -134,6 +139,7 @@ const ListLambdaFunctionsCommand_1 = require("./commands/ListLambdaFunctionsComm
|
|
|
134
139
|
const ListLexBotsCommand_1 = require("./commands/ListLexBotsCommand");
|
|
135
140
|
const ListPhoneNumbersCommand_1 = require("./commands/ListPhoneNumbersCommand");
|
|
136
141
|
const ListPhoneNumbersV2Command_1 = require("./commands/ListPhoneNumbersV2Command");
|
|
142
|
+
const ListPredefinedAttributesCommand_1 = require("./commands/ListPredefinedAttributesCommand");
|
|
137
143
|
const ListPromptsCommand_1 = require("./commands/ListPromptsCommand");
|
|
138
144
|
const ListQueueQuickConnectsCommand_1 = require("./commands/ListQueueQuickConnectsCommand");
|
|
139
145
|
const ListQueuesCommand_1 = require("./commands/ListQueuesCommand");
|
|
@@ -152,6 +158,7 @@ const ListTrafficDistributionGroupsCommand_1 = require("./commands/ListTrafficDi
|
|
|
152
158
|
const ListTrafficDistributionGroupUsersCommand_1 = require("./commands/ListTrafficDistributionGroupUsersCommand");
|
|
153
159
|
const ListUseCasesCommand_1 = require("./commands/ListUseCasesCommand");
|
|
154
160
|
const ListUserHierarchyGroupsCommand_1 = require("./commands/ListUserHierarchyGroupsCommand");
|
|
161
|
+
const ListUserProficienciesCommand_1 = require("./commands/ListUserProficienciesCommand");
|
|
155
162
|
const ListUsersCommand_1 = require("./commands/ListUsersCommand");
|
|
156
163
|
const ListViewsCommand_1 = require("./commands/ListViewsCommand");
|
|
157
164
|
const ListViewVersionsCommand_1 = require("./commands/ListViewVersionsCommand");
|
|
@@ -163,7 +170,9 @@ const ReplicateInstanceCommand_1 = require("./commands/ReplicateInstanceCommand"
|
|
|
163
170
|
const ResumeContactCommand_1 = require("./commands/ResumeContactCommand");
|
|
164
171
|
const ResumeContactRecordingCommand_1 = require("./commands/ResumeContactRecordingCommand");
|
|
165
172
|
const SearchAvailablePhoneNumbersCommand_1 = require("./commands/SearchAvailablePhoneNumbersCommand");
|
|
173
|
+
const SearchContactsCommand_1 = require("./commands/SearchContactsCommand");
|
|
166
174
|
const SearchHoursOfOperationsCommand_1 = require("./commands/SearchHoursOfOperationsCommand");
|
|
175
|
+
const SearchPredefinedAttributesCommand_1 = require("./commands/SearchPredefinedAttributesCommand");
|
|
167
176
|
const SearchPromptsCommand_1 = require("./commands/SearchPromptsCommand");
|
|
168
177
|
const SearchQueuesCommand_1 = require("./commands/SearchQueuesCommand");
|
|
169
178
|
const SearchQuickConnectsCommand_1 = require("./commands/SearchQuickConnectsCommand");
|
|
@@ -199,6 +208,7 @@ const UpdateContactFlowMetadataCommand_1 = require("./commands/UpdateContactFlow
|
|
|
199
208
|
const UpdateContactFlowModuleContentCommand_1 = require("./commands/UpdateContactFlowModuleContentCommand");
|
|
200
209
|
const UpdateContactFlowModuleMetadataCommand_1 = require("./commands/UpdateContactFlowModuleMetadataCommand");
|
|
201
210
|
const UpdateContactFlowNameCommand_1 = require("./commands/UpdateContactFlowNameCommand");
|
|
211
|
+
const UpdateContactRoutingDataCommand_1 = require("./commands/UpdateContactRoutingDataCommand");
|
|
202
212
|
const UpdateContactScheduleCommand_1 = require("./commands/UpdateContactScheduleCommand");
|
|
203
213
|
const UpdateEvaluationFormCommand_1 = require("./commands/UpdateEvaluationFormCommand");
|
|
204
214
|
const UpdateHoursOfOperationCommand_1 = require("./commands/UpdateHoursOfOperationCommand");
|
|
@@ -207,6 +217,7 @@ const UpdateInstanceStorageConfigCommand_1 = require("./commands/UpdateInstanceS
|
|
|
207
217
|
const UpdateParticipantRoleConfigCommand_1 = require("./commands/UpdateParticipantRoleConfigCommand");
|
|
208
218
|
const UpdatePhoneNumberCommand_1 = require("./commands/UpdatePhoneNumberCommand");
|
|
209
219
|
const UpdatePhoneNumberMetadataCommand_1 = require("./commands/UpdatePhoneNumberMetadataCommand");
|
|
220
|
+
const UpdatePredefinedAttributeCommand_1 = require("./commands/UpdatePredefinedAttributeCommand");
|
|
210
221
|
const UpdatePromptCommand_1 = require("./commands/UpdatePromptCommand");
|
|
211
222
|
const UpdateQueueHoursOfOperationCommand_1 = require("./commands/UpdateQueueHoursOfOperationCommand");
|
|
212
223
|
const UpdateQueueMaxContactsCommand_1 = require("./commands/UpdateQueueMaxContactsCommand");
|
|
@@ -229,6 +240,7 @@ const UpdateUserHierarchyGroupNameCommand_1 = require("./commands/UpdateUserHier
|
|
|
229
240
|
const UpdateUserHierarchyStructureCommand_1 = require("./commands/UpdateUserHierarchyStructureCommand");
|
|
230
241
|
const UpdateUserIdentityInfoCommand_1 = require("./commands/UpdateUserIdentityInfoCommand");
|
|
231
242
|
const UpdateUserPhoneConfigCommand_1 = require("./commands/UpdateUserPhoneConfigCommand");
|
|
243
|
+
const UpdateUserProficienciesCommand_1 = require("./commands/UpdateUserProficienciesCommand");
|
|
232
244
|
const UpdateUserRoutingProfileCommand_1 = require("./commands/UpdateUserRoutingProfileCommand");
|
|
233
245
|
const UpdateUserSecurityProfilesCommand_1 = require("./commands/UpdateUserSecurityProfilesCommand");
|
|
234
246
|
const UpdateViewContentCommand_1 = require("./commands/UpdateViewContentCommand");
|
|
@@ -249,6 +261,7 @@ const commands = {
|
|
|
249
261
|
AssociateRoutingProfileQueuesCommand: AssociateRoutingProfileQueuesCommand_1.AssociateRoutingProfileQueuesCommand,
|
|
250
262
|
AssociateSecurityKeyCommand: AssociateSecurityKeyCommand_1.AssociateSecurityKeyCommand,
|
|
251
263
|
AssociateTrafficDistributionGroupUserCommand: AssociateTrafficDistributionGroupUserCommand_1.AssociateTrafficDistributionGroupUserCommand,
|
|
264
|
+
AssociateUserProficienciesCommand: AssociateUserProficienciesCommand_1.AssociateUserProficienciesCommand,
|
|
252
265
|
BatchAssociateAnalyticsDataSetCommand: BatchAssociateAnalyticsDataSetCommand_1.BatchAssociateAnalyticsDataSetCommand,
|
|
253
266
|
BatchDisassociateAnalyticsDataSetCommand: BatchDisassociateAnalyticsDataSetCommand_1.BatchDisassociateAnalyticsDataSetCommand,
|
|
254
267
|
BatchGetFlowAssociationCommand: BatchGetFlowAssociationCommand_1.BatchGetFlowAssociationCommand,
|
|
@@ -263,6 +276,7 @@ const commands = {
|
|
|
263
276
|
CreateIntegrationAssociationCommand: CreateIntegrationAssociationCommand_1.CreateIntegrationAssociationCommand,
|
|
264
277
|
CreateParticipantCommand: CreateParticipantCommand_1.CreateParticipantCommand,
|
|
265
278
|
CreatePersistentContactAssociationCommand: CreatePersistentContactAssociationCommand_1.CreatePersistentContactAssociationCommand,
|
|
279
|
+
CreatePredefinedAttributeCommand: CreatePredefinedAttributeCommand_1.CreatePredefinedAttributeCommand,
|
|
266
280
|
CreatePromptCommand: CreatePromptCommand_1.CreatePromptCommand,
|
|
267
281
|
CreateQueueCommand: CreateQueueCommand_1.CreateQueueCommand,
|
|
268
282
|
CreateQuickConnectCommand: CreateQuickConnectCommand_1.CreateQuickConnectCommand,
|
|
@@ -285,6 +299,7 @@ const commands = {
|
|
|
285
299
|
DeleteHoursOfOperationCommand: DeleteHoursOfOperationCommand_1.DeleteHoursOfOperationCommand,
|
|
286
300
|
DeleteInstanceCommand: DeleteInstanceCommand_1.DeleteInstanceCommand,
|
|
287
301
|
DeleteIntegrationAssociationCommand: DeleteIntegrationAssociationCommand_1.DeleteIntegrationAssociationCommand,
|
|
302
|
+
DeletePredefinedAttributeCommand: DeletePredefinedAttributeCommand_1.DeletePredefinedAttributeCommand,
|
|
288
303
|
DeletePromptCommand: DeletePromptCommand_1.DeletePromptCommand,
|
|
289
304
|
DeleteQueueCommand: DeleteQueueCommand_1.DeleteQueueCommand,
|
|
290
305
|
DeleteQuickConnectCommand: DeleteQuickConnectCommand_1.DeleteQuickConnectCommand,
|
|
@@ -310,6 +325,7 @@ const commands = {
|
|
|
310
325
|
DescribeInstanceAttributeCommand: DescribeInstanceAttributeCommand_1.DescribeInstanceAttributeCommand,
|
|
311
326
|
DescribeInstanceStorageConfigCommand: DescribeInstanceStorageConfigCommand_1.DescribeInstanceStorageConfigCommand,
|
|
312
327
|
DescribePhoneNumberCommand: DescribePhoneNumberCommand_1.DescribePhoneNumberCommand,
|
|
328
|
+
DescribePredefinedAttributeCommand: DescribePredefinedAttributeCommand_1.DescribePredefinedAttributeCommand,
|
|
313
329
|
DescribePromptCommand: DescribePromptCommand_1.DescribePromptCommand,
|
|
314
330
|
DescribeQueueCommand: DescribeQueueCommand_1.DescribeQueueCommand,
|
|
315
331
|
DescribeQuickConnectCommand: DescribeQuickConnectCommand_1.DescribeQuickConnectCommand,
|
|
@@ -334,6 +350,7 @@ const commands = {
|
|
|
334
350
|
DisassociateRoutingProfileQueuesCommand: DisassociateRoutingProfileQueuesCommand_1.DisassociateRoutingProfileQueuesCommand,
|
|
335
351
|
DisassociateSecurityKeyCommand: DisassociateSecurityKeyCommand_1.DisassociateSecurityKeyCommand,
|
|
336
352
|
DisassociateTrafficDistributionGroupUserCommand: DisassociateTrafficDistributionGroupUserCommand_1.DisassociateTrafficDistributionGroupUserCommand,
|
|
353
|
+
DisassociateUserProficienciesCommand: DisassociateUserProficienciesCommand_1.DisassociateUserProficienciesCommand,
|
|
337
354
|
DismissUserContactCommand: DismissUserContactCommand_1.DismissUserContactCommand,
|
|
338
355
|
GetContactAttributesCommand: GetContactAttributesCommand_1.GetContactAttributesCommand,
|
|
339
356
|
GetCurrentMetricDataCommand: GetCurrentMetricDataCommand_1.GetCurrentMetricDataCommand,
|
|
@@ -367,6 +384,7 @@ const commands = {
|
|
|
367
384
|
ListLexBotsCommand: ListLexBotsCommand_1.ListLexBotsCommand,
|
|
368
385
|
ListPhoneNumbersCommand: ListPhoneNumbersCommand_1.ListPhoneNumbersCommand,
|
|
369
386
|
ListPhoneNumbersV2Command: ListPhoneNumbersV2Command_1.ListPhoneNumbersV2Command,
|
|
387
|
+
ListPredefinedAttributesCommand: ListPredefinedAttributesCommand_1.ListPredefinedAttributesCommand,
|
|
370
388
|
ListPromptsCommand: ListPromptsCommand_1.ListPromptsCommand,
|
|
371
389
|
ListQueueQuickConnectsCommand: ListQueueQuickConnectsCommand_1.ListQueueQuickConnectsCommand,
|
|
372
390
|
ListQueuesCommand: ListQueuesCommand_1.ListQueuesCommand,
|
|
@@ -385,6 +403,7 @@ const commands = {
|
|
|
385
403
|
ListTrafficDistributionGroupUsersCommand: ListTrafficDistributionGroupUsersCommand_1.ListTrafficDistributionGroupUsersCommand,
|
|
386
404
|
ListUseCasesCommand: ListUseCasesCommand_1.ListUseCasesCommand,
|
|
387
405
|
ListUserHierarchyGroupsCommand: ListUserHierarchyGroupsCommand_1.ListUserHierarchyGroupsCommand,
|
|
406
|
+
ListUserProficienciesCommand: ListUserProficienciesCommand_1.ListUserProficienciesCommand,
|
|
388
407
|
ListUsersCommand: ListUsersCommand_1.ListUsersCommand,
|
|
389
408
|
ListViewsCommand: ListViewsCommand_1.ListViewsCommand,
|
|
390
409
|
ListViewVersionsCommand: ListViewVersionsCommand_1.ListViewVersionsCommand,
|
|
@@ -396,7 +415,9 @@ const commands = {
|
|
|
396
415
|
ResumeContactCommand: ResumeContactCommand_1.ResumeContactCommand,
|
|
397
416
|
ResumeContactRecordingCommand: ResumeContactRecordingCommand_1.ResumeContactRecordingCommand,
|
|
398
417
|
SearchAvailablePhoneNumbersCommand: SearchAvailablePhoneNumbersCommand_1.SearchAvailablePhoneNumbersCommand,
|
|
418
|
+
SearchContactsCommand: SearchContactsCommand_1.SearchContactsCommand,
|
|
399
419
|
SearchHoursOfOperationsCommand: SearchHoursOfOperationsCommand_1.SearchHoursOfOperationsCommand,
|
|
420
|
+
SearchPredefinedAttributesCommand: SearchPredefinedAttributesCommand_1.SearchPredefinedAttributesCommand,
|
|
400
421
|
SearchPromptsCommand: SearchPromptsCommand_1.SearchPromptsCommand,
|
|
401
422
|
SearchQueuesCommand: SearchQueuesCommand_1.SearchQueuesCommand,
|
|
402
423
|
SearchQuickConnectsCommand: SearchQuickConnectsCommand_1.SearchQuickConnectsCommand,
|
|
@@ -432,6 +453,7 @@ const commands = {
|
|
|
432
453
|
UpdateContactFlowModuleContentCommand: UpdateContactFlowModuleContentCommand_1.UpdateContactFlowModuleContentCommand,
|
|
433
454
|
UpdateContactFlowModuleMetadataCommand: UpdateContactFlowModuleMetadataCommand_1.UpdateContactFlowModuleMetadataCommand,
|
|
434
455
|
UpdateContactFlowNameCommand: UpdateContactFlowNameCommand_1.UpdateContactFlowNameCommand,
|
|
456
|
+
UpdateContactRoutingDataCommand: UpdateContactRoutingDataCommand_1.UpdateContactRoutingDataCommand,
|
|
435
457
|
UpdateContactScheduleCommand: UpdateContactScheduleCommand_1.UpdateContactScheduleCommand,
|
|
436
458
|
UpdateEvaluationFormCommand: UpdateEvaluationFormCommand_1.UpdateEvaluationFormCommand,
|
|
437
459
|
UpdateHoursOfOperationCommand: UpdateHoursOfOperationCommand_1.UpdateHoursOfOperationCommand,
|
|
@@ -440,6 +462,7 @@ const commands = {
|
|
|
440
462
|
UpdateParticipantRoleConfigCommand: UpdateParticipantRoleConfigCommand_1.UpdateParticipantRoleConfigCommand,
|
|
441
463
|
UpdatePhoneNumberCommand: UpdatePhoneNumberCommand_1.UpdatePhoneNumberCommand,
|
|
442
464
|
UpdatePhoneNumberMetadataCommand: UpdatePhoneNumberMetadataCommand_1.UpdatePhoneNumberMetadataCommand,
|
|
465
|
+
UpdatePredefinedAttributeCommand: UpdatePredefinedAttributeCommand_1.UpdatePredefinedAttributeCommand,
|
|
443
466
|
UpdatePromptCommand: UpdatePromptCommand_1.UpdatePromptCommand,
|
|
444
467
|
UpdateQueueHoursOfOperationCommand: UpdateQueueHoursOfOperationCommand_1.UpdateQueueHoursOfOperationCommand,
|
|
445
468
|
UpdateQueueMaxContactsCommand: UpdateQueueMaxContactsCommand_1.UpdateQueueMaxContactsCommand,
|
|
@@ -462,6 +485,7 @@ const commands = {
|
|
|
462
485
|
UpdateUserHierarchyStructureCommand: UpdateUserHierarchyStructureCommand_1.UpdateUserHierarchyStructureCommand,
|
|
463
486
|
UpdateUserIdentityInfoCommand: UpdateUserIdentityInfoCommand_1.UpdateUserIdentityInfoCommand,
|
|
464
487
|
UpdateUserPhoneConfigCommand: UpdateUserPhoneConfigCommand_1.UpdateUserPhoneConfigCommand,
|
|
488
|
+
UpdateUserProficienciesCommand: UpdateUserProficienciesCommand_1.UpdateUserProficienciesCommand,
|
|
465
489
|
UpdateUserRoutingProfileCommand: UpdateUserRoutingProfileCommand_1.UpdateUserRoutingProfileCommand,
|
|
466
490
|
UpdateUserSecurityProfilesCommand: UpdateUserSecurityProfilesCommand_1.UpdateUserSecurityProfilesCommand,
|
|
467
491
|
UpdateViewContentCommand: UpdateViewContentCommand_1.UpdateViewContentCommand,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AssociateUserProficienciesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class AssociateUserProficienciesCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, AssociateUserProficienciesCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "AssociateUserProficienciesCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "AssociateUserProficiencies",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_AssociateUserProficienciesCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_AssociateUserProficienciesCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.AssociateUserProficienciesCommand = AssociateUserProficienciesCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreatePredefinedAttributeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class CreatePredefinedAttributeCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreatePredefinedAttributeCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "CreatePredefinedAttributeCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "CreatePredefinedAttribute",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_CreatePredefinedAttributeCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_CreatePredefinedAttributeCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.CreatePredefinedAttributeCommand = CreatePredefinedAttributeCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeletePredefinedAttributeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DeletePredefinedAttributeCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeletePredefinedAttributeCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "DeletePredefinedAttributeCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "DeletePredefinedAttribute",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DeletePredefinedAttributeCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DeletePredefinedAttributeCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DeletePredefinedAttributeCommand = DeletePredefinedAttributeCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribePredefinedAttributeCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DescribePredefinedAttributeCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribePredefinedAttributeCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "DescribePredefinedAttributeCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "DescribePredefinedAttribute",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DescribePredefinedAttributeCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DescribePredefinedAttributeCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DescribePredefinedAttributeCommand = DescribePredefinedAttributeCommand;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DisassociateUserProficienciesCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class DisassociateUserProficienciesCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DisassociateUserProficienciesCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "DisassociateUserProficienciesCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "DisassociateUserProficiencies",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_DisassociateUserProficienciesCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_DisassociateUserProficienciesCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.DisassociateUserProficienciesCommand = DisassociateUserProficienciesCommand;
|