telnyx 5.61.0 → 5.63.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 +31 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/conversation_add_message_params.rb +4 -4
- data/lib/telnyx/models/calls/action_start_noise_suppression_params.rb +135 -8
- data/lib/telnyx/models/porting_orders/phone_number_block_list_params.rb +7 -7
- data/lib/telnyx/models/voice_clone_create_from_upload_params.rb +0 -2
- data/lib/telnyx/models/voice_clone_create_params.rb +0 -2
- data/lib/telnyx/models/voice_clone_data.rb +0 -2
- data/lib/telnyx/models/voice_clone_list_params.rb +0 -2
- data/lib/telnyx/models/voice_design_create_params.rb +0 -2
- data/lib/telnyx/models/voice_design_data.rb +0 -2
- data/lib/telnyx/models/voice_design_list_response.rb +0 -2
- data/lib/telnyx/models/voice_design_rename_response.rb +0 -2
- data/lib/telnyx/models/whatsapp/template_create_params.rb +421 -7
- data/lib/telnyx/models/whatsapp_message_template_update_params.rb +405 -3
- data/lib/telnyx/models/whatsapp_template_data.rb +10 -3
- data/lib/telnyx/models/x402/credit_account_settle_params.rb +4 -4
- data/lib/telnyx/resources/calls/actions.rb +1 -1
- data/lib/telnyx/resources/whatsapp/templates.rb +13 -5
- data/lib/telnyx/resources/whatsapp_message_templates.rb +1 -1
- data/lib/telnyx/resources/x402/credit_account.rb +2 -2
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/conversation_add_message_params.rbi +5 -5
- data/rbi/telnyx/models/calls/action_start_noise_suppression_params.rbi +338 -12
- data/rbi/telnyx/models/porting_orders/phone_number_block_list_params.rbi +18 -18
- data/rbi/telnyx/models/voice_clone_create_from_upload_params.rbi +0 -10
- data/rbi/telnyx/models/voice_clone_create_params.rbi +0 -7
- data/rbi/telnyx/models/voice_clone_data.rbi +0 -4
- data/rbi/telnyx/models/voice_clone_list_params.rbi +0 -10
- data/rbi/telnyx/models/voice_design_create_params.rbi +0 -10
- data/rbi/telnyx/models/voice_design_data.rbi +0 -4
- data/rbi/telnyx/models/voice_design_list_response.rbi +0 -10
- data/rbi/telnyx/models/voice_design_rename_response.rbi +0 -10
- data/rbi/telnyx/models/whatsapp/template_create_params.rbi +891 -3
- data/rbi/telnyx/models/whatsapp_message_template_update_params.rbi +898 -5
- data/rbi/telnyx/models/whatsapp_template_data.rbi +10 -2
- data/rbi/telnyx/models/x402/credit_account_settle_params.rbi +6 -6
- data/rbi/telnyx/resources/calls/actions.rbi +4 -3
- data/rbi/telnyx/resources/whatsapp/templates.rbi +17 -1
- data/rbi/telnyx/resources/whatsapp_message_templates.rbi +11 -1
- data/rbi/telnyx/resources/x402/credit_account.rbi +2 -2
- data/sig/telnyx/models/ai/conversation_add_message_params.rbs +5 -5
- data/sig/telnyx/models/calls/action_start_noise_suppression_params.rbs +124 -4
- data/sig/telnyx/models/porting_orders/phone_number_block_list_params.rbs +5 -5
- data/sig/telnyx/models/voice_clone_create_from_upload_params.rbs +1 -3
- data/sig/telnyx/models/voice_clone_create_params.rbs +1 -3
- data/sig/telnyx/models/voice_clone_data.rbs +1 -3
- data/sig/telnyx/models/voice_clone_list_params.rbs +1 -3
- data/sig/telnyx/models/voice_design_create_params.rbs +1 -3
- data/sig/telnyx/models/voice_design_data.rbs +1 -3
- data/sig/telnyx/models/voice_design_list_response.rbs +1 -3
- data/sig/telnyx/models/voice_design_rename_response.rbs +1 -3
- data/sig/telnyx/models/whatsapp/template_create_params.rbs +369 -4
- data/sig/telnyx/models/whatsapp_message_template_update_params.rbs +369 -6
- data/sig/telnyx/models/x402/credit_account_settle_params.rbs +5 -5
- data/sig/telnyx/resources/whatsapp/templates.rbs +1 -1
- data/sig/telnyx/resources/whatsapp_message_templates.rbs +1 -1
- data/sig/telnyx/resources/x402/credit_account.rbs +1 -1
- metadata +2 -2
|
@@ -53,8 +53,8 @@ module Telnyx
|
|
|
53
53
|
attr_writer :direction
|
|
54
54
|
|
|
55
55
|
# The engine to use for noise suppression. For backward compatibility, engines A,
|
|
56
|
-
# B, and
|
|
57
|
-
# C - Krisp
|
|
56
|
+
# B, C, and D are also supported, but are deprecated: A - Denoiser B -
|
|
57
|
+
# DeepFilterNet C - Krisp D - AiCoustics
|
|
58
58
|
sig do
|
|
59
59
|
returns(
|
|
60
60
|
T.nilable(
|
|
@@ -72,7 +72,8 @@ module Telnyx
|
|
|
72
72
|
end
|
|
73
73
|
attr_writer :noise_suppression_engine
|
|
74
74
|
|
|
75
|
-
# Configuration parameters for noise suppression engines.
|
|
75
|
+
# Configuration parameters for noise suppression engines. Different engines
|
|
76
|
+
# support different parameters.
|
|
76
77
|
sig do
|
|
77
78
|
returns(
|
|
78
79
|
T.nilable(
|
|
@@ -115,10 +116,11 @@ module Telnyx
|
|
|
115
116
|
# The direction of the audio stream to be noise suppressed.
|
|
116
117
|
direction: nil,
|
|
117
118
|
# The engine to use for noise suppression. For backward compatibility, engines A,
|
|
118
|
-
# B, and
|
|
119
|
-
# C - Krisp
|
|
119
|
+
# B, C, and D are also supported, but are deprecated: A - Denoiser B -
|
|
120
|
+
# DeepFilterNet C - Krisp D - AiCoustics
|
|
120
121
|
noise_suppression_engine: nil,
|
|
121
|
-
# Configuration parameters for noise suppression engines.
|
|
122
|
+
# Configuration parameters for noise suppression engines. Different engines
|
|
123
|
+
# support different parameters.
|
|
122
124
|
noise_suppression_engine_config: nil,
|
|
123
125
|
request_options: {}
|
|
124
126
|
)
|
|
@@ -184,8 +186,8 @@ module Telnyx
|
|
|
184
186
|
end
|
|
185
187
|
|
|
186
188
|
# The engine to use for noise suppression. For backward compatibility, engines A,
|
|
187
|
-
# B, and
|
|
188
|
-
# C - Krisp
|
|
189
|
+
# B, C, and D are also supported, but are deprecated: A - Denoiser B -
|
|
190
|
+
# DeepFilterNet C - Krisp D - AiCoustics
|
|
189
191
|
module NoiseSuppressionEngine
|
|
190
192
|
extend Telnyx::Internal::Type::Enum
|
|
191
193
|
|
|
@@ -213,6 +215,11 @@ module Telnyx
|
|
|
213
215
|
:Krisp,
|
|
214
216
|
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngine::TaggedSymbol
|
|
215
217
|
)
|
|
218
|
+
AI_COUSTICS =
|
|
219
|
+
T.let(
|
|
220
|
+
:AiCoustics,
|
|
221
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngine::TaggedSymbol
|
|
222
|
+
)
|
|
216
223
|
|
|
217
224
|
sig do
|
|
218
225
|
override.returns(
|
|
@@ -242,18 +249,337 @@ module Telnyx
|
|
|
242
249
|
sig { params(attenuation_limit: Integer).void }
|
|
243
250
|
attr_writer :attenuation_limit
|
|
244
251
|
|
|
245
|
-
#
|
|
246
|
-
sig {
|
|
252
|
+
# Enhancement intensity (0.0-1.0). Only applicable for AiCoustics.
|
|
253
|
+
sig { returns(T.nilable(Float)) }
|
|
254
|
+
attr_reader :enhancement_level
|
|
255
|
+
|
|
256
|
+
sig { params(enhancement_level: Float).void }
|
|
257
|
+
attr_writer :enhancement_level
|
|
258
|
+
|
|
259
|
+
# AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail'
|
|
260
|
+
# optimized for Voice AI/STT. Only applicable for AiCoustics.
|
|
261
|
+
sig do
|
|
262
|
+
returns(
|
|
263
|
+
T.nilable(
|
|
264
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::OrSymbol
|
|
265
|
+
)
|
|
266
|
+
)
|
|
267
|
+
end
|
|
268
|
+
attr_reader :family
|
|
269
|
+
|
|
270
|
+
sig do
|
|
271
|
+
params(
|
|
272
|
+
family:
|
|
273
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::OrSymbol
|
|
274
|
+
).void
|
|
275
|
+
end
|
|
276
|
+
attr_writer :family
|
|
277
|
+
|
|
278
|
+
# Processing mode. Only applicable for DeepFilterNet.
|
|
279
|
+
sig do
|
|
280
|
+
returns(
|
|
281
|
+
T.nilable(
|
|
282
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::OrSymbol
|
|
283
|
+
)
|
|
284
|
+
)
|
|
285
|
+
end
|
|
286
|
+
attr_reader :mode
|
|
287
|
+
|
|
288
|
+
sig do
|
|
289
|
+
params(
|
|
290
|
+
mode:
|
|
291
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::OrSymbol
|
|
292
|
+
).void
|
|
293
|
+
end
|
|
294
|
+
attr_writer :mode
|
|
295
|
+
|
|
296
|
+
# The Krisp model to use. Only applicable for Krisp.
|
|
297
|
+
sig do
|
|
298
|
+
returns(
|
|
299
|
+
T.nilable(
|
|
300
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::OrSymbol
|
|
301
|
+
)
|
|
302
|
+
)
|
|
303
|
+
end
|
|
304
|
+
attr_reader :model
|
|
305
|
+
|
|
306
|
+
sig do
|
|
307
|
+
params(
|
|
308
|
+
model:
|
|
309
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::OrSymbol
|
|
310
|
+
).void
|
|
311
|
+
end
|
|
312
|
+
attr_writer :model
|
|
313
|
+
|
|
314
|
+
# AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are
|
|
315
|
+
# sparrow-only. 'vf_l' and 'vf_1_1_l' are quail-only. Only applicable for
|
|
316
|
+
# AiCoustics.
|
|
317
|
+
sig do
|
|
318
|
+
returns(
|
|
319
|
+
T.nilable(
|
|
320
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::OrSymbol
|
|
321
|
+
)
|
|
322
|
+
)
|
|
323
|
+
end
|
|
324
|
+
attr_reader :size
|
|
325
|
+
|
|
326
|
+
sig do
|
|
327
|
+
params(
|
|
328
|
+
size:
|
|
329
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::OrSymbol
|
|
330
|
+
).void
|
|
331
|
+
end
|
|
332
|
+
attr_writer :size
|
|
333
|
+
|
|
334
|
+
# Suppression level (0.0-100.0). Only applicable for Krisp.
|
|
335
|
+
sig { returns(T.nilable(Float)) }
|
|
336
|
+
attr_reader :suppression_level
|
|
337
|
+
|
|
338
|
+
sig { params(suppression_level: Float).void }
|
|
339
|
+
attr_writer :suppression_level
|
|
340
|
+
|
|
341
|
+
# Voice gain multiplier (0.1-4.0). Only applicable for AiCoustics.
|
|
342
|
+
sig { returns(T.nilable(Float)) }
|
|
343
|
+
attr_reader :voice_gain
|
|
344
|
+
|
|
345
|
+
sig { params(voice_gain: Float).void }
|
|
346
|
+
attr_writer :voice_gain
|
|
347
|
+
|
|
348
|
+
# Configuration parameters for noise suppression engines. Different engines
|
|
349
|
+
# support different parameters.
|
|
350
|
+
sig do
|
|
351
|
+
params(
|
|
352
|
+
attenuation_limit: Integer,
|
|
353
|
+
enhancement_level: Float,
|
|
354
|
+
family:
|
|
355
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::OrSymbol,
|
|
356
|
+
mode:
|
|
357
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::OrSymbol,
|
|
358
|
+
model:
|
|
359
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::OrSymbol,
|
|
360
|
+
size:
|
|
361
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::OrSymbol,
|
|
362
|
+
suppression_level: Float,
|
|
363
|
+
voice_gain: Float
|
|
364
|
+
).returns(T.attached_class)
|
|
365
|
+
end
|
|
247
366
|
def self.new(
|
|
248
367
|
# The attenuation limit for noise suppression (0-100). Only applicable for
|
|
249
368
|
# DeepFilterNet.
|
|
250
|
-
attenuation_limit: nil
|
|
369
|
+
attenuation_limit: nil,
|
|
370
|
+
# Enhancement intensity (0.0-1.0). Only applicable for AiCoustics.
|
|
371
|
+
enhancement_level: nil,
|
|
372
|
+
# AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail'
|
|
373
|
+
# optimized for Voice AI/STT. Only applicable for AiCoustics.
|
|
374
|
+
family: nil,
|
|
375
|
+
# Processing mode. Only applicable for DeepFilterNet.
|
|
376
|
+
mode: nil,
|
|
377
|
+
# The Krisp model to use. Only applicable for Krisp.
|
|
378
|
+
model: nil,
|
|
379
|
+
# AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are
|
|
380
|
+
# sparrow-only. 'vf_l' and 'vf_1_1_l' are quail-only. Only applicable for
|
|
381
|
+
# AiCoustics.
|
|
382
|
+
size: nil,
|
|
383
|
+
# Suppression level (0.0-100.0). Only applicable for Krisp.
|
|
384
|
+
suppression_level: nil,
|
|
385
|
+
# Voice gain multiplier (0.1-4.0). Only applicable for AiCoustics.
|
|
386
|
+
voice_gain: nil
|
|
251
387
|
)
|
|
252
388
|
end
|
|
253
389
|
|
|
254
|
-
sig
|
|
390
|
+
sig do
|
|
391
|
+
override.returns(
|
|
392
|
+
{
|
|
393
|
+
attenuation_limit: Integer,
|
|
394
|
+
enhancement_level: Float,
|
|
395
|
+
family:
|
|
396
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::OrSymbol,
|
|
397
|
+
mode:
|
|
398
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::OrSymbol,
|
|
399
|
+
model:
|
|
400
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::OrSymbol,
|
|
401
|
+
size:
|
|
402
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::OrSymbol,
|
|
403
|
+
suppression_level: Float,
|
|
404
|
+
voice_gain: Float
|
|
405
|
+
}
|
|
406
|
+
)
|
|
407
|
+
end
|
|
255
408
|
def to_hash
|
|
256
409
|
end
|
|
410
|
+
|
|
411
|
+
# AiCoustics model family. 'sparrow' optimized for human-to-human calls, 'quail'
|
|
412
|
+
# optimized for Voice AI/STT. Only applicable for AiCoustics.
|
|
413
|
+
module Family
|
|
414
|
+
extend Telnyx::Internal::Type::Enum
|
|
415
|
+
|
|
416
|
+
TaggedSymbol =
|
|
417
|
+
T.type_alias do
|
|
418
|
+
T.all(
|
|
419
|
+
Symbol,
|
|
420
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family
|
|
421
|
+
)
|
|
422
|
+
end
|
|
423
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
424
|
+
|
|
425
|
+
SPARROW =
|
|
426
|
+
T.let(
|
|
427
|
+
:sparrow,
|
|
428
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::TaggedSymbol
|
|
429
|
+
)
|
|
430
|
+
QUAIL =
|
|
431
|
+
T.let(
|
|
432
|
+
:quail,
|
|
433
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::TaggedSymbol
|
|
434
|
+
)
|
|
435
|
+
|
|
436
|
+
sig do
|
|
437
|
+
override.returns(
|
|
438
|
+
T::Array[
|
|
439
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Family::TaggedSymbol
|
|
440
|
+
]
|
|
441
|
+
)
|
|
442
|
+
end
|
|
443
|
+
def self.values
|
|
444
|
+
end
|
|
445
|
+
end
|
|
446
|
+
|
|
447
|
+
# Processing mode. Only applicable for DeepFilterNet.
|
|
448
|
+
module Mode
|
|
449
|
+
extend Telnyx::Internal::Type::Enum
|
|
450
|
+
|
|
451
|
+
TaggedSymbol =
|
|
452
|
+
T.type_alias do
|
|
453
|
+
T.all(
|
|
454
|
+
Symbol,
|
|
455
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode
|
|
456
|
+
)
|
|
457
|
+
end
|
|
458
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
459
|
+
|
|
460
|
+
STANDARD =
|
|
461
|
+
T.let(
|
|
462
|
+
:standard,
|
|
463
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::TaggedSymbol
|
|
464
|
+
)
|
|
465
|
+
ADVANCED =
|
|
466
|
+
T.let(
|
|
467
|
+
:advanced,
|
|
468
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::TaggedSymbol
|
|
469
|
+
)
|
|
470
|
+
|
|
471
|
+
sig do
|
|
472
|
+
override.returns(
|
|
473
|
+
T::Array[
|
|
474
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Mode::TaggedSymbol
|
|
475
|
+
]
|
|
476
|
+
)
|
|
477
|
+
end
|
|
478
|
+
def self.values
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
482
|
+
# The Krisp model to use. Only applicable for Krisp.
|
|
483
|
+
module Model
|
|
484
|
+
extend Telnyx::Internal::Type::Enum
|
|
485
|
+
|
|
486
|
+
TaggedSymbol =
|
|
487
|
+
T.type_alias do
|
|
488
|
+
T.all(
|
|
489
|
+
Symbol,
|
|
490
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model
|
|
491
|
+
)
|
|
492
|
+
end
|
|
493
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
494
|
+
|
|
495
|
+
KRISP_VIVA_TEL_V2_KEF =
|
|
496
|
+
T.let(
|
|
497
|
+
:"krisp-viva-tel-v2.kef",
|
|
498
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::TaggedSymbol
|
|
499
|
+
)
|
|
500
|
+
KRISP_VIVA_TEL_LITE_V1_KEF =
|
|
501
|
+
T.let(
|
|
502
|
+
:"krisp-viva-tel-lite-v1.kef",
|
|
503
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::TaggedSymbol
|
|
504
|
+
)
|
|
505
|
+
KRISP_VIVA_PRO_V1_KEF =
|
|
506
|
+
T.let(
|
|
507
|
+
:"krisp-viva-pro-v1.kef",
|
|
508
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::TaggedSymbol
|
|
509
|
+
)
|
|
510
|
+
KRISP_VIVA_SS_V1_KEF =
|
|
511
|
+
T.let(
|
|
512
|
+
:"krisp-viva-ss-v1.kef",
|
|
513
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::TaggedSymbol
|
|
514
|
+
)
|
|
515
|
+
|
|
516
|
+
sig do
|
|
517
|
+
override.returns(
|
|
518
|
+
T::Array[
|
|
519
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Model::TaggedSymbol
|
|
520
|
+
]
|
|
521
|
+
)
|
|
522
|
+
end
|
|
523
|
+
def self.values
|
|
524
|
+
end
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
# AiCoustics model size. 's' and 'l' work with both families. 'xs' and 'xxs' are
|
|
528
|
+
# sparrow-only. 'vf_l' and 'vf_1_1_l' are quail-only. Only applicable for
|
|
529
|
+
# AiCoustics.
|
|
530
|
+
module Size
|
|
531
|
+
extend Telnyx::Internal::Type::Enum
|
|
532
|
+
|
|
533
|
+
TaggedSymbol =
|
|
534
|
+
T.type_alias do
|
|
535
|
+
T.all(
|
|
536
|
+
Symbol,
|
|
537
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size
|
|
538
|
+
)
|
|
539
|
+
end
|
|
540
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
541
|
+
|
|
542
|
+
S =
|
|
543
|
+
T.let(
|
|
544
|
+
:s,
|
|
545
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
546
|
+
)
|
|
547
|
+
L =
|
|
548
|
+
T.let(
|
|
549
|
+
:l,
|
|
550
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
551
|
+
)
|
|
552
|
+
XS =
|
|
553
|
+
T.let(
|
|
554
|
+
:xs,
|
|
555
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
556
|
+
)
|
|
557
|
+
XXS =
|
|
558
|
+
T.let(
|
|
559
|
+
:xxs,
|
|
560
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
561
|
+
)
|
|
562
|
+
VF_L =
|
|
563
|
+
T.let(
|
|
564
|
+
:vf_l,
|
|
565
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
566
|
+
)
|
|
567
|
+
VF_1_1_L =
|
|
568
|
+
T.let(
|
|
569
|
+
:vf_1_1_l,
|
|
570
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
571
|
+
)
|
|
572
|
+
|
|
573
|
+
sig do
|
|
574
|
+
override.returns(
|
|
575
|
+
T::Array[
|
|
576
|
+
Telnyx::Calls::ActionStartNoiseSuppressionParams::NoiseSuppressionEngineConfig::Size::TaggedSymbol
|
|
577
|
+
]
|
|
578
|
+
)
|
|
579
|
+
end
|
|
580
|
+
def self.values
|
|
581
|
+
end
|
|
582
|
+
end
|
|
257
583
|
end
|
|
258
584
|
end
|
|
259
585
|
end
|
|
@@ -172,7 +172,7 @@ module Telnyx
|
|
|
172
172
|
T.any(
|
|
173
173
|
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
|
|
174
174
|
T::Array[
|
|
175
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
175
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
|
|
176
176
|
]
|
|
177
177
|
)
|
|
178
178
|
)
|
|
@@ -186,7 +186,7 @@ module Telnyx
|
|
|
186
186
|
T.any(
|
|
187
187
|
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
|
|
188
188
|
T::Array[
|
|
189
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
189
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
|
|
190
190
|
]
|
|
191
191
|
)
|
|
192
192
|
).void
|
|
@@ -227,7 +227,7 @@ module Telnyx
|
|
|
227
227
|
T.any(
|
|
228
228
|
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
|
|
229
229
|
T::Array[
|
|
230
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
230
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
|
|
231
231
|
]
|
|
232
232
|
),
|
|
233
233
|
support_key:
|
|
@@ -265,7 +265,7 @@ module Telnyx
|
|
|
265
265
|
T.any(
|
|
266
266
|
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
|
|
267
267
|
T::Array[
|
|
268
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
268
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
|
|
269
269
|
]
|
|
270
270
|
),
|
|
271
271
|
support_key:
|
|
@@ -416,7 +416,7 @@ module Telnyx
|
|
|
416
416
|
T.any(
|
|
417
417
|
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::TaggedSymbol,
|
|
418
418
|
T::Array[
|
|
419
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
419
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
420
420
|
]
|
|
421
421
|
)
|
|
422
422
|
end
|
|
@@ -486,14 +486,14 @@ module Telnyx
|
|
|
486
486
|
end
|
|
487
487
|
end
|
|
488
488
|
|
|
489
|
-
module
|
|
489
|
+
module UnionMember1
|
|
490
490
|
extend Telnyx::Internal::Type::Enum
|
|
491
491
|
|
|
492
492
|
TaggedSymbol =
|
|
493
493
|
T.type_alias do
|
|
494
494
|
T.all(
|
|
495
495
|
Symbol,
|
|
496
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
496
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
|
|
497
497
|
)
|
|
498
498
|
end
|
|
499
499
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -501,48 +501,48 @@ module Telnyx
|
|
|
501
501
|
DRAFT =
|
|
502
502
|
T.let(
|
|
503
503
|
:draft,
|
|
504
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
504
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
505
505
|
)
|
|
506
506
|
IN_PROCESS =
|
|
507
507
|
T.let(
|
|
508
508
|
:"in-process",
|
|
509
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
509
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
510
510
|
)
|
|
511
511
|
SUBMITTED =
|
|
512
512
|
T.let(
|
|
513
513
|
:submitted,
|
|
514
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
514
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
515
515
|
)
|
|
516
516
|
EXCEPTION =
|
|
517
517
|
T.let(
|
|
518
518
|
:exception,
|
|
519
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
519
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
520
520
|
)
|
|
521
521
|
FOC_DATE_CONFIRMED =
|
|
522
522
|
T.let(
|
|
523
523
|
:"foc-date-confirmed",
|
|
524
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
524
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
525
525
|
)
|
|
526
526
|
CANCEL_PENDING =
|
|
527
527
|
T.let(
|
|
528
528
|
:"cancel-pending",
|
|
529
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
529
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
530
530
|
)
|
|
531
531
|
PORTED =
|
|
532
532
|
T.let(
|
|
533
533
|
:ported,
|
|
534
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
534
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
535
535
|
)
|
|
536
536
|
CANCELLED =
|
|
537
537
|
T.let(
|
|
538
538
|
:cancelled,
|
|
539
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
539
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
540
540
|
)
|
|
541
541
|
|
|
542
542
|
sig do
|
|
543
543
|
override.returns(
|
|
544
544
|
T::Array[
|
|
545
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
545
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
|
|
546
546
|
]
|
|
547
547
|
)
|
|
548
548
|
end
|
|
@@ -560,11 +560,11 @@ module Telnyx
|
|
|
560
560
|
def self.variants
|
|
561
561
|
end
|
|
562
562
|
|
|
563
|
-
|
|
563
|
+
UnionMember1Array =
|
|
564
564
|
T.let(
|
|
565
565
|
Telnyx::Internal::Type::ArrayOf[
|
|
566
566
|
enum:
|
|
567
|
-
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::
|
|
567
|
+
Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
|
|
568
568
|
],
|
|
569
569
|
Telnyx::Internal::Type::Converter
|
|
570
570
|
)
|
|
@@ -180,21 +180,11 @@ module Telnyx
|
|
|
180
180
|
:telnyx,
|
|
181
181
|
Telnyx::VoiceCloneCreateFromUploadParams::Provider::TaggedSymbol
|
|
182
182
|
)
|
|
183
|
-
TELNYX_2 =
|
|
184
|
-
T.let(
|
|
185
|
-
:Telnyx,
|
|
186
|
-
Telnyx::VoiceCloneCreateFromUploadParams::Provider::TaggedSymbol
|
|
187
|
-
)
|
|
188
183
|
MINIMAX =
|
|
189
184
|
T.let(
|
|
190
185
|
:minimax,
|
|
191
186
|
Telnyx::VoiceCloneCreateFromUploadParams::Provider::TaggedSymbol
|
|
192
187
|
)
|
|
193
|
-
MINIMAX_2 =
|
|
194
|
-
T.let(
|
|
195
|
-
:Minimax,
|
|
196
|
-
Telnyx::VoiceCloneCreateFromUploadParams::Provider::TaggedSymbol
|
|
197
|
-
)
|
|
198
188
|
|
|
199
189
|
sig do
|
|
200
190
|
override.returns(
|
|
@@ -116,18 +116,11 @@ module Telnyx
|
|
|
116
116
|
|
|
117
117
|
TELNYX =
|
|
118
118
|
T.let(:telnyx, Telnyx::VoiceCloneCreateParams::Provider::TaggedSymbol)
|
|
119
|
-
TELNYX_2 =
|
|
120
|
-
T.let(:Telnyx, Telnyx::VoiceCloneCreateParams::Provider::TaggedSymbol)
|
|
121
119
|
MINIMAX =
|
|
122
120
|
T.let(
|
|
123
121
|
:minimax,
|
|
124
122
|
Telnyx::VoiceCloneCreateParams::Provider::TaggedSymbol
|
|
125
123
|
)
|
|
126
|
-
MINIMAX_2 =
|
|
127
|
-
T.let(
|
|
128
|
-
:Minimax,
|
|
129
|
-
Telnyx::VoiceCloneCreateParams::Provider::TaggedSymbol
|
|
130
|
-
)
|
|
131
124
|
|
|
132
125
|
sig do
|
|
133
126
|
override.returns(
|
|
@@ -189,12 +189,8 @@ module Telnyx
|
|
|
189
189
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
190
190
|
|
|
191
191
|
TELNYX = T.let(:telnyx, Telnyx::VoiceCloneData::Provider::TaggedSymbol)
|
|
192
|
-
TELNYX_2 =
|
|
193
|
-
T.let(:Telnyx, Telnyx::VoiceCloneData::Provider::TaggedSymbol)
|
|
194
192
|
MINIMAX =
|
|
195
193
|
T.let(:minimax, Telnyx::VoiceCloneData::Provider::TaggedSymbol)
|
|
196
|
-
MINIMAX_2 =
|
|
197
|
-
T.let(:Minimax, Telnyx::VoiceCloneData::Provider::TaggedSymbol)
|
|
198
194
|
|
|
199
195
|
sig do
|
|
200
196
|
override.returns(
|
|
@@ -112,21 +112,11 @@ module Telnyx
|
|
|
112
112
|
:telnyx,
|
|
113
113
|
Telnyx::VoiceCloneListParams::FilterProvider::TaggedSymbol
|
|
114
114
|
)
|
|
115
|
-
TELNYX_2 =
|
|
116
|
-
T.let(
|
|
117
|
-
:Telnyx,
|
|
118
|
-
Telnyx::VoiceCloneListParams::FilterProvider::TaggedSymbol
|
|
119
|
-
)
|
|
120
115
|
MINIMAX =
|
|
121
116
|
T.let(
|
|
122
117
|
:minimax,
|
|
123
118
|
Telnyx::VoiceCloneListParams::FilterProvider::TaggedSymbol
|
|
124
119
|
)
|
|
125
|
-
MINIMAX_2 =
|
|
126
|
-
T.let(
|
|
127
|
-
:Minimax,
|
|
128
|
-
Telnyx::VoiceCloneListParams::FilterProvider::TaggedSymbol
|
|
129
|
-
)
|
|
130
120
|
|
|
131
121
|
sig do
|
|
132
122
|
override.returns(
|
|
@@ -188,21 +188,11 @@ module Telnyx
|
|
|
188
188
|
:telnyx,
|
|
189
189
|
Telnyx::VoiceDesignCreateParams::Provider::TaggedSymbol
|
|
190
190
|
)
|
|
191
|
-
TELNYX_2 =
|
|
192
|
-
T.let(
|
|
193
|
-
:Telnyx,
|
|
194
|
-
Telnyx::VoiceDesignCreateParams::Provider::TaggedSymbol
|
|
195
|
-
)
|
|
196
191
|
MINIMAX =
|
|
197
192
|
T.let(
|
|
198
193
|
:minimax,
|
|
199
194
|
Telnyx::VoiceDesignCreateParams::Provider::TaggedSymbol
|
|
200
195
|
)
|
|
201
|
-
MINIMAX_2 =
|
|
202
|
-
T.let(
|
|
203
|
-
:Minimax,
|
|
204
|
-
Telnyx::VoiceDesignCreateParams::Provider::TaggedSymbol
|
|
205
|
-
)
|
|
206
196
|
|
|
207
197
|
sig do
|
|
208
198
|
override.returns(
|
|
@@ -183,12 +183,8 @@ module Telnyx
|
|
|
183
183
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
184
184
|
|
|
185
185
|
TELNYX = T.let(:telnyx, Telnyx::VoiceDesignData::Provider::TaggedSymbol)
|
|
186
|
-
TELNYX_2 =
|
|
187
|
-
T.let(:Telnyx, Telnyx::VoiceDesignData::Provider::TaggedSymbol)
|
|
188
186
|
MINIMAX =
|
|
189
187
|
T.let(:minimax, Telnyx::VoiceDesignData::Provider::TaggedSymbol)
|
|
190
|
-
MINIMAX_2 =
|
|
191
|
-
T.let(:Minimax, Telnyx::VoiceDesignData::Provider::TaggedSymbol)
|
|
192
188
|
|
|
193
189
|
sig do
|
|
194
190
|
override.returns(
|
|
@@ -143,21 +143,11 @@ module Telnyx
|
|
|
143
143
|
:telnyx,
|
|
144
144
|
Telnyx::Models::VoiceDesignListResponse::Provider::TaggedSymbol
|
|
145
145
|
)
|
|
146
|
-
TELNYX_2 =
|
|
147
|
-
T.let(
|
|
148
|
-
:Telnyx,
|
|
149
|
-
Telnyx::Models::VoiceDesignListResponse::Provider::TaggedSymbol
|
|
150
|
-
)
|
|
151
146
|
MINIMAX =
|
|
152
147
|
T.let(
|
|
153
148
|
:minimax,
|
|
154
149
|
Telnyx::Models::VoiceDesignListResponse::Provider::TaggedSymbol
|
|
155
150
|
)
|
|
156
|
-
MINIMAX_2 =
|
|
157
|
-
T.let(
|
|
158
|
-
:Minimax,
|
|
159
|
-
Telnyx::Models::VoiceDesignListResponse::Provider::TaggedSymbol
|
|
160
|
-
)
|
|
161
151
|
|
|
162
152
|
sig do
|
|
163
153
|
override.returns(
|