telnyx 5.85.0 → 5.87.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 +17 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/transcription_settings.rb +32 -13
- data/lib/telnyx/models/ai/transcription_settings_config.rb +30 -1
- data/lib/telnyx/models/texml/accounts/call_calls_params.rb +189 -3
- data/lib/telnyx/models/verify_profile.rb +17 -71
- data/lib/telnyx/models/verify_profile_create_params.rb +25 -69
- data/lib/telnyx/models/verify_profile_update_params.rb +23 -111
- data/lib/telnyx/resources/verify_profiles.rb +17 -6
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/transcription_settings.rbi +51 -16
- data/rbi/telnyx/models/ai/transcription_settings_config.rbi +43 -0
- data/rbi/telnyx/models/texml/accounts/call_calls_params.rbi +396 -0
- data/rbi/telnyx/models/verify_profile.rbi +22 -115
- data/rbi/telnyx/models/verify_profile_create_params.rbi +22 -118
- data/rbi/telnyx/models/verify_profile_update_params.rbi +20 -205
- data/rbi/telnyx/resources/verify_profiles.rbi +12 -6
- data/sig/telnyx/models/ai/transcription_settings.rbs +11 -0
- data/sig/telnyx/models/ai/transcription_settings_config.rbs +21 -0
- data/sig/telnyx/models/texml/accounts/call_calls_params.rbs +138 -0
- data/sig/telnyx/models/verify_profile.rbs +14 -61
- data/sig/telnyx/models/verify_profile_create_params.rbs +14 -63
- data/sig/telnyx/models/verify_profile_update_params.rbs +12 -103
- data/sig/telnyx/resources/verify_profiles.rbs +4 -3
- metadata +2 -2
|
@@ -48,6 +48,9 @@ module Telnyx
|
|
|
48
48
|
cancel_playback_on_detect_message_end: bool,
|
|
49
49
|
cancel_playback_on_machine_detection: bool,
|
|
50
50
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithURL::CustomHeader],
|
|
51
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection,
|
|
52
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method,
|
|
53
|
+
deepfake_detection_callback_url: String,
|
|
51
54
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::detection_mode,
|
|
52
55
|
fallback_url: String,
|
|
53
56
|
from: String,
|
|
@@ -121,6 +124,22 @@ module Telnyx
|
|
|
121
124
|
::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithURL::CustomHeader]
|
|
122
125
|
) -> ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithURL::CustomHeader]
|
|
123
126
|
|
|
127
|
+
attr_reader deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection?
|
|
128
|
+
|
|
129
|
+
def deepfake_detection=: (
|
|
130
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection
|
|
131
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection
|
|
132
|
+
|
|
133
|
+
attr_reader deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method?
|
|
134
|
+
|
|
135
|
+
def deepfake_detection_callback_method=: (
|
|
136
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method
|
|
137
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method
|
|
138
|
+
|
|
139
|
+
attr_reader deepfake_detection_callback_url: String?
|
|
140
|
+
|
|
141
|
+
def deepfake_detection_callback_url=: (String) -> String
|
|
142
|
+
|
|
124
143
|
attr_reader detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::detection_mode?
|
|
125
144
|
|
|
126
145
|
def detection_mode=: (
|
|
@@ -281,6 +300,9 @@ module Telnyx
|
|
|
281
300
|
?cancel_playback_on_detect_message_end: bool,
|
|
282
301
|
?cancel_playback_on_machine_detection: bool,
|
|
283
302
|
?custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithURL::CustomHeader],
|
|
303
|
+
?deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection,
|
|
304
|
+
?deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method,
|
|
305
|
+
?deepfake_detection_callback_url: String,
|
|
284
306
|
?detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::detection_mode,
|
|
285
307
|
?fallback_url: String,
|
|
286
308
|
?from: String,
|
|
@@ -325,6 +347,9 @@ module Telnyx
|
|
|
325
347
|
cancel_playback_on_detect_message_end: bool,
|
|
326
348
|
cancel_playback_on_machine_detection: bool,
|
|
327
349
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithURL::CustomHeader],
|
|
350
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection,
|
|
351
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method,
|
|
352
|
+
deepfake_detection_callback_url: String,
|
|
328
353
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::detection_mode,
|
|
329
354
|
fallback_url: String,
|
|
330
355
|
from: String,
|
|
@@ -382,6 +407,27 @@ module Telnyx
|
|
|
382
407
|
def to_hash: -> { name: String, value: String }
|
|
383
408
|
end
|
|
384
409
|
|
|
410
|
+
type deepfake_detection = :Enable
|
|
411
|
+
|
|
412
|
+
module DeepfakeDetection
|
|
413
|
+
extend Telnyx::Internal::Type::Enum
|
|
414
|
+
|
|
415
|
+
ENABLE: :Enable
|
|
416
|
+
|
|
417
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection]
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
type deepfake_detection_callback_method = :GET | :POST
|
|
421
|
+
|
|
422
|
+
module DeepfakeDetectionCallbackMethod
|
|
423
|
+
extend Telnyx::Internal::Type::Enum
|
|
424
|
+
|
|
425
|
+
GET: :GET
|
|
426
|
+
POST: :POST
|
|
427
|
+
|
|
428
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithURL::deepfake_detection_callback_method]
|
|
429
|
+
end
|
|
430
|
+
|
|
385
431
|
type detection_mode = :Premium | :Regular
|
|
386
432
|
|
|
387
433
|
module DetectionMode
|
|
@@ -537,6 +583,9 @@ module Telnyx
|
|
|
537
583
|
cancel_playback_on_detect_message_end: bool,
|
|
538
584
|
cancel_playback_on_machine_detection: bool,
|
|
539
585
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithTeXml::CustomHeader],
|
|
586
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection,
|
|
587
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method,
|
|
588
|
+
deepfake_detection_callback_url: String,
|
|
540
589
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::detection_mode,
|
|
541
590
|
fallback_url: String,
|
|
542
591
|
from: String,
|
|
@@ -610,6 +659,22 @@ module Telnyx
|
|
|
610
659
|
::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithTeXml::CustomHeader]
|
|
611
660
|
) -> ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithTeXml::CustomHeader]
|
|
612
661
|
|
|
662
|
+
attr_reader deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection?
|
|
663
|
+
|
|
664
|
+
def deepfake_detection=: (
|
|
665
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection
|
|
666
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection
|
|
667
|
+
|
|
668
|
+
attr_reader deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method?
|
|
669
|
+
|
|
670
|
+
def deepfake_detection_callback_method=: (
|
|
671
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method
|
|
672
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method
|
|
673
|
+
|
|
674
|
+
attr_reader deepfake_detection_callback_url: String?
|
|
675
|
+
|
|
676
|
+
def deepfake_detection_callback_url=: (String) -> String
|
|
677
|
+
|
|
613
678
|
attr_reader detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::detection_mode?
|
|
614
679
|
|
|
615
680
|
def detection_mode=: (
|
|
@@ -770,6 +835,9 @@ module Telnyx
|
|
|
770
835
|
?cancel_playback_on_detect_message_end: bool,
|
|
771
836
|
?cancel_playback_on_machine_detection: bool,
|
|
772
837
|
?custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithTeXml::CustomHeader],
|
|
838
|
+
?deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection,
|
|
839
|
+
?deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method,
|
|
840
|
+
?deepfake_detection_callback_url: String,
|
|
773
841
|
?detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::detection_mode,
|
|
774
842
|
?fallback_url: String,
|
|
775
843
|
?from: String,
|
|
@@ -814,6 +882,9 @@ module Telnyx
|
|
|
814
882
|
cancel_playback_on_detect_message_end: bool,
|
|
815
883
|
cancel_playback_on_machine_detection: bool,
|
|
816
884
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::WithTeXml::CustomHeader],
|
|
885
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection,
|
|
886
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method,
|
|
887
|
+
deepfake_detection_callback_url: String,
|
|
817
888
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::detection_mode,
|
|
818
889
|
fallback_url: String,
|
|
819
890
|
from: String,
|
|
@@ -871,6 +942,27 @@ module Telnyx
|
|
|
871
942
|
def to_hash: -> { name: String, value: String }
|
|
872
943
|
end
|
|
873
944
|
|
|
945
|
+
type deepfake_detection = :Enable
|
|
946
|
+
|
|
947
|
+
module DeepfakeDetection
|
|
948
|
+
extend Telnyx::Internal::Type::Enum
|
|
949
|
+
|
|
950
|
+
ENABLE: :Enable
|
|
951
|
+
|
|
952
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection]
|
|
953
|
+
end
|
|
954
|
+
|
|
955
|
+
type deepfake_detection_callback_method = :GET | :POST
|
|
956
|
+
|
|
957
|
+
module DeepfakeDetectionCallbackMethod
|
|
958
|
+
extend Telnyx::Internal::Type::Enum
|
|
959
|
+
|
|
960
|
+
GET: :GET
|
|
961
|
+
POST: :POST
|
|
962
|
+
|
|
963
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::WithTeXml::deepfake_detection_callback_method]
|
|
964
|
+
end
|
|
965
|
+
|
|
874
966
|
type detection_mode = :Premium | :Regular
|
|
875
967
|
|
|
876
968
|
module DetectionMode
|
|
@@ -1025,6 +1117,9 @@ module Telnyx
|
|
|
1025
1117
|
cancel_playback_on_detect_message_end: bool,
|
|
1026
1118
|
cancel_playback_on_machine_detection: bool,
|
|
1027
1119
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::CustomHeader],
|
|
1120
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection,
|
|
1121
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method,
|
|
1122
|
+
deepfake_detection_callback_url: String,
|
|
1028
1123
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::detection_mode,
|
|
1029
1124
|
fallback_url: String,
|
|
1030
1125
|
from: String,
|
|
@@ -1097,6 +1192,22 @@ module Telnyx
|
|
|
1097
1192
|
::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::CustomHeader]
|
|
1098
1193
|
) -> ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::CustomHeader]
|
|
1099
1194
|
|
|
1195
|
+
attr_reader deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection?
|
|
1196
|
+
|
|
1197
|
+
def deepfake_detection=: (
|
|
1198
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection
|
|
1199
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection
|
|
1200
|
+
|
|
1201
|
+
attr_reader deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method?
|
|
1202
|
+
|
|
1203
|
+
def deepfake_detection_callback_method=: (
|
|
1204
|
+
Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method
|
|
1205
|
+
) -> Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method
|
|
1206
|
+
|
|
1207
|
+
attr_reader deepfake_detection_callback_url: String?
|
|
1208
|
+
|
|
1209
|
+
def deepfake_detection_callback_url=: (String) -> String
|
|
1210
|
+
|
|
1100
1211
|
attr_reader detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::detection_mode?
|
|
1101
1212
|
|
|
1102
1213
|
def detection_mode=: (
|
|
@@ -1258,6 +1369,9 @@ module Telnyx
|
|
|
1258
1369
|
?cancel_playback_on_detect_message_end: bool,
|
|
1259
1370
|
?cancel_playback_on_machine_detection: bool,
|
|
1260
1371
|
?custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::CustomHeader],
|
|
1372
|
+
?deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection,
|
|
1373
|
+
?deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method,
|
|
1374
|
+
?deepfake_detection_callback_url: String,
|
|
1261
1375
|
?detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::detection_mode,
|
|
1262
1376
|
?fallback_url: String,
|
|
1263
1377
|
?from: String,
|
|
@@ -1302,6 +1416,9 @@ module Telnyx
|
|
|
1302
1416
|
cancel_playback_on_detect_message_end: bool,
|
|
1303
1417
|
cancel_playback_on_machine_detection: bool,
|
|
1304
1418
|
custom_headers: ::Array[Telnyx::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::CustomHeader],
|
|
1419
|
+
deepfake_detection: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection,
|
|
1420
|
+
deepfake_detection_callback_method: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method,
|
|
1421
|
+
deepfake_detection_callback_url: String,
|
|
1305
1422
|
detection_mode: Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::detection_mode,
|
|
1306
1423
|
fallback_url: String,
|
|
1307
1424
|
from: String,
|
|
@@ -1360,6 +1477,27 @@ module Telnyx
|
|
|
1360
1477
|
def to_hash: -> { name: String, value: String }
|
|
1361
1478
|
end
|
|
1362
1479
|
|
|
1480
|
+
type deepfake_detection = :Enable
|
|
1481
|
+
|
|
1482
|
+
module DeepfakeDetection
|
|
1483
|
+
extend Telnyx::Internal::Type::Enum
|
|
1484
|
+
|
|
1485
|
+
ENABLE: :Enable
|
|
1486
|
+
|
|
1487
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection]
|
|
1488
|
+
end
|
|
1489
|
+
|
|
1490
|
+
type deepfake_detection_callback_method = :GET | :POST
|
|
1491
|
+
|
|
1492
|
+
module DeepfakeDetectionCallbackMethod
|
|
1493
|
+
extend Telnyx::Internal::Type::Enum
|
|
1494
|
+
|
|
1495
|
+
GET: :GET
|
|
1496
|
+
POST: :POST
|
|
1497
|
+
|
|
1498
|
+
def self?.values: -> ::Array[Telnyx::Models::Texml::Accounts::CallCallsParams::Params::ApplicationDefault::deepfake_detection_callback_method]
|
|
1499
|
+
end
|
|
1500
|
+
|
|
1363
1501
|
type detection_mode = :Premium | :Regular
|
|
1364
1502
|
|
|
1365
1503
|
module DetectionMode
|
|
@@ -5,10 +5,11 @@ module Telnyx
|
|
|
5
5
|
id: String,
|
|
6
6
|
call: Telnyx::VerifyProfile::Call,
|
|
7
7
|
created_at: String,
|
|
8
|
+
daily_spend_limit: Float,
|
|
9
|
+
daily_spend_limit_enabled: bool,
|
|
8
10
|
flashcall: Telnyx::VerifyProfile::Flashcall,
|
|
9
11
|
language: String,
|
|
10
12
|
name: String,
|
|
11
|
-
rcs: Telnyx::VerifyProfile::Rcs,
|
|
12
13
|
record_type: Telnyx::Models::VerifyProfile::record_type,
|
|
13
14
|
sms: Telnyx::VerifyProfile::SMS,
|
|
14
15
|
updated_at: String,
|
|
@@ -30,6 +31,14 @@ module Telnyx
|
|
|
30
31
|
|
|
31
32
|
def created_at=: (String) -> String
|
|
32
33
|
|
|
34
|
+
attr_reader daily_spend_limit: Float?
|
|
35
|
+
|
|
36
|
+
def daily_spend_limit=: (Float) -> Float
|
|
37
|
+
|
|
38
|
+
attr_reader daily_spend_limit_enabled: bool?
|
|
39
|
+
|
|
40
|
+
def daily_spend_limit_enabled=: (bool) -> bool
|
|
41
|
+
|
|
33
42
|
attr_reader flashcall: Telnyx::VerifyProfile::Flashcall?
|
|
34
43
|
|
|
35
44
|
def flashcall=: (
|
|
@@ -44,10 +53,6 @@ module Telnyx
|
|
|
44
53
|
|
|
45
54
|
def name=: (String) -> String
|
|
46
55
|
|
|
47
|
-
attr_reader rcs: Telnyx::VerifyProfile::Rcs?
|
|
48
|
-
|
|
49
|
-
def rcs=: (Telnyx::VerifyProfile::Rcs) -> Telnyx::VerifyProfile::Rcs
|
|
50
|
-
|
|
51
56
|
attr_reader record_type: Telnyx::Models::VerifyProfile::record_type?
|
|
52
57
|
|
|
53
58
|
def record_type=: (
|
|
@@ -80,10 +85,11 @@ module Telnyx
|
|
|
80
85
|
?id: String,
|
|
81
86
|
?call: Telnyx::VerifyProfile::Call,
|
|
82
87
|
?created_at: String,
|
|
88
|
+
?daily_spend_limit: Float,
|
|
89
|
+
?daily_spend_limit_enabled: bool,
|
|
83
90
|
?flashcall: Telnyx::VerifyProfile::Flashcall,
|
|
84
91
|
?language: String,
|
|
85
92
|
?name: String,
|
|
86
|
-
?rcs: Telnyx::VerifyProfile::Rcs,
|
|
87
93
|
?record_type: Telnyx::Models::VerifyProfile::record_type,
|
|
88
94
|
?sms: Telnyx::VerifyProfile::SMS,
|
|
89
95
|
?updated_at: String,
|
|
@@ -96,10 +102,11 @@ module Telnyx
|
|
|
96
102
|
id: String,
|
|
97
103
|
call: Telnyx::VerifyProfile::Call,
|
|
98
104
|
created_at: String,
|
|
105
|
+
daily_spend_limit: Float,
|
|
106
|
+
daily_spend_limit_enabled: bool,
|
|
99
107
|
flashcall: Telnyx::VerifyProfile::Flashcall,
|
|
100
108
|
language: String,
|
|
101
109
|
name: String,
|
|
102
|
-
rcs: Telnyx::VerifyProfile::Rcs,
|
|
103
110
|
record_type: Telnyx::Models::VerifyProfile::record_type,
|
|
104
111
|
sms: Telnyx::VerifyProfile::SMS,
|
|
105
112
|
updated_at: String,
|
|
@@ -178,60 +185,6 @@ module Telnyx
|
|
|
178
185
|
}
|
|
179
186
|
end
|
|
180
187
|
|
|
181
|
-
type rcs =
|
|
182
|
-
{
|
|
183
|
-
app_name: String,
|
|
184
|
-
code_length: Integer,
|
|
185
|
-
default_verification_timeout_secs: Integer,
|
|
186
|
-
messaging_template_id: String,
|
|
187
|
-
sms_fallback: bool,
|
|
188
|
-
whitelisted_destinations: ::Array[String]
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
class Rcs < Telnyx::Internal::Type::BaseModel
|
|
192
|
-
attr_reader app_name: String?
|
|
193
|
-
|
|
194
|
-
def app_name=: (String) -> String
|
|
195
|
-
|
|
196
|
-
attr_reader code_length: Integer?
|
|
197
|
-
|
|
198
|
-
def code_length=: (Integer) -> Integer
|
|
199
|
-
|
|
200
|
-
attr_reader default_verification_timeout_secs: Integer?
|
|
201
|
-
|
|
202
|
-
def default_verification_timeout_secs=: (Integer) -> Integer
|
|
203
|
-
|
|
204
|
-
attr_reader messaging_template_id: String?
|
|
205
|
-
|
|
206
|
-
def messaging_template_id=: (String) -> String
|
|
207
|
-
|
|
208
|
-
attr_reader sms_fallback: bool?
|
|
209
|
-
|
|
210
|
-
def sms_fallback=: (bool) -> bool
|
|
211
|
-
|
|
212
|
-
attr_reader whitelisted_destinations: ::Array[String]?
|
|
213
|
-
|
|
214
|
-
def whitelisted_destinations=: (::Array[String]) -> ::Array[String]
|
|
215
|
-
|
|
216
|
-
def initialize: (
|
|
217
|
-
?app_name: String,
|
|
218
|
-
?code_length: Integer,
|
|
219
|
-
?default_verification_timeout_secs: Integer,
|
|
220
|
-
?messaging_template_id: String,
|
|
221
|
-
?sms_fallback: bool,
|
|
222
|
-
?whitelisted_destinations: ::Array[String]
|
|
223
|
-
) -> void
|
|
224
|
-
|
|
225
|
-
def to_hash: -> {
|
|
226
|
-
app_name: String,
|
|
227
|
-
code_length: Integer,
|
|
228
|
-
default_verification_timeout_secs: Integer,
|
|
229
|
-
messaging_template_id: String,
|
|
230
|
-
sms_fallback: bool,
|
|
231
|
-
whitelisted_destinations: ::Array[String]
|
|
232
|
-
}
|
|
233
|
-
end
|
|
234
|
-
|
|
235
188
|
type record_type = :verification_profile
|
|
236
189
|
|
|
237
190
|
module RecordType
|
|
@@ -4,9 +4,10 @@ module Telnyx
|
|
|
4
4
|
{
|
|
5
5
|
name: String,
|
|
6
6
|
call: Telnyx::VerifyProfileCreateParams::Call,
|
|
7
|
+
daily_spend_limit: Float,
|
|
8
|
+
daily_spend_limit_enabled: bool,
|
|
7
9
|
flashcall: Telnyx::VerifyProfileCreateParams::Flashcall,
|
|
8
10
|
language: String,
|
|
9
|
-
rcs: Telnyx::VerifyProfileCreateParams::Rcs,
|
|
10
11
|
sms: Telnyx::VerifyProfileCreateParams::SMS,
|
|
11
12
|
webhook_failover_url: String,
|
|
12
13
|
webhook_url: String,
|
|
@@ -26,6 +27,14 @@ module Telnyx
|
|
|
26
27
|
Telnyx::VerifyProfileCreateParams::Call
|
|
27
28
|
) -> Telnyx::VerifyProfileCreateParams::Call
|
|
28
29
|
|
|
30
|
+
attr_reader daily_spend_limit: Float?
|
|
31
|
+
|
|
32
|
+
def daily_spend_limit=: (Float) -> Float
|
|
33
|
+
|
|
34
|
+
attr_reader daily_spend_limit_enabled: bool?
|
|
35
|
+
|
|
36
|
+
def daily_spend_limit_enabled=: (bool) -> bool
|
|
37
|
+
|
|
29
38
|
attr_reader flashcall: Telnyx::VerifyProfileCreateParams::Flashcall?
|
|
30
39
|
|
|
31
40
|
def flashcall=: (
|
|
@@ -36,12 +45,6 @@ module Telnyx
|
|
|
36
45
|
|
|
37
46
|
def language=: (String) -> String
|
|
38
47
|
|
|
39
|
-
attr_reader rcs: Telnyx::VerifyProfileCreateParams::Rcs?
|
|
40
|
-
|
|
41
|
-
def rcs=: (
|
|
42
|
-
Telnyx::VerifyProfileCreateParams::Rcs
|
|
43
|
-
) -> Telnyx::VerifyProfileCreateParams::Rcs
|
|
44
|
-
|
|
45
48
|
attr_reader sms: Telnyx::VerifyProfileCreateParams::SMS?
|
|
46
49
|
|
|
47
50
|
def sms=: (
|
|
@@ -65,9 +68,10 @@ module Telnyx
|
|
|
65
68
|
def initialize: (
|
|
66
69
|
name: String,
|
|
67
70
|
?call: Telnyx::VerifyProfileCreateParams::Call,
|
|
71
|
+
?daily_spend_limit: Float,
|
|
72
|
+
?daily_spend_limit_enabled: bool,
|
|
68
73
|
?flashcall: Telnyx::VerifyProfileCreateParams::Flashcall,
|
|
69
74
|
?language: String,
|
|
70
|
-
?rcs: Telnyx::VerifyProfileCreateParams::Rcs,
|
|
71
75
|
?sms: Telnyx::VerifyProfileCreateParams::SMS,
|
|
72
76
|
?webhook_failover_url: String,
|
|
73
77
|
?webhook_url: String,
|
|
@@ -78,9 +82,10 @@ module Telnyx
|
|
|
78
82
|
def to_hash: -> {
|
|
79
83
|
name: String,
|
|
80
84
|
call: Telnyx::VerifyProfileCreateParams::Call,
|
|
85
|
+
daily_spend_limit: Float,
|
|
86
|
+
daily_spend_limit_enabled: bool,
|
|
81
87
|
flashcall: Telnyx::VerifyProfileCreateParams::Flashcall,
|
|
82
88
|
language: String,
|
|
83
|
-
rcs: Telnyx::VerifyProfileCreateParams::Rcs,
|
|
84
89
|
sms: Telnyx::VerifyProfileCreateParams::SMS,
|
|
85
90
|
webhook_failover_url: String,
|
|
86
91
|
webhook_url: String,
|
|
@@ -168,60 +173,6 @@ module Telnyx
|
|
|
168
173
|
}
|
|
169
174
|
end
|
|
170
175
|
|
|
171
|
-
type rcs =
|
|
172
|
-
{
|
|
173
|
-
app_name: String,
|
|
174
|
-
code_length: Integer,
|
|
175
|
-
default_verification_timeout_secs: Integer,
|
|
176
|
-
messaging_template_id: String,
|
|
177
|
-
sms_fallback: bool,
|
|
178
|
-
whitelisted_destinations: ::Array[String]
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
class Rcs < Telnyx::Internal::Type::BaseModel
|
|
182
|
-
attr_reader app_name: String?
|
|
183
|
-
|
|
184
|
-
def app_name=: (String) -> String
|
|
185
|
-
|
|
186
|
-
attr_reader code_length: Integer?
|
|
187
|
-
|
|
188
|
-
def code_length=: (Integer) -> Integer
|
|
189
|
-
|
|
190
|
-
attr_reader default_verification_timeout_secs: Integer?
|
|
191
|
-
|
|
192
|
-
def default_verification_timeout_secs=: (Integer) -> Integer
|
|
193
|
-
|
|
194
|
-
attr_reader messaging_template_id: String?
|
|
195
|
-
|
|
196
|
-
def messaging_template_id=: (String) -> String
|
|
197
|
-
|
|
198
|
-
attr_reader sms_fallback: bool?
|
|
199
|
-
|
|
200
|
-
def sms_fallback=: (bool) -> bool
|
|
201
|
-
|
|
202
|
-
attr_reader whitelisted_destinations: ::Array[String]?
|
|
203
|
-
|
|
204
|
-
def whitelisted_destinations=: (::Array[String]) -> ::Array[String]
|
|
205
|
-
|
|
206
|
-
def initialize: (
|
|
207
|
-
?app_name: String,
|
|
208
|
-
?code_length: Integer,
|
|
209
|
-
?default_verification_timeout_secs: Integer,
|
|
210
|
-
?messaging_template_id: String,
|
|
211
|
-
?sms_fallback: bool,
|
|
212
|
-
?whitelisted_destinations: ::Array[String]
|
|
213
|
-
) -> void
|
|
214
|
-
|
|
215
|
-
def to_hash: -> {
|
|
216
|
-
app_name: String,
|
|
217
|
-
code_length: Integer,
|
|
218
|
-
default_verification_timeout_secs: Integer,
|
|
219
|
-
messaging_template_id: String,
|
|
220
|
-
sms_fallback: bool,
|
|
221
|
-
whitelisted_destinations: ::Array[String]
|
|
222
|
-
}
|
|
223
|
-
end
|
|
224
|
-
|
|
225
176
|
type sms =
|
|
226
177
|
{
|
|
227
178
|
alpha_sender: String?,
|
|
@@ -4,10 +4,10 @@ module Telnyx
|
|
|
4
4
|
{
|
|
5
5
|
verify_profile_id: String,
|
|
6
6
|
call: Telnyx::VerifyProfileUpdateParams::Call,
|
|
7
|
-
|
|
7
|
+
daily_spend_limit: Float,
|
|
8
|
+
daily_spend_limit_enabled: bool,
|
|
8
9
|
language: String,
|
|
9
10
|
name: String,
|
|
10
|
-
rcs: Telnyx::VerifyProfileUpdateParams::Rcs,
|
|
11
11
|
sms: Telnyx::VerifyProfileUpdateParams::SMS,
|
|
12
12
|
webhook_failover_url: String,
|
|
13
13
|
webhook_url: String,
|
|
@@ -27,11 +27,13 @@ module Telnyx
|
|
|
27
27
|
Telnyx::VerifyProfileUpdateParams::Call
|
|
28
28
|
) -> Telnyx::VerifyProfileUpdateParams::Call
|
|
29
29
|
|
|
30
|
-
attr_reader
|
|
30
|
+
attr_reader daily_spend_limit: Float?
|
|
31
31
|
|
|
32
|
-
def
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
def daily_spend_limit=: (Float) -> Float
|
|
33
|
+
|
|
34
|
+
attr_reader daily_spend_limit_enabled: bool?
|
|
35
|
+
|
|
36
|
+
def daily_spend_limit_enabled=: (bool) -> bool
|
|
35
37
|
|
|
36
38
|
attr_reader language: String?
|
|
37
39
|
|
|
@@ -41,12 +43,6 @@ module Telnyx
|
|
|
41
43
|
|
|
42
44
|
def name=: (String) -> String
|
|
43
45
|
|
|
44
|
-
attr_reader rcs: Telnyx::VerifyProfileUpdateParams::Rcs?
|
|
45
|
-
|
|
46
|
-
def rcs=: (
|
|
47
|
-
Telnyx::VerifyProfileUpdateParams::Rcs
|
|
48
|
-
) -> Telnyx::VerifyProfileUpdateParams::Rcs
|
|
49
|
-
|
|
50
46
|
attr_reader sms: Telnyx::VerifyProfileUpdateParams::SMS?
|
|
51
47
|
|
|
52
48
|
def sms=: (
|
|
@@ -70,10 +66,10 @@ module Telnyx
|
|
|
70
66
|
def initialize: (
|
|
71
67
|
verify_profile_id: String,
|
|
72
68
|
?call: Telnyx::VerifyProfileUpdateParams::Call,
|
|
73
|
-
?
|
|
69
|
+
?daily_spend_limit: Float,
|
|
70
|
+
?daily_spend_limit_enabled: bool,
|
|
74
71
|
?language: String,
|
|
75
72
|
?name: String,
|
|
76
|
-
?rcs: Telnyx::VerifyProfileUpdateParams::Rcs,
|
|
77
73
|
?sms: Telnyx::VerifyProfileUpdateParams::SMS,
|
|
78
74
|
?webhook_failover_url: String,
|
|
79
75
|
?webhook_url: String,
|
|
@@ -84,10 +80,10 @@ module Telnyx
|
|
|
84
80
|
def to_hash: -> {
|
|
85
81
|
verify_profile_id: String,
|
|
86
82
|
call: Telnyx::VerifyProfileUpdateParams::Call,
|
|
87
|
-
|
|
83
|
+
daily_spend_limit: Float,
|
|
84
|
+
daily_spend_limit_enabled: bool,
|
|
88
85
|
language: String,
|
|
89
86
|
name: String,
|
|
90
|
-
rcs: Telnyx::VerifyProfileUpdateParams::Rcs,
|
|
91
87
|
sms: Telnyx::VerifyProfileUpdateParams::SMS,
|
|
92
88
|
webhook_failover_url: String,
|
|
93
89
|
webhook_url: String,
|
|
@@ -142,93 +138,6 @@ module Telnyx
|
|
|
142
138
|
}
|
|
143
139
|
end
|
|
144
140
|
|
|
145
|
-
type flashcall =
|
|
146
|
-
{
|
|
147
|
-
app_name: String,
|
|
148
|
-
default_verification_timeout_secs: Integer,
|
|
149
|
-
whitelisted_destinations: ::Array[String]
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
class Flashcall < Telnyx::Internal::Type::BaseModel
|
|
153
|
-
attr_reader app_name: String?
|
|
154
|
-
|
|
155
|
-
def app_name=: (String) -> String
|
|
156
|
-
|
|
157
|
-
attr_reader default_verification_timeout_secs: Integer?
|
|
158
|
-
|
|
159
|
-
def default_verification_timeout_secs=: (Integer) -> Integer
|
|
160
|
-
|
|
161
|
-
attr_reader whitelisted_destinations: ::Array[String]?
|
|
162
|
-
|
|
163
|
-
def whitelisted_destinations=: (::Array[String]) -> ::Array[String]
|
|
164
|
-
|
|
165
|
-
def initialize: (
|
|
166
|
-
?app_name: String,
|
|
167
|
-
?default_verification_timeout_secs: Integer,
|
|
168
|
-
?whitelisted_destinations: ::Array[String]
|
|
169
|
-
) -> void
|
|
170
|
-
|
|
171
|
-
def to_hash: -> {
|
|
172
|
-
app_name: String,
|
|
173
|
-
default_verification_timeout_secs: Integer,
|
|
174
|
-
whitelisted_destinations: ::Array[String]
|
|
175
|
-
}
|
|
176
|
-
end
|
|
177
|
-
|
|
178
|
-
type rcs =
|
|
179
|
-
{
|
|
180
|
-
app_name: String,
|
|
181
|
-
code_length: Integer,
|
|
182
|
-
default_verification_timeout_secs: Integer,
|
|
183
|
-
messaging_template_id: String,
|
|
184
|
-
sms_fallback: bool,
|
|
185
|
-
whitelisted_destinations: ::Array[String]
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
class Rcs < Telnyx::Internal::Type::BaseModel
|
|
189
|
-
attr_reader app_name: String?
|
|
190
|
-
|
|
191
|
-
def app_name=: (String) -> String
|
|
192
|
-
|
|
193
|
-
attr_reader code_length: Integer?
|
|
194
|
-
|
|
195
|
-
def code_length=: (Integer) -> Integer
|
|
196
|
-
|
|
197
|
-
attr_reader default_verification_timeout_secs: Integer?
|
|
198
|
-
|
|
199
|
-
def default_verification_timeout_secs=: (Integer) -> Integer
|
|
200
|
-
|
|
201
|
-
attr_reader messaging_template_id: String?
|
|
202
|
-
|
|
203
|
-
def messaging_template_id=: (String) -> String
|
|
204
|
-
|
|
205
|
-
attr_reader sms_fallback: bool?
|
|
206
|
-
|
|
207
|
-
def sms_fallback=: (bool) -> bool
|
|
208
|
-
|
|
209
|
-
attr_reader whitelisted_destinations: ::Array[String]?
|
|
210
|
-
|
|
211
|
-
def whitelisted_destinations=: (::Array[String]) -> ::Array[String]
|
|
212
|
-
|
|
213
|
-
def initialize: (
|
|
214
|
-
?app_name: String,
|
|
215
|
-
?code_length: Integer,
|
|
216
|
-
?default_verification_timeout_secs: Integer,
|
|
217
|
-
?messaging_template_id: String,
|
|
218
|
-
?sms_fallback: bool,
|
|
219
|
-
?whitelisted_destinations: ::Array[String]
|
|
220
|
-
) -> void
|
|
221
|
-
|
|
222
|
-
def to_hash: -> {
|
|
223
|
-
app_name: String,
|
|
224
|
-
code_length: Integer,
|
|
225
|
-
default_verification_timeout_secs: Integer,
|
|
226
|
-
messaging_template_id: String,
|
|
227
|
-
sms_fallback: bool,
|
|
228
|
-
whitelisted_destinations: ::Array[String]
|
|
229
|
-
}
|
|
230
|
-
end
|
|
231
|
-
|
|
232
141
|
type sms =
|
|
233
142
|
{
|
|
234
143
|
alpha_sender: String?,
|
|
@@ -4,9 +4,10 @@ module Telnyx
|
|
|
4
4
|
def create: (
|
|
5
5
|
name: String,
|
|
6
6
|
?call: Telnyx::VerifyProfileCreateParams::Call,
|
|
7
|
+
?daily_spend_limit: Float,
|
|
8
|
+
?daily_spend_limit_enabled: bool,
|
|
7
9
|
?flashcall: Telnyx::VerifyProfileCreateParams::Flashcall,
|
|
8
10
|
?language: String,
|
|
9
|
-
?rcs: Telnyx::VerifyProfileCreateParams::Rcs,
|
|
10
11
|
?sms: Telnyx::VerifyProfileCreateParams::SMS,
|
|
11
12
|
?webhook_failover_url: String,
|
|
12
13
|
?webhook_url: String,
|
|
@@ -22,10 +23,10 @@ module Telnyx
|
|
|
22
23
|
def update: (
|
|
23
24
|
String verify_profile_id,
|
|
24
25
|
?call: Telnyx::VerifyProfileUpdateParams::Call,
|
|
25
|
-
?
|
|
26
|
+
?daily_spend_limit: Float,
|
|
27
|
+
?daily_spend_limit_enabled: bool,
|
|
26
28
|
?language: String,
|
|
27
29
|
?name: String,
|
|
28
|
-
?rcs: Telnyx::VerifyProfileUpdateParams::Rcs,
|
|
29
30
|
?sms: Telnyx::VerifyProfileUpdateParams::SMS,
|
|
30
31
|
?webhook_failover_url: String,
|
|
31
32
|
?webhook_url: 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.
|
|
4
|
+
version: 5.87.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-
|
|
11
|
+
date: 2026-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|