telnyx 5.30.0 → 5.31.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: 9eab9dbdfd8844cddbcae4e690e5e155288ad98f91d1391930c616538b3ed838
4
- data.tar.gz: f044db7e269f7e0d8645c65526889044c06f6f36ca690330f1835896dc717556
3
+ metadata.gz: 667a925cbae4fac53620336ba314569face085fbb7a5d4d8835d24deea241330
4
+ data.tar.gz: 4875530316b9799fe27b54ab6652d063105355a0322cda85f20e3b094af662b4
5
5
  SHA512:
6
- metadata.gz: '093992e6e10fae89cfb755103e5928fd3e4358044fdca9616cf6cdcac97017dddbcf715f89c888a165912839d23048f122cada96052de70934321d3e898f9506'
7
- data.tar.gz: 5d82758abe95a5b07ad18c819d4dc75e663ddcf7a443ba3158745ec261658c1cad40e4d9d6da8579deaf7ea4d016e5e79f5eac209873794c1279e6f28ca4408e
6
+ metadata.gz: 64ca21cf79eed60bc8c892a78982b199fa392d9dbc37e6a875411a4812f408836a2dce258afc3c3b45f0e795de21bd167047a81329b037eff4d0bea09476feb3
7
+ data.tar.gz: 26e13b9ea4a74980c60b975b3156bf3f047b821fea8919f15a7970c5fc89879cb6e41fdbc0f85fec56f31973180fe03610b698df9a57b1439b4912993d3797f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.31.0 (2026-02-18)
4
+
5
+ Full Changelog: [v5.30.0...v5.31.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.30.0...v5.31.0)
6
+
7
+ ### Features
8
+
9
+ * AI-2093: Add language_boost to MiniMax voice settings ([545b1be](https://github.com/team-telnyx/telnyx-ruby/commit/545b1be1f95502b11e56738ad1ef3e43d1eb0832))
10
+ * **api:** manual updates ([8cd9650](https://github.com/team-telnyx/telnyx-ruby/commit/8cd965096779b13b721acaad234dcfcd72c03e48))
11
+ * **api:** manual updates ([6224d2c](https://github.com/team-telnyx/telnyx-ruby/commit/6224d2c8cb5c0da313fa5c75def877fe96409c8c))
12
+
3
13
  ## 5.30.0 (2026-02-18)
4
14
 
5
15
  Full Changelog: [v5.29.0...v5.30.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.29.0...v5.30.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.30.0"
27
+ gem "telnyx", "~> 5.31.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -70,9 +70,9 @@ module Telnyx
70
70
 
71
71
  variant Telnyx::Internal::Type::Boolean
72
72
 
73
- variant -> { Telnyx::Models::AI::ConversationAddMessageParams::Metadata::UnionMember3Array }
73
+ variant -> { Telnyx::Models::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3Array }
74
74
 
75
- module UnionMember3
75
+ module UnionArrayVariant3
76
76
  extend Telnyx::Internal::Type::Union
77
77
 
78
78
  variant String
@@ -89,9 +89,9 @@ module Telnyx
89
89
  # @return [Array(String, Integer, Boolean, Array<String, Integer, Boolean>)]
90
90
 
91
91
  # @type [Telnyx::Internal::Type::Converter]
92
- UnionMember3Array =
92
+ UnionArrayVariant3Array =
93
93
  Telnyx::Internal::Type::ArrayOf[union: -> {
94
- Telnyx::AI::ConversationAddMessageParams::Metadata::UnionMember3
94
+ Telnyx::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3
95
95
  }]
96
96
  end
97
97
 
@@ -33,6 +33,14 @@ module Telnyx
33
33
  # @return [Telnyx::Models::AI::VoiceSettings::BackgroundAudio::PredefinedMedia, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaURL, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaName, nil]
34
34
  optional :background_audio, union: -> { Telnyx::AI::VoiceSettings::BackgroundAudio }
35
35
 
36
+ # @!attribute language_boost
37
+ # Enhances recognition for specific languages and dialects during MiniMax TTS
38
+ # synthesis. Default is null (no boost). Set to 'auto' for automatic language
39
+ # detection. Only applicable when using MiniMax voices.
40
+ #
41
+ # @return [Symbol, Telnyx::Models::AI::VoiceSettings::LanguageBoost, nil]
42
+ optional :language_boost, enum: -> { Telnyx::AI::VoiceSettings::LanguageBoost }, nil?: true
43
+
36
44
  # @!attribute similarity_boost
37
45
  # Determines how closely the AI should adhere to the original voice when
38
46
  # attempting to replicate it. Only applicable when using ElevenLabs.
@@ -78,7 +86,7 @@ module Telnyx
78
86
  # @return [Float, nil]
79
87
  optional :voice_speed, Float
80
88
 
81
- # @!method initialize(voice:, api_key_ref: nil, background_audio: nil, similarity_boost: nil, speed: nil, style: nil, temperature: nil, use_speaker_boost: nil, voice_speed: nil)
89
+ # @!method initialize(voice:, api_key_ref: nil, background_audio: nil, language_boost: nil, similarity_boost: nil, speed: nil, style: nil, temperature: nil, use_speaker_boost: nil, voice_speed: nil)
82
90
  # Some parameter documentations has been truncated, see
83
91
  # {Telnyx::Models::AI::VoiceSettings} for more details.
84
92
  #
@@ -88,6 +96,8 @@ module Telnyx
88
96
  #
89
97
  # @param background_audio [Telnyx::Models::AI::VoiceSettings::BackgroundAudio::PredefinedMedia, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaURL, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaName] Optional background audio to play on the call. Use a predefined media bed, or su
90
98
  #
99
+ # @param language_boost [Symbol, Telnyx::Models::AI::VoiceSettings::LanguageBoost, nil] Enhances recognition for specific languages and dialects during MiniMax TTS synt
100
+ #
91
101
  # @param similarity_boost [Float] Determines how closely the AI should adhere to the original voice when attemptin
92
102
  #
93
103
  # @param speed [Float] Adjusts speech velocity. 1.0 is default speed; values less than 1.0 slow speech;
@@ -195,6 +205,60 @@ module Telnyx
195
205
  # @!method self.variants
196
206
  # @return [Array(Telnyx::Models::AI::VoiceSettings::BackgroundAudio::PredefinedMedia, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaURL, Telnyx::Models::AI::VoiceSettings::BackgroundAudio::MediaName)]
197
207
  end
208
+
209
+ # Enhances recognition for specific languages and dialects during MiniMax TTS
210
+ # synthesis. Default is null (no boost). Set to 'auto' for automatic language
211
+ # detection. Only applicable when using MiniMax voices.
212
+ #
213
+ # @see Telnyx::Models::AI::VoiceSettings#language_boost
214
+ module LanguageBoost
215
+ extend Telnyx::Internal::Type::Enum
216
+
217
+ AUTO = :auto
218
+ CHINESE = :Chinese
219
+ CHINESE_YUE = :"Chinese,Yue"
220
+ ENGLISH = :English
221
+ ARABIC = :Arabic
222
+ RUSSIAN = :Russian
223
+ SPANISH = :Spanish
224
+ FRENCH = :French
225
+ PORTUGUESE = :Portuguese
226
+ GERMAN = :German
227
+ TURKISH = :Turkish
228
+ DUTCH = :Dutch
229
+ UKRAINIAN = :Ukrainian
230
+ VIETNAMESE = :Vietnamese
231
+ INDONESIAN = :Indonesian
232
+ JAPANESE = :Japanese
233
+ ITALIAN = :Italian
234
+ KOREAN = :Korean
235
+ THAI = :Thai
236
+ POLISH = :Polish
237
+ ROMANIAN = :Romanian
238
+ GREEK = :Greek
239
+ CZECH = :Czech
240
+ FINNISH = :Finnish
241
+ HINDI = :Hindi
242
+ BULGARIAN = :Bulgarian
243
+ DANISH = :Danish
244
+ HEBREW = :Hebrew
245
+ MALAY = :Malay
246
+ PERSIAN = :Persian
247
+ SLOVAK = :Slovak
248
+ SWEDISH = :Swedish
249
+ CROATIAN = :Croatian
250
+ FILIPINO = :Filipino
251
+ HUNGARIAN = :Hungarian
252
+ NORWEGIAN = :Norwegian
253
+ SLOVENIAN = :Slovenian
254
+ CATALAN = :Catalan
255
+ NYNORSK = :Nynorsk
256
+ TAMIL = :Tamil
257
+ AFRIKAANS = :Afrikaans
258
+
259
+ # @!method self.values
260
+ # @return [Array<Symbol>]
261
+ end
198
262
  end
199
263
  end
200
264
  end
@@ -89,6 +89,9 @@ module Telnyx
89
89
  enum: -> { Telnyx::Calls::ActionStartRecordingParams::TranscriptionEngine }
90
90
 
91
91
  # @!attribute transcription_language
92
+ # Language code for transcription. Note: Not all languages are supported by all
93
+ # transcription engines (google, telnyx, deepgram). See engine-specific
94
+ # documentation for supported values.
92
95
  #
93
96
  # @return [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionLanguage, nil]
94
97
  optional :transcription_language,
@@ -153,7 +156,7 @@ module Telnyx
153
156
  #
154
157
  # @param transcription_engine [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionEngine] Engine to use for speech recognition. `A` - `Google`, `B` - `Telnyx`, `deepgram/
155
158
  #
156
- # @param transcription_language [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionLanguage]
159
+ # @param transcription_language [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionLanguage] Language code for transcription. Note: Not all languages are supported by all tr
157
160
  #
158
161
  # @param transcription_max_speaker_count [Integer] Defines maximum number of speakers in the conversation. Applies to `google` engi
159
162
  #
@@ -219,11 +222,17 @@ module Telnyx
219
222
  # @return [Array<Symbol>]
220
223
  end
221
224
 
225
+ # Language code for transcription. Note: Not all languages are supported by all
226
+ # transcription engines (google, telnyx, deepgram). See engine-specific
227
+ # documentation for supported values.
222
228
  module TranscriptionLanguage
223
229
  extend Telnyx::Internal::Type::Enum
224
230
 
231
+ AF = :af
225
232
  AF_ZA = :"af-ZA"
233
+ AM = :am
226
234
  AM_ET = :"am-ET"
235
+ AR = :ar
227
236
  AR_AE = :"ar-AE"
228
237
  AR_BH = :"ar-BH"
229
238
  AR_DZ = :"ar-DZ"
@@ -241,18 +250,35 @@ module Telnyx
241
250
  AR_SA = :"ar-SA"
242
251
  AR_TN = :"ar-TN"
243
252
  AR_YE = :"ar-YE"
253
+ AS = :as
254
+ AUTO_DETECT = :auto_detect
255
+ AZ = :az
244
256
  AZ_AZ = :"az-AZ"
257
+ BA = :ba
258
+ BE = :be
259
+ BG = :bg
245
260
  BG_BG = :"bg-BG"
261
+ BN = :bn
246
262
  BN_BD = :"bn-BD"
247
263
  BN_IN = :"bn-IN"
264
+ BO = :bo
265
+ BR = :br
266
+ BS = :bs
248
267
  BS_BA = :"bs-BA"
268
+ CA = :ca
249
269
  CA_ES = :"ca-ES"
270
+ CS = :cs
250
271
  CS_CZ = :"cs-CZ"
272
+ CY = :cy
273
+ DA = :da
251
274
  DA_DK = :"da-DK"
275
+ DE = :de
252
276
  DE_AT = :"de-AT"
253
277
  DE_CH = :"de-CH"
254
278
  DE_DE = :"de-DE"
279
+ EL = :el
255
280
  EL_GR = :"el-GR"
281
+ EN = :en
256
282
  EN_AU = :"en-AU"
257
283
  EN_CA = :"en-CA"
258
284
  EN_GB = :"en-GB"
@@ -269,6 +295,8 @@ module Telnyx
269
295
  EN_TZ = :"en-TZ"
270
296
  EN_US = :"en-US"
271
297
  EN_ZA = :"en-ZA"
298
+ ES = :es
299
+ ES_419 = :"es-419"
272
300
  ES_AR = :"es-AR"
273
301
  ES_BO = :"es-BO"
274
302
  ES_CL = :"es-CL"
@@ -289,184 +317,162 @@ module Telnyx
289
317
  ES_US = :"es-US"
290
318
  ES_UY = :"es-UY"
291
319
  ES_VE = :"es-VE"
320
+ ET = :et
292
321
  ET_EE = :"et-EE"
322
+ EU = :eu
293
323
  EU_ES = :"eu-ES"
324
+ FA = :fa
294
325
  FA_IR = :"fa-IR"
326
+ FI = :fi
295
327
  FI_FI = :"fi-FI"
296
328
  FIL_PH = :"fil-PH"
329
+ FO = :fo
330
+ FR = :fr
297
331
  FR_BE = :"fr-BE"
298
332
  FR_CA = :"fr-CA"
299
333
  FR_CH = :"fr-CH"
300
334
  FR_FR = :"fr-FR"
335
+ GL = :gl
301
336
  GL_ES = :"gl-ES"
337
+ GU = :gu
302
338
  GU_IN = :"gu-IN"
339
+ HA = :ha
340
+ HAW = :haw
341
+ HE = :he
342
+ HI = :hi
303
343
  HI_IN = :"hi-IN"
344
+ HR = :hr
304
345
  HR_HR = :"hr-HR"
346
+ HT = :ht
347
+ HU = :hu
305
348
  HU_HU = :"hu-HU"
349
+ HY = :hy
306
350
  HY_AM = :"hy-AM"
351
+ ID = :id
307
352
  ID_ID = :"id-ID"
353
+ IS = :is
308
354
  IS_IS = :"is-IS"
355
+ IT = :it
309
356
  IT_CH = :"it-CH"
310
357
  IT_IT = :"it-IT"
311
358
  IW_IL = :"iw-IL"
359
+ JA = :ja
312
360
  JA_JP = :"ja-JP"
313
361
  JV_ID = :"jv-ID"
362
+ JW = :jw
363
+ KA = :ka
314
364
  KA_GE = :"ka-GE"
365
+ KK = :kk
315
366
  KK_KZ = :"kk-KZ"
367
+ KM = :km
316
368
  KM_KH = :"km-KH"
369
+ KN = :kn
317
370
  KN_IN = :"kn-IN"
371
+ KO = :ko
318
372
  KO_KR = :"ko-KR"
373
+ LA = :la
374
+ LB = :lb
375
+ LN = :ln
376
+ LO = :lo
319
377
  LO_LA = :"lo-LA"
378
+ LT = :lt
320
379
  LT_LT = :"lt-LT"
380
+ LV = :lv
321
381
  LV_LV = :"lv-LV"
382
+ MG = :mg
383
+ MI = :mi
384
+ MK = :mk
322
385
  MK_MK = :"mk-MK"
386
+ ML = :ml
323
387
  ML_IN = :"ml-IN"
388
+ MN = :mn
324
389
  MN_MN = :"mn-MN"
390
+ MR = :mr
325
391
  MR_IN = :"mr-IN"
392
+ MS = :ms
326
393
  MS_MY = :"ms-MY"
394
+ MT = :mt
395
+ MY = :my
327
396
  MY_MM = :"my-MM"
397
+ NE = :ne
328
398
  NE_NP = :"ne-NP"
399
+ NL = :nl
329
400
  NL_BE = :"nl-BE"
330
401
  NL_NL = :"nl-NL"
402
+ NN = :nn
403
+ NO = :no
331
404
  NO_NO = :"no-NO"
405
+ OC = :oc
406
+ PA = :pa
332
407
  PA_GURU_IN = :"pa-Guru-IN"
408
+ PL = :pl
333
409
  PL_PL = :"pl-PL"
410
+ PS = :ps
411
+ PT = :pt
334
412
  PT_BR = :"pt-BR"
335
413
  PT_PT = :"pt-PT"
414
+ RO = :ro
336
415
  RO_RO = :"ro-RO"
416
+ RU = :ru
337
417
  RU_RU = :"ru-RU"
338
418
  RW_RW = :"rw-RW"
419
+ SA = :sa
420
+ SD = :sd
421
+ SI = :si
339
422
  SI_LK = :"si-LK"
423
+ SK = :sk
340
424
  SK_SK = :"sk-SK"
425
+ SL = :sl
341
426
  SL_SI = :"sl-SI"
427
+ SN = :sn
428
+ SO = :so
429
+ SQ = :sq
342
430
  SQ_AL = :"sq-AL"
431
+ SR = :sr
343
432
  SR_RS = :"sr-RS"
344
433
  SS_LATN_ZA = :"ss-latn-za"
345
434
  ST_ZA = :"st-ZA"
435
+ SU = :su
346
436
  SU_ID = :"su-ID"
437
+ SV = :sv
347
438
  SV_SE = :"sv-SE"
439
+ SW = :sw
348
440
  SW_KE = :"sw-KE"
349
441
  SW_TZ = :"sw-TZ"
442
+ TA = :ta
350
443
  TA_IN = :"ta-IN"
351
444
  TA_LK = :"ta-LK"
352
445
  TA_MY = :"ta-MY"
353
446
  TA_SG = :"ta-SG"
447
+ TE = :te
354
448
  TE_IN = :"te-IN"
449
+ TG = :tg
450
+ TH = :th
355
451
  TH_TH = :"th-TH"
452
+ TK = :tk
453
+ TL = :tl
356
454
  TN_LATN_ZA = :"tn-latn-za"
455
+ TR = :tr
357
456
  TR_TR = :"tr-TR"
358
457
  TS_ZA = :"ts-ZA"
458
+ TT = :tt
459
+ UK = :uk
359
460
  UK_UA = :"uk-UA"
461
+ UR = :ur
360
462
  UR_IN = :"ur-IN"
361
463
  UR_PK = :"ur-PK"
464
+ UZ = :uz
362
465
  UZ_UZ = :"uz-UZ"
363
466
  VE_ZA = :"ve-ZA"
467
+ VI = :vi
364
468
  VI_VN = :"vi-VN"
365
469
  XH_ZA = :"xh-ZA"
470
+ YI = :yi
471
+ YO = :yo
366
472
  YUE_HANT_HK = :"yue-Hant-HK"
367
473
  ZH = :zh
368
474
  ZH_TW = :"zh-TW"
369
475
  ZU_ZA = :"zu-ZA"
370
- EN = :en
371
- DE = :de
372
- ES = :es
373
- RU = :ru
374
- KO = :ko
375
- FR = :fr
376
- JA = :ja
377
- PT = :pt
378
- TR = :tr
379
- PL = :pl
380
- CA = :ca
381
- NL = :nl
382
- AR = :ar
383
- SV = :sv
384
- IT = :it
385
- ID = :id
386
- HI = :hi
387
- FI = :fi
388
- VI = :vi
389
- HE = :he
390
- UK = :uk
391
- EL = :el
392
- MS = :ms
393
- CS = :cs
394
- RO = :ro
395
- DA = :da
396
- HU = :hu
397
- TA = :ta
398
- NO = :no
399
- TH = :th
400
- UR = :ur
401
- HR = :hr
402
- BG = :bg
403
- LT = :lt
404
- LA = :la
405
- MI = :mi
406
- ML = :ml
407
- CY = :cy
408
- SK = :sk
409
- TE = :te
410
- FA = :fa
411
- LV = :lv
412
- BN = :bn
413
- SR = :sr
414
- AZ = :az
415
- SL = :sl
416
- KN = :kn
417
- ET = :et
418
- MK = :mk
419
- BR = :br
420
- EU = :eu
421
- IS = :is
422
- HY = :hy
423
- NE = :ne
424
- MN = :mn
425
- BS = :bs
426
- KK = :kk
427
- SQ = :sq
428
- SW = :sw
429
- GL = :gl
430
- MR = :mr
431
- PA = :pa
432
- SI = :si
433
- KM = :km
434
- SN = :sn
435
- YO = :yo
436
- SO = :so
437
- AF = :af
438
- OC = :oc
439
- KA = :ka
440
- BE = :be
441
- TG = :tg
442
- SD = :sd
443
- GU = :gu
444
- AM = :am
445
- YI = :yi
446
- LO = :lo
447
- UZ = :uz
448
- FO = :fo
449
- HT = :ht
450
- PS = :ps
451
- TK = :tk
452
- NN = :nn
453
- MT = :mt
454
- SA = :sa
455
- LB = :lb
456
- MY = :my
457
- BO = :bo
458
- TL = :tl
459
- MG = :mg
460
- AS = :as
461
- TT = :tt
462
- HAW = :haw
463
- LN = :ln
464
- HA = :ha
465
- BA = :ba
466
- JW = :jw
467
- SU = :su
468
- AUTO_DETECT = :auto_detect
469
- ES_419 = :"es-419"
470
476
 
471
477
  # @!method self.values
472
478
  # @return [Array<Symbol>]
@@ -9,6 +9,14 @@ module Telnyx
9
9
  # @return [Symbol, Telnyx::Models::MinimaxVoiceSettings::Type]
10
10
  required :type, enum: -> { Telnyx::MinimaxVoiceSettings::Type }
11
11
 
12
+ # @!attribute language_boost
13
+ # Enhances recognition for specific languages and dialects during MiniMax TTS
14
+ # synthesis. Default is null (no boost). Set to 'auto' for automatic language
15
+ # detection.
16
+ #
17
+ # @return [Symbol, Telnyx::Models::MinimaxVoiceSettings::LanguageBoost, nil]
18
+ optional :language_boost, enum: -> { Telnyx::MinimaxVoiceSettings::LanguageBoost }, nil?: true
19
+
12
20
  # @!attribute pitch
13
21
  # Voice pitch adjustment. Default is 0.
14
22
  #
@@ -27,9 +35,14 @@ module Telnyx
27
35
  # @return [Float, nil]
28
36
  optional :vol, Float
29
37
 
30
- # @!method initialize(type:, pitch: nil, speed: nil, vol: nil)
38
+ # @!method initialize(type:, language_boost: nil, pitch: nil, speed: nil, vol: nil)
39
+ # Some parameter documentations has been truncated, see
40
+ # {Telnyx::Models::MinimaxVoiceSettings} for more details.
41
+ #
31
42
  # @param type [Symbol, Telnyx::Models::MinimaxVoiceSettings::Type] Voice settings provider type
32
43
  #
44
+ # @param language_boost [Symbol, Telnyx::Models::MinimaxVoiceSettings::LanguageBoost, nil] Enhances recognition for specific languages and dialects during MiniMax TTS synt
45
+ #
33
46
  # @param pitch [Integer] Voice pitch adjustment. Default is 0.
34
47
  #
35
48
  # @param speed [Float] Speech speed multiplier. Default is 1.0.
@@ -47,6 +60,60 @@ module Telnyx
47
60
  # @!method self.values
48
61
  # @return [Array<Symbol>]
49
62
  end
63
+
64
+ # Enhances recognition for specific languages and dialects during MiniMax TTS
65
+ # synthesis. Default is null (no boost). Set to 'auto' for automatic language
66
+ # detection.
67
+ #
68
+ # @see Telnyx::Models::MinimaxVoiceSettings#language_boost
69
+ module LanguageBoost
70
+ extend Telnyx::Internal::Type::Enum
71
+
72
+ AUTO = :auto
73
+ CHINESE = :Chinese
74
+ CHINESE_YUE = :"Chinese,Yue"
75
+ ENGLISH = :English
76
+ ARABIC = :Arabic
77
+ RUSSIAN = :Russian
78
+ SPANISH = :Spanish
79
+ FRENCH = :French
80
+ PORTUGUESE = :Portuguese
81
+ GERMAN = :German
82
+ TURKISH = :Turkish
83
+ DUTCH = :Dutch
84
+ UKRAINIAN = :Ukrainian
85
+ VIETNAMESE = :Vietnamese
86
+ INDONESIAN = :Indonesian
87
+ JAPANESE = :Japanese
88
+ ITALIAN = :Italian
89
+ KOREAN = :Korean
90
+ THAI = :Thai
91
+ POLISH = :Polish
92
+ ROMANIAN = :Romanian
93
+ GREEK = :Greek
94
+ CZECH = :Czech
95
+ FINNISH = :Finnish
96
+ HINDI = :Hindi
97
+ BULGARIAN = :Bulgarian
98
+ DANISH = :Danish
99
+ HEBREW = :Hebrew
100
+ MALAY = :Malay
101
+ PERSIAN = :Persian
102
+ SLOVAK = :Slovak
103
+ SWEDISH = :Swedish
104
+ CROATIAN = :Croatian
105
+ FILIPINO = :Filipino
106
+ HUNGARIAN = :Hungarian
107
+ NORWEGIAN = :Norwegian
108
+ SLOVENIAN = :Slovenian
109
+ CATALAN = :Catalan
110
+ NYNORSK = :Nynorsk
111
+ TAMIL = :Tamil
112
+ AFRIKAANS = :Afrikaans
113
+
114
+ # @!method self.values
115
+ # @return [Array<Symbol>]
116
+ end
50
117
  end
51
118
  end
52
119
  end
@@ -77,7 +77,7 @@ module Telnyx
77
77
  # Filter porting orders by status(es). Originally: filter[status],
78
78
  # filter[status][in][]
79
79
  #
80
- # @return [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>, nil]
80
+ # @return [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>, nil]
81
81
  optional :status, union: -> { Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status }
82
82
 
83
83
  # @!attribute support_key
@@ -104,7 +104,7 @@ module Telnyx
104
104
  #
105
105
  # @param porting_order_id [Array<String>] Filter results by a list of porting order ids
106
106
  #
107
- # @param status [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>] Filter porting orders by status(es). Originally: filter[status], filter[status]
107
+ # @param status [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>] Filter porting orders by status(es). Originally: filter[status], filter[status]
108
108
  #
109
109
  # @param support_key [String, Array<String>] Filter results by support key(s). Originally: filter[support_key][eq], filter[su
110
110
 
@@ -157,7 +157,7 @@ module Telnyx
157
157
  variant enum: -> { Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus }
158
158
 
159
159
  # Filter by multiple statuses (in operation)
160
- variant -> { Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1Array }
160
+ variant -> { Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1Array }
161
161
 
162
162
  # Filter by single status
163
163
  module PortingOrderSingleStatus
@@ -176,7 +176,7 @@ module Telnyx
176
176
  # @return [Array<Symbol>]
177
177
  end
178
178
 
179
- module UnionMember1
179
+ module UnionArrayVariant1
180
180
  extend Telnyx::Internal::Type::Enum
181
181
 
182
182
  DRAFT = :draft
@@ -193,12 +193,12 @@ module Telnyx
193
193
  end
194
194
 
195
195
  # @!method self.variants
196
- # @return [Array(Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>)]
196
+ # @return [Array(Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>)]
197
197
 
198
198
  # @type [Telnyx::Internal::Type::Converter]
199
- UnionMember1Array =
199
+ UnionArrayVariant1Array =
200
200
  Telnyx::Internal::Type::ArrayOf[enum: -> {
201
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
201
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1
202
202
  }]
203
203
  end
204
204
 
@@ -1039,7 +1039,7 @@ module Telnyx
1039
1039
  #
1040
1040
  # @param transcription_engine [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionEngine] Engine to use for speech recognition. `A` - `Google`, `B` - `Telnyx`, `deepgram/
1041
1041
  #
1042
- # @param transcription_language [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionLanguage]
1042
+ # @param transcription_language [Symbol, Telnyx::Models::Calls::ActionStartRecordingParams::TranscriptionLanguage] Language code for transcription. Note: Not all languages are supported by all tr
1043
1043
  #
1044
1044
  # @param transcription_max_speaker_count [Integer] Defines maximum number of speakers in the conversation. Applies to `google` engi
1045
1045
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.30.0"
4
+ VERSION = "5.31.0"
5
5
  end