@aws-sdk/client-connect 3.490.0 → 3.491.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/models/models_0.js +2 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-types/commands/CreateParticipantCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +2 -2
- package/dist-types/commands/ListInstanceAttributesCommand.d.ts +1 -1
- package/dist-types/commands/ListRealtimeContactAnalysisSegmentsV2Command.d.ts +3 -3
- package/dist-types/commands/SearchContactsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +8 -0
- package/dist-types/models/models_1.d.ts +47 -7
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +1 -1
|
@@ -413,6 +413,7 @@ exports.ParticipantRole = {
|
|
|
413
413
|
AGENT: "AGENT",
|
|
414
414
|
CUSTOMER: "CUSTOMER",
|
|
415
415
|
CUSTOM_BOT: "CUSTOM_BOT",
|
|
416
|
+
SUPERVISOR: "SUPERVISOR",
|
|
416
417
|
SYSTEM: "SYSTEM",
|
|
417
418
|
};
|
|
418
419
|
exports.RehydrationType = {
|
|
@@ -640,6 +641,7 @@ exports.InstanceAttributeType = {
|
|
|
640
641
|
CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS",
|
|
641
642
|
CONTACT_LENS: "CONTACT_LENS",
|
|
642
643
|
EARLY_MEDIA: "EARLY_MEDIA",
|
|
644
|
+
ENHANCED_CHAT_MONITORING: "ENHANCED_CHAT_MONITORING",
|
|
643
645
|
ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING",
|
|
644
646
|
HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND",
|
|
645
647
|
INBOUND_CALLS: "INBOUND_CALLS",
|
|
@@ -396,6 +396,7 @@ export const ParticipantRole = {
|
|
|
396
396
|
AGENT: "AGENT",
|
|
397
397
|
CUSTOMER: "CUSTOMER",
|
|
398
398
|
CUSTOM_BOT: "CUSTOM_BOT",
|
|
399
|
+
SUPERVISOR: "SUPERVISOR",
|
|
399
400
|
SYSTEM: "SYSTEM",
|
|
400
401
|
};
|
|
401
402
|
export const RehydrationType = {
|
|
@@ -618,6 +619,7 @@ export const InstanceAttributeType = {
|
|
|
618
619
|
CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS",
|
|
619
620
|
CONTACT_LENS: "CONTACT_LENS",
|
|
620
621
|
EARLY_MEDIA: "EARLY_MEDIA",
|
|
622
|
+
ENHANCED_CHAT_MONITORING: "ENHANCED_CHAT_MONITORING",
|
|
621
623
|
ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING",
|
|
622
624
|
HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND",
|
|
623
625
|
INBOUND_CALLS: "INBOUND_CALLS",
|
|
@@ -39,7 +39,7 @@ declare const CreateParticipantCommand_base: {
|
|
|
39
39
|
* ContactId: "STRING_VALUE", // required
|
|
40
40
|
* ClientToken: "STRING_VALUE",
|
|
41
41
|
* ParticipantDetails: { // ParticipantDetailsToAdd
|
|
42
|
-
* ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT",
|
|
42
|
+
* ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR",
|
|
43
43
|
* DisplayName: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* };
|
|
@@ -36,13 +36,13 @@ declare const DescribeInstanceAttributeCommand_base: {
|
|
|
36
36
|
* const client = new ConnectClient(config);
|
|
37
37
|
* const input = { // DescribeInstanceAttributeRequest
|
|
38
38
|
* InstanceId: "STRING_VALUE", // required
|
|
39
|
-
* AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING", // required
|
|
39
|
+
* AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING" || "ENHANCED_CHAT_MONITORING", // required
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeInstanceAttributeCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // DescribeInstanceAttributeResponse
|
|
44
44
|
* // Attribute: { // Attribute
|
|
45
|
-
* // AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING",
|
|
45
|
+
* // AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING" || "ENHANCED_CHAT_MONITORING",
|
|
46
46
|
* // Value: "STRING_VALUE",
|
|
47
47
|
* // },
|
|
48
48
|
* // };
|
|
@@ -44,7 +44,7 @@ declare const ListInstanceAttributesCommand_base: {
|
|
|
44
44
|
* // { // ListInstanceAttributesResponse
|
|
45
45
|
* // Attributes: [ // AttributesList
|
|
46
46
|
* // { // Attribute
|
|
47
|
-
* // AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING",
|
|
47
|
+
* // AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING" || "ENHANCED_CHAT_MONITORING",
|
|
48
48
|
* // Value: "STRING_VALUE",
|
|
49
49
|
* // },
|
|
50
50
|
* // ],
|
|
@@ -53,7 +53,7 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
53
53
|
* // Transcript: { // RealTimeContactAnalysisSegmentTranscript
|
|
54
54
|
* // Id: "STRING_VALUE", // required
|
|
55
55
|
* // ParticipantId: "STRING_VALUE", // required
|
|
56
|
-
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT", // required
|
|
56
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR", // required
|
|
57
57
|
* // DisplayName: "STRING_VALUE",
|
|
58
58
|
* // Content: "STRING_VALUE", // required
|
|
59
59
|
* // ContentType: "STRING_VALUE",
|
|
@@ -105,7 +105,7 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
105
105
|
* // Event: { // RealTimeContactAnalysisSegmentEvent
|
|
106
106
|
* // Id: "STRING_VALUE", // required
|
|
107
107
|
* // ParticipantId: "STRING_VALUE",
|
|
108
|
-
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT",
|
|
108
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR",
|
|
109
109
|
* // DisplayName: "STRING_VALUE",
|
|
110
110
|
* // EventType: "STRING_VALUE", // required
|
|
111
111
|
* // Time: {// Union: only one key present
|
|
@@ -115,7 +115,7 @@ declare const ListRealtimeContactAnalysisSegmentsV2Command_base: {
|
|
|
115
115
|
* // Attachments: { // RealTimeContactAnalysisSegmentAttachments
|
|
116
116
|
* // Id: "STRING_VALUE", // required
|
|
117
117
|
* // ParticipantId: "STRING_VALUE", // required
|
|
118
|
-
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT", // required
|
|
118
|
+
* // ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR", // required
|
|
119
119
|
* // DisplayName: "STRING_VALUE",
|
|
120
120
|
* // Attachments: [ // RealTimeContactAnalysisAttachments // required
|
|
121
121
|
* // { // RealTimeContactAnalysisAttachment
|
|
@@ -68,7 +68,7 @@ declare const SearchContactsCommand_base: {
|
|
|
68
68
|
* Transcript: { // Transcript
|
|
69
69
|
* Criteria: [ // TranscriptCriteriaList // required
|
|
70
70
|
* { // TranscriptCriteria
|
|
71
|
-
* ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT", // required
|
|
71
|
+
* ParticipantRole: "AGENT" || "CUSTOMER" || "SYSTEM" || "CUSTOM_BOT" || "SUPERVISOR", // required
|
|
72
72
|
* SearchText: [ // SearchTextList // required
|
|
73
73
|
* "STRING_VALUE",
|
|
74
74
|
* ],
|
|
@@ -36,7 +36,7 @@ declare const UpdateInstanceAttributeCommand_base: {
|
|
|
36
36
|
* const client = new ConnectClient(config);
|
|
37
37
|
* const input = { // UpdateInstanceAttributeRequest
|
|
38
38
|
* InstanceId: "STRING_VALUE", // required
|
|
39
|
-
* AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING", // required
|
|
39
|
+
* AttributeType: "INBOUND_CALLS" || "OUTBOUND_CALLS" || "CONTACTFLOW_LOGS" || "CONTACT_LENS" || "AUTO_RESOLVE_BEST_VOICES" || "USE_CUSTOM_TTS_VOICES" || "EARLY_MEDIA" || "MULTI_PARTY_CONFERENCE" || "HIGH_VOLUME_OUTBOUND" || "ENHANCED_CONTACT_MONITORING" || "ENHANCED_CHAT_MONITORING", // required
|
|
40
40
|
* Value: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
42
42
|
* const command = new UpdateInstanceAttributeCommand(input);
|
|
@@ -2601,6 +2601,7 @@ export declare const ParticipantRole: {
|
|
|
2601
2601
|
readonly AGENT: "AGENT";
|
|
2602
2602
|
readonly CUSTOMER: "CUSTOMER";
|
|
2603
2603
|
readonly CUSTOM_BOT: "CUSTOM_BOT";
|
|
2604
|
+
readonly SUPERVISOR: "SUPERVISOR";
|
|
2604
2605
|
readonly SYSTEM: "SYSTEM";
|
|
2605
2606
|
};
|
|
2606
2607
|
/**
|
|
@@ -5517,6 +5518,12 @@ export interface EvaluationNote {
|
|
|
5517
5518
|
/**
|
|
5518
5519
|
* @public
|
|
5519
5520
|
* <p>The note for an item (section or question) in a contact evaluation.</p>
|
|
5521
|
+
* <note>
|
|
5522
|
+
* <p>Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the
|
|
5523
|
+
* total number of chars for all the notes in the evaluation combined. Assuming there are N
|
|
5524
|
+
* questions in the evaluation being submitted, then the max char limit for all notes combined is N
|
|
5525
|
+
* x 1024.</p>
|
|
5526
|
+
* </note>
|
|
5520
5527
|
*/
|
|
5521
5528
|
Value?: string;
|
|
5522
5529
|
}
|
|
@@ -6012,6 +6019,7 @@ export declare const InstanceAttributeType: {
|
|
|
6012
6019
|
readonly CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS";
|
|
6013
6020
|
readonly CONTACT_LENS: "CONTACT_LENS";
|
|
6014
6021
|
readonly EARLY_MEDIA: "EARLY_MEDIA";
|
|
6022
|
+
readonly ENHANCED_CHAT_MONITORING: "ENHANCED_CHAT_MONITORING";
|
|
6015
6023
|
readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
|
|
6016
6024
|
readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
|
|
6017
6025
|
readonly INBOUND_CALLS: "INBOUND_CALLS";
|
|
@@ -1740,10 +1740,15 @@ export interface GetCurrentMetricDataRequest {
|
|
|
1740
1740
|
* <li>
|
|
1741
1741
|
* <p>Channels: 3 (VOICE, CHAT, and TASK channels are supported.)</p>
|
|
1742
1742
|
* </li>
|
|
1743
|
+
* <li>
|
|
1744
|
+
* <p>RoutingStepExpressions: 50</p>
|
|
1745
|
+
* </li>
|
|
1743
1746
|
* </ul>
|
|
1744
1747
|
* <p>Metric data is retrieved only for the resources associated with the queues or routing
|
|
1745
1748
|
* profiles, and by any channels included in the filter. (You cannot filter by both queue AND
|
|
1746
|
-
* routing profile.) You can include both resource IDs and resource ARNs in the same request
|
|
1749
|
+
* routing profile.) You can include both resource IDs and resource ARNs in the same request.</p>
|
|
1750
|
+
* <p>When using <code>RoutingStepExpression</code>, you need to pass exactly one
|
|
1751
|
+
* <code>QueueId</code>.</p>
|
|
1747
1752
|
* <p>Currently tagging is only supported on the resources that are passed in the filter.</p>
|
|
1748
1753
|
*/
|
|
1749
1754
|
Filters: Filters | undefined;
|
|
@@ -1767,6 +1772,10 @@ export interface GetCurrentMetricDataRequest {
|
|
|
1767
1772
|
* <p>If no <code>Grouping</code> is included in the request, a summary of metrics is
|
|
1768
1773
|
* returned.</p>
|
|
1769
1774
|
* </li>
|
|
1775
|
+
* <li>
|
|
1776
|
+
* <p>When using the <code>RoutingStepExpression</code> filter, group by
|
|
1777
|
+
* <code>ROUTING_STEP_EXPRESSION</code> is required.</p>
|
|
1778
|
+
* </li>
|
|
1770
1779
|
* </ul>
|
|
1771
1780
|
*/
|
|
1772
1781
|
Groupings?: Grouping[];
|
|
@@ -1849,6 +1858,11 @@ export interface GetCurrentMetricDataRequest {
|
|
|
1849
1858
|
* <code>\{ "Metric": \{ "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS" \}, "Value": 24113.0
|
|
1850
1859
|
* </code>\}</p>
|
|
1851
1860
|
* <p>The actual OLDEST_CONTACT_AGE is 24 seconds.</p>
|
|
1861
|
+
* <p>When the filter <code>RoutingStepExpression</code> is used, this metric is still
|
|
1862
|
+
* calculated from enqueue time. For example, if a contact that has been queued under
|
|
1863
|
+
* <code><Expression 1></code> for 10 seconds has expired and <code><Expression 2></code>
|
|
1864
|
+
* becomes active, then <code>OLDEST_CONTACT_AGE</code> for this queue will be counted starting
|
|
1865
|
+
* from 10, not 0.</p>
|
|
1852
1866
|
* <p>Name in real-time metrics report: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/real-time-metrics-definitions.html#oldest-real-time">Oldest</a>
|
|
1853
1867
|
* </p>
|
|
1854
1868
|
* </dd>
|
|
@@ -2474,6 +2488,8 @@ export interface GetMetricDataRequest {
|
|
|
2474
2488
|
* <p>The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is
|
|
2475
2489
|
* retrieved only for the resources associated with the queues or channels included in the filter.
|
|
2476
2490
|
* You can include both queue IDs and queue ARNs in the same request. VOICE, CHAT, and TASK channels are supported.</p>
|
|
2491
|
+
* <p>RoutingStepExpression is not a valid filter for GetMetricData and we recommend switching to
|
|
2492
|
+
* GetMetricDataV2 for more up-to-date features.</p>
|
|
2477
2493
|
* <note>
|
|
2478
2494
|
* <p>To filter by <code>Queues</code>, enter the queue
|
|
2479
2495
|
* ID/ARN, not the name of the queue.</p>
|
|
@@ -2486,6 +2502,8 @@ export interface GetMetricDataRequest {
|
|
|
2486
2502
|
* queue, the metrics returned are grouped by queue. The values returned apply to the metrics for
|
|
2487
2503
|
* each queue rather than aggregated for all queues.</p>
|
|
2488
2504
|
* <p>If no grouping is specified, a summary of metrics for all queues is returned.</p>
|
|
2505
|
+
* <p>RoutingStepExpression is not a valid filter for GetMetricData and we recommend switching to
|
|
2506
|
+
* GetMetricDataV2 for more up-to-date features.</p>
|
|
2489
2507
|
*/
|
|
2490
2508
|
Groupings?: Grouping[];
|
|
2491
2509
|
/**
|
|
@@ -2968,6 +2986,9 @@ export interface GetMetricDataV2Request {
|
|
|
2968
2986
|
* <li>
|
|
2969
2987
|
* <p>Feature</p>
|
|
2970
2988
|
* </li>
|
|
2989
|
+
* <li>
|
|
2990
|
+
* <p>Routing step expression</p>
|
|
2991
|
+
* </li>
|
|
2971
2992
|
* </ul>
|
|
2972
2993
|
* <p>At least one filter must be passed from queues, routing profiles, agents, or user hierarchy
|
|
2973
2994
|
* groups.</p>
|
|
@@ -2983,7 +3004,8 @@ export interface GetMetricDataV2Request {
|
|
|
2983
3004
|
* <code>AGENT</code> | <code>CHANNEL</code> | <code>AGENT_HIERARCHY_LEVEL_ONE</code> |
|
|
2984
3005
|
* <code>AGENT_HIERARCHY_LEVEL_TWO</code> | <code>AGENT_HIERARCHY_LEVEL_THREE</code> |
|
|
2985
3006
|
* <code>AGENT_HIERARCHY_LEVEL_FOUR</code> | <code>AGENT_HIERARCHY_LEVEL_FIVE</code> |
|
|
2986
|
-
* <code>FEATURE</code> | <code>contact/segmentAttributes/connect:Subtype</code>
|
|
3007
|
+
* <code>FEATURE</code> | <code>contact/segmentAttributes/connect:Subtype</code> |
|
|
3008
|
+
* <code>ROUTING_STEP_EXPRESSION</code>
|
|
2987
3009
|
* </p>
|
|
2988
3010
|
* </li>
|
|
2989
3011
|
* <li>
|
|
@@ -3001,6 +3023,8 @@ export interface GetMetricDataV2Request {
|
|
|
3001
3023
|
* <code>connect:Chat</code>, <code>connect:SMS</code>, <code>connect:Telephony</code>, and
|
|
3002
3024
|
* <code>connect:WebRTC</code> are valid <code>filterValue</code> examples (not exhaustive) for
|
|
3003
3025
|
* the <code>contact/segmentAttributes/connect:Subtype filter</code> key.</p>
|
|
3026
|
+
* <p>ROUTING_STEP_EXPRESSION is a valid filter key with a filter value up to 3000
|
|
3027
|
+
* length.</p>
|
|
3004
3028
|
* </li>
|
|
3005
3029
|
* </ul>
|
|
3006
3030
|
*/
|
|
@@ -3015,7 +3039,8 @@ export interface GetMetricDataV2Request {
|
|
|
3015
3039
|
* | <code>CHANNEL</code> | <code>AGENT_HIERARCHY_LEVEL_ONE</code> |
|
|
3016
3040
|
* <code>AGENT_HIERARCHY_LEVEL_TWO</code> | <code>AGENT_HIERARCHY_LEVEL_THREE</code> |
|
|
3017
3041
|
* <code>AGENT_HIERARCHY_LEVEL_FOUR</code> | <code>AGENT_HIERARCHY_LEVEL_FIVE</code>,
|
|
3018
|
-
* <code>contact/segmentAttributes/connect:Subtype</code>
|
|
3042
|
+
* <code>contact/segmentAttributes/connect:Subtype</code> |
|
|
3043
|
+
* <code>ROUTING_STEP_EXPRESSION</code>
|
|
3019
3044
|
* </p>
|
|
3020
3045
|
*/
|
|
3021
3046
|
Groupings?: string[];
|
|
@@ -3142,7 +3167,7 @@ export interface GetMetricDataV2Request {
|
|
|
3142
3167
|
* <dd>
|
|
3143
3168
|
* <p>Unit: Seconds</p>
|
|
3144
3169
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3145
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3170
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression</p>
|
|
3146
3171
|
* <note>
|
|
3147
3172
|
* <p>Feature is a valid filter but not a valid grouping.</p>
|
|
3148
3173
|
* </note>
|
|
@@ -3255,7 +3280,7 @@ export interface GetMetricDataV2Request {
|
|
|
3255
3280
|
* <dd>
|
|
3256
3281
|
* <p>Unit: Count</p>
|
|
3257
3282
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3258
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3283
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression</p>
|
|
3259
3284
|
* </dd>
|
|
3260
3285
|
* <dt>CONTACTS_CREATED</dt>
|
|
3261
3286
|
* <dd>
|
|
@@ -3275,7 +3300,7 @@ export interface GetMetricDataV2Request {
|
|
|
3275
3300
|
* <code>DISCONNECT_REASON</code>
|
|
3276
3301
|
* </p>
|
|
3277
3302
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
3278
|
-
* contact/segmentAttributes/connect:Subtype</p>
|
|
3303
|
+
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression</p>
|
|
3279
3304
|
* <note>
|
|
3280
3305
|
* <p>Feature is a valid filter but not a valid grouping.</p>
|
|
3281
3306
|
* </note>
|
|
@@ -3353,6 +3378,16 @@ export interface GetMetricDataV2Request {
|
|
|
3353
3378
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy,
|
|
3354
3379
|
* contact/segmentAttributes/connect:Subtype</p>
|
|
3355
3380
|
* </dd>
|
|
3381
|
+
* <dt>PERCENT_CONTACTS_STEP_EXPIRED</dt>
|
|
3382
|
+
* <dd>
|
|
3383
|
+
* <p>Unit: Percent</p>
|
|
3384
|
+
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
3385
|
+
* </dd>
|
|
3386
|
+
* <dt>PERCENT_CONTACTS_STEP_JOINED</dt>
|
|
3387
|
+
* <dd>
|
|
3388
|
+
* <p>Unit: Percent</p>
|
|
3389
|
+
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
3390
|
+
* </dd>
|
|
3356
3391
|
* <dt>PERCENT_NON_TALK_TIME</dt>
|
|
3357
3392
|
* <dd>
|
|
3358
3393
|
* <p>This metric is available only for contacts analyzed by Contact Lens conversational
|
|
@@ -3394,6 +3429,11 @@ export interface GetMetricDataV2Request {
|
|
|
3394
3429
|
* (inclusive), in seconds. For <code>Comparison</code>, you must enter <code>LT</code> (for
|
|
3395
3430
|
* "Less than"). </p>
|
|
3396
3431
|
* </dd>
|
|
3432
|
+
* <dt>STEP_CONTACTS_QUEUED</dt>
|
|
3433
|
+
* <dd>
|
|
3434
|
+
* <p>Unit: Count</p>
|
|
3435
|
+
* <p>Valid groupings and filters: Queue, RoutingStepExpression</p>
|
|
3436
|
+
* </dd>
|
|
3397
3437
|
* <dt>SUM_AFTER_CONTACT_WORK_TIME</dt>
|
|
3398
3438
|
* <dd>
|
|
3399
3439
|
* <p>Unit: Seconds</p>
|
|
@@ -7527,7 +7567,7 @@ export interface MonitorContactRequest {
|
|
|
7527
7567
|
/**
|
|
7528
7568
|
* @public
|
|
7529
7569
|
* <p>Specify which monitoring actions the user is allowed to take. For example, whether the user
|
|
7530
|
-
* is allowed to escalate from silent monitoring to barge.</p>
|
|
7570
|
+
* is allowed to escalate from silent monitoring to barge. AllowedMonitorCapabilities is required if barge is enabled.</p>
|
|
7531
7571
|
*/
|
|
7532
7572
|
AllowedMonitorCapabilities?: MonitorCapability[];
|
|
7533
7573
|
/**
|
|
@@ -861,6 +861,7 @@ export declare const ParticipantRole: {
|
|
|
861
861
|
readonly AGENT: "AGENT";
|
|
862
862
|
readonly CUSTOMER: "CUSTOMER";
|
|
863
863
|
readonly CUSTOM_BOT: "CUSTOM_BOT";
|
|
864
|
+
readonly SUPERVISOR: "SUPERVISOR";
|
|
864
865
|
readonly SYSTEM: "SYSTEM";
|
|
865
866
|
};
|
|
866
867
|
export type ParticipantRole =
|
|
@@ -1778,6 +1779,7 @@ export declare const InstanceAttributeType: {
|
|
|
1778
1779
|
readonly CONTACTFLOW_LOGS: "CONTACTFLOW_LOGS";
|
|
1779
1780
|
readonly CONTACT_LENS: "CONTACT_LENS";
|
|
1780
1781
|
readonly EARLY_MEDIA: "EARLY_MEDIA";
|
|
1782
|
+
readonly ENHANCED_CHAT_MONITORING: "ENHANCED_CHAT_MONITORING";
|
|
1781
1783
|
readonly ENHANCED_CONTACT_MONITORING: "ENHANCED_CONTACT_MONITORING";
|
|
1782
1784
|
readonly HIGH_VOLUME_OUTBOUND: "HIGH_VOLUME_OUTBOUND";
|
|
1783
1785
|
readonly INBOUND_CALLS: "INBOUND_CALLS";
|
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.491.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",
|