@aws-sdk/client-connect 3.387.0 → 3.389.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 +24 -0
- package/dist-cjs/Connect.js +6 -0
- package/dist-cjs/commands/AssociateTrafficDistributionGroupUserCommand.js +46 -0
- package/dist-cjs/commands/DisassociateTrafficDistributionGroupUserCommand.js +46 -0
- package/dist-cjs/commands/ListTrafficDistributionGroupUsersCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +1 -26
- package/dist-cjs/models/models_1.js +26 -11
- package/dist-cjs/models/models_2.js +11 -0
- package/dist-cjs/pagination/ListTrafficDistributionGroupUsersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +221 -9
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/AssociateTrafficDistributionGroupUserCommand.js +42 -0
- package/dist-es/commands/DisassociateTrafficDistributionGroupUserCommand.js +42 -0
- package/dist-es/commands/ListTrafficDistributionGroupUsersCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -25
- package/dist-es/models/models_1.js +25 -10
- package/dist-es/models/models_2.js +10 -1
- package/dist-es/pagination/ListTrafficDistributionGroupUsersPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +207 -1
- package/dist-types/Connect.d.ts +21 -0
- package/dist-types/ConnectClient.d.ts +5 -2
- package/dist-types/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +91 -0
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrafficDistributionGroupCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +91 -0
- package/dist-types/commands/GetContactAttributesCommand.d.ts +2 -1
- package/dist-types/commands/GetTrafficDistributionCommand.d.ts +16 -0
- package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +12 -0
- package/dist-types/commands/ListTrafficDistributionGroupUsersCommand.d.ts +95 -0
- package/dist-types/commands/ListTrafficDistributionGroupsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.d.ts +3 -5
- package/dist-types/commands/UpdateTrafficDistributionCommand.d.ts +21 -0
- package/dist-types/commands/UpdateUserHierarchyStructureCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserIdentityInfoCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +97 -106
- package/dist-types/models/models_1.d.ts +213 -339
- package/dist-types/models/models_2.d.ts +320 -2
- package/dist-types/pagination/ListTrafficDistributionGroupUsersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Connect.d.ts +69 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/AssociateTrafficDistributionGroupUserCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateEvaluationFormCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrafficDistributionGroupUserCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetContactAttributesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTrafficDistributionGroupUsersCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateUserHierarchyStructureCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserIdentityInfoCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserPhoneConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserRoutingProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateUserSecurityProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -41
- package/dist-types/ts3.4/models/models_1.d.ts +65 -99
- package/dist-types/ts3.4/models/models_2.d.ts +98 -3
- package/dist-types/ts3.4/pagination/ListTrafficDistributionGroupUsersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +3 -3
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
AssociateSecurityKeyCommandInput,
|
|
48
48
|
AssociateSecurityKeyCommandOutput,
|
|
49
49
|
} from "../commands/AssociateSecurityKeyCommand";
|
|
50
|
+
import {
|
|
51
|
+
AssociateTrafficDistributionGroupUserCommandInput,
|
|
52
|
+
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
53
|
+
} from "../commands/AssociateTrafficDistributionGroupUserCommand";
|
|
50
54
|
import {
|
|
51
55
|
ClaimPhoneNumberCommandInput,
|
|
52
56
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -335,6 +339,10 @@ import {
|
|
|
335
339
|
DisassociateSecurityKeyCommandInput,
|
|
336
340
|
DisassociateSecurityKeyCommandOutput,
|
|
337
341
|
} from "../commands/DisassociateSecurityKeyCommand";
|
|
342
|
+
import {
|
|
343
|
+
DisassociateTrafficDistributionGroupUserCommandInput,
|
|
344
|
+
DisassociateTrafficDistributionGroupUserCommandOutput,
|
|
345
|
+
} from "../commands/DisassociateTrafficDistributionGroupUserCommand";
|
|
338
346
|
import {
|
|
339
347
|
DismissUserContactCommandInput,
|
|
340
348
|
DismissUserContactCommandOutput,
|
|
@@ -503,6 +511,10 @@ import {
|
|
|
503
511
|
ListTrafficDistributionGroupsCommandInput,
|
|
504
512
|
ListTrafficDistributionGroupsCommandOutput,
|
|
505
513
|
} from "../commands/ListTrafficDistributionGroupsCommand";
|
|
514
|
+
import {
|
|
515
|
+
ListTrafficDistributionGroupUsersCommandInput,
|
|
516
|
+
ListTrafficDistributionGroupUsersCommandOutput,
|
|
517
|
+
} from "../commands/ListTrafficDistributionGroupUsersCommand";
|
|
506
518
|
import {
|
|
507
519
|
ListUseCasesCommandInput,
|
|
508
520
|
ListUseCasesCommandOutput,
|
|
@@ -835,6 +847,10 @@ export declare const se_AssociateSecurityKeyCommand: (
|
|
|
835
847
|
input: AssociateSecurityKeyCommandInput,
|
|
836
848
|
context: __SerdeContext
|
|
837
849
|
) => Promise<__HttpRequest>;
|
|
850
|
+
export declare const se_AssociateTrafficDistributionGroupUserCommand: (
|
|
851
|
+
input: AssociateTrafficDistributionGroupUserCommandInput,
|
|
852
|
+
context: __SerdeContext
|
|
853
|
+
) => Promise<__HttpRequest>;
|
|
838
854
|
export declare const se_ClaimPhoneNumberCommand: (
|
|
839
855
|
input: ClaimPhoneNumberCommandInput,
|
|
840
856
|
context: __SerdeContext
|
|
@@ -1123,6 +1139,10 @@ export declare const se_DisassociateSecurityKeyCommand: (
|
|
|
1123
1139
|
input: DisassociateSecurityKeyCommandInput,
|
|
1124
1140
|
context: __SerdeContext
|
|
1125
1141
|
) => Promise<__HttpRequest>;
|
|
1142
|
+
export declare const se_DisassociateTrafficDistributionGroupUserCommand: (
|
|
1143
|
+
input: DisassociateTrafficDistributionGroupUserCommandInput,
|
|
1144
|
+
context: __SerdeContext
|
|
1145
|
+
) => Promise<__HttpRequest>;
|
|
1126
1146
|
export declare const se_DismissUserContactCommand: (
|
|
1127
1147
|
input: DismissUserContactCommandInput,
|
|
1128
1148
|
context: __SerdeContext
|
|
@@ -1291,6 +1311,10 @@ export declare const se_ListTrafficDistributionGroupsCommand: (
|
|
|
1291
1311
|
input: ListTrafficDistributionGroupsCommandInput,
|
|
1292
1312
|
context: __SerdeContext
|
|
1293
1313
|
) => Promise<__HttpRequest>;
|
|
1314
|
+
export declare const se_ListTrafficDistributionGroupUsersCommand: (
|
|
1315
|
+
input: ListTrafficDistributionGroupUsersCommandInput,
|
|
1316
|
+
context: __SerdeContext
|
|
1317
|
+
) => Promise<__HttpRequest>;
|
|
1294
1318
|
export declare const se_ListUseCasesCommand: (
|
|
1295
1319
|
input: ListUseCasesCommandInput,
|
|
1296
1320
|
context: __SerdeContext
|
|
@@ -1623,6 +1647,10 @@ export declare const de_AssociateSecurityKeyCommand: (
|
|
|
1623
1647
|
output: __HttpResponse,
|
|
1624
1648
|
context: __SerdeContext
|
|
1625
1649
|
) => Promise<AssociateSecurityKeyCommandOutput>;
|
|
1650
|
+
export declare const de_AssociateTrafficDistributionGroupUserCommand: (
|
|
1651
|
+
output: __HttpResponse,
|
|
1652
|
+
context: __SerdeContext
|
|
1653
|
+
) => Promise<AssociateTrafficDistributionGroupUserCommandOutput>;
|
|
1626
1654
|
export declare const de_ClaimPhoneNumberCommand: (
|
|
1627
1655
|
output: __HttpResponse,
|
|
1628
1656
|
context: __SerdeContext
|
|
@@ -1911,6 +1939,10 @@ export declare const de_DisassociateSecurityKeyCommand: (
|
|
|
1911
1939
|
output: __HttpResponse,
|
|
1912
1940
|
context: __SerdeContext
|
|
1913
1941
|
) => Promise<DisassociateSecurityKeyCommandOutput>;
|
|
1942
|
+
export declare const de_DisassociateTrafficDistributionGroupUserCommand: (
|
|
1943
|
+
output: __HttpResponse,
|
|
1944
|
+
context: __SerdeContext
|
|
1945
|
+
) => Promise<DisassociateTrafficDistributionGroupUserCommandOutput>;
|
|
1914
1946
|
export declare const de_DismissUserContactCommand: (
|
|
1915
1947
|
output: __HttpResponse,
|
|
1916
1948
|
context: __SerdeContext
|
|
@@ -2079,6 +2111,10 @@ export declare const de_ListTrafficDistributionGroupsCommand: (
|
|
|
2079
2111
|
output: __HttpResponse,
|
|
2080
2112
|
context: __SerdeContext
|
|
2081
2113
|
) => Promise<ListTrafficDistributionGroupsCommandOutput>;
|
|
2114
|
+
export declare const de_ListTrafficDistributionGroupUsersCommand: (
|
|
2115
|
+
output: __HttpResponse,
|
|
2116
|
+
context: __SerdeContext
|
|
2117
|
+
) => Promise<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
2082
2118
|
export declare const de_ListUseCasesCommand: (
|
|
2083
2119
|
output: __HttpResponse,
|
|
2084
2120
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.389.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.388.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.388.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.387.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.387.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.387.0",
|