@aws-sdk/client-connect 3.606.0 → 3.608.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 +38 -0
- package/dist-cjs/index.js +184 -5
- package/dist-es/Connect.js +6 -0
- package/dist-es/commands/DescribeAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/ListAuthenticationProfilesCommand.js +24 -0
- package/dist-es/commands/UpdateAuthenticationProfileCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/pagination/ListAuthenticationProfilesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +116 -0
- package/dist-types/Connect.d.ts +36 -1
- package/dist-types/ConnectClient.d.ts +20 -3
- package/dist-types/commands/DescribeAuthenticationProfileCommand.d.ts +95 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +14 -0
- package/dist-types/commands/ImportPhoneNumberCommand.d.ts +16 -0
- package/dist-types/commands/ListAuthenticationProfilesCommand.d.ts +89 -0
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ListViewsCommand.d.ts +1 -2
- package/dist-types/commands/StartAttachedFileUploadCommand.d.ts +1 -2
- package/dist-types/commands/StartChatContactCommand.d.ts +14 -2
- package/dist-types/commands/StartContactStreamingCommand.d.ts +14 -0
- package/dist-types/commands/UpdateAuthenticationProfileCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +15 -1
- package/dist-types/models/models_0.d.ts +152 -141
- package/dist-types/models/models_1.d.ts +268 -228
- package/dist-types/models/models_2.d.ts +255 -13
- package/dist-types/pagination/ListAuthenticationProfilesPaginator.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 +51 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeAuthenticationProfileCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListAuthenticationProfilesCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListUserHierarchyGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProficienciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListViewsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UpdateAuthenticationProfileCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +28 -32
- package/dist-types/ts3.4/models/models_1.d.ts +50 -47
- package/dist-types/ts3.4/models/models_2.d.ts +55 -2
- package/dist-types/ts3.4/pagination/ListAuthenticationProfilesPaginator.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 +1 -1
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
ListAuthenticationProfilesRequest,
|
|
10
|
+
ListAuthenticationProfilesResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAuthenticationProfilesCommandInput
|
|
15
|
+
extends ListAuthenticationProfilesRequest {}
|
|
16
|
+
export interface ListAuthenticationProfilesCommandOutput
|
|
17
|
+
extends ListAuthenticationProfilesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAuthenticationProfilesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAuthenticationProfilesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAuthenticationProfilesCommandInput,
|
|
24
|
+
ListAuthenticationProfilesCommandOutput,
|
|
25
|
+
ConnectClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListAuthenticationProfilesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAuthenticationProfilesCommandInput,
|
|
33
|
+
ListAuthenticationProfilesCommandOutput,
|
|
34
|
+
ConnectClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAuthenticationProfilesCommand extends ListAuthenticationProfilesCommand_base {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListUserHierarchyGroupsRequest,
|
|
10
10
|
ListUserHierarchyGroupsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ListUserHierarchyGroupsCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { ListUsersRequest, ListUsersResponse } from "../models/
|
|
8
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_2";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface ListUsersCommandInput extends ListUsersRequest {}
|
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import { ListViewsRequest } from "../models/
|
|
9
|
-
import { ListViewsResponse } from "../models/models_2";
|
|
8
|
+
import { ListViewsRequest, ListViewsResponse } from "../models/models_2";
|
|
10
9
|
export { __MetadataBearer };
|
|
11
10
|
export { $Command };
|
|
12
11
|
export interface ListViewsCommandInput extends ListViewsRequest {}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { UpdateAuthenticationProfileRequest } from "../models/models_2";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateAuthenticationProfileCommandInput
|
|
12
|
+
extends UpdateAuthenticationProfileRequest {}
|
|
13
|
+
export interface UpdateAuthenticationProfileCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const UpdateAuthenticationProfileCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateAuthenticationProfileCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateAuthenticationProfileCommandInput,
|
|
20
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
21
|
+
ConnectClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateAuthenticationProfileCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateAuthenticationProfileCommandInput,
|
|
29
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
30
|
+
ConnectClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateAuthenticationProfileCommand extends UpdateAuthenticationProfileCommand_base {}
|
|
@@ -69,6 +69,7 @@ export * from "./DeleteViewCommand";
|
|
|
69
69
|
export * from "./DeleteViewVersionCommand";
|
|
70
70
|
export * from "./DeleteVocabularyCommand";
|
|
71
71
|
export * from "./DescribeAgentStatusCommand";
|
|
72
|
+
export * from "./DescribeAuthenticationProfileCommand";
|
|
72
73
|
export * from "./DescribeContactCommand";
|
|
73
74
|
export * from "./DescribeContactEvaluationCommand";
|
|
74
75
|
export * from "./DescribeContactFlowCommand";
|
|
@@ -121,6 +122,7 @@ export * from "./ImportPhoneNumberCommand";
|
|
|
121
122
|
export * from "./ListAgentStatusesCommand";
|
|
122
123
|
export * from "./ListAnalyticsDataAssociationsCommand";
|
|
123
124
|
export * from "./ListApprovedOriginsCommand";
|
|
125
|
+
export * from "./ListAuthenticationProfilesCommand";
|
|
124
126
|
export * from "./ListBotsCommand";
|
|
125
127
|
export * from "./ListContactEvaluationsCommand";
|
|
126
128
|
export * from "./ListContactFlowModulesCommand";
|
|
@@ -203,6 +205,7 @@ export * from "./TransferContactCommand";
|
|
|
203
205
|
export * from "./UntagContactCommand";
|
|
204
206
|
export * from "./UntagResourceCommand";
|
|
205
207
|
export * from "./UpdateAgentStatusCommand";
|
|
208
|
+
export * from "./UpdateAuthenticationProfileCommand";
|
|
206
209
|
export * from "./UpdateContactAttributesCommand";
|
|
207
210
|
export * from "./UpdateContactCommand";
|
|
208
211
|
export * from "./UpdateContactEvaluationCommand";
|
|
@@ -174,6 +174,9 @@ export interface AudioQualityMetricsInfo {
|
|
|
174
174
|
export interface AgentQualityMetrics {
|
|
175
175
|
Audio?: AudioQualityMetricsInfo;
|
|
176
176
|
}
|
|
177
|
+
export interface AgentsCriteria {
|
|
178
|
+
AgentIds?: string[];
|
|
179
|
+
}
|
|
177
180
|
export declare const AgentStatusState: {
|
|
178
181
|
readonly DISABLED: "DISABLED";
|
|
179
182
|
readonly ENABLED: "ENABLED";
|
|
@@ -1685,6 +1688,27 @@ export interface DescribeAgentStatusRequest {
|
|
|
1685
1688
|
export interface DescribeAgentStatusResponse {
|
|
1686
1689
|
AgentStatus?: AgentStatus;
|
|
1687
1690
|
}
|
|
1691
|
+
export interface DescribeAuthenticationProfileRequest {
|
|
1692
|
+
AuthenticationProfileId: string | undefined;
|
|
1693
|
+
InstanceId: string | undefined;
|
|
1694
|
+
}
|
|
1695
|
+
export interface AuthenticationProfile {
|
|
1696
|
+
Id?: string;
|
|
1697
|
+
Arn?: string;
|
|
1698
|
+
Name?: string;
|
|
1699
|
+
Description?: string;
|
|
1700
|
+
AllowedIps?: string[];
|
|
1701
|
+
BlockedIps?: string[];
|
|
1702
|
+
IsDefault?: boolean;
|
|
1703
|
+
CreatedTime?: Date;
|
|
1704
|
+
LastModifiedTime?: Date;
|
|
1705
|
+
LastModifiedRegion?: string;
|
|
1706
|
+
PeriodicSessionDuration?: number;
|
|
1707
|
+
MaxSessionDuration?: number;
|
|
1708
|
+
}
|
|
1709
|
+
export interface DescribeAuthenticationProfileResponse {
|
|
1710
|
+
AuthenticationProfile?: AuthenticationProfile;
|
|
1711
|
+
}
|
|
1688
1712
|
export interface DescribeContactRequest {
|
|
1689
1713
|
InstanceId: string | undefined;
|
|
1690
1714
|
ContactId: string | undefined;
|
|
@@ -1733,10 +1757,14 @@ export interface Expiry {
|
|
|
1733
1757
|
DurationInSeconds?: number;
|
|
1734
1758
|
ExpiryTimestamp?: Date;
|
|
1735
1759
|
}
|
|
1760
|
+
export interface MatchCriteria {
|
|
1761
|
+
AgentsCriteria?: AgentsCriteria;
|
|
1762
|
+
}
|
|
1736
1763
|
export interface AttributeCondition {
|
|
1737
1764
|
Name?: string;
|
|
1738
1765
|
Value?: string;
|
|
1739
1766
|
ProficiencyLevel?: number;
|
|
1767
|
+
MatchCriteria?: MatchCriteria;
|
|
1740
1768
|
ComparisonOperator?: string;
|
|
1741
1769
|
}
|
|
1742
1770
|
export declare const RoutingCriteriaStepStatus: {
|
|
@@ -1799,38 +1827,6 @@ export interface EvaluationAnswerOutput {
|
|
|
1799
1827
|
Value?: EvaluationAnswerData;
|
|
1800
1828
|
SystemSuggestedValue?: EvaluationAnswerData;
|
|
1801
1829
|
}
|
|
1802
|
-
export interface EvaluationScore {
|
|
1803
|
-
Percentage?: number;
|
|
1804
|
-
NotApplicable?: boolean;
|
|
1805
|
-
AutomaticFail?: boolean;
|
|
1806
|
-
}
|
|
1807
|
-
export interface EvaluationMetadata {
|
|
1808
|
-
ContactId: string | undefined;
|
|
1809
|
-
EvaluatorArn: string | undefined;
|
|
1810
|
-
ContactAgentId?: string;
|
|
1811
|
-
Score?: EvaluationScore;
|
|
1812
|
-
}
|
|
1813
|
-
export interface EvaluationNote {
|
|
1814
|
-
Value?: string;
|
|
1815
|
-
}
|
|
1816
|
-
export declare const EvaluationStatus: {
|
|
1817
|
-
readonly DRAFT: "DRAFT";
|
|
1818
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
1819
|
-
};
|
|
1820
|
-
export type EvaluationStatus =
|
|
1821
|
-
(typeof EvaluationStatus)[keyof typeof EvaluationStatus];
|
|
1822
|
-
export interface Evaluation {
|
|
1823
|
-
EvaluationId: string | undefined;
|
|
1824
|
-
EvaluationArn: string | undefined;
|
|
1825
|
-
Metadata: EvaluationMetadata | undefined;
|
|
1826
|
-
Answers: Record<string, EvaluationAnswerOutput> | undefined;
|
|
1827
|
-
Notes: Record<string, EvaluationNote> | undefined;
|
|
1828
|
-
Status: EvaluationStatus | undefined;
|
|
1829
|
-
Scores?: Record<string, EvaluationScore>;
|
|
1830
|
-
CreatedTime: Date | undefined;
|
|
1831
|
-
LastModifiedTime: Date | undefined;
|
|
1832
|
-
Tags?: Record<string, string>;
|
|
1833
|
-
}
|
|
1834
1830
|
export declare const CreateInstanceRequestFilterSensitiveLog: (
|
|
1835
1831
|
obj: CreateInstanceRequest
|
|
1836
1832
|
) => any;
|
|
@@ -17,8 +17,7 @@ import {
|
|
|
17
17
|
CreatedByInfo,
|
|
18
18
|
DirectoryType,
|
|
19
19
|
Distribution,
|
|
20
|
-
|
|
21
|
-
EvaluationStatus,
|
|
20
|
+
EvaluationAnswerOutput,
|
|
22
21
|
EventSourceName,
|
|
23
22
|
FileStatusType,
|
|
24
23
|
FileUseCaseType,
|
|
@@ -51,12 +50,42 @@ import {
|
|
|
51
50
|
UseCaseType,
|
|
52
51
|
UserIdentityInfo,
|
|
53
52
|
UserPhoneConfig,
|
|
54
|
-
UserProficiency,
|
|
55
53
|
View,
|
|
56
|
-
ViewType,
|
|
57
54
|
VocabularyLanguageCode,
|
|
58
55
|
VocabularyState,
|
|
59
56
|
} from "./models_0";
|
|
57
|
+
export interface EvaluationScore {
|
|
58
|
+
Percentage?: number;
|
|
59
|
+
NotApplicable?: boolean;
|
|
60
|
+
AutomaticFail?: boolean;
|
|
61
|
+
}
|
|
62
|
+
export interface EvaluationMetadata {
|
|
63
|
+
ContactId: string | undefined;
|
|
64
|
+
EvaluatorArn: string | undefined;
|
|
65
|
+
ContactAgentId?: string;
|
|
66
|
+
Score?: EvaluationScore;
|
|
67
|
+
}
|
|
68
|
+
export interface EvaluationNote {
|
|
69
|
+
Value?: string;
|
|
70
|
+
}
|
|
71
|
+
export declare const EvaluationStatus: {
|
|
72
|
+
readonly DRAFT: "DRAFT";
|
|
73
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
74
|
+
};
|
|
75
|
+
export type EvaluationStatus =
|
|
76
|
+
(typeof EvaluationStatus)[keyof typeof EvaluationStatus];
|
|
77
|
+
export interface Evaluation {
|
|
78
|
+
EvaluationId: string | undefined;
|
|
79
|
+
EvaluationArn: string | undefined;
|
|
80
|
+
Metadata: EvaluationMetadata | undefined;
|
|
81
|
+
Answers: Record<string, EvaluationAnswerOutput> | undefined;
|
|
82
|
+
Notes: Record<string, EvaluationNote> | undefined;
|
|
83
|
+
Status: EvaluationStatus | undefined;
|
|
84
|
+
Scores?: Record<string, EvaluationScore>;
|
|
85
|
+
CreatedTime: Date | undefined;
|
|
86
|
+
LastModifiedTime: Date | undefined;
|
|
87
|
+
Tags?: Record<string, string>;
|
|
88
|
+
}
|
|
60
89
|
export declare class ContactFlowNotPublishedException extends __BaseException {
|
|
61
90
|
readonly name: "ContactFlowNotPublishedException";
|
|
62
91
|
readonly $fault: "client";
|
|
@@ -1241,6 +1270,23 @@ export interface ListApprovedOriginsResponse {
|
|
|
1241
1270
|
Origins?: string[];
|
|
1242
1271
|
NextToken?: string;
|
|
1243
1272
|
}
|
|
1273
|
+
export interface ListAuthenticationProfilesRequest {
|
|
1274
|
+
InstanceId: string | undefined;
|
|
1275
|
+
MaxResults?: number;
|
|
1276
|
+
NextToken?: string;
|
|
1277
|
+
}
|
|
1278
|
+
export interface AuthenticationProfileSummary {
|
|
1279
|
+
Id?: string;
|
|
1280
|
+
Arn?: string;
|
|
1281
|
+
Name?: string;
|
|
1282
|
+
IsDefault?: boolean;
|
|
1283
|
+
LastModifiedTime?: Date;
|
|
1284
|
+
LastModifiedRegion?: string;
|
|
1285
|
+
}
|
|
1286
|
+
export interface ListAuthenticationProfilesResponse {
|
|
1287
|
+
AuthenticationProfileSummaryList?: AuthenticationProfileSummary[];
|
|
1288
|
+
NextToken?: string;
|
|
1289
|
+
}
|
|
1244
1290
|
export declare const LexVersion: {
|
|
1245
1291
|
readonly V1: "V1";
|
|
1246
1292
|
readonly V2: "V2";
|
|
@@ -2129,49 +2175,6 @@ export interface ListUseCasesResponse {
|
|
|
2129
2175
|
UseCaseSummaryList?: UseCase[];
|
|
2130
2176
|
NextToken?: string;
|
|
2131
2177
|
}
|
|
2132
|
-
export interface ListUserHierarchyGroupsRequest {
|
|
2133
|
-
InstanceId: string | undefined;
|
|
2134
|
-
NextToken?: string;
|
|
2135
|
-
MaxResults?: number;
|
|
2136
|
-
}
|
|
2137
|
-
export interface ListUserHierarchyGroupsResponse {
|
|
2138
|
-
UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
|
|
2139
|
-
NextToken?: string;
|
|
2140
|
-
}
|
|
2141
|
-
export interface ListUserProficienciesRequest {
|
|
2142
|
-
InstanceId: string | undefined;
|
|
2143
|
-
UserId: string | undefined;
|
|
2144
|
-
NextToken?: string;
|
|
2145
|
-
MaxResults?: number;
|
|
2146
|
-
}
|
|
2147
|
-
export interface ListUserProficienciesResponse {
|
|
2148
|
-
NextToken?: string;
|
|
2149
|
-
UserProficiencyList?: UserProficiency[];
|
|
2150
|
-
LastModifiedTime?: Date;
|
|
2151
|
-
LastModifiedRegion?: string;
|
|
2152
|
-
}
|
|
2153
|
-
export interface ListUsersRequest {
|
|
2154
|
-
InstanceId: string | undefined;
|
|
2155
|
-
NextToken?: string;
|
|
2156
|
-
MaxResults?: number;
|
|
2157
|
-
}
|
|
2158
|
-
export interface UserSummary {
|
|
2159
|
-
Id?: string;
|
|
2160
|
-
Arn?: string;
|
|
2161
|
-
Username?: string;
|
|
2162
|
-
LastModifiedTime?: Date;
|
|
2163
|
-
LastModifiedRegion?: string;
|
|
2164
|
-
}
|
|
2165
|
-
export interface ListUsersResponse {
|
|
2166
|
-
UserSummaryList?: UserSummary[];
|
|
2167
|
-
NextToken?: string;
|
|
2168
|
-
}
|
|
2169
|
-
export interface ListViewsRequest {
|
|
2170
|
-
InstanceId: string | undefined;
|
|
2171
|
-
Type?: ViewType;
|
|
2172
|
-
NextToken?: string;
|
|
2173
|
-
MaxResults?: number;
|
|
2174
|
-
}
|
|
2175
2178
|
export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
2176
2179
|
export declare const DescribeInstanceResponseFilterSensitiveLog: (
|
|
2177
2180
|
obj: DescribeInstanceResponse
|
|
@@ -19,11 +19,9 @@ import {
|
|
|
19
19
|
Customer,
|
|
20
20
|
CustomerVoiceActivity,
|
|
21
21
|
DisconnectDetails,
|
|
22
|
-
Evaluation,
|
|
23
22
|
EvaluationAnswerData,
|
|
24
23
|
EvaluationFormQuestion,
|
|
25
24
|
EvaluationFormScoringStrategy,
|
|
26
|
-
EvaluationNote,
|
|
27
25
|
Expiry,
|
|
28
26
|
FileStatusType,
|
|
29
27
|
FileUseCaseType,
|
|
@@ -65,7 +63,10 @@ import {
|
|
|
65
63
|
ContactFlowModule,
|
|
66
64
|
ContactFlowModuleState,
|
|
67
65
|
ContactFlowState,
|
|
66
|
+
Evaluation,
|
|
68
67
|
EvaluationFormVersionStatus,
|
|
68
|
+
EvaluationNote,
|
|
69
|
+
HierarchyGroupSummary,
|
|
69
70
|
HoursOfOperation,
|
|
70
71
|
InstanceAttributeType,
|
|
71
72
|
PhoneNumberCountryCode,
|
|
@@ -80,6 +81,49 @@ import {
|
|
|
80
81
|
SortOrder,
|
|
81
82
|
TelephonyConfig,
|
|
82
83
|
} from "./models_1";
|
|
84
|
+
export interface ListUserHierarchyGroupsRequest {
|
|
85
|
+
InstanceId: string | undefined;
|
|
86
|
+
NextToken?: string;
|
|
87
|
+
MaxResults?: number;
|
|
88
|
+
}
|
|
89
|
+
export interface ListUserHierarchyGroupsResponse {
|
|
90
|
+
UserHierarchyGroupSummaryList?: HierarchyGroupSummary[];
|
|
91
|
+
NextToken?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface ListUserProficienciesRequest {
|
|
94
|
+
InstanceId: string | undefined;
|
|
95
|
+
UserId: string | undefined;
|
|
96
|
+
NextToken?: string;
|
|
97
|
+
MaxResults?: number;
|
|
98
|
+
}
|
|
99
|
+
export interface ListUserProficienciesResponse {
|
|
100
|
+
NextToken?: string;
|
|
101
|
+
UserProficiencyList?: UserProficiency[];
|
|
102
|
+
LastModifiedTime?: Date;
|
|
103
|
+
LastModifiedRegion?: string;
|
|
104
|
+
}
|
|
105
|
+
export interface ListUsersRequest {
|
|
106
|
+
InstanceId: string | undefined;
|
|
107
|
+
NextToken?: string;
|
|
108
|
+
MaxResults?: number;
|
|
109
|
+
}
|
|
110
|
+
export interface UserSummary {
|
|
111
|
+
Id?: string;
|
|
112
|
+
Arn?: string;
|
|
113
|
+
Username?: string;
|
|
114
|
+
LastModifiedTime?: Date;
|
|
115
|
+
LastModifiedRegion?: string;
|
|
116
|
+
}
|
|
117
|
+
export interface ListUsersResponse {
|
|
118
|
+
UserSummaryList?: UserSummary[];
|
|
119
|
+
NextToken?: string;
|
|
120
|
+
}
|
|
121
|
+
export interface ListViewsRequest {
|
|
122
|
+
InstanceId: string | undefined;
|
|
123
|
+
Type?: ViewType;
|
|
124
|
+
NextToken?: string;
|
|
125
|
+
MaxResults?: number;
|
|
126
|
+
}
|
|
83
127
|
export interface ViewSummary {
|
|
84
128
|
Id?: string;
|
|
85
129
|
Arn?: string;
|
|
@@ -805,6 +849,15 @@ export interface UpdateAgentStatusRequest {
|
|
|
805
849
|
DisplayOrder?: number;
|
|
806
850
|
ResetOrderNumber?: boolean;
|
|
807
851
|
}
|
|
852
|
+
export interface UpdateAuthenticationProfileRequest {
|
|
853
|
+
AuthenticationProfileId: string | undefined;
|
|
854
|
+
InstanceId: string | undefined;
|
|
855
|
+
Name?: string;
|
|
856
|
+
Description?: string;
|
|
857
|
+
AllowedIps?: string[];
|
|
858
|
+
BlockedIps?: string[];
|
|
859
|
+
PeriodicSessionDuration?: number;
|
|
860
|
+
}
|
|
808
861
|
export interface UpdateContactRequest {
|
|
809
862
|
InstanceId: string | undefined;
|
|
810
863
|
ContactId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAuthenticationProfilesCommandInput,
|
|
4
|
+
ListAuthenticationProfilesCommandOutput,
|
|
5
|
+
} from "../commands/ListAuthenticationProfilesCommand";
|
|
6
|
+
import { ConnectPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAuthenticationProfiles: (
|
|
8
|
+
config: ConnectPaginationConfiguration,
|
|
9
|
+
input: ListAuthenticationProfilesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAuthenticationProfilesCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./GetMetricDataV2Paginator";
|
|
|
5
5
|
export * from "./Interfaces";
|
|
6
6
|
export * from "./ListAgentStatusesPaginator";
|
|
7
7
|
export * from "./ListApprovedOriginsPaginator";
|
|
8
|
+
export * from "./ListAuthenticationProfilesPaginator";
|
|
8
9
|
export * from "./ListBotsPaginator";
|
|
9
10
|
export * from "./ListContactEvaluationsPaginator";
|
|
10
11
|
export * from "./ListContactFlowModulesPaginator";
|
|
@@ -287,6 +287,10 @@ import {
|
|
|
287
287
|
DescribeAgentStatusCommandInput,
|
|
288
288
|
DescribeAgentStatusCommandOutput,
|
|
289
289
|
} from "../commands/DescribeAgentStatusCommand";
|
|
290
|
+
import {
|
|
291
|
+
DescribeAuthenticationProfileCommandInput,
|
|
292
|
+
DescribeAuthenticationProfileCommandOutput,
|
|
293
|
+
} from "../commands/DescribeAuthenticationProfileCommand";
|
|
290
294
|
import {
|
|
291
295
|
DescribeContactCommandInput,
|
|
292
296
|
DescribeContactCommandOutput,
|
|
@@ -495,6 +499,10 @@ import {
|
|
|
495
499
|
ListApprovedOriginsCommandInput,
|
|
496
500
|
ListApprovedOriginsCommandOutput,
|
|
497
501
|
} from "../commands/ListApprovedOriginsCommand";
|
|
502
|
+
import {
|
|
503
|
+
ListAuthenticationProfilesCommandInput,
|
|
504
|
+
ListAuthenticationProfilesCommandOutput,
|
|
505
|
+
} from "../commands/ListAuthenticationProfilesCommand";
|
|
498
506
|
import {
|
|
499
507
|
ListBotsCommandInput,
|
|
500
508
|
ListBotsCommandOutput,
|
|
@@ -823,6 +831,10 @@ import {
|
|
|
823
831
|
UpdateAgentStatusCommandInput,
|
|
824
832
|
UpdateAgentStatusCommandOutput,
|
|
825
833
|
} from "../commands/UpdateAgentStatusCommand";
|
|
834
|
+
import {
|
|
835
|
+
UpdateAuthenticationProfileCommandInput,
|
|
836
|
+
UpdateAuthenticationProfileCommandOutput,
|
|
837
|
+
} from "../commands/UpdateAuthenticationProfileCommand";
|
|
826
838
|
import {
|
|
827
839
|
UpdateContactAttributesCommandInput,
|
|
828
840
|
UpdateContactAttributesCommandOutput,
|
|
@@ -1287,6 +1299,10 @@ export declare const se_DescribeAgentStatusCommand: (
|
|
|
1287
1299
|
input: DescribeAgentStatusCommandInput,
|
|
1288
1300
|
context: __SerdeContext
|
|
1289
1301
|
) => Promise<__HttpRequest>;
|
|
1302
|
+
export declare const se_DescribeAuthenticationProfileCommand: (
|
|
1303
|
+
input: DescribeAuthenticationProfileCommandInput,
|
|
1304
|
+
context: __SerdeContext
|
|
1305
|
+
) => Promise<__HttpRequest>;
|
|
1290
1306
|
export declare const se_DescribeContactCommand: (
|
|
1291
1307
|
input: DescribeContactCommandInput,
|
|
1292
1308
|
context: __SerdeContext
|
|
@@ -1495,6 +1511,10 @@ export declare const se_ListApprovedOriginsCommand: (
|
|
|
1495
1511
|
input: ListApprovedOriginsCommandInput,
|
|
1496
1512
|
context: __SerdeContext
|
|
1497
1513
|
) => Promise<__HttpRequest>;
|
|
1514
|
+
export declare const se_ListAuthenticationProfilesCommand: (
|
|
1515
|
+
input: ListAuthenticationProfilesCommandInput,
|
|
1516
|
+
context: __SerdeContext
|
|
1517
|
+
) => Promise<__HttpRequest>;
|
|
1498
1518
|
export declare const se_ListBotsCommand: (
|
|
1499
1519
|
input: ListBotsCommandInput,
|
|
1500
1520
|
context: __SerdeContext
|
|
@@ -1823,6 +1843,10 @@ export declare const se_UpdateAgentStatusCommand: (
|
|
|
1823
1843
|
input: UpdateAgentStatusCommandInput,
|
|
1824
1844
|
context: __SerdeContext
|
|
1825
1845
|
) => Promise<__HttpRequest>;
|
|
1846
|
+
export declare const se_UpdateAuthenticationProfileCommand: (
|
|
1847
|
+
input: UpdateAuthenticationProfileCommandInput,
|
|
1848
|
+
context: __SerdeContext
|
|
1849
|
+
) => Promise<__HttpRequest>;
|
|
1826
1850
|
export declare const se_UpdateContactCommand: (
|
|
1827
1851
|
input: UpdateContactCommandInput,
|
|
1828
1852
|
context: __SerdeContext
|
|
@@ -2287,6 +2311,10 @@ export declare const de_DescribeAgentStatusCommand: (
|
|
|
2287
2311
|
output: __HttpResponse,
|
|
2288
2312
|
context: __SerdeContext
|
|
2289
2313
|
) => Promise<DescribeAgentStatusCommandOutput>;
|
|
2314
|
+
export declare const de_DescribeAuthenticationProfileCommand: (
|
|
2315
|
+
output: __HttpResponse,
|
|
2316
|
+
context: __SerdeContext
|
|
2317
|
+
) => Promise<DescribeAuthenticationProfileCommandOutput>;
|
|
2290
2318
|
export declare const de_DescribeContactCommand: (
|
|
2291
2319
|
output: __HttpResponse,
|
|
2292
2320
|
context: __SerdeContext
|
|
@@ -2495,6 +2523,10 @@ export declare const de_ListApprovedOriginsCommand: (
|
|
|
2495
2523
|
output: __HttpResponse,
|
|
2496
2524
|
context: __SerdeContext
|
|
2497
2525
|
) => Promise<ListApprovedOriginsCommandOutput>;
|
|
2526
|
+
export declare const de_ListAuthenticationProfilesCommand: (
|
|
2527
|
+
output: __HttpResponse,
|
|
2528
|
+
context: __SerdeContext
|
|
2529
|
+
) => Promise<ListAuthenticationProfilesCommandOutput>;
|
|
2498
2530
|
export declare const de_ListBotsCommand: (
|
|
2499
2531
|
output: __HttpResponse,
|
|
2500
2532
|
context: __SerdeContext
|
|
@@ -2823,6 +2855,10 @@ export declare const de_UpdateAgentStatusCommand: (
|
|
|
2823
2855
|
output: __HttpResponse,
|
|
2824
2856
|
context: __SerdeContext
|
|
2825
2857
|
) => Promise<UpdateAgentStatusCommandOutput>;
|
|
2858
|
+
export declare const de_UpdateAuthenticationProfileCommand: (
|
|
2859
|
+
output: __HttpResponse,
|
|
2860
|
+
context: __SerdeContext
|
|
2861
|
+
) => Promise<UpdateAuthenticationProfileCommandOutput>;
|
|
2826
2862
|
export declare const de_UpdateContactCommand: (
|
|
2827
2863
|
output: __HttpResponse,
|
|
2828
2864
|
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.608.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|