telnyx 5.128.0 → 5.129.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.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +1 -1
  4. data/lib/telnyx/models/call_dial_params.rb +70 -3
  5. data/lib/telnyx/models/calls/action_answer_params.rb +70 -3
  6. data/lib/telnyx/models/calls/action_gather_using_ai_params.rb +2 -1
  7. data/lib/telnyx/models/calls/action_gather_using_speak_params.rb +37 -2
  8. data/lib/telnyx/models/calls/action_speak_params.rb +37 -2
  9. data/lib/telnyx/models/calls/action_start_ai_assistant_params.rb +2 -1
  10. data/lib/telnyx/models/calls/action_start_conversation_relay_params.rb +104 -4
  11. data/lib/telnyx/models/conferences/action_speak_params.rb +37 -2
  12. data/lib/telnyx/version.rb +1 -1
  13. data/rbi/telnyx/models/call_dial_params.rbi +174 -6
  14. data/rbi/telnyx/models/calls/action_answer_params.rbi +174 -6
  15. data/rbi/telnyx/models/calls/action_gather_using_ai_params.rbi +4 -2
  16. data/rbi/telnyx/models/calls/action_gather_using_speak_params.rbi +91 -4
  17. data/rbi/telnyx/models/calls/action_speak_params.rbi +91 -4
  18. data/rbi/telnyx/models/calls/action_start_ai_assistant_params.rbi +4 -2
  19. data/rbi/telnyx/models/calls/action_start_conversation_relay_params.rbi +259 -8
  20. data/rbi/telnyx/models/conferences/action_speak_params.rbi +91 -4
  21. data/rbi/telnyx/resources/calls/actions.rbi +12 -5
  22. data/rbi/telnyx/resources/conferences/actions.rbi +3 -1
  23. data/sig/telnyx/models/call_dial_params.rbs +62 -6
  24. data/sig/telnyx/models/calls/action_answer_params.rbs +62 -6
  25. data/sig/telnyx/models/calls/action_gather_using_speak_params.rbs +31 -3
  26. data/sig/telnyx/models/calls/action_speak_params.rbs +31 -3
  27. data/sig/telnyx/models/calls/action_start_conversation_relay_params.rbs +93 -9
  28. data/sig/telnyx/models/conferences/action_speak_params.rbs +31 -3
  29. metadata +2 -2
@@ -1118,14 +1118,42 @@ module Telnyx
1118
1118
  module VoiceSettings
1119
1119
  extend Telnyx::Internal::Type::Union
1120
1120
 
1121
- type inworld = { type: :inworld }
1121
+ type inworld =
1122
+ {
1123
+ type: :inworld,
1124
+ delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
1125
+ }
1122
1126
 
1123
1127
  class Inworld < Telnyx::Internal::Type::BaseModel
1124
1128
  attr_accessor type: :inworld
1125
1129
 
1126
- def initialize: (?type: :inworld) -> void
1130
+ attr_reader delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode?
1127
1131
 
1128
- def to_hash: -> { type: :inworld }
1132
+ def delivery_mode=: (
1133
+ Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
1134
+ ) -> Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
1135
+
1136
+ def initialize: (
1137
+ ?delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode,
1138
+ ?type: :inworld
1139
+ ) -> void
1140
+
1141
+ def to_hash: -> {
1142
+ type: :inworld,
1143
+ delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
1144
+ }
1145
+
1146
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
1147
+
1148
+ module DeliveryMode
1149
+ extend Telnyx::Internal::Type::Enum
1150
+
1151
+ STABLE: :STABLE
1152
+ BALANCED: :BALANCED
1153
+ CREATIVE: :CREATIVE
1154
+
1155
+ def self?.values: -> ::Array[Telnyx::Models::CallDialParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode]
1156
+ end
1129
1157
  end
1130
1158
 
1131
1159
  type xai = { type: :xai, language: String }
@@ -1189,14 +1217,42 @@ module Telnyx
1189
1217
  module VoiceSettings
1190
1218
  extend Telnyx::Internal::Type::Union
1191
1219
 
1192
- type inworld = { type: :inworld }
1220
+ type inworld =
1221
+ {
1222
+ type: :inworld,
1223
+ delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
1224
+ }
1193
1225
 
