@aws-sdk/client-connect 3.835.0 → 3.840.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/dist-cjs/index.js +44 -10
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +7 -7
- package/dist-es/protocols/Aws_restJson1.js +33 -0
- package/dist-types/commands/CreateContactCommand.d.ts +22 -5
- package/dist-types/commands/DescribeContactCommand.d.ts +34 -0
- package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +5 -0
- package/dist-types/commands/ListPhoneNumbersCommand.d.ts +2 -1
- package/dist-types/commands/ListPhoneNumbersV2Command.d.ts +1 -2
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +5 -0
- package/dist-types/commands/UpdateParticipantRoleConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePhoneNumberCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +3 -2
- package/dist-types/models/models_1.d.ts +190 -111
- package/dist-types/models/models_2.d.ts +118 -65
- package/dist-types/models/models_3.d.ts +86 -16
- package/dist-types/ts3.4/commands/ListPhoneNumbersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPhoneNumbersV2Command.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateParticipantRoleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePhoneNumberCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +35 -29
- package/dist-types/ts3.4/models/models_2.d.ts +20 -12
- package/dist-types/ts3.4/models/models_3.d.ts +15 -0
- package/package.json +18 -18
|
@@ -1,6 +1,61 @@
|
|
|
1
1
|
import { AdditionalEmailRecipients, AgentAvailabilityTimer, AgentConfig, AgentInfo, AgentStatusSearchFilter, Application, Campaign, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, Endpoint, EvaluationFormQuestion, EvaluationFormScoringStrategy, InitiateAs, MediaConcurrency, OutboundCallerConfig, OutboundEmailConfig, PredefinedAttributeValues, QuickConnectConfig, Reference, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, StringCondition, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus } from "./models_0";
|
|
2
|
-
import { AnsweringMachineDetectionStatus, AttributeCondition, ContactDetails, ContactEvaluation, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, EvaluationFormVersionStatus, Expiry, QualityMetrics, QueueInfo, QueueStatus, RecordingInfo, RoutingCriteriaStepStatus, SignInConfig, TelephonyConfig, WisdomInfo } from "./models_1";
|
|
3
|
-
import { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
|
|
2
|
+
import { AnsweringMachineDetectionStatus, AttributeCondition, ChatMetrics, ContactDetails, ContactEvaluation, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, Customer, CustomerVoiceActivity, DisconnectDetails, EndpointInfo, Evaluation, EvaluationFormVersionStatus, Expiry, QualityMetrics, QueueInfo, QueueStatus, RecordingInfo, RoutingCriteriaStepStatus, SignInConfig, TelephonyConfig, WisdomInfo } from "./models_1";
|
|
3
|
+
import { ChatMessage, ContactFlowModuleSearchFilter, ContactFlowSearchFilter, DateCondition, EmailAddressInfo, EmailAddressSearchFilter, EmailAttachment, HierarchyGroupCondition, HoursOfOperationSearchFilter, InboundAdditionalRecipients, InboundEmailContent, ListCondition, ParticipantDetails, PersistentChat, PromptSearchFilter, QueueInfoInput, QueueSearchFilter, QuickConnectSearchFilter, RoutingCriteriaInputStepExpiry, RoutingProfileSearchFilter, SearchableQueueType, SecurityProfilesSearchFilter, UpdateParticipantRoleConfigChannelInfo, UserHierarchyGroupSearchFilter, UserSearchFilter } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface UpdateParticipantRoleConfigRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
InstanceId: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The identifier of the contact in this instance of Amazon Connect. </p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
ContactId: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The Amazon Connect channel you want to configure.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
ChannelConfiguration: UpdateParticipantRoleConfigChannelInfo | undefined;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface UpdateParticipantRoleConfigResponse {
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export interface UpdatePhoneNumberRequest {
|
|
33
|
+
/**
|
|
34
|
+
* <p>A unique identifier for the phone number.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
PhoneNumberId: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone number inbound traffic is routed through. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
TargetArn?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The identifier of the Amazon Connect instance that phone numbers are claimed to. You
|
|
45
|
+
* can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the
|
|
46
|
+
* instance ID</a> in the Amazon Resource Name (ARN) of the instance. You must enter <code>InstanceId</code> or <code>TargetArn</code>. </p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
InstanceId?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
52
|
+
* request. If not provided, the Amazon Web Services
|
|
53
|
+
* SDK populates this field. For more information about idempotency, see
|
|
54
|
+
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
ClientToken?: string | undefined;
|
|
58
|
+
}
|
|
4
59
|
/**
|
|
5
60
|
* @public
|
|
6
61
|
*/
|
|
@@ -1145,16 +1200,16 @@ export interface CreateContactRequest {
|
|
|
1145
1200
|
Attributes?: Record<string, string> | undefined;
|
|
1146
1201
|
/**
|
|
1147
1202
|
* <p>A formatted URL that is shown to an agent in the Contact Control Panel (CCP). Tasks can have
|
|
1148
|
-
* the following reference types at the time of creation: URL | NUMBER |
|
|
1149
|
-
*
|
|
1203
|
+
* the following reference types at the time of creation: <code>URL</code> | <code>NUMBER</code> |
|
|
1204
|
+
* <code>STRING</code> | <code>DATE</code> | <code>EMAIL</code> | <code>ATTACHMENT</code>.</p>
|
|
1150
1205
|
* @public
|
|
1151
1206
|
*/
|
|
1152
1207
|
References?: Record<string, Reference> | undefined;
|
|
1153
1208
|
/**
|
|
1154
|
-
* <p>The channel for the contact
|
|
1209
|
+
* <p>The channel for the contact.</p>
|
|
1155
1210
|
* <important>
|
|
1156
|
-
* <p>
|
|
1157
|
-
*
|
|
1211
|
+
* <p>The CHAT channel is not supported. The following information is incorrect. We're working to
|
|
1212
|
+
* correct it.</p>
|
|
1158
1213
|
* </important>
|
|
1159
1214
|
* @public
|
|
1160
1215
|
*/
|
|
@@ -1162,17 +1217,23 @@ export interface CreateContactRequest {
|
|
|
1162
1217
|
/**
|
|
1163
1218
|
* <p>Indicates how the contact was initiated. </p>
|
|
1164
1219
|
* <important>
|
|
1165
|
-
* <p>CreateContact only supports the following initiation methods: </p>
|
|
1220
|
+
* <p>CreateContact only supports the following initiation methods. Valid values by channel are: </p>
|
|
1166
1221
|
* <ul>
|
|
1167
1222
|
* <li>
|
|
1168
|
-
* <p>For
|
|
1223
|
+
* <p>For VOICE: <code>TRANSFER</code> and the subtype <code>connect:ExternalAudio</code>
|
|
1224
|
+
* </p>
|
|
1169
1225
|
* </li>
|
|
1170
1226
|
* <li>
|
|
1171
|
-
* <p>For
|
|
1227
|
+
* <p>For EMAIL: <code>OUTBOUND</code> | <code>AGENT_REPLY</code> | <code>FLOW</code>
|
|
1228
|
+
* </p>
|
|
1229
|
+
* </li>
|
|
1230
|
+
* <li>
|
|
1231
|
+
* <p>For TASK: <code>API</code>
|
|
1232
|
+
* </p>
|
|
1172
1233
|
* </li>
|
|
1173
1234
|
* </ul>
|
|
1174
|
-
* <p>The
|
|
1175
|
-
*
|
|
1235
|
+
* <p>The other channels listed below are incorrect. We're working to correct this
|
|
1236
|
+
* information.</p>
|
|
1176
1237
|
* </important>
|
|
1177
1238
|
* @public
|
|
1178
1239
|
*/
|
|
@@ -1184,11 +1245,16 @@ export interface CreateContactRequest {
|
|
|
1184
1245
|
ExpiryDurationInMinutes?: number | undefined;
|
|
1185
1246
|
/**
|
|
1186
1247
|
* <p>User details for the contact</p>
|
|
1248
|
+
* <important>
|
|
1249
|
+
* <p>UserInfo is required when creating an EMAIL contact with <code>OUTBOUND</code> and
|
|
1250
|
+
* <code>AGENT_REPLY</code> contact initiation methods.</p>
|
|
1251
|
+
* </important>
|
|
1187
1252
|
* @public
|
|
1188
1253
|
*/
|
|
1189
1254
|
UserInfo?: UserInfo | undefined;
|
|
1190
1255
|
/**
|
|
1191
|
-
* <p>Initial state of the contact when it's created
|
|
1256
|
+
* <p>Initial state of the contact when it's created. Only TASK channel contacts can be initiated
|
|
1257
|
+
* with <code>COMPLETED</code> state.</p>
|
|
1192
1258
|
* @public
|
|
1193
1259
|
*/
|
|
1194
1260
|
InitiateAs?: InitiateAs | undefined;
|
|
@@ -1677,8 +1743,7 @@ export interface StartChatContactRequest {
|
|
|
1677
1743
|
*/
|
|
1678
1744
|
ParticipantDetails: ParticipantDetails | undefined;
|
|
1679
1745
|
/**
|
|
1680
|
-
* <p>The initial message to be sent to the newly created chat
|
|
1681
|
-
* flow, the initial message is not delivered to the Lex bot.</p>
|
|
1746
|
+
* <p>The initial message to be sent to the newly created chat.</p>
|
|
1682
1747
|
* @public
|
|
1683
1748
|
*/
|
|
1684
1749
|
InitialMessage?: ChatMessage | undefined;
|
|
@@ -1768,7 +1833,7 @@ export interface StartEmailContactRequest {
|
|
|
1768
1833
|
*/
|
|
1769
1834
|
FromEmailAddress: EmailAddressInfo | undefined;
|
|
1770
1835
|
/**
|
|
1771
|
-
* <p>The email address associated with the instance.</p>
|
|
1836
|
+
* <p>The email address associated with the Amazon Connect instance.</p>
|
|
1772
1837
|
* @public
|
|
1773
1838
|
*/
|
|
1774
1839
|
DestinationEmailAddress: string | undefined;
|
|
@@ -3110,6 +3175,11 @@ export interface Contact {
|
|
|
3110
3175
|
* @public
|
|
3111
3176
|
*/
|
|
3112
3177
|
QualityMetrics?: QualityMetrics | undefined;
|
|
3178
|
+
/**
|
|
3179
|
+
* <p>Information about how agent, bot, and customer interact in a chat contact.</p>
|
|
3180
|
+
* @public
|
|
3181
|
+
*/
|
|
3182
|
+
ChatMetrics?: ChatMetrics | undefined;
|
|
3113
3183
|
/**
|
|
3114
3184
|
* <p>Information about the call disconnect experience.</p>
|
|
3115
3185
|
* @public
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListPhoneNumbersResponse,
|
|
11
|
-
} from "../models/models_1";
|
|
8
|
+
import { ListPhoneNumbersRequest } from "../models/models_1";
|
|
9
|
+
import { ListPhoneNumbersResponse } from "../models/models_2";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface ListPhoneNumbersCommandInput extends ListPhoneNumbersRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListPhoneNumbersV2Request,
|
|
10
|
+
ListPhoneNumbersV2Response,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListPhoneNumbersV2CommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateParticipantRoleConfigRequest,
|
|
10
10
|
UpdateParticipantRoleConfigResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_3";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateParticipantRoleConfigCommandInput
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ConnectClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
UpdatePhoneNumberRequest,
|
|
10
|
+
UpdatePhoneNumberResponse,
|
|
11
|
+
} from "../models/models_3";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface UpdatePhoneNumberCommandInput
|
|
@@ -812,6 +812,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
812
812
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
813
813
|
}
|
|
814
814
|
export declare const InitiateAs: {
|
|
815
|
+
readonly COMPLETED: "COMPLETED";
|
|
815
816
|
readonly CONNECTED_TO_USER: "CONNECTED_TO_USER";
|
|
816
817
|
};
|
|
817
818
|
export type InitiateAs = (typeof InitiateAs)[keyof typeof InitiateAs];
|
|
@@ -182,6 +182,41 @@ export declare const AnsweringMachineDetectionStatus: {
|
|
|
182
182
|
};
|
|
183
183
|
export type AnsweringMachineDetectionStatus =
|
|
184
184
|
(typeof AnsweringMachineDetectionStatus)[keyof typeof AnsweringMachineDetectionStatus];
|
|
185
|
+
export declare const ParticipantType: {
|
|
186
|
+
readonly AGENT: "AGENT";
|
|
187
|
+
readonly ALL: "ALL";
|
|
188
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
189
|
+
readonly MANAGER: "MANAGER";
|
|
190
|
+
readonly THIRDPARTY: "THIRDPARTY";
|
|
191
|
+
};
|
|
192
|
+
export type ParticipantType =
|
|
193
|
+
(typeof ParticipantType)[keyof typeof ParticipantType];
|
|
194
|
+
export interface ParticipantMetrics {
|
|
195
|
+
ParticipantId?: string | undefined;
|
|
196
|
+
ParticipantType?: ParticipantType | undefined;
|
|
197
|
+
ConversationAbandon?: boolean | undefined;
|
|
198
|
+
MessagesSent?: number | undefined;
|
|
199
|
+
NumResponses?: number | undefined;
|
|
200
|
+
MessageLengthInChars?: number | undefined;
|
|
201
|
+
TotalResponseTimeInMillis?: number | undefined;
|
|
202
|
+
MaxResponseTimeInMillis?: number | undefined;
|
|
203
|
+
LastMessageTimestamp?: Date | undefined;
|
|
204
|
+
}
|
|
205
|
+
export interface ChatContactMetrics {
|
|
206
|
+
MultiParty?: boolean | undefined;
|
|
207
|
+
TotalMessages?: number | undefined;
|
|
208
|
+
TotalBotMessages?: number | undefined;
|
|
209
|
+
TotalBotMessageLengthInChars?: number | undefined;
|
|
210
|
+
ConversationCloseTimeInMillis?: number | undefined;
|
|
211
|
+
ConversationTurnCount?: number | undefined;
|
|
212
|
+
AgentFirstResponseTimestamp?: Date | undefined;
|
|
213
|
+
AgentFirstResponseTimeInMillis?: number | undefined;
|
|
214
|
+
}
|
|
215
|
+
export interface ChatMetrics {
|
|
216
|
+
ChatContactMetrics?: ChatContactMetrics | undefined;
|
|
217
|
+
AgentMetrics?: ParticipantMetrics | undefined;
|
|
218
|
+
CustomerMetrics?: ParticipantMetrics | undefined;
|
|
219
|
+
}
|
|
185
220
|
export interface ContactDetails {
|
|
186
221
|
Name?: string | undefined;
|
|
187
222
|
Description?: string | undefined;
|
|
@@ -234,15 +269,6 @@ export declare const MediaStreamType: {
|
|
|
234
269
|
};
|
|
235
270
|
export type MediaStreamType =
|
|
236
271
|
(typeof MediaStreamType)[keyof typeof MediaStreamType];
|
|
237
|
-
export declare const ParticipantType: {
|
|
238
|
-
readonly AGENT: "AGENT";
|
|
239
|
-
readonly ALL: "ALL";
|
|
240
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
241
|
-
readonly MANAGER: "MANAGER";
|
|
242
|
-
readonly THIRDPARTY: "THIRDPARTY";
|
|
243
|
-
};
|
|
244
|
-
export type ParticipantType =
|
|
245
|
-
(typeof ParticipantType)[keyof typeof ParticipantType];
|
|
246
272
|
export declare const RecordingStatus: {
|
|
247
273
|
readonly AVAILABLE: "AVAILABLE";
|
|
248
274
|
readonly DELETED: "DELETED";
|
|
@@ -2103,26 +2129,6 @@ export interface ListPhoneNumbersRequest {
|
|
|
2103
2129
|
NextToken?: string | undefined;
|
|
2104
2130
|
MaxResults?: number | undefined;
|
|
2105
2131
|
}
|
|
2106
|
-
export interface PhoneNumberSummary {
|
|
2107
|
-
Id?: string | undefined;
|
|
2108
|
-
Arn?: string | undefined;
|
|
2109
|
-
PhoneNumber?: string | undefined;
|
|
2110
|
-
PhoneNumberType?: PhoneNumberType | undefined;
|
|
2111
|
-
PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
|
|
2112
|
-
}
|
|
2113
|
-
export interface ListPhoneNumbersResponse {
|
|
2114
|
-
PhoneNumberSummaryList?: PhoneNumberSummary[] | undefined;
|
|
2115
|
-
NextToken?: string | undefined;
|
|
2116
|
-
}
|
|
2117
|
-
export interface ListPhoneNumbersV2Request {
|
|
2118
|
-
TargetArn?: string | undefined;
|
|
2119
|
-
InstanceId?: string | undefined;
|
|
2120
|
-
MaxResults?: number | undefined;
|
|
2121
|
-
NextToken?: string | undefined;
|
|
2122
|
-
PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
|
|
2123
|
-
PhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
2124
|
-
PhoneNumberPrefix?: string | undefined;
|
|
2125
|
-
}
|
|
2126
2132
|
export declare const DescribeEmailAddressResponseFilterSensitiveLog: (
|
|
2127
2133
|
obj: DescribeEmailAddressResponse
|
|
2128
2134
|
) => any;
|
|
@@ -58,6 +58,26 @@ import {
|
|
|
58
58
|
SortOrder,
|
|
59
59
|
TrafficDistributionGroupStatus,
|
|
60
60
|
} from "./models_1";
|
|
61
|
+
export interface PhoneNumberSummary {
|
|
62
|
+
Id?: string | undefined;
|
|
63
|
+
Arn?: string | undefined;
|
|
64
|
+
PhoneNumber?: string | undefined;
|
|
65
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
66
|
+
PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
|
|
67
|
+
}
|
|
68
|
+
export interface ListPhoneNumbersResponse {
|
|
69
|
+
PhoneNumberSummaryList?: PhoneNumberSummary[] | undefined;
|
|
70
|
+
NextToken?: string | undefined;
|
|
71
|
+
}
|
|
72
|
+
export interface ListPhoneNumbersV2Request {
|
|
73
|
+
TargetArn?: string | undefined;
|
|
74
|
+
InstanceId?: string | undefined;
|
|
75
|
+
MaxResults?: number | undefined;
|
|
76
|
+
NextToken?: string | undefined;
|
|
77
|
+
PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
|
|
78
|
+
PhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
79
|
+
PhoneNumberPrefix?: string | undefined;
|
|
80
|
+
}
|
|
61
81
|
export interface ListPhoneNumbersSummary {
|
|
62
82
|
PhoneNumberId?: string | undefined;
|
|
63
83
|
PhoneNumberArn?: string | undefined;
|
|
@@ -1752,18 +1772,6 @@ export declare namespace UpdateParticipantRoleConfigChannelInfo {
|
|
|
1752
1772
|
visitor: Visitor<T>
|
|
1753
1773
|
) => T;
|
|
1754
1774
|
}
|
|
1755
|
-
export interface UpdateParticipantRoleConfigRequest {
|
|
1756
|
-
InstanceId: string | undefined;
|
|
1757
|
-
ContactId: string | undefined;
|
|
1758
|
-
ChannelConfiguration: UpdateParticipantRoleConfigChannelInfo | undefined;
|
|
1759
|
-
}
|
|
1760
|
-
export interface UpdateParticipantRoleConfigResponse {}
|
|
1761
|
-
export interface UpdatePhoneNumberRequest {
|
|
1762
|
-
PhoneNumberId: string | undefined;
|
|
1763
|
-
TargetArn?: string | undefined;
|
|
1764
|
-
InstanceId?: string | undefined;
|
|
1765
|
-
ClientToken?: string | undefined;
|
|
1766
|
-
}
|
|
1767
1775
|
export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
|
|
1768
1776
|
export declare const ListViewsResponseFilterSensitiveLog: (
|
|
1769
1777
|
obj: ListViewsResponse
|
|
@@ -39,6 +39,7 @@ import {
|
|
|
39
39
|
import {
|
|
40
40
|
AnsweringMachineDetectionStatus,
|
|
41
41
|
AttributeCondition,
|
|
42
|
+
ChatMetrics,
|
|
42
43
|
ContactDetails,
|
|
43
44
|
ContactEvaluation,
|
|
44
45
|
ContactFlowModuleState,
|
|
@@ -83,9 +84,22 @@ import {
|
|
|
83
84
|
RoutingProfileSearchFilter,
|
|
84
85
|
SearchableQueueType,
|
|
85
86
|
SecurityProfilesSearchFilter,
|
|
87
|
+
UpdateParticipantRoleConfigChannelInfo,
|
|
86
88
|
UserHierarchyGroupSearchFilter,
|
|
87
89
|
UserSearchFilter,
|
|
88
90
|
} from "./models_2";
|
|
91
|
+
export interface UpdateParticipantRoleConfigRequest {
|
|
92
|
+
InstanceId: string | undefined;
|
|
93
|
+
ContactId: string | undefined;
|
|
94
|
+
ChannelConfiguration: UpdateParticipantRoleConfigChannelInfo | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface UpdateParticipantRoleConfigResponse {}
|
|
97
|
+
export interface UpdatePhoneNumberRequest {
|
|
98
|
+
PhoneNumberId: string | undefined;
|
|
99
|
+
TargetArn?: string | undefined;
|
|
100
|
+
InstanceId?: string | undefined;
|
|
101
|
+
ClientToken?: string | undefined;
|
|
102
|
+
}
|
|
89
103
|
export interface UpdatePhoneNumberResponse {
|
|
90
104
|
PhoneNumberId?: string | undefined;
|
|
91
105
|
PhoneNumberArn?: string | undefined;
|
|
@@ -715,6 +729,7 @@ export interface Contact {
|
|
|
715
729
|
AnsweringMachineDetectionStatus?: AnsweringMachineDetectionStatus | undefined;
|
|
716
730
|
CustomerVoiceActivity?: CustomerVoiceActivity | undefined;
|
|
717
731
|
QualityMetrics?: QualityMetrics | undefined;
|
|
732
|
+
ChatMetrics?: ChatMetrics | undefined;
|
|
718
733
|
DisconnectDetails?: DisconnectDetails | undefined;
|
|
719
734
|
AdditionalEmailRecipients?: AdditionalEmailRecipients | undefined;
|
|
720
735
|
SegmentAttributes?: Record<string, SegmentAttributeValue> | undefined;
|
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.840.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",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.840.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.840.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.840.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
|
+
"@aws-sdk/types": "3.840.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.840.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.840.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.6.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.13",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.14",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.5",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.21",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.21",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
57
|
"@smithy/util-retry": "^4.0.6",
|