@aws-sdk/client-connect 3.1000.0 → 3.1002.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +42 -0
  3. package/dist-cjs/schemas/schemas_0.js +97 -37
  4. package/dist-es/Connect.js +6 -0
  5. package/dist-es/commands/AssociateQueueEmailAddressesCommand.js +16 -0
  6. package/dist-es/commands/DisassociateQueueEmailAddressesCommand.js +16 -0
  7. package/dist-es/commands/ListQueueEmailAddressesCommand.js +16 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/schemas/schemas_0.js +66 -6
  10. package/dist-types/Connect.d.ts +21 -0
  11. package/dist-types/ConnectClient.d.ts +5 -2
  12. package/dist-types/commands/AssociateQueueEmailAddressesCommand.d.ts +120 -0
  13. package/dist-types/commands/CreateQueueCommand.d.ts +5 -0
  14. package/dist-types/commands/DisassociateQueueEmailAddressesCommand.d.ts +109 -0
  15. package/dist-types/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -1
  16. package/dist-types/commands/GetTrafficDistributionCommand.d.ts +1 -2
  17. package/dist-types/commands/ListQueueEmailAddressesCommand.d.ts +121 -0
  18. package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +1 -2
  19. package/dist-types/commands/SearchTestCasesCommand.d.ts +1 -2
  20. package/dist-types/commands/index.d.ts +3 -0
  21. package/dist-types/models/models_0.d.ts +44 -67
  22. package/dist-types/models/models_1.d.ts +97 -55
  23. package/dist-types/models/models_2.d.ts +126 -128
  24. package/dist-types/models/models_3.d.ts +129 -2
  25. package/dist-types/schemas/schemas_0.d.ts +9 -0
  26. package/dist-types/ts3.4/Connect.d.ts +51 -0
  27. package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/AssociateQueueEmailAddressesCommand.d.ts +47 -0
  29. package/dist-types/ts3.4/commands/DisassociateQueueEmailAddressesCommand.d.ts +47 -0
  30. package/dist-types/ts3.4/commands/GetTestCaseExecutionSummaryCommand.d.ts +2 -4
  31. package/dist-types/ts3.4/commands/GetTrafficDistributionCommand.d.ts +4 -2
  32. package/dist-types/ts3.4/commands/ListQueueEmailAddressesCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +4 -2
  34. package/dist-types/ts3.4/commands/SearchTestCasesCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  36. package/dist-types/ts3.4/models/models_0.d.ts +10 -15
  37. package/dist-types/ts3.4/models/models_1.d.ts +21 -16
  38. package/dist-types/ts3.4/models/models_2.d.ts +31 -29
  39. package/dist-types/ts3.4/models/models_3.d.ts +28 -3
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  41. package/package.json +13 -13
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import { AssociateQueueEmailAddressesRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface AssociateQueueEmailAddressesCommandInput
12
+ extends AssociateQueueEmailAddressesRequest {}
13
+ export interface AssociateQueueEmailAddressesCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const AssociateQueueEmailAddressesCommand_base: {
16
+ new (
17
+ input: AssociateQueueEmailAddressesCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ AssociateQueueEmailAddressesCommandInput,
20
+ AssociateQueueEmailAddressesCommandOutput,
21
+ ConnectClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: AssociateQueueEmailAddressesCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ AssociateQueueEmailAddressesCommandInput,
29
+ AssociateQueueEmailAddressesCommandOutput,
30
+ ConnectClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class AssociateQueueEmailAddressesCommand extends AssociateQueueEmailAddressesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: AssociateQueueEmailAddressesRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: AssociateQueueEmailAddressesCommandInput;
44
+ output: AssociateQueueEmailAddressesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import { DisassociateQueueEmailAddressesRequest } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DisassociateQueueEmailAddressesCommandInput
12
+ extends DisassociateQueueEmailAddressesRequest {}
13
+ export interface DisassociateQueueEmailAddressesCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DisassociateQueueEmailAddressesCommand_base: {
16
+ new (
17
+ input: DisassociateQueueEmailAddressesCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DisassociateQueueEmailAddressesCommandInput,
20
+ DisassociateQueueEmailAddressesCommandOutput,
21
+ ConnectClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DisassociateQueueEmailAddressesCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DisassociateQueueEmailAddressesCommandInput,
29
+ DisassociateQueueEmailAddressesCommandOutput,
30
+ ConnectClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DisassociateQueueEmailAddressesCommand extends DisassociateQueueEmailAddressesCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DisassociateQueueEmailAddressesRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DisassociateQueueEmailAddressesCommandInput;
44
+ output: DisassociateQueueEmailAddressesCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import {
9
- GetTestCaseExecutionSummaryRequest,
10
- GetTestCaseExecutionSummaryResponse,
11
- } from "../models/models_1";
8
+ import { GetTestCaseExecutionSummaryRequest } from "../models/models_1";
9
+ import { GetTestCaseExecutionSummaryResponse } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface GetTestCaseExecutionSummaryCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { GetTrafficDistributionRequest } from "../models/models_1";
9
- import { GetTrafficDistributionResponse } from "../models/models_2";
8
+ import {
9
+ GetTrafficDistributionRequest,
10
+ GetTrafficDistributionResponse,
11
+ } from "../models/models_2";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface GetTrafficDistributionCommandInput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ConnectClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ConnectClient";
8
+ import {
9
+ ListQueueEmailAddressesRequest,
10
+ ListQueueEmailAddressesResponse,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListQueueEmailAddressesCommandInput
15
+ extends ListQueueEmailAddressesRequest {}
16
+ export interface ListQueueEmailAddressesCommandOutput
17
+ extends ListQueueEmailAddressesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListQueueEmailAddressesCommand_base: {
20
+ new (
21
+ input: ListQueueEmailAddressesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListQueueEmailAddressesCommandInput,
24
+ ListQueueEmailAddressesCommandOutput,
25
+ ConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListQueueEmailAddressesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListQueueEmailAddressesCommandInput,
33
+ ListQueueEmailAddressesCommandOutput,
34
+ ConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListQueueEmailAddressesCommand extends ListQueueEmailAddressesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListQueueEmailAddressesRequest;
44
+ output: ListQueueEmailAddressesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListQueueEmailAddressesCommandInput;
48
+ output: ListQueueEmailAddressesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { SearchSecurityProfilesResponse } from "../models/models_2";
9
- import { SearchSecurityProfilesRequest } from "../models/models_3";
8
+ import {
9
+ SearchSecurityProfilesRequest,
10
+ SearchSecurityProfilesResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface SearchSecurityProfilesCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ConnectClient";
8
- import { SearchTestCasesResponse } from "../models/models_2";
9
- import { SearchTestCasesRequest } from "../models/models_3";
8
+ import {
9
+ SearchTestCasesRequest,
10
+ SearchTestCasesResponse,
11
+ } from "../models/models_3";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface SearchTestCasesCommandInput extends SearchTestCasesRequest {}
@@ -11,6 +11,7 @@ export * from "./AssociateInstanceStorageConfigCommand";
11
11
  export * from "./AssociateLambdaFunctionCommand";
12
12
  export * from "./AssociateLexBotCommand";
13
13
  export * from "./AssociatePhoneNumberContactFlowCommand";
14
+ export * from "./AssociateQueueEmailAddressesCommand";
14
15
  export * from "./AssociateQueueQuickConnectsCommand";
15
16
  export * from "./AssociateRoutingProfileQueuesCommand";
16
17
  export * from "./AssociateSecurityKeyCommand";
@@ -146,6 +147,7 @@ export * from "./DisassociateInstanceStorageConfigCommand";
146
147
  export * from "./DisassociateLambdaFunctionCommand";
147
148
  export * from "./DisassociateLexBotCommand";
148
149
  export * from "./DisassociatePhoneNumberContactFlowCommand";
150
+ export * from "./DisassociateQueueEmailAddressesCommand";
149
151
  export * from "./DisassociateQueueQuickConnectsCommand";
150
152
  export * from "./DisassociateRoutingProfileQueuesCommand";
151
153
  export * from "./DisassociateSecurityKeyCommand";
@@ -208,6 +210,7 @@ export * from "./ListPhoneNumbersCommand";
208
210
  export * from "./ListPhoneNumbersV2Command";
209
211
  export * from "./ListPredefinedAttributesCommand";
210
212
  export * from "./ListPromptsCommand";
213
+ export * from "./ListQueueEmailAddressesCommand";
211
214
  export * from "./ListQueueQuickConnectsCommand";
212
215
  export * from "./ListQueuesCommand";
213
216
  export * from "./ListQuickConnectsCommand";
@@ -415,6 +415,15 @@ export interface AssociatePhoneNumberContactFlowRequest {
415
415
  InstanceId: string | undefined;
416
416
  ContactFlowId: string | undefined;
417
417
  }
418
+ export interface EmailAddressConfig {
419
+ EmailAddressId: string | undefined;
420
+ }
421
+ export interface AssociateQueueEmailAddressesRequest {
422
+ InstanceId: string | undefined;
423
+ QueueId: string | undefined;
424
+ EmailAddressesConfig: EmailAddressConfig[] | undefined;
425
+ ClientToken?: string | undefined;
426
+ }
418
427
  export interface AssociateQueueQuickConnectsRequest {
419
428
  InstanceId: string | undefined;
420
429
  QueueId: string | undefined;
@@ -1325,6 +1334,7 @@ export interface CreateQueueRequest {
1325
1334
  HoursOfOperationId: string | undefined;
1326
1335
  MaxContacts?: number | undefined;
1327
1336
  QuickConnectIds?: string[] | undefined;
1337
+ EmailAddressesConfig?: EmailAddressConfig[] | undefined;
1328
1338
  Tags?: Record<string, string> | undefined;
1329
1339
  }
1330
1340
  export interface CreateQueueResponse {
@@ -1748,18 +1758,3 @@ export interface PaletteCanvas {
1748
1758
  PageBackground?: string | undefined;
1749
1759
  ActiveBackground?: string | undefined;
1750
1760
  }
1751
- export interface PaletteHeader {
1752
- Background?: string | undefined;
1753
- Text?: string | undefined;
1754
- TextHover?: string | undefined;
1755
- InvertActionsColors?: boolean | undefined;
1756
- }
1757
- export interface PaletteNavigation {
1758
- Background?: string | undefined;
1759
- TextBackgroundHover?: string | undefined;
1760
- TextBackgroundActive?: string | undefined;
1761
- Text?: string | undefined;
1762
- TextHover?: string | undefined;
1763
- TextActive?: string | undefined;
1764
- InvertActionsColors?: boolean | undefined;
1765
- }
@@ -55,7 +55,6 @@ import {
55
55
  Status,
56
56
  StorageType,
57
57
  TaskTemplateStatus,
58
- TestCaseExecutionStatus,
59
58
  TestCaseStatus,
60
59
  TrafficDistributionGroupStatus,
61
60
  Unit,
@@ -83,8 +82,6 @@ import {
83
82
  OutboundEmailConfig,
84
83
  OverrideTimeSlice,
85
84
  PaletteCanvas,
86
- PaletteHeader,
87
- PaletteNavigation,
88
85
  ParticipantCapabilities,
89
86
  PredefinedAttributeValues,
90
87
  QueueReference,
@@ -118,6 +115,21 @@ import {
118
115
  TaskTemplateField,
119
116
  VoiceEnhancementConfig,
120
117
  } from "./models_0";
118
+ export interface PaletteHeader {
119
+ Background?: string | undefined;
120
+ Text?: string | undefined;
121
+ TextHover?: string | undefined;
122
+ InvertActionsColors?: boolean | undefined;
123
+ }
124
+ export interface PaletteNavigation {
125
+ Background?: string | undefined;
126
+ TextBackgroundHover?: string | undefined;
127
+ TextBackgroundActive?: string | undefined;
128
+ Text?: string | undefined;
129
+ TextHover?: string | undefined;
130
+ TextActive?: string | undefined;
131
+ InvertActionsColors?: boolean | undefined;
132
+ }
121
133
  export interface PalettePrimary {
122
134
  Default?: string | undefined;
123
135
  Active?: string | undefined;
@@ -1344,6 +1356,12 @@ export interface DisassociatePhoneNumberContactFlowRequest {
1344
1356
  PhoneNumberId: string | undefined;
1345
1357
  InstanceId: string | undefined;
1346
1358
  }
1359
+ export interface DisassociateQueueEmailAddressesRequest {
1360
+ InstanceId: string | undefined;
1361
+ QueueId: string | undefined;
1362
+ EmailAddressesId: string[] | undefined;
1363
+ ClientToken?: string | undefined;
1364
+ }
1347
1365
  export interface DisassociateQueueQuickConnectsRequest {
1348
1366
  InstanceId: string | undefined;
1349
1367
  QueueId: string | undefined;
@@ -1768,16 +1786,3 @@ export interface ObservationSummary {
1768
1786
  ObservationsPassed?: number | undefined;
1769
1787
  ObservationsFailed?: number | undefined;
1770
1788
  }
1771
- export interface GetTestCaseExecutionSummaryResponse {
1772
- StartTime?: Date | undefined;
1773
- EndTime?: Date | undefined;
1774
- Status?: TestCaseExecutionStatus | undefined;
1775
- ObservationSummary?: ObservationSummary | undefined;
1776
- }
1777
- export interface GetTrafficDistributionRequest {
1778
- Id: string | undefined;
1779
- }
1780
- export interface SignInDistribution {
1781
- Region: string | undefined;
1782
- Enabled: boolean | undefined;
1783
- }
@@ -92,6 +92,7 @@ import {
92
92
  import {
93
93
  EvaluationContactParticipant,
94
94
  EvaluationScore,
95
+ ObservationSummary,
95
96
  Attribute,
96
97
  ContactFlow,
97
98
  ContactFlowModule,
@@ -107,9 +108,20 @@ import {
107
108
  Queue,
108
109
  QuickConnect,
109
110
  RoutingProfile,
110
- SignInDistribution,
111
- TestCase,
112
111
  } from "./models_1";
112
+ export interface GetTestCaseExecutionSummaryResponse {
113
+ StartTime?: Date | undefined;
114
+ EndTime?: Date | undefined;
115
+ Status?: TestCaseExecutionStatus | undefined;
116
+ ObservationSummary?: ObservationSummary | undefined;
117
+ }
118
+ export interface GetTrafficDistributionRequest {
119
+ Id: string | undefined;
120
+ }
121
+ export interface SignInDistribution {
122
+ Region: string | undefined;
123
+ Enabled: boolean | undefined;
124
+ }
113
125
  export interface SignInConfig {
114
126
  Distributions: SignInDistribution[] | undefined;
115
127
  }
@@ -867,6 +879,23 @@ export interface ListPromptsResponse {
867
879
  PromptSummaryList?: PromptSummary[] | undefined;
868
880
  NextToken?: string | undefined;
869
881
  }
882
+ export interface ListQueueEmailAddressesRequest {
883
+ InstanceId: string | undefined;
884
+ QueueId: string | undefined;
885
+ NextToken?: string | undefined;
886
+ MaxResults?: number | undefined;
887
+ }
888
+ export interface EmailAddressSummary {
889
+ Id?: string | undefined;
890
+ Arn?: string | undefined;
891
+ IsDefaultOutboundEmail?: boolean | undefined;
892
+ }
893
+ export interface ListQueueEmailAddressesResponse {
894
+ NextToken?: string | undefined;
895
+ EmailAddressMetadataList?: EmailAddressSummary[] | undefined;
896
+ LastModifiedTime?: Date | undefined;
897
+ LastModifiedRegion?: string | undefined;
898
+ }
870
899
  export interface ListQueueQuickConnectsRequest {
871
900
  InstanceId: string | undefined;
872
901
  QueueId: string | undefined;
@@ -1935,30 +1964,3 @@ export interface SearchRoutingProfilesResponse {
1935
1964
  NextToken?: string | undefined;
1936
1965
  ApproximateTotalCount?: number | undefined;
1937
1966
  }
1938
- export interface SecurityProfilesSearchFilter {
1939
- TagFilter?: ControlPlaneTagFilter | undefined;
1940
- }
1941
- export interface SecurityProfileSearchSummary {
1942
- Id?: string | undefined;
1943
- OrganizationResourceId?: string | undefined;
1944
- Arn?: string | undefined;
1945
- SecurityProfileName?: string | undefined;
1946
- Description?: string | undefined;
1947
- Tags?: Record<string, string> | undefined;
1948
- }
1949
- export interface SearchSecurityProfilesResponse {
1950
- SecurityProfiles?: SecurityProfileSearchSummary[] | undefined;
1951
- NextToken?: string | undefined;
1952
- ApproximateTotalCount?: number | undefined;
1953
- }
1954
- export interface TestCaseSearchFilter {
1955
- TagFilter?: ControlPlaneTagFilter | undefined;
1956
- }
1957
- export interface SearchTestCasesResponse {
1958
- TestCases?: TestCase[] | undefined;
1959
- NextToken?: string | undefined;
1960
- ApproximateTotalCount?: number | undefined;
1961
- }
1962
- export interface UserHierarchyGroupSearchFilter {
1963
- AttributeFilter?: ControlPlaneAttributeFilter | undefined;
1964
- }
@@ -131,6 +131,7 @@ import {
131
131
  HierarchyGroup,
132
132
  NextContactEntry,
133
133
  RecordingInfo,
134
+ TestCase,
134
135
  } from "./models_1";
135
136
  import {
136
137
  BooleanCondition,
@@ -153,12 +154,36 @@ import {
153
154
  QueueSearchFilter,
154
155
  QuickConnectSearchFilter,
155
156
  RoutingProfileSearchFilter,
156
- SecurityProfilesSearchFilter,
157
157
  SignInConfig,
158
158
  TelephonyConfig,
159
- TestCaseSearchFilter,
160
- UserHierarchyGroupSearchFilter,
161
159
  } from "./models_2";
160
+ export interface SecurityProfilesSearchFilter {
161
+ TagFilter?: ControlPlaneTagFilter | undefined;
162
+ }
163
+ export interface SecurityProfileSearchSummary {
164
+ Id?: string | undefined;
165
+ OrganizationResourceId?: string | undefined;
166
+ Arn?: string | undefined;
167
+ SecurityProfileName?: string | undefined;
168
+ Description?: string | undefined;
169
+ Tags?: Record<string, string> | undefined;
170
+ }
171
+ export interface SearchSecurityProfilesResponse {
172
+ SecurityProfiles?: SecurityProfileSearchSummary[] | undefined;
173
+ NextToken?: string | undefined;
174
+ ApproximateTotalCount?: number | undefined;
175
+ }
176
+ export interface TestCaseSearchFilter {
177
+ TagFilter?: ControlPlaneTagFilter | undefined;
178
+ }
179
+ export interface SearchTestCasesResponse {
180
+ TestCases?: TestCase[] | undefined;
181
+ NextToken?: string | undefined;
182
+ ApproximateTotalCount?: number | undefined;
183
+ }
184
+ export interface UserHierarchyGroupSearchFilter {
185
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
186
+ }
162
187
  export interface SearchUserHierarchyGroupsResponse {
163
188
  UserHierarchyGroups?: HierarchyGroup[] | undefined;
164
189
  NextToken?: string | undefined;
@@ -83,6 +83,7 @@ export declare var AssociateInstanceStorageConfigResponse$: StaticStructureSchem
83
83
  export declare var AssociateLambdaFunctionRequest$: StaticStructureSchema;
84
84
  export declare var AssociateLexBotRequest$: StaticStructureSchema;
85
85
  export declare var AssociatePhoneNumberContactFlowRequest$: StaticStructureSchema;
86
+ export declare var AssociateQueueEmailAddressesRequest$: StaticStructureSchema;
86
87
  export declare var AssociateQueueQuickConnectsRequest$: StaticStructureSchema;
87
88
  export declare var AssociateRoutingProfileQueuesRequest$: StaticStructureSchema;
88
89
  export declare var AssociateSecurityKeyRequest$: StaticStructureSchema;
@@ -422,6 +423,7 @@ export declare var DisassociateInstanceStorageConfigRequest$: StaticStructureSch
422
423
  export declare var DisassociateLambdaFunctionRequest$: StaticStructureSchema;
423
424
  export declare var DisassociateLexBotRequest$: StaticStructureSchema;
424
425
  export declare var DisassociatePhoneNumberContactFlowRequest$: StaticStructureSchema;
426
+ export declare var DisassociateQueueEmailAddressesRequest$: StaticStructureSchema;
425
427
  export declare var DisassociateQueueQuickConnectsRequest$: StaticStructureSchema;
426
428
  export declare var DisassociateRoutingProfileQueuesRequest$: StaticStructureSchema;
427
429
  export declare var DisassociateSecurityKeyRequest$: StaticStructureSchema;
@@ -439,10 +441,12 @@ export declare var Distribution$: StaticStructureSchema;
439
441
  export declare var DownloadUrlMetadata$: StaticStructureSchema;
440
442
  export declare var EffectiveHoursOfOperations$: StaticStructureSchema;
441
443
  export declare var EffectiveOverrideHours$: StaticStructureSchema;
444
+ export declare var EmailAddressConfig$: StaticStructureSchema;
442
445
  export declare var EmailAddressInfo$: StaticStructureSchema;
443
446
  export declare var EmailAddressMetadata$: StaticStructureSchema;
444
447
  export declare var EmailAddressSearchCriteria$: StaticStructureSchema;
445
448
  export declare var EmailAddressSearchFilter$: StaticStructureSchema;
449
+ export declare var EmailAddressSummary$: StaticStructureSchema;
446
450
  export declare var EmailAttachment$: StaticStructureSchema;
447
451
  export declare var EmailMessageReference$: StaticStructureSchema;
448
452
  export declare var EmailRecipient$: StaticStructureSchema;
@@ -678,6 +682,8 @@ export declare var ListPredefinedAttributesRequest$: StaticStructureSchema;
678
682
  export declare var ListPredefinedAttributesResponse$: StaticStructureSchema;
679
683
  export declare var ListPromptsRequest$: StaticStructureSchema;
680
684
  export declare var ListPromptsResponse$: StaticStructureSchema;
685
+ export declare var ListQueueEmailAddressesRequest$: StaticStructureSchema;
686
+ export declare var ListQueueEmailAddressesResponse$: StaticStructureSchema;
681
687
  export declare var ListQueueQuickConnectsRequest$: StaticStructureSchema;
682
688
  export declare var ListQueueQuickConnectsResponse$: StaticStructureSchema;
683
689
  export declare var ListQueuesRequest$: StaticStructureSchema;
@@ -1224,6 +1230,7 @@ export declare var AssociateInstanceStorageConfig$: StaticOperationSchema;
1224
1230
  export declare var AssociateLambdaFunction$: StaticOperationSchema;
1225
1231
  export declare var AssociateLexBot$: StaticOperationSchema;
1226
1232
  export declare var AssociatePhoneNumberContactFlow$: StaticOperationSchema;
1233
+ export declare var AssociateQueueEmailAddresses$: StaticOperationSchema;
1227
1234
  export declare var AssociateQueueQuickConnects$: StaticOperationSchema;
1228
1235
  export declare var AssociateRoutingProfileQueues$: StaticOperationSchema;
1229
1236
  export declare var AssociateSecurityKey$: StaticOperationSchema;
@@ -1359,6 +1366,7 @@ export declare var DisassociateInstanceStorageConfig$: StaticOperationSchema;
1359
1366
  export declare var DisassociateLambdaFunction$: StaticOperationSchema;
1360
1367
  export declare var DisassociateLexBot$: StaticOperationSchema;
1361
1368
  export declare var DisassociatePhoneNumberContactFlow$: StaticOperationSchema;
1369
+ export declare var DisassociateQueueEmailAddresses$: StaticOperationSchema;
1362
1370
  export declare var DisassociateQueueQuickConnects$: StaticOperationSchema;
1363
1371
  export declare var DisassociateRoutingProfileQueues$: StaticOperationSchema;
1364
1372
  export declare var DisassociateSecurityKey$: StaticOperationSchema;
@@ -1421,6 +1429,7 @@ export declare var ListPhoneNumbers$: StaticOperationSchema;
1421
1429
  export declare var ListPhoneNumbersV2$: StaticOperationSchema;
1422
1430
  export declare var ListPredefinedAttributes$: StaticOperationSchema;
1423
1431
  export declare var ListPrompts$: StaticOperationSchema;
1432
+ export declare var ListQueueEmailAddresses$: StaticOperationSchema;
1424
1433
  export declare var ListQueueQuickConnects$: StaticOperationSchema;
1425
1434
  export declare var ListQueues$: StaticOperationSchema;
1426
1435
  export declare var ListQuickConnects$: StaticOperationSchema;
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.1000.0",
4
+ "version": "3.1002.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connect",
@@ -21,38 +21,38 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.15",
25
- "@aws-sdk/credential-provider-node": "^3.972.14",
24
+ "@aws-sdk/core": "^3.973.17",
25
+ "@aws-sdk/credential-provider-node": "^3.972.16",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.6",
27
27
  "@aws-sdk/middleware-logger": "^3.972.6",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.6",
29
- "@aws-sdk/middleware-user-agent": "^3.972.15",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.17",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.6",
31
31
  "@aws-sdk/types": "^3.973.4",
32
32
  "@aws-sdk/util-endpoints": "^3.996.3",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.6",
34
- "@aws-sdk/util-user-agent-node": "^3.973.0",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.2",
35
35
  "@smithy/config-resolver": "^4.4.9",
36
- "@smithy/core": "^3.23.6",
37
- "@smithy/fetch-http-handler": "^5.3.11",
36
+ "@smithy/core": "^3.23.7",
37
+ "@smithy/fetch-http-handler": "^5.3.12",
38
38
  "@smithy/hash-node": "^4.2.10",
39
39
  "@smithy/invalid-dependency": "^4.2.10",
40
40
  "@smithy/middleware-content-length": "^4.2.10",
41
- "@smithy/middleware-endpoint": "^4.4.20",
42
- "@smithy/middleware-retry": "^4.4.37",
41
+ "@smithy/middleware-endpoint": "^4.4.21",
42
+ "@smithy/middleware-retry": "^4.4.38",
43
43
  "@smithy/middleware-serde": "^4.2.11",
44
44
  "@smithy/middleware-stack": "^4.2.10",
45
45
  "@smithy/node-config-provider": "^4.3.10",
46
- "@smithy/node-http-handler": "^4.4.12",
46
+ "@smithy/node-http-handler": "^4.4.13",
47
47
  "@smithy/protocol-http": "^5.3.10",
48
- "@smithy/smithy-client": "^4.12.0",
48
+ "@smithy/smithy-client": "^4.12.1",
49
49
  "@smithy/types": "^4.13.0",
50
50
  "@smithy/url-parser": "^4.2.10",
51
51
  "@smithy/util-base64": "^4.3.1",
52
52
  "@smithy/util-body-length-browser": "^4.2.1",
53
53
  "@smithy/util-body-length-node": "^4.2.2",
54
- "@smithy/util-defaults-mode-browser": "^4.3.36",
55
- "@smithy/util-defaults-mode-node": "^4.2.39",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.37",
55
+ "@smithy/util-defaults-mode-node": "^4.2.40",
56
56
  "@smithy/util-endpoints": "^3.3.1",
57
57
  "@smithy/util-middleware": "^4.2.10",
58
58
  "@smithy/util-retry": "^4.2.10",