telnyx 5.74.0 → 5.76.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 (48) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/telnyx/models/call_deepfake_detection_error_webhook_event.rb +160 -0
  5. data/lib/telnyx/models/call_deepfake_detection_result_webhook_event.rb +176 -0
  6. data/lib/telnyx/models/call_dial_params.rb +48 -1
  7. data/lib/telnyx/models/calls/action_answer_params.rb +48 -1
  8. data/lib/telnyx/models/sim_card_list_params.rb +1 -1
  9. data/lib/telnyx/models/traffic_policy_profile_list_params.rb +2 -2
  10. data/lib/telnyx/models/unsafe_unwrap_webhook_event.rb +5 -1
  11. data/lib/telnyx/models/unwrap_webhook_event.rb +5 -1
  12. data/lib/telnyx/models/verify_profile.rb +9 -3
  13. data/lib/telnyx/models/verify_profile_create_params.rb +15 -5
  14. data/lib/telnyx/models/verify_profile_update_params.rb +15 -5
  15. data/lib/telnyx/models.rb +4 -0
  16. data/lib/telnyx/resources/calls/actions.rb +6 -1
  17. data/lib/telnyx/resources/calls.rb +6 -1
  18. data/lib/telnyx/resources/webhooks.rb +2 -2
  19. data/lib/telnyx/version.rb +1 -1
  20. data/lib/telnyx.rb +2 -0
  21. data/rbi/telnyx/models/call_deepfake_detection_error_webhook_event.rbi +380 -0
  22. data/rbi/telnyx/models/call_deepfake_detection_result_webhook_event.rbi +398 -0
  23. data/rbi/telnyx/models/call_dial_params.rbi +80 -0
  24. data/rbi/telnyx/models/calls/action_answer_params.rbi +87 -0
  25. data/rbi/telnyx/models/sim_card_list_params.rbi +1 -1
  26. data/rbi/telnyx/models/traffic_policy_profile_list_params.rbi +2 -2
  27. data/rbi/telnyx/models/unsafe_unwrap_webhook_event.rbi +2 -0
  28. data/rbi/telnyx/models/unwrap_webhook_event.rbi +2 -0
  29. data/rbi/telnyx/models/verify_profile.rbi +18 -6
  30. data/rbi/telnyx/models/verify_profile_create_params.rbi +30 -10
  31. data/rbi/telnyx/models/verify_profile_update_params.rbi +30 -10
  32. data/rbi/telnyx/models.rbi +6 -0
  33. data/rbi/telnyx/resources/calls/actions.rbi +10 -0
  34. data/rbi/telnyx/resources/calls.rbi +9 -0
  35. data/rbi/telnyx/resources/webhooks.rbi +4 -0
  36. data/sig/telnyx/models/call_deepfake_detection_error_webhook_event.rbs +166 -0
  37. data/sig/telnyx/models/call_deepfake_detection_result_webhook_event.rbs +171 -0
  38. data/sig/telnyx/models/call_dial_params.rbs +36 -0
  39. data/sig/telnyx/models/calls/action_answer_params.rbs +36 -0
  40. data/sig/telnyx/models/sim_card_list_params.rbs +1 -1
  41. data/sig/telnyx/models/traffic_policy_profile_list_params.rbs +2 -2
  42. data/sig/telnyx/models/unsafe_unwrap_webhook_event.rbs +2 -0
  43. data/sig/telnyx/models/unwrap_webhook_event.rbs +2 -0
  44. data/sig/telnyx/models.rbs +4 -0
  45. data/sig/telnyx/resources/calls/actions.rbs +1 -0
  46. data/sig/telnyx/resources/calls.rbs +1 -0
  47. data/sig/telnyx/resources/webhooks.rbs +4 -0
  48. metadata +8 -2
@@ -0,0 +1,171 @@
1
+ module Telnyx
2
+ module Models
3
+ type call_deepfake_detection_result_webhook_event =
4
+ { data: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data }
5
+
6
+ class CallDeepfakeDetectionResultWebhookEvent < Telnyx::Internal::Type::BaseModel
7
+ attr_reader data: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data?
8
+
9
+ def data=: (
10
+ Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data
11
+ ) -> Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data
12
+
13
+ def initialize: (
14
+ ?data: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data
15
+ ) -> void
16
+
17
+ def to_hash: -> {
18
+ data: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data
19
+ }
20
+
21
+ type data =
22
+ {
23
+ id: String,
24
+ event_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type,
25
+ occurred_at: Time,
26
+ payload: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload,
27
+ record_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type
28
+ }
29
+
30
+ class Data < Telnyx::Internal::Type::BaseModel
31
+ attr_reader id: String?
32
+
33
+ def id=: (String) -> String
34
+
35
+ attr_reader event_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type?
36
+
37
+ def event_type=: (
38
+ Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type
39
+ ) -> Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type
40
+
41
+ attr_reader occurred_at: Time?
42
+
43
+ def occurred_at=: (Time) -> Time
44
+
45
+ attr_reader payload: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload?
46
+
47
+ def payload=: (
48
+ Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload
49
+ ) -> Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload
50
+
51
+ attr_reader record_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type?
52
+
53
+ def record_type=: (
54
+ Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type
55
+ ) -> Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type
56
+
57
+ def initialize: (
58
+ ?id: String,
59
+ ?event_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type,
60
+ ?occurred_at: Time,
61
+ ?payload: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload,
62
+ ?record_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type
63
+ ) -> void
64
+
65
+ def to_hash: -> {
66
+ id: String,
67
+ event_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type,
68
+ occurred_at: Time,
69
+ payload: Telnyx::CallDeepfakeDetectionResultWebhookEvent::Data::Payload,
70
+ record_type: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type
71
+ }
72
+
73
+ type event_type = :"call.deepfake_detection.result"
74
+
75
+ module EventType
76
+ extend Telnyx::Internal::Type::Enum
77
+
78
+ CALL_DEEPFAKE_DETECTION_RESULT: :"call.deepfake_detection.result"
79
+
80
+ def self?.values: -> ::Array[Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::event_type]
81
+ end
82
+
83
+ type payload =
84
+ {
85
+ call_control_id: String,
86
+ call_leg_id: String,
87
+ call_session_id: String,
88
+ client_state: String?,
89
+ connection_id: String,
90
+ consistency: Float?,
91
+ result: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result,
92
+ score: Float?
93
+ }
94
+
95
+ class Payload < Telnyx::Internal::Type::BaseModel
96
+ attr_reader call_control_id: String?
97
+
98
+ def call_control_id=: (String) -> String
99
+
100
+ attr_reader call_leg_id: String?
101
+
102
+ def call_leg_id=: (String) -> String
103
+
104
+ attr_reader call_session_id: String?
105
+
106
+ def call_session_id=: (String) -> String
107
+
108
+ attr_accessor client_state: String?
109
+
110
+ attr_reader connection_id: String?
111
+
112
+ def connection_id=: (String) -> String
113
+
114
+ attr_accessor consistency: Float?
115
+
116
+ attr_reader result: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result?
117
+
118
+ def result=: (
119
+ Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result
120
+ ) -> Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result
121
+
122
+ attr_accessor score: Float?
123
+
124
+ def initialize: (
125
+ ?call_control_id: String,
126
+ ?call_leg_id: String,
127
+ ?call_session_id: String,
128
+ ?client_state: String?,
129
+ ?connection_id: String,
130
+ ?consistency: Float?,
131
+ ?result: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result,
132
+ ?score: Float?
133
+ ) -> void
134
+
135
+ def to_hash: -> {
136
+ call_control_id: String,
137
+ call_leg_id: String,
138
+ call_session_id: String,
139
+ client_state: String?,
140
+ connection_id: String,
141
+ consistency: Float?,
142
+ result: Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result,
143
+ score: Float?
144
+ }
145
+
146
+ type result = :real | :fake | :silence_timeout
147
+
148
+ module Result
149
+ extend Telnyx::Internal::Type::Enum
150
+
151
+ REAL: :real
152
+ FAKE: :fake
153
+ SILENCE_TIMEOUT: :silence_timeout
154
+
155
+ def self?.values: -> ::Array[Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::Payload::result]
156
+ end
157
+ end
158
+
159
+ type record_type = :event
160
+
161
+ module RecordType
162
+ extend Telnyx::Internal::Type::Enum
163
+
164
+ EVENT: :event
165
+
166
+ def self?.values: -> ::Array[Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent::Data::record_type]
167
+ end
168
+ end
169
+ end
170
+ end
171
+ end
@@ -16,6 +16,7 @@ module Telnyx
16
16
  command_id: String,
17
17
  conference_config: Telnyx::CallDialParams::ConferenceConfig,
18
18
  custom_headers: ::Array[Telnyx::CustomSipHeader],
19
+ deepfake_detection: Telnyx::CallDialParams::DeepfakeDetection,
19
20
  dialogflow_config: Telnyx::DialogflowConfig,
20
21
  enable_dialogflow: bool,
21
22
  from_display_name: String,
@@ -128,6 +129,12 @@ module Telnyx
128
129
  ::Array[Telnyx::CustomSipHeader]
129
130
  ) -> ::Array[Telnyx::CustomSipHeader]
130
131
 
132
+ attr_reader deepfake_detection: Telnyx::CallDialParams::DeepfakeDetection?
133
+
134
+ def deepfake_detection=: (
135
+ Telnyx::CallDialParams::DeepfakeDetection
136
+ ) -> Telnyx::CallDialParams::DeepfakeDetection
137
+
131
138
  attr_reader dialogflow_config: Telnyx::DialogflowConfig?
132
139
 
133
140
  def dialogflow_config=: (
@@ -369,6 +376,7 @@ module Telnyx
369
376
  ?command_id: String,
370
377
  ?conference_config: Telnyx::CallDialParams::ConferenceConfig,
371
378
  ?custom_headers: ::Array[Telnyx::CustomSipHeader],
379
+ ?deepfake_detection: Telnyx::CallDialParams::DeepfakeDetection,
372
380
  ?dialogflow_config: Telnyx::DialogflowConfig,
373
381
  ?enable_dialogflow: bool,
374
382
  ?from_display_name: String,
@@ -432,6 +440,7 @@ module Telnyx
432
440
  command_id: String,
433
441
  conference_config: Telnyx::CallDialParams::ConferenceConfig,
434
442
  custom_headers: ::Array[Telnyx::CustomSipHeader],
443
+ deepfake_detection: Telnyx::CallDialParams::DeepfakeDetection,
435
444
  dialogflow_config: Telnyx::DialogflowConfig,
436
445
  enable_dialogflow: bool,
437
446
  from_display_name: String,
@@ -733,6 +742,33 @@ module Telnyx
733
742
  end
734
743
  end
735
744
 
745
+ type deepfake_detection =
746
+ { enabled: bool, rtp_timeout: Integer, timeout: Integer }
747
+
748
+ class DeepfakeDetection < Telnyx::Internal::Type::BaseModel
749
+ attr_accessor enabled: bool
750
+
751
+ attr_reader rtp_timeout: Integer?
752
+
753
+ def rtp_timeout=: (Integer) -> Integer
754
+
755
+ attr_reader timeout: Integer?
756
+
757
+ def timeout=: (Integer) -> Integer
758
+
759
+ def initialize: (
760
+ enabled: bool,
761
+ ?rtp_timeout: Integer,
762
+ ?timeout: Integer
763
+ ) -> void
764
+
765
+ def to_hash: -> {
766
+ enabled: bool,
767
+ rtp_timeout: Integer,
768
+ timeout: Integer
769
+ }
770
+ end
771
+
736
772
  type media_encryption = :disabled | :SRTP | :DTLS
737
773
 
738
774
  module MediaEncryption
@@ -9,6 +9,7 @@ module Telnyx
9
9
  client_state: String,
10
10
  command_id: String,
11
11
  custom_headers: ::Array[Telnyx::CustomSipHeader],
12
+ deepfake_detection: Telnyx::Calls::ActionAnswerParams::DeepfakeDetection,
12
13
  preferred_codecs: Telnyx::Models::Calls::ActionAnswerParams::preferred_codecs,
13
14
  record: Telnyx::Models::Calls::ActionAnswerParams::record,
14
15
  record_channels: Telnyx::Models::Calls::ActionAnswerParams::record_channels,
@@ -67,6 +68,12 @@ module Telnyx
67
68
  ::Array[Telnyx::CustomSipHeader]
68
69
  ) -> ::Array[Telnyx::CustomSipHeader]
69
70
 
71
+ attr_reader deepfake_detection: Telnyx::Calls::ActionAnswerParams::DeepfakeDetection?
72
+
73
+ def deepfake_detection=: (
74
+ Telnyx::Calls::ActionAnswerParams::DeepfakeDetection
75
+ ) -> Telnyx::Calls::ActionAnswerParams::DeepfakeDetection
76
+
70
77
  attr_reader preferred_codecs: Telnyx::Models::Calls::ActionAnswerParams::preferred_codecs?
71
78
 
72
79
  def preferred_codecs=: (
@@ -208,6 +215,7 @@ module Telnyx
208
215
  ?client_state: String,
209
216
  ?command_id: String,
210
217
  ?custom_headers: ::Array[Telnyx::CustomSipHeader],
218
+ ?deepfake_detection: Telnyx::Calls::ActionAnswerParams::DeepfakeDetection,
211
219
  ?preferred_codecs: Telnyx::Models::Calls::ActionAnswerParams::preferred_codecs,
212
220
  ?record: Telnyx::Models::Calls::ActionAnswerParams::record,
213
221
  ?record_channels: Telnyx::Models::Calls::ActionAnswerParams::record_channels,
@@ -243,6 +251,7 @@ module Telnyx
243
251
  client_state: String,
244
252
  command_id: String,
245
253
  custom_headers: ::Array[Telnyx::CustomSipHeader],
254
+ deepfake_detection: Telnyx::Calls::ActionAnswerParams::DeepfakeDetection,
246
255
  preferred_codecs: Telnyx::Models::Calls::ActionAnswerParams::preferred_codecs,
247
256
  record: Telnyx::Models::Calls::ActionAnswerParams::record,
248
257
  record_channels: Telnyx::Models::Calls::ActionAnswerParams::record_channels,
@@ -271,6 +280,33 @@ module Telnyx
271
280
  request_options: Telnyx::RequestOptions
272
281
  }
273
282
 
283
+ type deepfake_detection =
284
+ { enabled: bool, rtp_timeout: Integer, timeout: Integer }
285
+
286
+ class DeepfakeDetection < Telnyx::Internal::Type::BaseModel
287
+ attr_accessor enabled: bool
288
+
289
+ attr_reader rtp_timeout: Integer?
290
+
291
+ def rtp_timeout=: (Integer) -> Integer
292
+
293
+ attr_reader timeout: Integer?
294
+
295
+ def timeout=: (Integer) -> Integer
296
+
297
+ def initialize: (
298
+ enabled: bool,
299
+ ?rtp_timeout: Integer,
300
+ ?timeout: Integer
301
+ ) -> void
302
+
303
+ def to_hash: -> {
304
+ enabled: bool,
305
+ rtp_timeout: Integer,
306
+ timeout: Integer
307
+ }
308
+ end
309
+
274
310
  type preferred_codecs = :"G722,PCMU,PCMA,G729,OPUS,VP8,H264"
275
311
 
276
312
  module PreferredCodecs
@@ -132,7 +132,7 @@ module Telnyx
132
132
  extend Telnyx::Internal::Type::Enum
133
133
 
134
134
  CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT: :"current_billing_period_consumed_data.amount"
135
- MINUS_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT: :"-current_billing_period_consumed_data.amount"
135
+ DESC_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT: :"-current_billing_period_consumed_data.amount"
136
136
 
137
137
  def self?.values: -> ::Array[Telnyx::Models::SimCardListParams::sort]
138
138
  end
@@ -74,9 +74,9 @@ module Telnyx
74
74
  extend Telnyx::Internal::Type::Enum
75
75
 
76
76
  SERVICE: :service
77
- MINUS_SERVICE: :"-service"
77
+ DESC_SERVICE: :"-service"
78
78
  TYPE: :type
79
- MINUS_TYPE: :"-type"
79
+ DESC_TYPE: :"-type"
80
80
 
81
81
  def self?.values: -> ::Array[Telnyx::Models::TrafficPolicyProfileListParams::sort]
82
82
  end
@@ -9,6 +9,8 @@ module Telnyx
9
9
  | Telnyx::CallConversationEndedWebhookEvent
10
10
  | Telnyx::CallConversationInsightsGeneratedWebhookEvent
11
11
  | Telnyx::CallCostWebhookEvent
12
+ | Telnyx::CallDeepfakeDetectionErrorWebhookEvent
13
+ | Telnyx::CallDeepfakeDetectionResultWebhookEvent
12
14
  | Telnyx::CallDtmfReceivedWebhookEvent
13
15
  | Telnyx::CallEnqueuedWebhookEvent
14
16
  | Telnyx::CallForkStartedWebhookEvent
@@ -9,6 +9,8 @@ module Telnyx
9
9
  | Telnyx::CallConversationEndedWebhookEvent
10
10
  | Telnyx::CallConversationInsightsGeneratedWebhookEvent
11
11
  | Telnyx::CallCostWebhookEvent
12
+ | Telnyx::CallDeepfakeDetectionErrorWebhookEvent
13
+ | Telnyx::CallDeepfakeDetectionResultWebhookEvent
12
14
  | Telnyx::CallDtmfReceivedWebhookEvent
13
15
  | Telnyx::CallEnqueuedWebhookEvent
14
16
  | Telnyx::CallForkStartedWebhookEvent
@@ -171,6 +171,10 @@ module Telnyx
171
171
 
172
172
  class CallCostWebhookEvent = Telnyx::Models::CallCostWebhookEvent
173
173
 
174
+ class CallDeepfakeDetectionErrorWebhookEvent = Telnyx::Models::CallDeepfakeDetectionErrorWebhookEvent
175
+
176
+ class CallDeepfakeDetectionResultWebhookEvent = Telnyx::Models::CallDeepfakeDetectionResultWebhookEvent
177
+
174
178
  class CallDialParams = Telnyx::Models::CallDialParams
175
179
 
176
180
  class CallDtmfReceived = Telnyx::Models::CallDtmfReceived
@@ -17,6 +17,7 @@ module Telnyx
17
17
  ?client_state: String,
18
18
  ?command_id: String,
19
19
  ?custom_headers: ::Array[Telnyx::CustomSipHeader],
20
+ ?deepfake_detection: Telnyx::Calls::ActionAnswerParams::DeepfakeDetection,
20
21
  ?preferred_codecs: Telnyx::Models::Calls::ActionAnswerParams::preferred_codecs,
21
22
  ?record: Telnyx::Models::Calls::ActionAnswerParams::record,
22
23
  ?record_channels: Telnyx::Models::Calls::ActionAnswerParams::record_channels,
@@ -18,6 +18,7 @@ module Telnyx
18
18
  ?command_id: String,
19
19
  ?conference_config: Telnyx::CallDialParams::ConferenceConfig,
20
20
  ?custom_headers: ::Array[Telnyx::CustomSipHeader],
21
+ ?deepfake_detection: Telnyx::CallDialParams::DeepfakeDetection,
21
22
  ?dialogflow_config: Telnyx::DialogflowConfig,
22
23
  ?enable_dialogflow: bool,
23
24
  ?from_display_name: String,
@@ -11,6 +11,8 @@ module Telnyx
11
11
  | Telnyx::CallConversationEndedWebhookEvent
12
12
  | Telnyx::CallConversationInsightsGeneratedWebhookEvent
13
13
  | Telnyx::CallCostWebhookEvent
14
+ | Telnyx::CallDeepfakeDetectionErrorWebhookEvent
15
+ | Telnyx::CallDeepfakeDetectionResultWebhookEvent
14
16
  | Telnyx::CallDtmfReceivedWebhookEvent
15
17
  | Telnyx::CallEnqueuedWebhookEvent
16
18
  | Telnyx::CallForkStartedWebhookEvent
@@ -77,6 +79,8 @@ module Telnyx
77
79
  | Telnyx::CallConversationEndedWebhookEvent
78
80
  | Telnyx::CallConversationInsightsGeneratedWebhookEvent
79
81
  | Telnyx::CallCostWebhookEvent
82
+ | Telnyx::CallDeepfakeDetectionErrorWebhookEvent
83
+ | Telnyx::CallDeepfakeDetectionResultWebhookEvent
80
84
  | Telnyx::CallDtmfReceivedWebhookEvent
81
85
  | Telnyx::CallEnqueuedWebhookEvent
82
86
  | Telnyx::CallForkStartedWebhookEvent
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.74.0
4
+ version: 5.76.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-04-13 00:00:00.000000000 Z
11
+ date: 2026-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi
@@ -512,6 +512,8 @@ files:
512
512
  - lib/telnyx/models/call_conversation_insights_generated.rb
513
513
  - lib/telnyx/models/call_conversation_insights_generated_webhook_event.rb
514
514
  - lib/telnyx/models/call_cost_webhook_event.rb
515
+ - lib/telnyx/models/call_deepfake_detection_error_webhook_event.rb
516
+ - lib/telnyx/models/call_deepfake_detection_result_webhook_event.rb
515
517
  - lib/telnyx/models/call_dial_params.rb
516
518
  - lib/telnyx/models/call_dial_response.rb
517
519
  - lib/telnyx/models/call_dtmf_received.rb
@@ -3192,6 +3194,8 @@ files:
3192
3194
  - rbi/telnyx/models/call_conversation_insights_generated.rbi
3193
3195
  - rbi/telnyx/models/call_conversation_insights_generated_webhook_event.rbi
3194
3196
  - rbi/telnyx/models/call_cost_webhook_event.rbi
3197
+ - rbi/telnyx/models/call_deepfake_detection_error_webhook_event.rbi
3198
+ - rbi/telnyx/models/call_deepfake_detection_result_webhook_event.rbi
3195
3199
  - rbi/telnyx/models/call_dial_params.rbi
3196
3200
  - rbi/telnyx/models/call_dial_response.rbi
3197
3201
  - rbi/telnyx/models/call_dtmf_received.rbi
@@ -5863,6 +5867,8 @@ files:
5863
5867
  - sig/telnyx/models/call_conversation_insights_generated.rbs
5864
5868
  - sig/telnyx/models/call_conversation_insights_generated_webhook_event.rbs
5865
5869
  - sig/telnyx/models/call_cost_webhook_event.rbs
5870
+ - sig/telnyx/models/call_deepfake_detection_error_webhook_event.rbs
5871
+ - sig/telnyx/models/call_deepfake_detection_result_webhook_event.rbs
5866
5872
  - sig/telnyx/models/call_dial_params.rbs
5867
5873
  - sig/telnyx/models/call_dial_response.rbs
5868
5874
  - sig/telnyx/models/call_dtmf_received.rbs