telnyx 5.2.0 → 5.3.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 (44) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +1 -1
  4. data/lib/telnyx/models/credential_connection.rb +69 -1
  5. data/lib/telnyx/models/credential_connection_create_params.rb +53 -1
  6. data/lib/telnyx/models/credential_connection_update_params.rb +53 -1
  7. data/lib/telnyx/models/credential_inbound.rb +26 -1
  8. data/lib/telnyx/models/fqdn_connection.rb +69 -1
  9. data/lib/telnyx/models/fqdn_connection_create_params.rb +52 -1
  10. data/lib/telnyx/models/fqdn_connection_update_params.rb +52 -1
  11. data/lib/telnyx/models/ip_connection.rb +69 -1
  12. data/lib/telnyx/models/ip_connection_create_params.rb +52 -1
  13. data/lib/telnyx/models/ip_connection_update_params.rb +52 -1
  14. data/lib/telnyx/resources/credential_connections.rb +6 -2
  15. data/lib/telnyx/resources/fqdn_connections.rb +6 -2
  16. data/lib/telnyx/resources/ip_connections.rb +6 -2
  17. data/lib/telnyx/version.rb +1 -1
  18. data/rbi/telnyx/models/credential_connection.rbi +110 -0
  19. data/rbi/telnyx/models/credential_connection_create_params.rbi +101 -0
  20. data/rbi/telnyx/models/credential_connection_update_params.rbi +101 -0
  21. data/rbi/telnyx/models/credential_inbound.rbi +60 -0
  22. data/rbi/telnyx/models/fqdn_connection.rbi +108 -0
  23. data/rbi/telnyx/models/fqdn_connection_create_params.rbi +98 -0
  24. data/rbi/telnyx/models/fqdn_connection_update_params.rbi +98 -0
  25. data/rbi/telnyx/models/ip_connection.rbi +105 -0
  26. data/rbi/telnyx/models/ip_connection_create_params.rbi +94 -0
  27. data/rbi/telnyx/models/ip_connection_update_params.rbi +94 -0
  28. data/rbi/telnyx/resources/credential_connections.rbi +16 -0
  29. data/rbi/telnyx/resources/fqdn_connections.rbi +16 -0
  30. data/rbi/telnyx/resources/ip_connections.rbi +14 -0
  31. data/sig/telnyx/models/credential_connection.rbs +52 -0
  32. data/sig/telnyx/models/credential_connection_create_params.rbs +42 -0
  33. data/sig/telnyx/models/credential_connection_update_params.rbs +42 -0
  34. data/sig/telnyx/models/credential_inbound.rbs +20 -0
  35. data/sig/telnyx/models/fqdn_connection.rbs +52 -0
  36. data/sig/telnyx/models/fqdn_connection_create_params.rbs +42 -0
  37. data/sig/telnyx/models/fqdn_connection_update_params.rbs +42 -0
  38. data/sig/telnyx/models/ip_connection.rbs +52 -0
  39. data/sig/telnyx/models/ip_connection_create_params.rbs +42 -0
  40. data/sig/telnyx/models/ip_connection_update_params.rbs +42 -0
  41. data/sig/telnyx/resources/credential_connections.rbs +2 -0
  42. data/sig/telnyx/resources/fqdn_connections.rbs +2 -0
  43. data/sig/telnyx/resources/ip_connections.rbs +2 -0
  44. metadata +2 -2
@@ -13,6 +13,7 @@ module Telnyx
13
13
  encrypted_media: Telnyx::Models::encrypted_media?,
14
14
  inbound: Telnyx::IPConnectionCreateParams::Inbound,
15
15
  ios_push_credential_id: String?,
16
+ jitter_buffer: Telnyx::IPConnectionCreateParams::JitterBuffer,
16
17
  noise_suppression: Telnyx::Models::IPConnectionCreateParams::noise_suppression,
17
18
  noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
18
19
  :onnet_t38_passthrough_enabled => bool,
@@ -73,6 +74,12 @@ module Telnyx
73
74
 
74
75
  attr_accessor ios_push_credential_id: String?
75
76
 
77
+ attr_reader jitter_buffer: Telnyx::IPConnectionCreateParams::JitterBuffer?
78
+
79
+ def jitter_buffer=: (
80
+ Telnyx::IPConnectionCreateParams::JitterBuffer
81
+ ) -> Telnyx::IPConnectionCreateParams::JitterBuffer
82
+
76
83
  attr_reader noise_suppression: Telnyx::Models::IPConnectionCreateParams::noise_suppression?
77
84
 