1194
1226
  class Inworld < Telnyx::Internal::Type::BaseModel
1195
1227
  attr_accessor type: :inworld
1196
1228
 
1197
- def initialize: (?type: :inworld) -> void
1229
+ attr_reader delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode?
1230
+
1231
+ def delivery_mode=: (
1232
+ Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
1233
+ ) -> Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
1198
1234
 
1199
- def to_hash: -> { type: :inworld }
1235
+ def initialize: (
1236
+ ?delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode,
1237
+ ?type: :inworld
1238
+ ) -> void
1239
+
1240
+ def to_hash: -> {
1241
+ type: :inworld,
1242
+ delivery_mode: Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
1243
+ }
1244
+
1245
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
1246
+
1247
+ module DeliveryMode
1248
+ extend Telnyx::Internal::Type::Enum
1249
+
1250
+ STABLE: :STABLE
1251
+ BALANCED: :BALANCED
1252
+ CREATIVE: :CREATIVE
1253
+
1254
+ def self?.values: -> ::Array[Telnyx::Models::CallDialParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode]
1255
+ end
1200
1256
  end
1201
1257
 
1202
1258
  type xai = { type: :xai, language: String }
@@ -649,14 +649,42 @@ module Telnyx
649
649
  module VoiceSettings
650
650
  extend Telnyx::Internal::Type::Union
651
651
 
652
- type inworld = { type: :inworld }
652
+ type inworld =
653
+ {
654
+ type: :inworld,
655
+ delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
656
+ }
653
657
 
654
658
  class Inworld < Telnyx::Internal::Type::BaseModel
655
659
  attr_accessor type: :inworld
656
660
 
657
- def initialize: (?type: :inworld) -> void
661
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode?
658
662
 
659
- def to_hash: -> { type: :inworld }
663
+ def delivery_mode=: (
664
+ Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
665
+ ) -> Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
666
+
667
+ def initialize: (
668
+ ?delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode,
669
+ ?type: :inworld
670
+ ) -> void
671
+
672
+ def to_hash: -> {
673
+ type: :inworld,
674
+ delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode
675
+ }
676
+
677
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
678
+
679
+ module DeliveryMode
680
+ extend Telnyx::Internal::Type::Enum
681
+
682
+ STABLE: :STABLE
683
+ BALANCED: :BALANCED
684
+ CREATIVE: :CREATIVE
685
+
686
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::Language::VoiceSettings::Inworld::delivery_mode]
687
+ end
660
688
  end
661
689
 
662
690
  type xai = { type: :xai, language: String }
@@ -720,14 +748,42 @@ module Telnyx
720
748
  module VoiceSettings
721
749
  extend Telnyx::Internal::Type::Union
722
750
 
723
- type inworld = { type: :inworld }
751
+ type inworld =
752
+ {
753
+ type: :inworld,
754
+ delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
755
+ }
724
756
 
725
757
  class Inworld < Telnyx::Internal::Type::BaseModel
726
758
  attr_accessor type: :inworld
727
759
 
728
- def initialize: (?type: :inworld) -> void
760
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode?
761
+
762
+ def delivery_mode=: (
763
+ Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
764
+ ) -> Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
729
765
 
730
- def to_hash: -> { type: :inworld }
766
+ def initialize: (
767
+ ?delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode,
768
+ ?type: :inworld
769
+ ) -> void
770
+
771
+ def to_hash: -> {
772
+ type: :inworld,
773
+ delivery_mode: Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode
774
+ }
775
+
776
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
777
+
778
+ module DeliveryMode
779
+ extend Telnyx::Internal::Type::Enum
780
+
781
+ STABLE: :STABLE
782
+ BALANCED: :BALANCED
783
+ CREATIVE: :CREATIVE
784
+
785
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionAnswerParams::ConversationRelayConfig::VoiceSettings::Inworld::delivery_mode]
786
+ end
731
787
  end
732
788
 
733
789
  type xai = { type: :xai, language: String }
@@ -242,14 +242,42 @@ module Telnyx
242
242
  module VoiceSettings
243
243
  extend Telnyx::Internal::Type::Union
244
244
 
245
- type inworld = { type: :inworld }
245
+ type inworld =
246
+ {
247
+ type: :inworld,
248
+ delivery_mode: Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode
249
+ }
246
250
 
