@aws-sdk/client-connect 3.439.0 → 3.441.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 +8 -0
- package/dist-cjs/Connect.js +2 -0
- package/dist-cjs/commands/BatchGetFlowAssociationCommand.js +51 -0
- package/dist-cjs/commands/DescribeViewCommand.js +2 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +6 -7
- package/dist-cjs/models/models_1.js +7 -14
- package/dist-cjs/models/models_2.js +14 -1
- package/dist-cjs/protocols/Aws_restJson1.js +464 -34
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/BatchGetFlowAssociationCommand.js +47 -0
- package/dist-es/commands/DescribeViewCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +5 -13
- package/dist-es/models/models_2.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +453 -25
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/BatchGetFlowAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateViewCommand.d.ts +5 -7
- package/dist-types/commands/CreateViewVersionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteViewCommand.d.ts +1 -2
- package/dist-types/commands/DescribeAgentStatusCommand.d.ts +2 -0
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +2 -0
- package/dist-types/commands/DescribePromptCommand.d.ts +2 -0
- package/dist-types/commands/DescribeQueueCommand.d.ts +2 -0
- package/dist-types/commands/DescribeQuickConnectCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +3 -0
- package/dist-types/commands/DescribeSecurityProfileCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUserHierarchyGroupCommand.d.ts +12 -0
- package/dist-types/commands/DescribeUserHierarchyStructureCommand.d.ts +12 -1
- package/dist-types/commands/DescribeViewCommand.d.ts +5 -5
- package/dist-types/commands/GetPromptFileCommand.d.ts +2 -0
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +2 -0
- package/dist-types/commands/ListHoursOfOperationsCommand.d.ts +2 -0
- package/dist-types/commands/ListPromptsCommand.d.ts +2 -0
- package/dist-types/commands/ListQueueQuickConnectsCommand.d.ts +4 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +2 -0
- package/dist-types/commands/ListQuickConnectsCommand.d.ts +2 -0
- package/dist-types/commands/ListRoutingProfileQueuesCommand.d.ts +2 -0
- package/dist-types/commands/ListRoutingProfilesCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfileApplicationsCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfilesCommand.d.ts +2 -0
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListUsersCommand.d.ts +2 -0
- package/dist-types/commands/ListViewVersionsCommand.d.ts +1 -2
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +3 -1
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +2 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +2 -0
- package/dist-types/commands/SearchQueuesCommand.d.ts +2 -0
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +2 -0
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateViewContentCommand.d.ts +4 -6
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +212 -102
- package/dist-types/models/models_1.d.ts +201 -111
- package/dist-types/models/models_2.d.ts +106 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/BatchGetFlowAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeUserHierarchyStructureCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeViewCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -20
- package/dist-types/ts3.4/models/models_1.d.ts +46 -40
- package/dist-types/ts3.4/models/models_2.d.ts +42 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -93,6 +93,10 @@ import {
|
|
|
93
93
|
AssociateTrafficDistributionGroupUserCommandInput,
|
|
94
94
|
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
95
95
|
} from "./commands/AssociateTrafficDistributionGroupUserCommand";
|
|
96
|
+
import {
|
|
97
|
+
BatchGetFlowAssociationCommandInput,
|
|
98
|
+
BatchGetFlowAssociationCommandOutput,
|
|
99
|
+
} from "./commands/BatchGetFlowAssociationCommand";
|
|
96
100
|
import {
|
|
97
101
|
ClaimPhoneNumberCommandInput,
|
|
98
102
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -909,6 +913,7 @@ export type ServiceInputTypes =
|
|
|
909
913
|
| AssociateRoutingProfileQueuesCommandInput
|
|
910
914
|
| AssociateSecurityKeyCommandInput
|
|
911
915
|
| AssociateTrafficDistributionGroupUserCommandInput
|
|
916
|
+
| BatchGetFlowAssociationCommandInput
|
|
912
917
|
| ClaimPhoneNumberCommandInput
|
|
913
918
|
| CreateAgentStatusCommandInput
|
|
914
919
|
| CreateContactFlowCommandInput
|
|
@@ -1121,6 +1126,7 @@ export type ServiceOutputTypes =
|
|
|
1121
1126
|
| AssociateRoutingProfileQueuesCommandOutput
|
|
1122
1127
|
| AssociateSecurityKeyCommandOutput
|
|
1123
1128
|
| AssociateTrafficDistributionGroupUserCommandOutput
|
|
1129
|
+
| BatchGetFlowAssociationCommandOutput
|
|
1124
1130
|
| ClaimPhoneNumberCommandOutput
|
|
1125
1131
|
| CreateAgentStatusCommandOutput
|
|
1126
1132
|
| CreateContactFlowCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ConnectClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ConnectClient";
|
|
14
|
+
import {
|
|
15
|
+
BatchGetFlowAssociationRequest,
|
|
16
|
+
BatchGetFlowAssociationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface BatchGetFlowAssociationCommandInput
|
|
20
|
+
extends BatchGetFlowAssociationRequest {}
|
|
21
|
+
export interface BatchGetFlowAssociationCommandOutput
|
|
22
|
+
extends BatchGetFlowAssociationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class BatchGetFlowAssociationCommand extends $Command<
|
|
25
|
+
BatchGetFlowAssociationCommandInput,
|
|
26
|
+
BatchGetFlowAssociationCommandOutput,
|
|
27
|
+
ConnectClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: BatchGetFlowAssociationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: BatchGetFlowAssociationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ConnectClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
BatchGetFlowAssociationCommandInput,
|
|
38
|
+
BatchGetFlowAssociationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
DescribeUserHierarchyStructureResponse,
|
|
17
|
-
} from "../models/models_0";
|
|
14
|
+
import { DescribeUserHierarchyStructureRequest } from "../models/models_0";
|
|
15
|
+
import { DescribeUserHierarchyStructureResponse } from "../models/models_1";
|
|
18
16
|
export { __MetadataBearer, $Command };
|
|
19
17
|
export interface DescribeUserHierarchyStructureCommandInput
|
|
20
18
|
extends DescribeUserHierarchyStructureRequest {}
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../ConnectClient";
|
|
14
|
-
import { DescribeViewRequest, DescribeViewResponse } from "../models/
|
|
14
|
+
import { DescribeViewRequest, DescribeViewResponse } from "../models/models_1";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface DescribeViewCommandInput extends DescribeViewRequest {}
|
|
17
17
|
export interface DescribeViewCommandOutput
|
|
@@ -10,6 +10,7 @@ export * from "./AssociateQueueQuickConnectsCommand";
|
|
|
10
10
|
export * from "./AssociateRoutingProfileQueuesCommand";
|
|
11
11
|
export * from "./AssociateSecurityKeyCommand";
|
|
12
12
|
export * from "./AssociateTrafficDistributionGroupUserCommand";
|
|
13
|
+
export * from "./BatchGetFlowAssociationCommand";
|
|
13
14
|
export * from "./ClaimPhoneNumberCommand";
|
|
14
15
|
export * from "./CreateAgentStatusCommand";
|
|
15
16
|
export * from "./CreateContactFlowCommand";
|
|
@@ -151,6 +151,8 @@ export interface AgentStatus {
|
|
|
151
151
|
DisplayOrder?: number;
|
|
152
152
|
State?: AgentStatusState;
|
|
153
153
|
Tags?: Record<string, string>;
|
|
154
|
+
LastModifiedTime?: Date;
|
|
155
|
+
LastModifiedRegion?: string;
|
|
154
156
|
}
|
|
155
157
|
export interface AgentStatusReference {
|
|
156
158
|
StatusStartTimestamp?: Date;
|
|
@@ -162,6 +164,8 @@ export interface AgentStatusSummary {
|
|
|
162
164
|
Arn?: string;
|
|
163
165
|
Name?: string;
|
|
164
166
|
Type?: AgentStatusType;
|
|
167
|
+
LastModifiedTime?: Date;
|
|
168
|
+
LastModifiedRegion?: string;
|
|
165
169
|
}
|
|
166
170
|
export declare const MonitorCapability: {
|
|
167
171
|
readonly BARGE: "BARGE";
|
|
@@ -349,6 +353,25 @@ export interface AssociateTrafficDistributionGroupUserRequest {
|
|
|
349
353
|
InstanceId: string | undefined;
|
|
350
354
|
}
|
|
351
355
|
export interface AssociateTrafficDistributionGroupUserResponse {}
|
|
356
|
+
export declare const ListFlowAssociationResourceType: {
|
|
357
|
+
readonly SMS_PHONE_NUMBER: "SMS_PHONE_NUMBER";
|
|
358
|
+
readonly VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER";
|
|
359
|
+
};
|
|
360
|
+
export type ListFlowAssociationResourceType =
|
|
361
|
+
(typeof ListFlowAssociationResourceType)[keyof typeof ListFlowAssociationResourceType];
|
|
362
|
+
export interface BatchGetFlowAssociationRequest {
|
|
363
|
+
InstanceId: string | undefined;
|
|
364
|
+
ResourceIds: string[] | undefined;
|
|
365
|
+
ResourceType?: ListFlowAssociationResourceType;
|
|
366
|
+
}
|
|
367
|
+
export interface FlowAssociationSummary {
|
|
368
|
+
ResourceId?: string;
|
|
369
|
+
FlowId?: string;
|
|
370
|
+
ResourceType?: ListFlowAssociationResourceType;
|
|
371
|
+
}
|
|
372
|
+
export interface BatchGetFlowAssociationResponse {
|
|
373
|
+
FlowAssociationSummaryList?: FlowAssociationSummary[];
|
|
374
|
+
}
|
|
352
375
|
export interface ClaimPhoneNumberRequest {
|
|
353
376
|
TargetArn?: string;
|
|
354
377
|
InstanceId?: string;
|
|
@@ -1498,6 +1521,8 @@ export interface HoursOfOperation {
|
|
|
1498
1521
|
TimeZone?: string;
|
|
1499
1522
|
Config?: HoursOfOperationConfig[];
|
|
1500
1523
|
Tags?: Record<string, string>;
|
|
1524
|
+
LastModifiedTime?: Date;
|
|
1525
|
+
LastModifiedRegion?: string;
|
|
1501
1526
|
}
|
|
1502
1527
|
export interface DescribeHoursOfOperationResponse {
|
|
1503
1528
|
HoursOfOperation?: HoursOfOperation;
|
|
@@ -1854,6 +1879,8 @@ export interface Prompt {
|
|
|
1854
1879
|
Name?: string;
|
|
1855
1880
|
Description?: string;
|
|
1856
1881
|
Tags?: Record<string, string>;
|
|
1882
|
+
LastModifiedTime?: Date;
|
|
1883
|
+
LastModifiedRegion?: string;
|
|
1857
1884
|
}
|
|
1858
1885
|
export interface DescribePromptResponse {
|
|
1859
1886
|
Prompt?: Prompt;
|
|
@@ -1877,6 +1904,8 @@ export interface Queue {
|
|
|
1877
1904
|
MaxContacts?: number;
|
|
1878
1905
|
Status?: QueueStatus;
|
|
1879
1906
|
Tags?: Record<string, string>;
|
|
1907
|
+
LastModifiedTime?: Date;
|
|
1908
|
+
LastModifiedRegion?: string;
|
|
1880
1909
|
}
|
|
1881
1910
|
export interface DescribeQueueResponse {
|
|
1882
1911
|
Queue?: Queue;
|
|
@@ -1892,6 +1921,8 @@ export interface QuickConnect {
|
|
|
1892
1921
|
Description?: string;
|
|
1893
1922
|
QuickConnectConfig?: QuickConnectConfig;
|
|
1894
1923
|
Tags?: Record<string, string>;
|
|
1924
|
+
LastModifiedTime?: Date;
|
|
1925
|
+
LastModifiedRegion?: string;
|
|
1895
1926
|
}
|
|
1896
1927
|
export interface DescribeQuickConnectResponse {
|
|
1897
1928
|
QuickConnect?: QuickConnect;
|
|
@@ -1912,6 +1943,9 @@ export interface RoutingProfile {
|
|
|
1912
1943
|
NumberOfAssociatedQueues?: number;
|
|
1913
1944
|
NumberOfAssociatedUsers?: number;
|
|
1914
1945
|
AgentAvailabilityTimer?: AgentAvailabilityTimer;
|
|
1946
|
+
LastModifiedTime?: Date;
|
|
1947
|
+
LastModifiedRegion?: string;
|
|
1948
|
+
IsDefault?: boolean;
|
|
1915
1949
|
}
|
|
1916
1950
|
export interface DescribeRoutingProfileResponse {
|
|
1917
1951
|
RoutingProfile?: RoutingProfile;
|
|
@@ -1949,6 +1983,8 @@ export interface SecurityProfile {
|
|
|
1949
1983
|
Tags?: Record<string, string>;
|
|
1950
1984
|
AllowedAccessControlTags?: Record<string, string>;
|
|
1951
1985
|
TagRestrictedResources?: string[];
|
|
1986
|
+
LastModifiedTime?: Date;
|
|
1987
|
+
LastModifiedRegion?: string;
|
|
1952
1988
|
}
|
|
1953
1989
|
export interface DescribeSecurityProfileResponse {
|
|
1954
1990
|
SecurityProfile?: SecurityProfile;
|
|
@@ -1994,6 +2030,8 @@ export interface User {
|
|
|
1994
2030
|
RoutingProfileId?: string;
|
|
1995
2031
|
HierarchyGroupId?: string;
|
|
1996
2032
|
Tags?: Record<string, string>;
|
|
2033
|
+
LastModifiedTime?: Date;
|
|
2034
|
+
LastModifiedRegion?: string;
|
|
1997
2035
|
}
|
|
1998
2036
|
export interface DescribeUserResponse {
|
|
1999
2037
|
User?: User;
|
|
@@ -2006,6 +2044,8 @@ export interface HierarchyGroupSummary {
|
|
|
2006
2044
|
Id?: string;
|
|
2007
2045
|
Arn?: string;
|
|
2008
2046
|
Name?: string;
|
|
2047
|
+
LastModifiedTime?: Date;
|
|
2048
|
+
LastModifiedRegion?: string;
|
|
2009
2049
|
}
|
|
2010
2050
|
export interface HierarchyPath {
|
|
2011
2051
|
LevelOne?: HierarchyGroupSummary;
|
|
@@ -2021,6 +2061,8 @@ export interface HierarchyGroup {
|
|
|
2021
2061
|
LevelId?: string;
|
|
2022
2062
|
HierarchyPath?: HierarchyPath;
|
|
2023
2063
|
Tags?: Record<string, string>;
|
|
2064
|
+
LastModifiedTime?: Date;
|
|
2065
|
+
LastModifiedRegion?: string;
|
|
2024
2066
|
}
|
|
2025
2067
|
export interface DescribeUserHierarchyGroupResponse {
|
|
2026
2068
|
HierarchyGroup?: HierarchyGroup;
|
|
@@ -2032,23 +2074,8 @@ export interface HierarchyLevel {
|
|
|
2032
2074
|
Id?: string;
|
|
2033
2075
|
Arn?: string;
|
|
2034
2076
|
Name?: string;
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
LevelOne?: HierarchyLevel;
|
|
2038
|
-
LevelTwo?: HierarchyLevel;
|
|
2039
|
-
LevelThree?: HierarchyLevel;
|
|
2040
|
-
LevelFour?: HierarchyLevel;
|
|
2041
|
-
LevelFive?: HierarchyLevel;
|
|
2042
|
-
}
|
|
2043
|
-
export interface DescribeUserHierarchyStructureResponse {
|
|
2044
|
-
HierarchyStructure?: HierarchyStructure;
|
|
2045
|
-
}
|
|
2046
|
-
export interface DescribeViewRequest {
|
|
2047
|
-
InstanceId: string | undefined;
|
|
2048
|
-
ViewId: string | undefined;
|
|
2049
|
-
}
|
|
2050
|
-
export interface DescribeViewResponse {
|
|
2051
|
-
View?: View;
|
|
2077
|
+
LastModifiedTime?: Date;
|
|
2078
|
+
LastModifiedRegion?: string;
|
|
2052
2079
|
}
|
|
2053
2080
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
2054
2081
|
obj: CreateInstanceRequest
|
|
@@ -2071,6 +2098,3 @@ export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
|
2071
2098
|
export declare const DescribeInstanceResponseFilterSensitiveLog: (
|
|
2072
2099
|
obj: DescribeInstanceResponse
|
|
2073
2100
|
) => any;
|
|
2074
|
-
export declare const DescribeViewResponseFilterSensitiveLog: (
|
|
2075
|
-
obj: DescribeViewResponse
|
|
2076
|
-
) => any;
|
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
EvaluationStatus,
|
|
25
25
|
EventSourceName,
|
|
26
26
|
HierarchyGroupSummary,
|
|
27
|
+
HierarchyLevel,
|
|
27
28
|
HoursOfOperation,
|
|
28
29
|
HoursOfOperationConfig,
|
|
29
30
|
InstanceAttributeType,
|
|
@@ -54,11 +55,29 @@ import {
|
|
|
54
55
|
TrafficDistributionGroupStatus,
|
|
55
56
|
UseCaseType,
|
|
56
57
|
UserPhoneConfig,
|
|
58
|
+
View,
|
|
57
59
|
ViewStatus,
|
|
58
60
|
ViewType,
|
|
59
61
|
VocabularyLanguageCode,
|
|
60
62
|
VocabularyState,
|
|
61
63
|
} from "./models_0";
|
|
64
|
+
export interface HierarchyStructure {
|
|
65
|
+
LevelOne?: HierarchyLevel;
|
|
66
|
+
LevelTwo?: HierarchyLevel;
|
|
67
|
+
LevelThree?: HierarchyLevel;
|
|
68
|
+
LevelFour?: HierarchyLevel;
|
|
69
|
+
LevelFive?: HierarchyLevel;
|
|
70
|
+
}
|
|
71
|
+
export interface DescribeUserHierarchyStructureResponse {
|
|
72
|
+
HierarchyStructure?: HierarchyStructure;
|
|
73
|
+
}
|
|
74
|
+
export interface DescribeViewRequest {
|
|
75
|
+
InstanceId: string | undefined;
|
|
76
|
+
ViewId: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface DescribeViewResponse {
|
|
79
|
+
View?: View;
|
|
80
|
+
}
|
|
62
81
|
export interface DescribeVocabularyRequest {
|
|
63
82
|
InstanceId: string | undefined;
|
|
64
83
|
VocabularyId: string | undefined;
|
|
@@ -424,6 +443,8 @@ export interface GetPromptFileRequest {
|
|
|
424
443
|
}
|
|
425
444
|
export interface GetPromptFileResponse {
|
|
426
445
|
PromptPresignedUrl?: string;
|
|
446
|
+
LastModifiedTime?: Date;
|
|
447
|
+
LastModifiedRegion?: string;
|
|
427
448
|
}
|
|
428
449
|
export interface GetTaskTemplateRequest {
|
|
429
450
|
InstanceId: string | undefined;
|
|
@@ -748,6 +769,8 @@ export interface HoursOfOperationSummary {
|
|
|
748
769
|
Id?: string;
|
|
749
770
|
Arn?: string;
|
|
750
771
|
Name?: string;
|
|
772
|
+
LastModifiedTime?: Date;
|
|
773
|
+
LastModifiedRegion?: string;
|
|
751
774
|
}
|
|
752
775
|
export interface ListHoursOfOperationsResponse {
|
|
753
776
|
HoursOfOperationSummaryList?: HoursOfOperationSummary[];
|
|
@@ -879,6 +902,8 @@ export interface PromptSummary {
|
|
|
879
902
|
Id?: string;
|
|
880
903
|
Arn?: string;
|
|
881
904
|
Name?: string;
|
|
905
|
+
LastModifiedTime?: Date;
|
|
906
|
+
LastModifiedRegion?: string;
|
|
882
907
|
}
|
|
883
908
|
export interface ListPromptsResponse {
|
|
884
909
|
PromptSummaryList?: PromptSummary[];
|
|
@@ -895,10 +920,14 @@ export interface QuickConnectSummary {
|
|
|
895
920
|
Arn?: string;
|
|
896
921
|
Name?: string;
|
|
897
922
|
QuickConnectType?: QuickConnectType;
|
|
923
|
+
LastModifiedTime?: Date;
|
|
924
|
+
LastModifiedRegion?: string;
|
|
898
925
|
}
|
|
899
926
|
export interface ListQueueQuickConnectsResponse {
|
|
900
927
|
NextToken?: string;
|
|
901
928
|
QuickConnectSummaryList?: QuickConnectSummary[];
|
|
929
|
+
LastModifiedTime?: Date;
|
|
930
|
+
LastModifiedRegion?: string;
|
|
902
931
|
}
|
|
903
932
|
export declare const QueueType: {
|
|
904
933
|
readonly AGENT: "AGENT";
|
|
@@ -916,6 +945,8 @@ export interface QueueSummary {
|
|
|
916
945
|
Arn?: string;
|
|
917
946
|
Name?: string;
|
|
918
947
|
QueueType?: QueueType;
|
|
948
|
+
LastModifiedTime?: Date;
|
|
949
|
+
LastModifiedRegion?: string;
|
|
919
950
|
}
|
|
920
951
|
export interface ListQueuesResponse {
|
|
921
952
|
QueueSummaryList?: QueueSummary[];
|
|
@@ -948,6 +979,8 @@ export interface RoutingProfileQueueConfigSummary {
|
|
|
948
979
|
export interface ListRoutingProfileQueuesResponse {
|
|
949
980
|
NextToken?: string;
|
|
950
981
|
RoutingProfileQueueConfigSummaryList?: RoutingProfileQueueConfigSummary[];
|
|
982
|
+
LastModifiedTime?: Date;
|
|
983
|
+
LastModifiedRegion?: string;
|
|
951
984
|
}
|
|
952
985
|
export interface ListRoutingProfilesRequest {
|
|
953
986
|
InstanceId: string | undefined;
|
|
@@ -958,6 +991,8 @@ export interface RoutingProfileSummary {
|
|
|
958
991
|
Id?: string;
|
|
959
992
|
Arn?: string;
|
|
960
993
|
Name?: string;
|
|
994
|
+
LastModifiedTime?: Date;
|
|
995
|
+
LastModifiedRegion?: string;
|
|
961
996
|
}
|
|
962
997
|
export interface ListRoutingProfilesResponse {
|
|
963
998
|
RoutingProfileSummaryList?: RoutingProfileSummary[];
|
|
@@ -1007,6 +1042,8 @@ export interface ListSecurityProfileApplicationsRequest {
|
|
|
1007
1042
|
export interface ListSecurityProfileApplicationsResponse {
|
|
1008
1043
|
Applications?: Application[];
|
|
1009
1044
|
NextToken?: string;
|
|
1045
|
+
LastModifiedTime?: Date;
|
|
1046
|
+
LastModifiedRegion?: string;
|
|
1010
1047
|
}
|
|
1011
1048
|
export interface ListSecurityProfilePermissionsRequest {
|
|
1012
1049
|
SecurityProfileId: string | undefined;
|
|
@@ -1017,6 +1054,8 @@ export interface ListSecurityProfilePermissionsRequest {
|
|
|
1017
1054
|
export interface ListSecurityProfilePermissionsResponse {
|
|
1018
1055
|
Permissions?: string[];
|
|
1019
1056
|
NextToken?: string;
|
|
1057
|
+
LastModifiedTime?: Date;
|
|
1058
|
+
LastModifiedRegion?: string;
|
|
1020
1059
|
}
|
|
1021
1060
|
export interface ListSecurityProfilesRequest {
|
|
1022
1061
|
InstanceId: string | undefined;
|
|
@@ -1027,6 +1066,8 @@ export interface SecurityProfileSummary {
|
|
|
1027
1066
|
Id?: string;
|
|
1028
1067
|
Arn?: string;
|
|
1029
1068
|
Name?: string;
|
|
1069
|
+
LastModifiedTime?: Date;
|
|
1070
|
+
LastModifiedRegion?: string;
|
|
1030
1071
|
}
|
|
1031
1072
|
export interface ListSecurityProfilesResponse {
|
|
1032
1073
|
SecurityProfileSummaryList?: SecurityProfileSummary[];
|
|
@@ -1120,6 +1161,8 @@ export interface UserSummary {
|
|
|
1120
1161
|
Id?: string;
|
|
1121
1162
|
Arn?: string;
|
|
1122
1163
|
Username?: string;
|
|
1164
|
+
LastModifiedTime?: Date;
|
|
1165
|
+
LastModifiedRegion?: string;
|
|
1123
1166
|
}
|
|
1124
1167
|
export interface ListUsersResponse {
|
|
1125
1168
|
UserSummaryList?: UserSummary[];
|
|
@@ -1694,46 +1737,9 @@ export declare const ParticipantTimerType: {
|
|
|
1694
1737
|
};
|
|
1695
1738
|
export type ParticipantTimerType =
|
|
1696
1739
|
(typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
|
|
1697
|
-
export declare const
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
export type ParticipantTimerAction =
|
|
1701
|
-
(typeof ParticipantTimerAction)[keyof typeof ParticipantTimerAction];
|
|
1702
|
-
export type ParticipantTimerValue =
|
|
1703
|
-
| ParticipantTimerValue.ParticipantTimerActionMember
|
|
1704
|
-
| ParticipantTimerValue.ParticipantTimerDurationInMinutesMember
|
|
1705
|
-
| ParticipantTimerValue.$UnknownMember;
|
|
1706
|
-
export declare namespace ParticipantTimerValue {
|
|
1707
|
-
interface ParticipantTimerActionMember {
|
|
1708
|
-
ParticipantTimerAction: ParticipantTimerAction;
|
|
1709
|
-
ParticipantTimerDurationInMinutes?: never;
|
|
1710
|
-
$unknown?: never;
|
|
1711
|
-
}
|
|
1712
|
-
interface ParticipantTimerDurationInMinutesMember {
|
|
1713
|
-
ParticipantTimerAction?: never;
|
|
1714
|
-
ParticipantTimerDurationInMinutes: number;
|
|
1715
|
-
$unknown?: never;
|
|
1716
|
-
}
|
|
1717
|
-
interface $UnknownMember {
|
|
1718
|
-
ParticipantTimerAction?: never;
|
|
1719
|
-
ParticipantTimerDurationInMinutes?: never;
|
|
1720
|
-
$unknown: [string, any];
|
|
1721
|
-
}
|
|
1722
|
-
interface Visitor<T> {
|
|
1723
|
-
ParticipantTimerAction: (value: ParticipantTimerAction) => T;
|
|
1724
|
-
ParticipantTimerDurationInMinutes: (value: number) => T;
|
|
1725
|
-
_: (name: string, value: any) => T;
|
|
1726
|
-
}
|
|
1727
|
-
const visit: <T>(value: ParticipantTimerValue, visitor: Visitor<T>) => T;
|
|
1728
|
-
}
|
|
1729
|
-
export interface ParticipantTimerConfiguration {
|
|
1730
|
-
ParticipantRole: TimerEligibleParticipantRoles | undefined;
|
|
1731
|
-
TimerType: ParticipantTimerType | undefined;
|
|
1732
|
-
TimerValue: ParticipantTimerValue | undefined;
|
|
1733
|
-
}
|
|
1734
|
-
export interface ChatParticipantRoleConfig {
|
|
1735
|
-
ParticipantTimerConfigList: ParticipantTimerConfiguration[] | undefined;
|
|
1736
|
-
}
|
|
1740
|
+
export declare const DescribeViewResponseFilterSensitiveLog: (
|
|
1741
|
+
obj: DescribeViewResponse
|
|
1742
|
+
) => any;
|
|
1737
1743
|
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1738
1744
|
export declare const GetFederationTokenResponseFilterSensitiveLog: (
|
|
1739
1745
|
obj: GetFederationTokenResponse
|
|
@@ -24,9 +24,9 @@ import {
|
|
|
24
24
|
ViewStatus,
|
|
25
25
|
} from "./models_0";
|
|
26
26
|
import {
|
|
27
|
-
ChatParticipantRoleConfig,
|
|
28
27
|
HierarchyGroupCondition,
|
|
29
28
|
HoursOfOperationSearchFilter,
|
|
29
|
+
ParticipantTimerType,
|
|
30
30
|
PromptSearchFilter,
|
|
31
31
|
QueueSearchFilter,
|
|
32
32
|
QuickConnectSearchFilter,
|
|
@@ -36,8 +36,49 @@ import {
|
|
|
36
36
|
SignInConfig,
|
|
37
37
|
StringCondition,
|
|
38
38
|
TelephonyConfig,
|
|
39
|
+
TimerEligibleParticipantRoles,
|
|
39
40
|
UserSearchFilter,
|
|
40
41
|
} from "./models_1";
|
|
42
|
+
export declare const ParticipantTimerAction: {
|
|
43
|
+
readonly Unset: "Unset";
|
|
44
|
+
};
|
|
45
|
+
export type ParticipantTimerAction =
|
|
46
|
+
(typeof ParticipantTimerAction)[keyof typeof ParticipantTimerAction];
|
|
47
|
+
export type ParticipantTimerValue =
|
|
48
|
+
| ParticipantTimerValue.ParticipantTimerActionMember
|
|
49
|
+
| ParticipantTimerValue.ParticipantTimerDurationInMinutesMember
|
|
50
|
+
| ParticipantTimerValue.$UnknownMember;
|
|
51
|
+
export declare namespace ParticipantTimerValue {
|
|
52
|
+
interface ParticipantTimerActionMember {
|
|
53
|
+
ParticipantTimerAction: ParticipantTimerAction;
|
|
54
|
+
ParticipantTimerDurationInMinutes?: never;
|
|
55
|
+
$unknown?: never;
|
|
56
|
+
}
|
|
57
|
+
interface ParticipantTimerDurationInMinutesMember {
|
|
58
|
+
ParticipantTimerAction?: never;
|
|
59
|
+
ParticipantTimerDurationInMinutes: number;
|
|
60
|
+
$unknown?: never;
|
|
61
|
+
}
|
|
62
|
+
interface $UnknownMember {
|
|
63
|
+
ParticipantTimerAction?: never;
|
|
64
|
+
ParticipantTimerDurationInMinutes?: never;
|
|
65
|
+
$unknown: [string, any];
|
|
66
|
+
}
|
|
67
|
+
interface Visitor<T> {
|
|
68
|
+
ParticipantTimerAction: (value: ParticipantTimerAction) => T;
|
|
69
|
+
ParticipantTimerDurationInMinutes: (value: number) => T;
|
|
70
|
+
_: (name: string, value: any) => T;
|
|
71
|
+
}
|
|
72
|
+
const visit: <T>(value: ParticipantTimerValue, visitor: Visitor<T>) => T;
|
|
73
|
+
}
|
|
74
|
+
export interface ParticipantTimerConfiguration {
|
|
75
|
+
ParticipantRole: TimerEligibleParticipantRoles | undefined;
|
|
76
|
+
TimerType: ParticipantTimerType | undefined;
|
|
77
|
+
TimerValue: ParticipantTimerValue | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface ChatParticipantRoleConfig {
|
|
80
|
+
ParticipantTimerConfigList: ParticipantTimerConfiguration[] | undefined;
|
|
81
|
+
}
|
|
41
82
|
export type UpdateParticipantRoleConfigChannelInfo =
|
|
42
83
|
| UpdateParticipantRoleConfigChannelInfo.ChatMember
|
|
43
84
|
| UpdateParticipantRoleConfigChannelInfo.$UnknownMember;
|
|
@@ -51,6 +51,10 @@ import {
|
|
|
51
51
|
AssociateTrafficDistributionGroupUserCommandInput,
|
|
52
52
|
AssociateTrafficDistributionGroupUserCommandOutput,
|
|
53
53
|
} from "../commands/AssociateTrafficDistributionGroupUserCommand";
|
|
54
|
+
import {
|
|
55
|
+
BatchGetFlowAssociationCommandInput,
|
|
56
|
+
BatchGetFlowAssociationCommandOutput,
|
|
57
|
+
} from "../commands/BatchGetFlowAssociationCommand";
|
|
54
58
|
import {
|
|
55
59
|
ClaimPhoneNumberCommandInput,
|
|
56
60
|
ClaimPhoneNumberCommandOutput,
|
|
@@ -895,6 +899,10 @@ export declare const se_AssociateTrafficDistributionGroupUserCommand: (
|
|
|
895
899
|
input: AssociateTrafficDistributionGroupUserCommandInput,
|
|
896
900
|
context: __SerdeContext
|
|
897
901
|
) => Promise<__HttpRequest>;
|
|
902
|
+
export declare const se_BatchGetFlowAssociationCommand: (
|
|
903
|
+
input: BatchGetFlowAssociationCommandInput,
|
|
904
|
+
context: __SerdeContext
|
|
905
|
+
) => Promise<__HttpRequest>;
|
|
898
906
|
export declare const se_ClaimPhoneNumberCommand: (
|
|
899
907
|
input: ClaimPhoneNumberCommandInput,
|
|
900
908
|
context: __SerdeContext
|
|
@@ -1739,6 +1747,10 @@ export declare const de_AssociateTrafficDistributionGroupUserCommand: (
|
|
|
1739
1747
|
output: __HttpResponse,
|
|
1740
1748
|
context: __SerdeContext
|
|
1741
1749
|
) => Promise<AssociateTrafficDistributionGroupUserCommandOutput>;
|
|
1750
|
+
export declare const de_BatchGetFlowAssociationCommand: (
|
|
1751
|
+
output: __HttpResponse,
|
|
1752
|
+
context: __SerdeContext
|
|
1753
|
+
) => Promise<BatchGetFlowAssociationCommandOutput>;
|
|
1742
1754
|
export declare const de_ClaimPhoneNumberCommand: (
|
|
1743
1755
|
output: __HttpResponse,
|
|
1744
1756
|
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.441.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,9 +21,9 @@
|
|
|
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/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.441.0",
|
|
25
|
+
"@aws-sdk/core": "3.441.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.441.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|