78
85
  def noise_suppression=: (
@@ -135,6 +142,7 @@ module Telnyx
135
142
  ?encrypted_media: Telnyx::Models::encrypted_media?,
136
143
  ?inbound: Telnyx::IPConnectionCreateParams::Inbound,
137
144
  ?ios_push_credential_id: String?,
145
+ ?jitter_buffer: Telnyx::IPConnectionCreateParams::JitterBuffer,
138
146
  ?noise_suppression: Telnyx::Models::IPConnectionCreateParams::noise_suppression,
139
147
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
140
148
  ?onnet_t38_passthrough_enabled: bool,
@@ -161,6 +169,7 @@ module Telnyx
161
169
  encrypted_media: Telnyx::Models::encrypted_media?,
162
170
  inbound: Telnyx::IPConnectionCreateParams::Inbound,
163
171
  ios_push_credential_id: String?,
172
+ jitter_buffer: Telnyx::IPConnectionCreateParams::JitterBuffer,
164
173
  noise_suppression: Telnyx::Models::IPConnectionCreateParams::noise_suppression,
165
174
  noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
166
175
  :onnet_t38_passthrough_enabled => bool,
@@ -364,6 +373,39 @@ module Telnyx
364
373
  end
365
374
  end
366
375
 
376
+ type jitter_buffer =
377
+ {
378
+ enable_jitter_buffer: bool,
379
+ jitterbuffer_msec_max: Integer,
380
+ jitterbuffer_msec_min: Integer
381
+ }
382
+
383
+ class JitterBuffer < Telnyx::Internal::Type::BaseModel
384
+ attr_reader enable_jitter_buffer: bool?
385
+
386
+ def enable_jitter_buffer=: (bool) -> bool
387
+
388
+ attr_reader jitterbuffer_msec_max: Integer?
389
+
390
+ def jitterbuffer_msec_max=: (Integer) -> Integer
391
+
392
+ attr_reader jitterbuffer_msec_min: Integer?
393
+
394
+ def jitterbuffer_msec_min=: (Integer) -> Integer
395
+
396
+ def initialize: (
397
+ ?enable_jitter_buffer: bool,
398
+ ?jitterbuffer_msec_max: Integer,
399
+ ?jitterbuffer_msec_min: Integer
400
+ ) -> void
401
+
402
+ def to_hash: -> {
403
+ enable_jitter_buffer: bool,
404
+ jitterbuffer_msec_max: Integer,
405
+ jitterbuffer_msec_min: Integer
406
+ }
407
+ end
408
+
367
409
  type noise_suppression = :inbound | :outbound | :both | :disabled
368
410
 
369
411
  module NoiseSuppression
@@ -13,6 +13,7 @@ module Telnyx
13
13
  encrypted_media: Telnyx::Models::encrypted_media?,
14
14
  inbound: Telnyx::InboundIP,
15
15
  ios_push_credential_id: String?,
16
+ jitter_buffer: Telnyx::IPConnectionUpdateParams::JitterBuffer,
16
17
  noise_suppression: Telnyx::Models::IPConnectionUpdateParams::noise_suppression,
17
18
  noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
18
19
  :onnet_t38_passthrough_enabled => bool,
@@ -71,6 +72,12 @@ module Telnyx
71
72
 
72
73
  attr_accessor ios_push_credential_id: String?
73
74
 
75
+ attr_reader jitter_buffer: Telnyx::IPConnectionUpdateParams::JitterBuffer?
76
+
77
+ def jitter_buffer=: (
78
+ Telnyx::IPConnectionUpdateParams::JitterBuffer
79
+ ) -> Telnyx::IPConnectionUpdateParams::JitterBuffer
80
+
74
81
  attr_reader noise_suppression: Telnyx::Models::IPConnectionUpdateParams::noise_suppression?
75
82
 
76
83
  def noise_suppression=: (
@@ -133,6 +140,7 @@ module Telnyx
133
140
  ?encrypted_media: Telnyx::Models::encrypted_media?,
134
141
  ?inbound: Telnyx::InboundIP,
135
142
  ?ios_push_credential_id: String?,
143
+ ?jitter_buffer: Telnyx::IPConnectionUpdateParams::JitterBuffer,
136
144
  ?noise_suppression: Telnyx::Models::IPConnectionUpdateParams::noise_suppression,
137
145
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
138
146
  ?onnet_t38_passthrough_enabled: bool,
@@ -159,6 +167,7 @@ module Telnyx
159
167
  encrypted_media: Telnyx::Models::encrypted_media?,
160
168
  inbound: Telnyx::InboundIP,
161
169
  ios_push_credential_id: String?,
170
+ jitter_buffer: Telnyx::IPConnectionUpdateParams::JitterBuffer,
162
171
  noise_suppression: Telnyx::Models::IPConnectionUpdateParams::noise_suppression,
163
172
  noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
164
173
  :onnet_t38_passthrough_enabled => bool,
@@ -173,6 +182,39 @@ module Telnyx
173
182
  request_options: Telnyx::RequestOptions
174
183
  }
175
184
 
185
+ type jitter_buffer =
186
+ {
187
+ enable_jitter_buffer: bool,
188
+ jitterbuffer_msec_max: Integer,
189
+ jitterbuffer_msec_min: Integer
190
+ }
191
+
192
+ class JitterBuffer < Telnyx::Internal::Type::BaseModel
193
+ attr_reader enable_jitter_buffer: bool?
194
+
195
+ def enable_jitter_buffer=: (bool) -> bool
196
+
197
+ attr_reader jitterbuffer_msec_max: Integer?
198
+
199
+ def jitterbuffer_msec_max=: (Integer) -> Integer
200
+
201
+ attr_reader jitterbuffer_msec_min: Integer?
202
+
203
+ def jitterbuffer_msec_min=: (Integer) -> Integer
204
+
205
+ def initialize: (
206
+ ?enable_jitter_buffer: bool,
207
+ ?jitterbuffer_msec_max: Integer,
208
+ ?jitterbuffer_msec_min: Integer
209
+ ) -> void
210
+
211
+ def to_hash: -> {
212
+ enable_jitter_buffer: bool,
213
+ jitterbuffer_msec_max: Integer,
214
+ jitterbuffer_msec_min: Integer
215
+ }
216
+ end
217
+
176
218
  type noise_suppression = :inbound | :outbound | :both | :disabled
177
219
 
178
220
  module NoiseSuppression
@@ -17,6 +17,7 @@ module Telnyx
17
17
  ?encrypted_media: Telnyx::Models::encrypted_media?,
18
18
  ?inbound: Telnyx::CredentialInbound,
19
19
  ?ios_push_credential_id: String?,
20
+ ?jitter_buffer: Telnyx::CredentialConnectionCreateParams::JitterBuffer,
20
21
  ?noise_suppression: Telnyx::Models::CredentialConnectionCreateParams::noise_suppression,
21
22
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
22
23
  ?onnet_t38_passthrough_enabled: bool,
@@ -49,6 +50,7 @@ module Telnyx
49
50
  ?encrypted_media: Telnyx::Models::encrypted_media?,
50
51
  ?inbound: Telnyx::CredentialInbound,
51
52
  ?ios_push_credential_id: String?,
53
+ ?jitter_buffer: Telnyx::CredentialConnectionUpdateParams::JitterBuffer,
52
54
  ?noise_suppression: Telnyx::Models::CredentialConnectionUpdateParams::noise_suppression,
53
55
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
54
56
  ?onnet_t38_passthrough_enabled: bool,
@@ -13,6 +13,7 @@ module Telnyx
13
13
  ?encrypted_media: Telnyx::Models::encrypted_media?,
14
14
  ?inbound: Telnyx::InboundFqdn,
15
15
  ?ios_push_credential_id: String?,
16
+ ?jitter_buffer: Telnyx::FqdnConnectionCreateParams::JitterBuffer,
16
17
  ?microsoft_teams_sbc: bool,
17
18
  ?noise_suppression: Telnyx::Models::FqdnConnectionCreateParams::noise_suppression,
18
19
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
@@ -46,6 +47,7 @@ module Telnyx
46
47
  ?encrypted_media: Telnyx::Models::encrypted_media?,
47
48
  ?inbound: Telnyx::InboundFqdn,
48
49
  ?ios_push_credential_id: String?,
50
+ ?jitter_buffer: Telnyx::FqdnConnectionUpdateParams::JitterBuffer,
49
51
  ?noise_suppression: Telnyx::Models::FqdnConnectionUpdateParams::noise_suppression,
50
52
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
51
53
  ?onnet_t38_passthrough_enabled: bool,
@@ -13,6 +13,7 @@ module Telnyx
13
13
  ?encrypted_media: Telnyx::Models::encrypted_media?,
14
14
  ?inbound: Telnyx::IPConnectionCreateParams::Inbound,
15
15
  ?ios_push_credential_id: String?,
16
+ ?jitter_buffer: Telnyx::IPConnectionCreateParams::JitterBuffer,
16
17
  ?noise_suppression: Telnyx::Models::IPConnectionCreateParams::noise_suppression,
17
18
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
18
19
  ?onnet_t38_passthrough_enabled: bool,
@@ -45,6 +46,7 @@ module Telnyx
45
46
  ?encrypted_media: Telnyx::Models::encrypted_media?,
46
47
  ?inbound: Telnyx::InboundIP,
47
48
  ?ios_push_credential_id: String?,
49
+ ?jitter_buffer: Telnyx::IPConnectionUpdateParams::JitterBuffer,
48
50
  ?noise_suppression: Telnyx::Models::IPConnectionUpdateParams::noise_suppression,
49
51
  ?noise_suppression_details: Telnyx::ConnectionNoiseSuppressionDetails,
50
52
  ?onnet_t38_passthrough_enabled: bool,
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.2.0
4
+ version: 5.3.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-01-22 00:00:00.000000000 Z
11
+ date: 2026-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi