telnyx 5.21.0 → 5.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 425189bffd5f3762c7ee6ded304b31d4527aad04d4fcd337127f6eb209c50b09
4
- data.tar.gz: ec5016afcaba86390e812b4caaef68880c7a546a7886cd85bac880c9a9194672
3
+ metadata.gz: 1889949d8a0f4ea31f76d469c9e1b4a24ef25cadb50f0a1001eeebfd06dc86f2
4
+ data.tar.gz: a77205eca1e529f54379931d7e9fed1e54be9b031f9b3daa8c830c5abccc604a
5
5
  SHA512:
6
- metadata.gz: 33729eda8a02f41e1271c4ab3f118b1143629d5339d1ca069dd4ecd247ef41716412d6d7c3cee68b6c71ed54ce52dffa7c07f914ca022e3b583aace923e054f2
7
- data.tar.gz: e51771c85b50526f521e772f3bdcdaf582813b50c383e40259a52f84ca801e18b384d8e900d3cf0e03f256bd6dfec4b39754b449ef37b85c3548b3ac20e9f04e
6
+ metadata.gz: 035ac31e87a70e301fc02229f19a19da923eb0f49e0623bb23f99f68c9df9ac811d6e68014be4da54d54da3c44789246d717e8489d500dadce7d300bb83b9ba2
7
+ data.tar.gz: 906b9e6490a372a3c454bd9f7cd5ab6cf9d4452c10befe360034cf27f6236213eab29f477819220f9fa46db39fb2c2e4c7a57c040b2a994d7c4b2552c70fe51e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.22.0 (2026-02-13)
4
+
5
+ Full Changelog: [v5.21.0...v5.22.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.21.0...v5.22.0)
6
+
7
+ ### Features
8
+
9
+ * ENGDESK-49554: Add quail_voice_focus to noise suppression engine enums ([4b8fb1c](https://github.com/team-telnyx/telnyx-ruby/commit/4b8fb1c5a1d6cc00133641a96942add5da7f8399))
10
+
3
11
  ## 5.21.0 (2026-02-12)
4
12
 
5
13
  Full Changelog: [v5.20.0...v5.21.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.20.0...v5.21.0)
data/README.md CHANGED
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "telnyx", "~> 5.21.0"
27
+ gem "telnyx", "~> 5.22.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -7,7 +7,7 @@ module Telnyx
7
7
  # The attenuation limit value for the selected engine. Default values vary by
8
8
  # engine: 0 for 'denoiser', 80 for 'deep_filter_net', 'deep_filter_net_large', and
9
9
  # all Krisp engines ('krisp_viva_tel', 'krisp_viva_tel_lite',
10
- # 'krisp_viva_promodel', 'krisp_viva_ss').
10
+ # 'krisp_viva_promodel', 'krisp_viva_ss'), 100 for 'quail_voice_focus'.
11
11
  #
12
12
  # @return [Integer, nil]
13
13
  optional :attenuation_limit, Integer
@@ -17,7 +17,8 @@ module Telnyx
17
17
  # 'deep_filter_net' and 'deep_filter_net_large' are alternative engines with
18
18
  # different performance characteristics. Krisp engines ('krisp_viva_tel',
19
19
  # 'krisp_viva_tel_lite', 'krisp_viva_promodel', 'krisp_viva_ss') provide advanced
20
- # noise suppression capabilities.
20
+ # noise suppression capabilities. 'quail_voice_focus' provides Quail-based voice
21
+ # focus noise suppression.
21
22
  #
22
23
  # @return [Symbol, Telnyx::Models::ConnectionNoiseSuppressionDetails::Engine, nil]
23
24
  optional :engine, enum: -> { Telnyx::ConnectionNoiseSuppressionDetails::Engine }
@@ -39,7 +40,8 @@ module Telnyx
39
40
  # 'deep_filter_net' and 'deep_filter_net_large' are alternative engines with
40
41
  # different performance characteristics. Krisp engines ('krisp_viva_tel',
41
42
  # 'krisp_viva_tel_lite', 'krisp_viva_promodel', 'krisp_viva_ss') provide advanced
42
- # noise suppression capabilities.
43
+ # noise suppression capabilities. 'quail_voice_focus' provides Quail-based voice
44
+ # focus noise suppression.
43
45
  #
44
46
  # @see Telnyx::Models::ConnectionNoiseSuppressionDetails#engine
45
47
  module Engine
@@ -52,6 +54,7 @@ module Telnyx
52
54
  KRISP_VIVA_TEL_LITE = :krisp_viva_tel_lite
53
55
  KRISP_VIVA_PROMODEL = :krisp_viva_promodel
54
56
  KRISP_VIVA_SS = :krisp_viva_ss
57
+ QUAIL_VOICE_FOCUS = :quail_voice_focus
55
58
 
56
59
  # @!method self.values
57
60
  # @return [Array<Symbol>]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.21.0"
4
+ VERSION = "5.22.0"
5
5
  end
@@ -14,7 +14,7 @@ module Telnyx
14
14
  # The attenuation limit value for the selected engine. Default values vary by
15
15
  # engine: 0 for 'denoiser', 80 for 'deep_filter_net', 'deep_filter_net_large', and
16
16
  # all Krisp engines ('krisp_viva_tel', 'krisp_viva_tel_lite',
17
- # 'krisp_viva_promodel', 'krisp_viva_ss').
17
+ # 'krisp_viva_promodel', 'krisp_viva_ss'), 100 for 'quail_voice_focus'.
18
18
  sig { returns(T.nilable(Integer)) }
19
19
  attr_reader :attenuation_limit
20
20
 
@@ -25,7 +25,8 @@ module Telnyx
25
25
  # 'deep_filter_net' and 'deep_filter_net_large' are alternative engines with
26
26
  # different performance characteristics. Krisp engines ('krisp_viva_tel',
27
27
  # 'krisp_viva_tel_lite', 'krisp_viva_promodel', 'krisp_viva_ss') provide advanced
28
- # noise suppression capabilities.
28
+ # noise suppression capabilities. 'quail_voice_focus' provides Quail-based voice
29
+ # focus noise suppression.
29
30
  sig do
30
31
  returns(
31
32
  T.nilable(Telnyx::ConnectionNoiseSuppressionDetails::Engine::OrSymbol)
@@ -54,13 +55,14 @@ module Telnyx
54
55
  # The attenuation limit value for the selected engine. Default values vary by
55
56
  # engine: 0 for 'denoiser', 80 for 'deep_filter_net', 'deep_filter_net_large', and
56
57
  # all Krisp engines ('krisp_viva_tel', 'krisp_viva_tel_lite',
57
- # 'krisp_viva_promodel', 'krisp_viva_ss').
58
+ # 'krisp_viva_promodel', 'krisp_viva_ss'), 100 for 'quail_voice_focus'.
58
59
  attenuation_limit: nil,
59
60
  # The noise suppression engine to use. 'denoiser' is the default engine.
60
61
  # 'deep_filter_net' and 'deep_filter_net_large' are alternative engines with
61
62
  # different performance characteristics. Krisp engines ('krisp_viva_tel',
62
63
  # 'krisp_viva_tel_lite', 'krisp_viva_promodel', 'krisp_viva_ss') provide advanced
63
- # noise suppression capabilities.
64
+ # noise suppression capabilities. 'quail_voice_focus' provides Quail-based voice
65
+ # focus noise suppression.
64
66
  engine: nil
65
67
  )
66
68
  end
@@ -80,7 +82,8 @@ module Telnyx
80
82
  # 'deep_filter_net' and 'deep_filter_net_large' are alternative engines with
81
83
  # different performance characteristics. Krisp engines ('krisp_viva_tel',
82
84
  # 'krisp_viva_tel_lite', 'krisp_viva_promodel', 'krisp_viva_ss') provide advanced
83
- # noise suppression capabilities.
85
+ # noise suppression capabilities. 'quail_voice_focus' provides Quail-based voice
86
+ # focus noise suppression.
84
87
  module Engine
85
88
  extend Telnyx::Internal::Type::Enum
86
89
 
@@ -125,6 +128,11 @@ module Telnyx
125
128
  :krisp_viva_ss,
126
129
  Telnyx::ConnectionNoiseSuppressionDetails::Engine::TaggedSymbol
127
130
  )
131
+ QUAIL_VOICE_FOCUS =
132
+ T.let(
133
+ :quail_voice_focus,
134
+ Telnyx::ConnectionNoiseSuppressionDetails::Engine::TaggedSymbol
135
+ )
128
136
 
129
137
  sig do
130
138
  override.returns(
@@ -35,6 +35,7 @@ module Telnyx
35
35
  | :krisp_viva_tel_lite
36
36
  | :krisp_viva_promodel
37
37
  | :krisp_viva_ss
38
+ | :quail_voice_focus
38
39
 
39
40
  module Engine
40
41
  extend Telnyx::Internal::Type::Enum
@@ -46,6 +47,7 @@ module Telnyx
46
47
  KRISP_VIVA_TEL_LITE: :krisp_viva_tel_lite
47
48
  KRISP_VIVA_PROMODEL: :krisp_viva_promodel
48
49
  KRISP_VIVA_SS: :krisp_viva_ss
50
+ QUAIL_VOICE_FOCUS: :quail_voice_focus
49
51
 
50
52
  def self?.values: -> ::Array[Telnyx::Models::ConnectionNoiseSuppressionDetails::engine]
51
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.21.0
4
+ version: 5.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-12 00:00:00.000000000 Z
11
+ date: 2026-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi