@aws-sdk/client-connect 3.891.0 → 3.894.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-types/commands/CreatePredefinedAttributeCommand.d.ts +3 -2
- package/dist-types/commands/CreateUserCommand.d.ts +1 -0
- package/dist-types/commands/DescribePredefinedAttributeCommand.d.ts +9 -8
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateRoutingProfileQueuesCommand.d.ts +2 -0
- package/dist-types/commands/GetContactMetricsCommand.d.ts +26 -3
- package/dist-types/commands/ListPredefinedAttributesCommand.d.ts +9 -8
- package/dist-types/commands/SearchPredefinedAttributesCommand.d.ts +9 -8
- package/dist-types/commands/SearchUsersCommand.d.ts +1 -0
- package/dist-types/commands/UpdatePredefinedAttributeCommand.d.ts +7 -7
- package/dist-types/commands/UpdateUserPhoneConfigCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/dist-types/models/models_1.d.ts +28 -6
- package/dist-types/models/models_2.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +18 -18
|
@@ -43,8 +43,9 @@ declare const CreatePredefinedAttributeCommand_base: {
|
|
|
43
43
|
* </li>
|
|
44
44
|
* <li>
|
|
45
45
|
* <p>Create an attribute for business unit name that has a list of predefined business unit
|
|
46
|
-
* names used in your organization. This is a use case where information for a contact varies
|
|
47
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
46
|
+
* names used in your organization. This is a use case where information for a contact varies
|
|
47
|
+
* between transfers or conferences. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
48
|
+
* attributes</a>.</p>
|
|
48
49
|
* </li>
|
|
49
50
|
* </ul>
|
|
50
51
|
* <p>
|
|
@@ -58,6 +58,7 @@ declare const CreateUserCommand_base: {
|
|
|
58
58
|
* AutoAccept: true || false,
|
|
59
59
|
* AfterContactWorkTimeLimit: Number("int"),
|
|
60
60
|
* DeskPhoneNumber: "STRING_VALUE",
|
|
61
|
+
* PersistentConnection: true || false,
|
|
61
62
|
* },
|
|
62
63
|
* DirectoryUserId: "STRING_VALUE",
|
|
63
64
|
* SecurityProfileIds: [ // SecurityProfileIds // required
|
|
@@ -27,24 +27,25 @@ declare const DescribePredefinedAttributeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Describes a predefined attribute for the specified Amazon Connect instance.
|
|
31
|
-
* attribute</i> is made up of a name and a value. You can use predefined attributes
|
|
30
|
+
* <p>Describes a predefined attribute for the specified Amazon Connect instance. A <i>predefined
|
|
31
|
+
* attribute</i> is made up of a name and a value. You can use predefined attributes
|
|
32
|
+
* for:</p>
|
|
32
33
|
* <ul>
|
|
33
34
|
* <li>
|
|
34
|
-
* <p>Routing proficiency (for example, agent certification) that has
|
|
35
|
-
*
|
|
36
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
35
|
+
* <p>Routing proficiency (for example, agent certification) that has predefined values (for
|
|
36
|
+
* example, a list of possible certifications). For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
37
37
|
* predefined attributes for routing contacts to agents</a>.</p>
|
|
38
38
|
* </li>
|
|
39
39
|
* <li>
|
|
40
|
-
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
41
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
40
|
+
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
41
|
+
* business unit handling the contact. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
42
|
+
* attributes</a>.</p>
|
|
42
43
|
* </li>
|
|
43
44
|
* </ul>
|
|
44
45
|
* <p>For the predefined attributes per instance quota, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas">Amazon Connect quotas</a>.</p>
|
|
45
46
|
* <p>
|
|
46
47
|
* <b>Endpoints</b>: See <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect endpoints and
|
|
47
|
-
*
|
|
48
|
+
* quotas</a>.</p>
|
|
48
49
|
* @example
|
|
49
50
|
* Use a bare-bones client and the command you need to make an API call.
|
|
50
51
|
* ```javascript
|
|
@@ -60,6 +60,7 @@ declare const DescribeUserCommand_base: {
|
|
|
60
60
|
* // AutoAccept: true || false,
|
|
61
61
|
* // AfterContactWorkTimeLimit: Number("int"),
|
|
62
62
|
* // DeskPhoneNumber: "STRING_VALUE",
|
|
63
|
+
* // PersistentConnection: true || false,
|
|
63
64
|
* // },
|
|
64
65
|
* // DirectoryUserId: "STRING_VALUE",
|
|
65
66
|
* // SecurityProfileIds: [ // SecurityProfileIds
|
|
@@ -28,6 +28,8 @@ declare const DisassociateRoutingProfileQueuesCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Disassociates a set of queues from a routing profile.</p>
|
|
31
|
+
* <p>Up to 10 queue references can be disassociated in a single API call. More than 10 queue
|
|
32
|
+
* references results in a single call results in an InvalidParameterException.</p>
|
|
31
33
|
* @example
|
|
32
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
35
|
* ```javascript
|
|
@@ -27,14 +27,37 @@ declare const GetContactMetricsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>Retrieves the position of the contact in the queue.</p>
|
|
31
31
|
* <p>
|
|
32
32
|
* <b>Use cases</b>
|
|
33
33
|
* </p>
|
|
34
|
-
* <p>Following are common uses cases for
|
|
34
|
+
* <p>Following are common uses cases for position in queue:</p>
|
|
35
35
|
* <ul>
|
|
36
36
|
* <li>
|
|
37
|
-
* <p>
|
|
37
|
+
* <p>Understand the expected wait experience of a contact.</p>
|
|
38
|
+
* </li>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>Inform customers of their position in queue and potentially offer a callback.</p>
|
|
41
|
+
* </li>
|
|
42
|
+
* <li>
|
|
43
|
+
* <p>Make data-driven routing decisions between primary and alternative queues.</p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>Enhance queue visibility and leverage agent proficiencies to streamline contact
|
|
47
|
+
* routing.</p>
|
|
48
|
+
* </li>
|
|
49
|
+
* </ul>
|
|
50
|
+
* <p>
|
|
51
|
+
* <b>Important things to know</b>
|
|
52
|
+
* </p>
|
|
53
|
+
* <ul>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>The only way to retrieve the position of the contact in queue is by using this API. You
|
|
56
|
+
* can't retrieve the position by using flows and attributes.</p>
|
|
57
|
+
* </li>
|
|
58
|
+
* <li>
|
|
59
|
+
* <p>For more information, see the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html">Position in queue</a> metric in the
|
|
60
|
+
* <i>Amazon Connect Administrator Guide</i>. </p>
|
|
38
61
|
* </li>
|
|
39
62
|
* </ul>
|
|
40
63
|
* <p>
|
|
@@ -27,24 +27,25 @@ declare const ListPredefinedAttributesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists predefined attributes for the specified Amazon Connect instance.
|
|
31
|
-
*
|
|
30
|
+
* <p>Lists predefined attributes for the specified Amazon Connect instance. A <i>predefined
|
|
31
|
+
* attribute</i> is made up of a name and a value. You can use predefined attributes
|
|
32
|
+
* for:</p>
|
|
32
33
|
* <ul>
|
|
33
34
|
* <li>
|
|
34
|
-
* <p>Routing proficiency (for example, agent certification) that has
|
|
35
|
-
*
|
|
36
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
35
|
+
* <p>Routing proficiency (for example, agent certification) that has predefined values (for
|
|
36
|
+
* example, a list of possible certifications). For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
37
37
|
* predefined attributes for routing contacts to agents</a>.</p>
|
|
38
38
|
* </li>
|
|
39
39
|
* <li>
|
|
40
|
-
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
41
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
40
|
+
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
41
|
+
* business unit handling the contact. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
42
|
+
* attributes</a>.</p>
|
|
42
43
|
* </li>
|
|
43
44
|
* </ul>
|
|
44
45
|
* <p>For the predefined attributes per instance quota, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas">Amazon Connect quotas</a>.</p>
|
|
45
46
|
* <p>
|
|
46
47
|
* <b>Endpoints</b>: See <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect endpoints and
|
|
47
|
-
*
|
|
48
|
+
* quotas</a>.</p>
|
|
48
49
|
* @example
|
|
49
50
|
* Use a bare-bones client and the command you need to make an API call.
|
|
50
51
|
* ```javascript
|
|
@@ -28,24 +28,25 @@ declare const SearchPredefinedAttributesCommand_base: {
|
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* <p>Searches predefined attributes that meet certain criteria.
|
|
32
|
-
* attribute</i> is made up of a name and a value. You can use predefined attributes
|
|
31
|
+
* <p>Searches predefined attributes that meet certain criteria. A <i>predefined
|
|
32
|
+
* attribute</i> is made up of a name and a value. You can use predefined attributes
|
|
33
|
+
* for:</p>
|
|
33
34
|
* <ul>
|
|
34
35
|
* <li>
|
|
35
|
-
* <p>Routing proficiency (for example, agent certification) that has
|
|
36
|
-
*
|
|
37
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
36
|
+
* <p>Routing proficiency (for example, agent certification) that has predefined values (for
|
|
37
|
+
* example, a list of possible certifications). For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
38
38
|
* predefined attributes for routing contacts to agents</a>.</p>
|
|
39
39
|
* </li>
|
|
40
40
|
* <li>
|
|
41
|
-
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
42
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
41
|
+
* <p>Contact information that varies between transfers or conferences, such as the name of the
|
|
42
|
+
* business unit handling the contact. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
43
|
+
* attributes</a>.</p>
|
|
43
44
|
* </li>
|
|
44
45
|
* </ul>
|
|
45
46
|
* <p>For the predefined attributes per instance quota, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas">Amazon Connect quotas</a>.</p>
|
|
46
47
|
* <p>
|
|
47
48
|
* <b>Endpoints</b>: See <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect endpoints and
|
|
48
|
-
*
|
|
49
|
+
* quotas</a>.</p>
|
|
49
50
|
* @example
|
|
50
51
|
* Use a bare-bones client and the command you need to make an API call.
|
|
51
52
|
* ```javascript
|
|
@@ -158,6 +158,7 @@ declare const SearchUsersCommand_base: {
|
|
|
158
158
|
* // AutoAccept: true || false,
|
|
159
159
|
* // AfterContactWorkTimeLimit: Number("int"),
|
|
160
160
|
* // DeskPhoneNumber: "STRING_VALUE",
|
|
161
|
+
* // PersistentConnection: true || false,
|
|
161
162
|
* // },
|
|
162
163
|
* // RoutingProfileId: "STRING_VALUE",
|
|
163
164
|
* // SecurityProfileIds: [ // SecurityProfileIds
|
|
@@ -27,7 +27,7 @@ declare const UpdatePredefinedAttributeCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Updates a predefined attribute for the specified Amazon Connect instance.
|
|
30
|
+
* <p>Updates a predefined attribute for the specified Amazon Connect instance. A <i>predefined
|
|
31
31
|
* attribute</i> is made up of a name and a value.</p>
|
|
32
32
|
* <p>For the predefined attributes per instance quota, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#connect-quotas">Amazon Connect quotas</a>.</p>
|
|
33
33
|
* <p>
|
|
@@ -36,20 +36,20 @@ declare const UpdatePredefinedAttributeCommand_base: {
|
|
|
36
36
|
* <p>Following are common uses cases for this API:</p>
|
|
37
37
|
* <ul>
|
|
38
38
|
* <li>
|
|
39
|
-
* <p>Update routing proficiency (for example, agent certification) that has
|
|
40
|
-
*
|
|
41
|
-
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
39
|
+
* <p>Update routing proficiency (for example, agent certification) that has predefined values
|
|
40
|
+
* (for example, a list of possible certifications). For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/predefined-attributes.html">Create
|
|
42
41
|
* predefined attributes for routing contacts to agents</a>.</p>
|
|
43
42
|
* </li>
|
|
44
43
|
* <li>
|
|
45
44
|
* <p>Update an attribute for business unit name that has a list of predefined business unit
|
|
46
|
-
*
|
|
47
|
-
*
|
|
45
|
+
* names used in your organization. This is a use case where information for a contact varies
|
|
46
|
+
* between transfers or conferences. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/use-contact-segment-attributes.html">Use contact segment
|
|
47
|
+
* attributes</a>.</p>
|
|
48
48
|
* </li>
|
|
49
49
|
* </ul>
|
|
50
50
|
* <p>
|
|
51
51
|
* <b>Endpoints</b>: See <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect endpoints and
|
|
52
|
-
*
|
|
52
|
+
* quotas</a>.</p>
|
|
53
53
|
* @example
|
|
54
54
|
* Use a bare-bones client and the command you need to make an API call.
|
|
55
55
|
* ```javascript
|
|
@@ -42,6 +42,7 @@ declare const UpdateUserPhoneConfigCommand_base: {
|
|
|
42
42
|
* AutoAccept: true || false,
|
|
43
43
|
* AfterContactWorkTimeLimit: Number("int"),
|
|
44
44
|
* DeskPhoneNumber: "STRING_VALUE",
|
|
45
|
+
* PersistentConnection: true || false,
|
|
45
46
|
* },
|
|
46
47
|
* UserId: "STRING_VALUE", // required
|
|
47
48
|
* InstanceId: "STRING_VALUE", // required
|
|
@@ -5668,6 +5668,11 @@ export interface UserPhoneConfig {
|
|
|
5668
5668
|
* @public
|
|
5669
5669
|
*/
|
|
5670
5670
|
DeskPhoneNumber?: string | undefined;
|
|
5671
|
+
/**
|
|
5672
|
+
* <p>The persistent connection setting for the user.</p>
|
|
5673
|
+
* @public
|
|
5674
|
+
*/
|
|
5675
|
+
PersistentConnection?: boolean | undefined;
|
|
5671
5676
|
}
|
|
5672
5677
|
/**
|
|
5673
5678
|
* @public
|
|
@@ -1695,7 +1695,7 @@ export interface HoursOfOperationOverride {
|
|
|
1695
1695
|
*/
|
|
1696
1696
|
EffectiveFrom?: string | undefined;
|
|
1697
1697
|
/**
|
|
1698
|
-
* <p>The date
|
|
1698
|
+
* <p>The date until the hours of operation override is effective.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
1701
|
EffectiveTill?: string | undefined;
|
|
@@ -6174,6 +6174,8 @@ export interface GetMetricDataV2Request {
|
|
|
6174
6174
|
* <p>Unit: Seconds</p>
|
|
6175
6175
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
6176
6176
|
* contact/segmentAttributes/connect:Subtype, Q in Connect</p>
|
|
6177
|
+
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>
|
|
6178
|
+
* </p>
|
|
6177
6179
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-abandon-time">Average
|
|
6178
6180
|
* queue abandon time</a>
|
|
6179
6181
|
* </p>
|
|
@@ -6513,10 +6515,21 @@ export interface GetMetricDataV2Request {
|
|
|
6513
6515
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time">Average
|
|
6514
6516
|
* queue answer time</a>
|
|
6515
6517
|
* </p>
|
|
6518
|
+
* <p>Valid metric level filters: <code>INITIATION_METHOD</code>, <code>FEATURE</code>,
|
|
6519
|
+
* <code>DISCONNECT_REASON</code>
|
|
6520
|
+
* </p>
|
|
6516
6521
|
* <note>
|
|
6517
6522
|
* <p>Feature is a valid filter but not a valid grouping.</p>
|
|
6518
6523
|
* </note>
|
|
6519
6524
|
* </dd>
|
|
6525
|
+
* <dt>AVG_QUEUE_ANSWER_TIME_CUSTOMER_FIRST_CALLBACK</dt>
|
|
6526
|
+
* <dd>
|
|
6527
|
+
* <p>Unit: Seconds</p>
|
|
6528
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Feature,
|
|
6529
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect, Agent Hierarchy</p>
|
|
6530
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-queue-answer-time-customer-first-callback">Avg. queue answer time - customer first callback</a>
|
|
6531
|
+
* </p>
|
|
6532
|
+
* </dd>
|
|
6520
6533
|
* <dt>AVG_RESPONSE_TIME_AGENT</dt>
|
|
6521
6534
|
* <dd>
|
|
6522
6535
|
* <p>Unit: Seconds</p>
|
|
@@ -6588,6 +6601,14 @@ export interface GetMetricDataV2Request {
|
|
|
6588
6601
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection">Average wait time after customer connection</a>
|
|
6589
6602
|
* </p>
|
|
6590
6603
|
* </dd>
|
|
6604
|
+
* <dt>AVG_WAIT_TIME_AFTER_CUSTOMER_FIRST_CALLBACK_CONNECTION</dt>
|
|
6605
|
+
* <dd>
|
|
6606
|
+
* <p>Unit: Seconds</p>
|
|
6607
|
+
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Feature,
|
|
6608
|
+
* contact/segmentAttributes/connect:Subtype, Q in Connect, Agent Hierarchy</p>
|
|
6609
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#average-wait-time-after-customer-connection-customer-first-callback">Avg. wait time after customer connection - customer first callback</a>
|
|
6610
|
+
* </p>
|
|
6611
|
+
* </dd>
|
|
6591
6612
|
* <dt>AVG_WEIGHTED_EVALUATION_SCORE</dt>
|
|
6592
6613
|
* <dd>
|
|
6593
6614
|
* <p>Unit: Percent</p>
|
|
@@ -6712,7 +6733,7 @@ export interface GetMetricDataV2Request {
|
|
|
6712
6733
|
* </p>
|
|
6713
6734
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature,
|
|
6714
6735
|
* contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect</p>
|
|
6715
|
-
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#
|
|
6736
|
+
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#contacts-handled">Contacts
|
|
6716
6737
|
* handled</a>
|
|
6717
6738
|
* </p>
|
|
6718
6739
|
* <note>
|
|
@@ -7161,7 +7182,8 @@ export interface GetMetricDataV2Request {
|
|
|
7161
7182
|
* <p>Unit: Seconds</p>
|
|
7162
7183
|
* <p>Valid metric filter key: <code>INITIATION_METHOD</code>. This metric only supports the
|
|
7163
7184
|
* following filter keys as <code>INITIATION_METHOD</code>: <code>INBOUND</code> |
|
|
7164
|
-
* <code>OUTBOUND</code> | <code>CALLBACK</code> | <code>API</code>
|
|
7185
|
+
* <code>OUTBOUND</code> | <code>CALLBACK</code> | <code>API</code> |
|
|
7186
|
+
* <code>CALLBACK_CUSTOMER_FIRST_DIALED</code>
|
|
7165
7187
|
* </p>
|
|
7166
7188
|
* <p>Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy</p>
|
|
7167
7189
|
* <p>UI name: <a href="https://docs.aws.amazon.com/connect/latest/adminguide/metrics-definitions.html#agent-api-connecting-time">Agent API
|
|
@@ -7178,9 +7200,9 @@ export interface GetMetricDataV2Request {
|
|
|
7178
7200
|
* <p>Metric filter: </p>
|
|
7179
7201
|
* <ul>
|
|
7180
7202
|
* <li>
|
|
7181
|
-
* <p>Valid values: <code>API</code>| <code>
|
|
7182
|
-
* <code>
|
|
7183
|
-
* <code>Disconnect</code>
|
|
7203
|
+
* <p>Valid values: <code>API</code>| <code>INCOMING</code> | <code>OUTBOUND</code> |
|
|
7204
|
+
* <code>TRANSFER</code> | <code>CALLBACK</code> | <code>QUEUE_TRANSFER</code>|
|
|
7205
|
+
* <code>Disconnect</code> | <code>CALLBACK_CUSTOMER_FIRST_DIALED</code>
|
|
7184
7206
|
* </p>
|
|
7185
7207
|
* </li>
|
|
7186
7208
|
* </ul>
|
|
@@ -6725,7 +6725,7 @@ export interface UpdateHoursOfOperationOverrideRequest {
|
|
|
6725
6725
|
*/
|
|
6726
6726
|
EffectiveFrom?: string | undefined;
|
|
6727
6727
|
/**
|
|
6728
|
-
* <p>The date
|
|
6728
|
+
* <p>The date until the hours of operation override is effective.</p>
|
|
6729
6729
|
* @public
|
|
6730
6730
|
*/
|
|
6731
6731
|
EffectiveTill?: string | undefined;
|
|
@@ -1715,6 +1715,7 @@ export interface UserPhoneConfig {
|
|
|
1715
1715
|
AutoAccept?: boolean | undefined;
|
|
1716
1716
|
AfterContactWorkTimeLimit?: number | undefined;
|
|
1717
1717
|
DeskPhoneNumber?: string | undefined;
|
|
1718
|
+
PersistentConnection?: boolean | undefined;
|
|
1718
1719
|
}
|
|
1719
1720
|
export interface CreateUserRequest {
|
|
1720
1721
|
Username: string | 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.894.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.894.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.894.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.894.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
|
+
"@aws-sdk/types": "3.893.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.894.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.11.
|
|
35
|
+
"@smithy/core": "^3.11.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
57
|
"@smithy/util-retry": "^4.1.2",
|