aws-sdk-connect 1.249.0 → 1.250.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +2 -1
- data/lib/aws-sdk-connect/client_api.rb +1 -0
- data/lib/aws-sdk-connect/types.rb +9 -1
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4bc41b55e39dbcdb037927accd609b074685951c4b07e11b7e34af31aa5146d
|
|
4
|
+
data.tar.gz: 064521e4140e7b32afea9667774f92436a415e3f225a424e9f6318cef8817154
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e687946fe4691abb0af3968484f11c3e63f36c5846f1a20ffe5810efa66e30c6a168e7a16b40f413f3ff1b1487a1eed2c6fce89c618909fcbb689b37da37c409
|
|
7
|
+
data.tar.gz: eb5c71fb800fda2e0a7fbe9bbc13b631b9590c9e85a7dec42140ed2842646cf6b3df127783c917d0153f2856b6ea6ceeaaeb6e6a96ce43180016357bde981e33
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.250.0 (2026-04-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The voice enhancement mode used by the agent can now be viewed on the contact record via the DescribeContact api.
|
|
8
|
+
|
|
4
9
|
1.249.0 (2026-04-02)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.250.0
|
|
@@ -7523,6 +7523,7 @@ module Aws::Connect
|
|
|
7523
7523
|
# resp.contact.agent_info.state_transitions[0].state #=> String, one of "INITIAL", "CONNECTED", "DISCONNECTED", "MISSED"
|
|
7524
7524
|
# resp.contact.agent_info.state_transitions[0].state_start_timestamp #=> Time
|
|
7525
7525
|
# resp.contact.agent_info.state_transitions[0].state_end_timestamp #=> Time
|
|
7526
|
+
# resp.contact.agent_info.voice_enhancement_mode #=> String, one of "VOICE_ISOLATION", "NOISE_SUPPRESSION", "NONE"
|
|
7526
7527
|
# resp.contact.initiation_timestamp #=> Time
|
|
7527
7528
|
# resp.contact.disconnect_timestamp #=> Time
|
|
7528
7529
|
# resp.contact.last_update_timestamp #=> Time
|
|
@@ -28848,7 +28849,7 @@ module Aws::Connect
|
|
|
28848
28849
|
tracer: tracer
|
|
28849
28850
|
)
|
|
28850
28851
|
context[:gem_name] = 'aws-sdk-connect'
|
|
28851
|
-
context[:gem_version] = '1.
|
|
28852
|
+
context[:gem_version] = '1.250.0'
|
|
28852
28853
|
Seahorse::Client::Request.new(handlers, context)
|
|
28853
28854
|
end
|
|
28854
28855
|
|
|
@@ -2205,6 +2205,7 @@ module Aws::Connect
|
|
|
2205
2205
|
AgentInfo.add_member(:after_contact_work_end_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "AfterContactWorkEndTimestamp"))
|
|
2206
2206
|
AgentInfo.add_member(:agent_initiated_hold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "AgentInitiatedHoldDuration"))
|
|
2207
2207
|
AgentInfo.add_member(:state_transitions, Shapes::ShapeRef.new(shape: StateTransitions, location_name: "StateTransitions"))
|
|
2208
|
+
AgentInfo.add_member(:voice_enhancement_mode, Shapes::ShapeRef.new(shape: VoiceEnhancementMode, location_name: "VoiceEnhancementMode"))
|
|
2208
2209
|
AgentInfo.struct_class = Types::AgentInfo
|
|
2209
2210
|
|
|
2210
2211
|
AgentQualityMetrics.add_member(:audio, Shapes::ShapeRef.new(shape: AudioQualityMetricsInfo, location_name: "Audio"))
|
|
@@ -360,6 +360,13 @@ module Aws::Connect
|
|
|
360
360
|
# List of `StateTransition` for a supervisor.
|
|
361
361
|
# @return [Array<Types::StateTransition>]
|
|
362
362
|
#
|
|
363
|
+
# @!attribute [rw] voice_enhancement_mode
|
|
364
|
+
# The voice enhancement mode used by the agent as the call is ending.
|
|
365
|
+
# Valid values: VOICE\_ISOLATION \| NOISE\_SUPPRESSION \| NONE. A
|
|
366
|
+
# value of null indicates this mode has not yet been set for this
|
|
367
|
+
# user.
|
|
368
|
+
# @return [String]
|
|
369
|
+
#
|
|
363
370
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
|
|
364
371
|
#
|
|
365
372
|
class AgentInfo < Struct.new(
|
|
@@ -375,7 +382,8 @@ module Aws::Connect
|
|
|
375
382
|
:after_contact_work_start_timestamp,
|
|
376
383
|
:after_contact_work_end_timestamp,
|
|
377
384
|
:agent_initiated_hold_duration,
|
|
378
|
-
:state_transitions
|
|
385
|
+
:state_transitions,
|
|
386
|
+
:voice_enhancement_mode)
|
|
379
387
|
SENSITIVE = []
|
|
380
388
|
include Aws::Structure
|
|
381
389
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -99,6 +99,7 @@ module Aws::Connect
|
|
|
99
99
|
attr_accessor after_contact_work_end_timestamp: ::Time
|
|
100
100
|
attr_accessor agent_initiated_hold_duration: ::Integer
|
|
101
101
|
attr_accessor state_transitions: ::Array[Types::StateTransition]
|
|
102
|
+
attr_accessor voice_enhancement_mode: ("VOICE_ISOLATION" | "NOISE_SUPPRESSION" | "NONE")
|
|
102
103
|
SENSITIVE: []
|
|
103
104
|
end
|
|
104
105
|
|