247
251
  class Inworld < Telnyx::Internal::Type::BaseModel
248
252
  attr_accessor type: :inworld
249
253
 
250
- def initialize: (?type: :inworld) -> void
254
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode?
251
255
 
252
- def to_hash: -> { type: :inworld }
256
+ def delivery_mode=: (
257
+ Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode
258
+ ) -> Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode
259
+
260
+ def initialize: (
261
+ ?delivery_mode: Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode,
262
+ ?type: :inworld
263
+ ) -> void
264
+
265
+ def to_hash: -> {
266
+ type: :inworld,
267
+ delivery_mode: Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode
268
+ }
269
+
270
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
271
+
272
+ module DeliveryMode
273
+ extend Telnyx::Internal::Type::Enum
274
+
275
+ STABLE: :STABLE
276
+ BALANCED: :BALANCED
277
+ CREATIVE: :CREATIVE
278
+
279
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionGatherUsingSpeakParams::VoiceSettings::Inworld::delivery_mode]
280
+ end
253
281
  end
254
282
 
255
283
  type xai = { type: :xai, language: String }
@@ -223,14 +223,42 @@ module Telnyx
223
223
  module VoiceSettings
224
224
  extend Telnyx::Internal::Type::Union
225
225
 
226
- type inworld = { type: :inworld }
226
+ type inworld =
227
+ {
228
+ type: :inworld,
229
+ delivery_mode: Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
230
+ }
227
231
 
228
232
  class Inworld < Telnyx::Internal::Type::BaseModel
229
233
  attr_accessor type: :inworld
230
234
 
231
- def initialize: (?type: :inworld) -> void
235
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode?
232
236
 
233
- def to_hash: -> { type: :inworld }
237
+ def delivery_mode=: (
238
+ Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
239
+ ) -> Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
240
+
241
+ def initialize: (
242
+ ?delivery_mode: Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode,
243
+ ?type: :inworld
244
+ ) -> void
245
+
246
+ def to_hash: -> {
247
+ type: :inworld,
248
+ delivery_mode: Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
249
+ }
250
+
251
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
252
+
253
+ module DeliveryMode
254
+ extend Telnyx::Internal::Type::Enum
255
+
256
+ STABLE: :STABLE
257
+ BALANCED: :BALANCED
258
+ CREATIVE: :CREATIVE
259
+
260
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode]
261
+ end
234
262
  end
235
263
 
236
264
  type xai = { type: :xai, language: String }
@@ -406,14 +406,42 @@ module Telnyx
406
406
  module VoiceSettings
407
407
  extend Telnyx::Internal::Type::Union
408
408
 
409
- type inworld = { type: :inworld }
409
+ type inworld =
410
+ {
411
+ type: :inworld,
412
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode
413
+ }
410
414
 
411
415
  class Inworld < Telnyx::Internal::Type::BaseModel
412
416
  attr_accessor type: :inworld
413
417
 
414
- def initialize: (?type: :inworld) -> void
418
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode?
415
419
 
416
- def to_hash: -> { type: :inworld }
420
+ def delivery_mode=: (
421
+ Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode
422
+ ) -> Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode
423
+
424
+ def initialize: (
425
+ ?delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode,
426
+ ?type: :inworld
427
+ ) -> void
428
+
429
+ def to_hash: -> {
430
+ type: :inworld,
431
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode
432
+ }
433
+
434
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
435
+
436
+ module DeliveryMode
437
+ extend Telnyx::Internal::Type::Enum
438
+
439
+ STABLE: :STABLE
440
+ BALANCED: :BALANCED
441
+ CREATIVE: :CREATIVE
442
+
443
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionStartConversationRelayParams::ConversationRelaySettings::Language::VoiceSettings::Inworld::delivery_mode]
444
+ end
417
445
  end
418
446
 
419
447
  type xai = { type: :xai, language: String }
@@ -660,14 +688,42 @@ module Telnyx
660
688
  module VoiceSettings
661
689
  extend Telnyx::Internal::Type::Union
662
690
 
663
- type inworld = { type: :inworld }
691
+ type inworld =
692
+ {
693
+ type: :inworld,
694
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode
695
+ }
664
696
 
