telnyx 5.85.0 → 5.86.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.
@@ -4,10 +4,10 @@ module Telnyx
4
4
  {
5
5
  verify_profile_id: String,
6
6
  call: Telnyx::VerifyProfileUpdateParams::Call,
7
- flashcall: Telnyx::VerifyProfileUpdateParams::Flashcall,
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 flashcall: Telnyx::VerifyProfileUpdateParams::Flashcall?
30
+ attr_reader daily_spend_limit: Float?
31
31
 
32
- def flashcall=: (
33
- Telnyx::VerifyProfileUpdateParams::Flashcall
34
- ) -> Telnyx::VerifyProfileUpdateParams::Flashcall
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
- ?flashcall: Telnyx::VerifyProfileUpdateParams::Flashcall,
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
- flashcall: Telnyx::VerifyProfileUpdateParams::Flashcall,
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
- ?flashcall: Telnyx::VerifyProfileUpdateParams::Flashcall,
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.85.0
4
+ version: 5.86.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-27 00:00:00.000000000 Z
11
+ date: 2026-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi