telnyx 5.61.0 → 5.62.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: 24b94b03b43786920db141b0de2225ff2b9512aa60a532e4fe6ca6427a973bdb
4
- data.tar.gz: bd61180d457b28b94365b61d9abe1e2343db6c45b518f2833aa2592859c966d6
3
+ metadata.gz: 68a6749e8571fceb0bd86ad12dc93a599367977dce6cfab42138a7fe284a5f86
4
+ data.tar.gz: c5c4ceb97bfc59c9546f53e8294405341338f508f563c36d2422eda4457aa058
5
5
  SHA512:
6
- metadata.gz: 2011ecd958dacbd58e274973849204f693d00baca1832690a9c46d47974f8ddff30994d22886f3b3a13bf569ee4a6897c04179778c745697325a39a39566a07a
7
- data.tar.gz: 0e63277727e3d7a59a9f117be177c491c800f62a756449e4c45eb864cc70e45415316f7a4b66b1ee72df609afdd2aba1e3f23f08072ff6fdf0810ac90e5e768b
6
+ metadata.gz: e27fc9fb5bfbfa188ccee6ea66b1556789ff6ab1d9fed953629d8abd6b9e160978c8c998bf4b663c87479b569d030529b3f1b3cd2415c82ce5eb7f3985dc0f46
7
+ data.tar.gz: 4f57e14fc9ae6868888c0b2a883400f6eb5addf34a6ab6772578a9524187b14843379b390396229a102136a47c98d11d8f161e7ee80c4b1526bcc20ac00d67f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.62.0 (2026-03-23)
4
+
5
+ Full Changelog: [v5.61.0...v5.62.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.61.0...v5.62.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([f355790](https://github.com/team-telnyx/telnyx-ruby/commit/f3557900d968ec0cce119384b42716aaa504f86e))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** update gitignore ([517ddb7](https://github.com/team-telnyx/telnyx-ruby/commit/517ddb716f3fb40bb16b9001fe93439cc01e2e8a))
15
+
16
+
17
+ ### Documentation
18
+
19
+ * WhatsApp template components schema ([8364546](https://github.com/team-telnyx/telnyx-ruby/commit/8364546c3f8b7c21290e464fddd50f4b0d137da5))
20
+
3
21
  ## 5.61.0 (2026-03-20)
4
22
 
5
23
  Full Changelog: [v5.60.0...v5.61.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.60.0...v5.61.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.61.0"
27
+ gem "telnyx", "~> 5.62.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -35,15 +35,16 @@ module Telnyx
35
35
 
36
36
  # @!attribute noise_suppression_engine
37
37
  # The engine to use for noise suppression. For backward compatibility, engines A,
38
- # B, and C are also supported, but are deprecated: A - Denoiser B - DeepFilterNet
39
- # C - Krisp
38
+ # B, C, and D are also supported, but are deprecated: A - Denoiser B -
39
+ # DeepFilterNet C - Krisp D - AiCoustics
40
40
  #
41
41
  # @return [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngine, nil]
42
42
  optional :noise_suppression_engine,
43
43
  enum: -> { Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngine }
44
44
 
45
45
  # @!attribute noise_suppression_engine_config
46
- # Configuration parameters for noise suppression engines.
46
+ # Configuration parameters for noise suppression engines. Different engines
47
+ # support different parameters.
47
48
  #
48
49
  # @return [Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig, nil]
49
50
  optional :noise_suppression_engine_config,
@@ -63,7 +64,7 @@ module Telnyx
63
64
  #
64
65
  # @param noise_suppression_engine [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngine] The engine to use for noise suppression.
65
66
  #
66
- # @param noise_suppression_engine_config [Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig] Configuration parameters for noise suppression engines.
67
+ # @param noise_suppression_engine_config [Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig] Configuration parameters for noise suppression engines. Different engines suppor
67
68
  #
68
69
  # @param request_options [Telnyx::RequestOptions, Hash{Symbol=>Object}]
69
70
 
@@ -80,14 +81,15 @@ module Telnyx
80
81
  end
81
82
 
82
83
  # The engine to use for noise suppression. For backward compatibility, engines A,
83
- # B, and C are also supported, but are deprecated: A - Denoiser B - DeepFilterNet
84
- # C - Krisp
84
+ # B, C, and D are also supported, but are deprecated: A - Denoiser B -
85
+ # DeepFilterNet C - Krisp D - AiCoustics
85
86
  module NoiseSuppressionEngine
86
87
  extend Telnyx::Internal::Type::Enum
87
88
 
88
89
  DENOISER = :Denoiser
89
90
  DEEP_FILTER_NET = :DeepFilterNet
90
91
  KRISP = :Krisp
92
+ AI_COUSTICS = :AiCoustics
91
93
 
92
94
  # @!method self.values
93
95
  # @return [Array<Symbol>]
@@ -101,14 +103,139 @@ module Telnyx
101
103
  # @return [Integer, nil]
102
104
  optional :attenuation_limit, Integer
103
105
 
104
- # @!method initialize(attenuation_limit: nil)
106
+ # @!attribute enhancement_level
107
+ # Enhancement intensity (0.0-1.0). Only applicable for AiCoustics.
108
+ #
109
+ # @return [Float, nil]
110
+ optional :enhancement_level, Float
111
+
112
+ # @!attribute family
113
+ # AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail'
114
+ # optimized for Voice AI/STT. Only applicable for AiCoustics.
115
+ #
116
+ # @return [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family, nil]
117
+ optional :family,
118
+ enum: -> { Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family }
119
+
120
+ # @!attribute mode
121
+ # Processing mode. Only applicable for DeepFilterNet.
122
+ #
123
+ # @return [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode, nil]
124
+ optional :mode,
125
+ enum: -> { Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode }
126
+
127
+ # @!attribute model
128
+ # The Krisp model to use. Only applicable for Krisp.
129
+ #
130
+ # @return [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model, nil]
131
+ optional :model,
132
+ enum: -> { Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model }
133
+
134
+ # @!attribute size
135
+ # AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are
136
+ # sparrow-only. 'vf_l' and 'vf_1_1_l' are quail-only. Only applicable for
137
+ # AiCoustics.
138
+ #
139
+ # @return [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size, nil]
140
+ optional :size,
141
+ enum: -> { Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size }
142
+
143
+ # @!attribute suppression_level
144
+ # Suppression level (0.0-100.0). Only applicable for Krisp.
145
+ #
146
+ # @return [Float, nil]
147
+ optional :suppression_level, Float
148
+
149
+ # @!attribute voice_gain
150
+ # Voice gain multiplier (0.1-4.0). Only applicable for AiCoustics.
151
+ #
152
+ # @return [Float, nil]
153
+ optional :voice_gain, Float
154
+
155
+ # @!method initialize(attenuation_limit: nil, enhancement_level: nil, family: nil, mode: nil, model: nil, size: nil, suppression_level: nil, voice_gain: nil)
105
156
  # Some parameter documentations has been truncated, see
106
157
  # {Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig}
107
158
  # for more details.
108
159
  #
109
- # Configuration parameters for noise suppression engines.
160
+ # Configuration parameters for noise suppression engines. Different engines
161
+ # support different parameters.
110
162
  #
111
163
  # @param attenuation_limit [Integer] The attenuation limit for noise suppression (0-100). Only applicable for DeepFil
164
+ #
165
+ # @param enhancement_level [Float] Enhancement intensity (0.0-1.0). Only applicable for AiCoustics.
166
+ #
167
+ # @param family [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family] AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail' o
168
+ #
169
+ # @param mode [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode] Processing mode. Only applicable for DeepFilterNet.
170
+ #
171
+ # @param model [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model] The Krisp model to use. Only applicable for Krisp.
172
+ #
173
+ # @param size [Symbol, Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size] AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are s
174
+ #
175
+ # @param suppression_level [Float] Suppression level (0.0-100.0). Only applicable for Krisp.
176
+ #
177
+ # @param voice_gain [Float] Voice gain multiplier (0.1-4.0). Only applicable for AiCoustics.
178
+
179
+ # AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail'
180
+ # optimized for Voice AI/STT. Only applicable for AiCoustics.
181
+ #
182
+ # @see Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig#family
183
+ module Family
184
+ extend Telnyx::Internal::Type::Enum
185
+
186
+ SPARROW = :sparrow
187
+ QUAIL = :quail
188
+
189
+ # @!method self.values
190
+ # @return [Array<Symbol>]
191
+ end
192
+
193
+ # Processing mode. Only applicable for DeepFilterNet.
194
+ #
195
+ # @see Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig#mode
196
+ module Mode
197
+ extend Telnyx::Internal::Type::Enum
198
+
199
+ STANDARD = :standard
200
+ ADVANCED = :advanced
201
+
202
+ # @!method self.values
203
+ # @return [Array<Symbol>]
204
+ end
205
+
206
+ # The Krisp model to use. Only applicable for Krisp.
207
+ #
208
+ # @see Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig#model
209
+ module Model
210
+ extend Telnyx::Internal::Type::Enum
211
+
212
+ KRISP_VIVA_TEL_V2_KEF = :"krisp-viva-tel-v2.kef"
213
+ KRISP_VIVA_TEL_LITE_V1_KEF = :"krisp-viva-tel-lite-v1.kef"
214
+ KRISP_VIVA_PRO_V1_KEF = :"krisp-viva-pro-v1.kef"
215
+ KRISP_VIVA_SS_V1_KEF = :"krisp-viva-ss-v1.kef"
216
+
217
+ # @!method self.values
218
+ # @return [Array<Symbol>]
219
+ end
220
+
221
+ # AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are
222
+ # sparrow-only. 'vf_l' and 'vf_1_1_l' are quail-only. Only applicable for
223
+ # AiCoustics.
224
+ #
225
+ # @see Telnyx::Models::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig#size
226
+ module Size
227
+ extend Telnyx::Internal::Type::Enum
228
+
229
+ S = :s
230
+ L = :l
231
+ XS = :xs
232
+ XXS = :xxs
233
+ VF_L = :vf_l
234
+ VF_1_1_L = :vf_1_1_l
235
+
236
+ # @!method self.values
237
+ # @return [Array<Symbol>]
238
+ end
112
239
  end
113
240
  end
114
241
  end