665
697
  class Inworld < Telnyx::Internal::Type::BaseModel
666
698
  attr_accessor type: :inworld
667
699
 
668
- def initialize: (?type: :inworld) -> void
700
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode?
701
+
702
+ def delivery_mode=: (
703
+ Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode
704
+ ) -> Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode
669
705
 
670
- def to_hash: -> { type: :inworld }
706
+ def initialize: (
707
+ ?delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode,
708
+ ?type: :inworld
709
+ ) -> void
710
+
711
+ def to_hash: -> {
712
+ type: :inworld,
713
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode
714
+ }
715
+
716
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
717
+
718
+ module DeliveryMode
719
+ extend Telnyx::Internal::Type::Enum
720
+
721
+ STABLE: :STABLE
722
+ BALANCED: :BALANCED
723
+ CREATIVE: :CREATIVE
724
+
725
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionStartConversationRelayParams::Language::VoiceSettings::Inworld::delivery_mode]
726
+ end
671
727
  end
672
728
 
673
729
  type xai = { type: :xai, language: String }
@@ -731,14 +787,42 @@ module Telnyx
731
787
  module VoiceSettings
732
788
  extend Telnyx::Internal::Type::Union
733
789
 
734
- type inworld = { type: :inworld }
790
+ type inworld =
791
+ {
792
+ type: :inworld,
793
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode
794
+ }
735
795
 
736
796
  class Inworld < Telnyx::Internal::Type::BaseModel
737
797
  attr_accessor type: :inworld
738
798
 
739
- def initialize: (?type: :inworld) -> void
799
+ attr_reader delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode?
800
+
801
+ def delivery_mode=: (
802
+ Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode
803
+ ) -> Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode
740
804
 
741
- def to_hash: -> { type: :inworld }
805
+ def initialize: (
806
+ ?delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode,
807
+ ?type: :inworld
808
+ ) -> void
809
+
810
+ def to_hash: -> {
811
+ type: :inworld,
812
+ delivery_mode: Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode
813
+ }
814
+
815
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
816
+
817
+ module DeliveryMode
818
+ extend Telnyx::Internal::Type::Enum
819
+
820
+ STABLE: :STABLE
821
+ BALANCED: :BALANCED
822
+ CREATIVE: :CREATIVE
823
+
824
+ def self?.values: -> ::Array[Telnyx::Models::Calls::ActionStartConversationRelayParams::VoiceSettings::Inworld::delivery_mode]
825
+ end
742
826
  end
743
827
 
744
828
  type xai = { type: :xai, language: String }
@@ -188,14 +188,42 @@ module Telnyx
188
188
  module VoiceSettings
189
189
  extend Telnyx::Internal::Type::Union
190
190
 
191
- type inworld = { type: :inworld }
191
+ type inworld =
192
+ {
193
+ type: :inworld,
194
+ delivery_mode: Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
195
+ }
192
196
 
193
197
  class Inworld < Telnyx::Internal::Type::BaseModel
194
198
  attr_accessor type: :inworld
195
199
 
196
- def initialize: (?type: :inworld) -> void
200
+ attr_reader delivery_mode: Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode?
197
201
 
198
- def to_hash: -> { type: :inworld }
202
+ def delivery_mode=: (
203
+ Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
204
+ ) -> Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
205
+
206
+ def initialize: (
207
+ ?delivery_mode: Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode,
208
+ ?type: :inworld
209
+ ) -> void
210
+
211
+ def to_hash: -> {
212
+ type: :inworld,
213
+ delivery_mode: Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode
214
+ }
215
+
216
+ type delivery_mode = :STABLE | :BALANCED | :CREATIVE
217
+
218
+ module DeliveryMode
219
+ extend Telnyx::Internal::Type::Enum
220
+
221
+ STABLE: :STABLE
222
+ BALANCED: :BALANCED
223
+ CREATIVE: :CREATIVE
224
+
225
+ def self?.values: -> ::Array[Telnyx::Models::Conferences::ActionSpeakParams::VoiceSettings::Inworld::delivery_mode]
226
+ end
199
227
  end
200
228
 
201
229
  type xai = { type: :xai, language: String }
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.128.0
4
+ version: 5.129.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-06-15 00:00:00.000000000 Z
11
+ date: 2026-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi