telnyx 5.118.0 → 5.119.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 +8 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/telephony_settings.rb +11 -1
- data/lib/telnyx/models/inbound_message_payload.rb +9 -1
- data/lib/telnyx/models/message_cancel_scheduled_response.rb +9 -1
- data/lib/telnyx/models/outbound_message_payload.rb +9 -1
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/telephony_settings.rbi +18 -3
- data/rbi/telnyx/models/inbound_message_payload.rbi +11 -0
- data/rbi/telnyx/models/message_cancel_scheduled_response.rbi +11 -0
- data/rbi/telnyx/models/outbound_message_payload.rbi +11 -0
- data/sig/telnyx/models/ai/telephony_settings.rbs +10 -3
- data/sig/telnyx/models/inbound_message_payload.rbs +7 -0
- data/sig/telnyx/models/message_cancel_scheduled_response.rbs +7 -0
- data/sig/telnyx/models/outbound_message_payload.rbs +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 761de105b75002e26702f001b26a3a303dbb5508212ae31d7a8ce66327de4341
|
|
4
|
+
data.tar.gz: 7e724082f9dac17156807c2929604d575323bfee456f5e89b7f64bff9dd006f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8723e3adc0361e81ed025d481cfa4849ca79dc48b54a9513eb6050bde61cbf8c3915321f30f2b8caea8b4408f4230498f2754ab886c3d783de19714132f2421
|
|
7
|
+
data.tar.gz: d1270643a834fa3b4ae308dd2a4a0ad38ad8d3a64a529ce3e5e9dbe1062e9f1fec989f84f0bc0a3a0817c60b039991c3df6638d12b15a4601f93f95c0f0de3c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.119.0 (2026-05-26)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.118.0...v5.119.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.118.0...v5.119.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* TELAPPS-523: document stop_on_conversation_end on assistant recording_settings ([f4731b7](https://github.com/team-telnyx/telnyx-ruby/commit/f4731b7ed76a54314a06c738fe2f3f10f3b5a9ac))
|
|
10
|
+
|
|
3
11
|
## 5.118.0 (2026-05-22)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.117.0...v5.118.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.117.0...v5.118.0)
|
data/README.md
CHANGED
|
@@ -171,7 +171,15 @@ module Telnyx
|
|
|
171
171
|
enum: -> { Telnyx::AI::TelephonySettings::RecordingSettings::Format },
|
|
172
172
|
api_name: :format
|
|
173
173
|
|
|
174
|
-
# @!
|
|
174
|
+
# @!attribute stop_on_conversation_end
|
|
175
|
+
# When enabled, the call recording will stop when the conversation ends (for
|
|
176
|
+
# example, when the assistant hangs up or the call is transferred). When disabled,
|
|
177
|
+
# recording continues until the call itself ends.
|
|
178
|
+
#
|
|
179
|
+
# @return [Boolean, nil]
|
|
180
|
+
optional :stop_on_conversation_end, Telnyx::Internal::Type::Boolean
|
|
181
|
+
|
|
182
|
+
# @!method initialize(channels: nil, enabled: nil, file_format: nil, stop_on_conversation_end: nil)
|
|
175
183
|
# Some parameter documentations has been truncated, see
|
|
176
184
|
# {Telnyx::Models::AI::TelephonySettings::RecordingSettings} for more details.
|
|
177
185
|
#
|
|
@@ -182,6 +190,8 @@ module Telnyx
|
|
|
182
190
|
# @param enabled [Boolean] Whether call recording is enabled. When set to false, calls will not be recorded
|
|
183
191
|
#
|
|
184
192
|
# @param file_format [Symbol, Telnyx::Models::AI::TelephonySettings::RecordingSettings::Format] The format of the recording file.
|
|
193
|
+
#
|
|
194
|
+
# @param stop_on_conversation_end [Boolean] When enabled, the call recording will stop when the conversation ends (for examp
|
|
185
195
|
|
|
186
196
|
# The number of channels for the recording. 'single' for mono, 'dual' for stereo.
|
|
187
197
|
#
|
|
@@ -67,6 +67,12 @@ module Telnyx
|
|
|
67
67
|
# @return [String, nil]
|
|
68
68
|
optional :messaging_profile_id, String
|
|
69
69
|
|
|
70
|
+
# @!attribute num_chars
|
|
71
|
+
# The number of characters in the message text
|
|
72
|
+
#
|
|
73
|
+
# @return [Integer, nil]
|
|
74
|
+
optional :num_chars, Integer
|
|
75
|
+
|
|
70
76
|
# @!attribute organization_id
|
|
71
77
|
# Unique identifier for a messaging profile.
|
|
72
78
|
#
|
|
@@ -165,7 +171,7 @@ module Telnyx
|
|
|
165
171
|
# @return [String, nil]
|
|
166
172
|
optional :webhook_url, String, nil?: true
|
|
167
173
|
|
|
168
|
-
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
174
|
+
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, num_chars: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
169
175
|
# Some parameter documentations has been truncated, see
|
|
170
176
|
# {Telnyx::Models::InboundMessagePayload} for more details.
|
|
171
177
|
#
|
|
@@ -191,6 +197,8 @@ module Telnyx
|
|
|
191
197
|
#
|
|
192
198
|
# @param messaging_profile_id [String] Unique identifier for a messaging profile.
|
|
193
199
|
#
|
|
200
|
+
# @param num_chars [Integer] The number of characters in the message text
|
|
201
|
+
#
|
|
194
202
|
# @param organization_id [String] Unique identifier for a messaging profile.
|
|
195
203
|
#
|
|
196
204
|
# @param parts [Integer] Number of parts into which the message's body must be split.
|
|
@@ -69,6 +69,12 @@ module Telnyx
|
|
|
69
69
|
# @return [String, nil]
|
|
70
70
|
optional :messaging_profile_id, String
|
|
71
71
|
|
|
72
|
+
# @!attribute num_chars
|
|
73
|
+
# The number of characters in the message text
|
|
74
|
+
#
|
|
75
|
+
# @return [Integer, nil]
|
|
76
|
+
optional :num_chars, Integer
|
|
77
|
+
|
|
72
78
|
# @!attribute organization_id
|
|
73
79
|
# The id of the organization the messaging profile belongs to.
|
|
74
80
|
#
|
|
@@ -178,7 +184,7 @@ module Telnyx
|
|
|
178
184
|
# @return [String, nil]
|
|
179
185
|
optional :webhook_url, String, nil?: true
|
|
180
186
|
|
|
181
|
-
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, smart_encoding_applied: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
187
|
+
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, num_chars: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, smart_encoding_applied: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
182
188
|
# Some parameter documentations has been truncated, see
|
|
183
189
|
# {Telnyx::Models::MessageCancelScheduledResponse} for more details.
|
|
184
190
|
#
|
|
@@ -204,6 +210,8 @@ module Telnyx
|
|
|
204
210
|
#
|
|
205
211
|
# @param messaging_profile_id [String] Unique identifier for a messaging profile.
|
|
206
212
|
#
|
|
213
|
+
# @param num_chars [Integer] The number of characters in the message text
|
|
214
|
+
#
|
|
207
215
|
# @param organization_id [String] The id of the organization the messaging profile belongs to.
|
|
208
216
|
#
|
|
209
217
|
# @param parts [Integer] Number of parts into which the message's body must be split.
|
|
@@ -67,6 +67,12 @@ module Telnyx
|
|
|
67
67
|
# @return [String, nil]
|
|
68
68
|
optional :messaging_profile_id, String
|
|
69
69
|
|
|
70
|
+
# @!attribute num_chars
|
|
71
|
+
# The number of characters in the message text
|
|
72
|
+
#
|
|
73
|
+
# @return [Integer, nil]
|
|
74
|
+
optional :num_chars, Integer
|
|
75
|
+
|
|
70
76
|
# @!attribute organization_id
|
|
71
77
|
# The id of the organization the messaging profile belongs to.
|
|
72
78
|
#
|
|
@@ -184,7 +190,7 @@ module Telnyx
|
|
|
184
190
|
# @return [String, nil]
|
|
185
191
|
optional :webhook_url, String, nil?: true
|
|
186
192
|
|
|
187
|
-
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, smart_encoding_applied: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, wait_seconds: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
193
|
+
# @!method initialize(id: nil, cc: nil, completed_at: nil, cost: nil, cost_breakdown: nil, direction: nil, encoding: nil, errors: nil, from: nil, media: nil, messaging_profile_id: nil, num_chars: nil, organization_id: nil, parts: nil, received_at: nil, record_type: nil, sent_at: nil, smart_encoding_applied: nil, subject: nil, tags: nil, tcr_campaign_billable: nil, tcr_campaign_id: nil, tcr_campaign_registered: nil, text: nil, to: nil, type: nil, valid_until: nil, wait_seconds: nil, webhook_failover_url: nil, webhook_url: nil)
|
|
188
194
|
# Some parameter documentations has been truncated, see
|
|
189
195
|
# {Telnyx::Models::OutboundMessagePayload} for more details.
|
|
190
196
|
#
|
|
@@ -210,6 +216,8 @@ module Telnyx
|
|
|
210
216
|
#
|
|
211
217
|
# @param messaging_profile_id [String] Unique identifier for a messaging profile.
|
|
212
218
|
#
|
|
219
|
+
# @param num_chars [Integer] The number of characters in the message text
|
|
220
|
+
#
|
|
213
221
|
# @param organization_id [String] The id of the organization the messaging profile belongs to.
|
|
214
222
|
#
|
|
215
223
|
# @param parts [Integer] Number of parts into which the message's body must be split.
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -386,6 +386,15 @@ module Telnyx
|
|
|
386
386
|
end
|
|
387
387
|
attr_writer :file_format
|
|
388
388
|
|
|
389
|
+
# When enabled, the call recording will stop when the conversation ends (for
|
|
390
|
+
# example, when the assistant hangs up or the call is transferred). When disabled,
|
|
391
|
+
# recording continues until the call itself ends.
|
|
392
|
+
sig { returns(T.nilable(T::Boolean)) }
|
|
393
|
+
attr_reader :stop_on_conversation_end
|
|
394
|
+
|
|
395
|
+
sig { params(stop_on_conversation_end: T::Boolean).void }
|
|
396
|
+
attr_writer :stop_on_conversation_end
|
|
397
|
+
|
|
389
398
|
# Configuration for call recording format and channel settings.
|
|
390
399
|
sig do
|
|
391
400
|
params(
|
|
@@ -393,7 +402,8 @@ module Telnyx
|
|
|
393
402
|
Telnyx::AI::TelephonySettings::RecordingSettings::Channels::OrSymbol,
|
|
394
403
|
enabled: T::Boolean,
|
|
395
404
|
file_format:
|
|
396
|
-
Telnyx::AI::TelephonySettings::RecordingSettings::Format::OrSymbol
|
|
405
|
+
Telnyx::AI::TelephonySettings::RecordingSettings::Format::OrSymbol,
|
|
406
|
+
stop_on_conversation_end: T::Boolean
|
|
397
407
|
).returns(T.attached_class)
|
|
398
408
|
end
|
|
399
409
|
def self.new(
|
|
@@ -403,7 +413,11 @@ module Telnyx
|
|
|
403
413
|
# regardless of other recording configuration.
|
|
404
414
|
enabled: nil,
|
|
405
415
|
# The format of the recording file.
|
|
406
|
-
file_format: nil
|
|
416
|
+
file_format: nil,
|
|
417
|
+
# When enabled, the call recording will stop when the conversation ends (for
|
|
418
|
+
# example, when the assistant hangs up or the call is transferred). When disabled,
|
|
419
|
+
# recording continues until the call itself ends.
|
|
420
|
+
stop_on_conversation_end: nil
|
|
407
421
|
)
|
|
408
422
|
end
|
|
409
423
|
|
|
@@ -414,7 +428,8 @@ module Telnyx
|
|
|
414
428
|
Telnyx::AI::TelephonySettings::RecordingSettings::Channels::OrSymbol,
|
|
415
429
|
enabled: T::Boolean,
|
|
416
430
|
file_format:
|
|
417
|
-
Telnyx::AI::TelephonySettings::RecordingSettings::Format::OrSymbol
|
|
431
|
+
Telnyx::AI::TelephonySettings::RecordingSettings::Format::OrSymbol,
|
|
432
|
+
stop_on_conversation_end: T::Boolean
|
|
418
433
|
}
|
|
419
434
|
)
|
|
420
435
|
end
|
|
@@ -103,6 +103,13 @@ module Telnyx
|
|
|
103
103
|
sig { params(messaging_profile_id: String).void }
|
|
104
104
|
attr_writer :messaging_profile_id
|
|
105
105
|
|
|
106
|
+
# The number of characters in the message text
|
|
107
|
+
sig { returns(T.nilable(Integer)) }
|
|
108
|
+
attr_reader :num_chars
|
|
109
|
+
|
|
110
|
+
sig { params(num_chars: Integer).void }
|
|
111
|
+
attr_writer :num_chars
|
|
112
|
+
|
|
106
113
|
# Unique identifier for a messaging profile.
|
|
107
114
|
sig { returns(T.nilable(String)) }
|
|
108
115
|
attr_reader :organization_id
|
|
@@ -222,6 +229,7 @@ module Telnyx
|
|
|
222
229
|
from: Telnyx::InboundMessagePayload::From::OrHash,
|
|
223
230
|
media: T::Array[Telnyx::InboundMessagePayload::Media::OrHash],
|
|
224
231
|
messaging_profile_id: String,
|
|
232
|
+
num_chars: Integer,
|
|
225
233
|
organization_id: String,
|
|
226
234
|
parts: Integer,
|
|
227
235
|
received_at: Time,
|
|
@@ -261,6 +269,8 @@ module Telnyx
|
|
|
261
269
|
media: nil,
|
|
262
270
|
# Unique identifier for a messaging profile.
|
|
263
271
|
messaging_profile_id: nil,
|
|
272
|
+
# The number of characters in the message text
|
|
273
|
+
num_chars: nil,
|
|
264
274
|
# Unique identifier for a messaging profile.
|
|
265
275
|
organization_id: nil,
|
|
266
276
|
# Number of parts into which the message's body must be split.
|
|
@@ -313,6 +323,7 @@ module Telnyx
|
|
|
313
323
|
from: Telnyx::InboundMessagePayload::From,
|
|
314
324
|
media: T::Array[Telnyx::InboundMessagePayload::Media],
|
|
315
325
|
messaging_profile_id: String,
|
|
326
|
+
num_chars: Integer,
|
|
316
327
|
organization_id: String,
|
|
317
328
|
parts: Integer,
|
|
318
329
|
received_at: Time,
|
|
@@ -146,6 +146,13 @@ module Telnyx
|
|
|
146
146
|
sig { params(messaging_profile_id: String).void }
|
|
147
147
|
attr_writer :messaging_profile_id
|
|
148
148
|
|
|
149
|
+
# The number of characters in the message text
|
|
150
|
+
sig { returns(T.nilable(Integer)) }
|
|
151
|
+
attr_reader :num_chars
|
|
152
|
+
|
|
153
|
+
sig { params(num_chars: Integer).void }
|
|
154
|
+
attr_writer :num_chars
|
|
155
|
+
|
|
149
156
|
# The id of the organization the messaging profile belongs to.
|
|
150
157
|
sig { returns(T.nilable(String)) }
|
|
151
158
|
attr_reader :organization_id
|
|
@@ -309,6 +316,7 @@ module Telnyx
|
|
|
309
316
|
Telnyx::Models::MessageCancelScheduledResponse::Media::OrHash
|
|
310
317
|
],
|
|
311
318
|
messaging_profile_id: String,
|
|
319
|
+
num_chars: Integer,
|
|
312
320
|
organization_id: String,
|
|
313
321
|
parts: Integer,
|
|
314
322
|
received_at: Time,
|
|
@@ -353,6 +361,8 @@ module Telnyx
|
|
|
353
361
|
media: nil,
|
|
354
362
|
# Unique identifier for a messaging profile.
|
|
355
363
|
messaging_profile_id: nil,
|
|
364
|
+
# The number of characters in the message text
|
|
365
|
+
num_chars: nil,
|
|
356
366
|
# The id of the organization the messaging profile belongs to.
|
|
357
367
|
organization_id: nil,
|
|
358
368
|
# Number of parts into which the message's body must be split.
|
|
@@ -417,6 +427,7 @@ module Telnyx
|
|
|
417
427
|
media:
|
|
418
428
|
T::Array[Telnyx::Models::MessageCancelScheduledResponse::Media],
|
|
419
429
|
messaging_profile_id: String,
|
|
430
|
+
num_chars: Integer,
|
|
420
431
|
organization_id: String,
|
|
421
432
|
parts: Integer,
|
|
422
433
|
received_at: Time,
|
|
@@ -105,6 +105,13 @@ module Telnyx
|
|
|
105
105
|
sig { params(messaging_profile_id: String).void }
|
|
106
106
|
attr_writer :messaging_profile_id
|
|
107
107
|
|
|
108
|
+
# The number of characters in the message text
|
|
109
|
+
sig { returns(T.nilable(Integer)) }
|
|
110
|
+
attr_reader :num_chars
|
|
111
|
+
|
|
112
|
+
sig { params(num_chars: Integer).void }
|
|
113
|
+
attr_writer :num_chars
|
|
114
|
+
|
|
108
115
|
# The id of the organization the messaging profile belongs to.
|
|
109
116
|
sig { returns(T.nilable(String)) }
|
|
110
117
|
attr_reader :organization_id
|
|
@@ -242,6 +249,7 @@ module Telnyx
|
|
|
242
249
|
from: Telnyx::OutboundMessagePayload::From::OrHash,
|
|
243
250
|
media: T::Array[Telnyx::OutboundMessagePayload::Media::OrHash],
|
|
244
251
|
messaging_profile_id: String,
|
|
252
|
+
num_chars: Integer,
|
|
245
253
|
organization_id: String,
|
|
246
254
|
parts: Integer,
|
|
247
255
|
received_at: Time,
|
|
@@ -283,6 +291,8 @@ module Telnyx
|
|
|
283
291
|
media: nil,
|
|
284
292
|
# Unique identifier for a messaging profile.
|
|
285
293
|
messaging_profile_id: nil,
|
|
294
|
+
# The number of characters in the message text
|
|
295
|
+
num_chars: nil,
|
|
286
296
|
# The id of the organization the messaging profile belongs to.
|
|
287
297
|
organization_id: nil,
|
|
288
298
|
# Number of parts into which the message's body must be split.
|
|
@@ -346,6 +356,7 @@ module Telnyx
|
|
|
346
356
|
from: Telnyx::OutboundMessagePayload::From,
|
|
347
357
|
media: T::Array[Telnyx::OutboundMessagePayload::Media],
|
|
348
358
|
messaging_profile_id: String,
|
|
359
|
+
num_chars: Integer,
|
|
349
360
|
organization_id: String,
|
|
350
361
|
parts: Integer,
|
|
351
362
|
received_at: Time,
|
|
@@ -137,7 +137,8 @@ module Telnyx
|
|
|
137
137
|
{
|
|
138
138
|
channels: Telnyx::Models::AI::TelephonySettings::RecordingSettings::channels,
|
|
139
139
|
enabled: bool,
|
|
140
|
-
file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_
|
|
140
|
+
file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_,
|
|
141
|
+
stop_on_conversation_end: bool
|
|
141
142
|
}
|
|
142
143
|
|
|
143
144
|
class RecordingSettings < Telnyx::Internal::Type::BaseModel
|
|
@@ -157,16 +158,22 @@ module Telnyx
|
|
|
157
158
|
Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_
|
|
158
159
|
) -> Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_
|
|
159
160
|
|
|
161
|
+
attr_reader stop_on_conversation_end: bool?
|
|
162
|
+
|
|
163
|
+
def stop_on_conversation_end=: (bool) -> bool
|
|
164
|
+
|
|
160
165
|
def initialize: (
|
|
161
166
|
?channels: Telnyx::Models::AI::TelephonySettings::RecordingSettings::channels,
|
|
162
167
|
?enabled: bool,
|
|
163
|
-
?file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_
|
|
168
|
+
?file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_,
|
|
169
|
+
?stop_on_conversation_end: bool
|
|
164
170
|
) -> void
|
|
165
171
|
|
|
166
172
|
def to_hash: -> {
|
|
167
173
|
channels: Telnyx::Models::AI::TelephonySettings::RecordingSettings::channels,
|
|
168
174
|
enabled: bool,
|
|
169
|
-
file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_
|
|
175
|
+
file_format: Telnyx::Models::AI::TelephonySettings::RecordingSettings::format_,
|
|
176
|
+
stop_on_conversation_end: bool
|
|
170
177
|
}
|
|
171
178
|
|
|
172
179
|
type channels = :single | :dual
|
|
@@ -13,6 +13,7 @@ module Telnyx
|
|
|
13
13
|
from: Telnyx::InboundMessagePayload::From,
|
|
14
14
|
media: ::Array[Telnyx::InboundMessagePayload::Media],
|
|
15
15
|
messaging_profile_id: String,
|
|
16
|
+
num_chars: Integer,
|
|
16
17
|
organization_id: String,
|
|
17
18
|
parts: Integer,
|
|
18
19
|
received_at: Time,
|
|
@@ -80,6 +81,10 @@ module Telnyx
|
|
|
80
81
|
|
|
81
82
|
def messaging_profile_id=: (String) -> String
|
|
82
83
|
|
|
84
|
+
attr_reader num_chars: Integer?
|
|
85
|
+
|
|
86
|
+
def num_chars=: (Integer) -> Integer
|
|
87
|
+
|
|
83
88
|
attr_reader organization_id: String?
|
|
84
89
|
|
|
85
90
|
def organization_id=: (String) -> String
|
|
@@ -148,6 +153,7 @@ module Telnyx
|
|
|
148
153
|
?from: Telnyx::InboundMessagePayload::From,
|
|
149
154
|
?media: ::Array[Telnyx::InboundMessagePayload::Media],
|
|
150
155
|
?messaging_profile_id: String,
|
|
156
|
+
?num_chars: Integer,
|
|
151
157
|
?organization_id: String,
|
|
152
158
|
?parts: Integer,
|
|
153
159
|
?received_at: Time,
|
|
@@ -178,6 +184,7 @@ module Telnyx
|
|
|
178
184
|
from: Telnyx::InboundMessagePayload::From,
|
|
179
185
|
media: ::Array[Telnyx::InboundMessagePayload::Media],
|
|
180
186
|
messaging_profile_id: String,
|
|
187
|
+
num_chars: Integer,
|
|
181
188
|
organization_id: String,
|
|
182
189
|
parts: Integer,
|
|
183
190
|
received_at: Time,
|
|
@@ -13,6 +13,7 @@ module Telnyx
|
|
|
13
13
|
from: Telnyx::Models::MessageCancelScheduledResponse::From,
|
|
14
14
|
media: ::Array[Telnyx::Models::MessageCancelScheduledResponse::Media],
|
|
15
15
|
messaging_profile_id: String,
|
|
16
|
+
num_chars: Integer,
|
|
16
17
|
organization_id: String,
|
|
17
18
|
parts: Integer,
|
|
18
19
|
received_at: Time,
|
|
@@ -81,6 +82,10 @@ module Telnyx
|
|
|
81
82
|
|
|
82
83
|
def messaging_profile_id=: (String) -> String
|
|
83
84
|
|
|
85
|
+
attr_reader num_chars: Integer?
|
|
86
|
+
|
|
87
|
+
def num_chars=: (Integer) -> Integer
|
|
88
|
+
|
|
84
89
|
attr_reader organization_id: String?
|
|
85
90
|
|
|
86
91
|
def organization_id=: (String) -> String
|
|
@@ -153,6 +158,7 @@ module Telnyx
|
|
|
153
158
|
?from: Telnyx::Models::MessageCancelScheduledResponse::From,
|
|
154
159
|
?media: ::Array[Telnyx::Models::MessageCancelScheduledResponse::Media],
|
|
155
160
|
?messaging_profile_id: String,
|
|
161
|
+
?num_chars: Integer,
|
|
156
162
|
?organization_id: String,
|
|
157
163
|
?parts: Integer,
|
|
158
164
|
?received_at: Time,
|
|
@@ -184,6 +190,7 @@ module Telnyx
|
|
|
184
190
|
from: Telnyx::Models::MessageCancelScheduledResponse::From,
|
|
185
191
|
media: ::Array[Telnyx::Models::MessageCancelScheduledResponse::Media],
|
|
186
192
|
messaging_profile_id: String,
|
|
193
|
+
num_chars: Integer,
|
|
187
194
|
organization_id: String,
|
|
188
195
|
parts: Integer,
|
|
189
196
|
received_at: Time,
|
|
@@ -13,6 +13,7 @@ module Telnyx
|
|
|
13
13
|
from: Telnyx::OutboundMessagePayload::From,
|
|
14
14
|
media: ::Array[Telnyx::OutboundMessagePayload::Media],
|
|
15
15
|
messaging_profile_id: String,
|
|
16
|
+
num_chars: Integer,
|
|
16
17
|
organization_id: String,
|
|
17
18
|
parts: Integer,
|
|
18
19
|
received_at: Time,
|
|
@@ -82,6 +83,10 @@ module Telnyx
|
|
|
82
83
|
|
|
83
84
|
def messaging_profile_id=: (String) -> String
|
|
84
85
|
|
|
86
|
+
attr_reader num_chars: Integer?
|
|
87
|
+
|
|
88
|
+
def num_chars=: (Integer) -> Integer
|
|
89
|
+
|
|
85
90
|
attr_reader organization_id: String?
|
|
86
91
|
|
|
87
92
|
def organization_id=: (String) -> String
|
|
@@ -156,6 +161,7 @@ module Telnyx
|
|
|
156
161
|
?from: Telnyx::OutboundMessagePayload::From,
|
|
157
162
|
?media: ::Array[Telnyx::OutboundMessagePayload::Media],
|
|
158
163
|
?messaging_profile_id: String,
|
|
164
|
+
?num_chars: Integer,
|
|
159
165
|
?organization_id: String,
|
|
160
166
|
?parts: Integer,
|
|
161
167
|
?received_at: Time,
|
|
@@ -188,6 +194,7 @@ module Telnyx
|
|
|
188
194
|
from: Telnyx::OutboundMessagePayload::From,
|
|
189
195
|
media: ::Array[Telnyx::OutboundMessagePayload::Media],
|
|
190
196
|
messaging_profile_id: String,
|
|
197
|
+
num_chars: Integer,
|
|
191
198
|
organization_id: String,
|
|
192
199
|
parts: Integer,
|
|
193
200
|
received_at: Time,
|
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.
|
|
4
|
+
version: 5.119.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-05-
|
|
11
|
+
date: 2026-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|