telnyx 5.75.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65d338ab470b2954f903b0844cb28f0bdce65cba7f7695b4c3a57be0269ce505
4
- data.tar.gz: 2ea91cf048e0e095a7c96abbd74c534b291228aa0d6fe16ff2dcea6a8c0927d2
3
+ metadata.gz: 59e245d43f929435e99b241c00ea1ed9f63a82ed8be05cfde272e9c1c8bcf9ea
4
+ data.tar.gz: e55cbe229e5f6fd49467da40f6358753dd05d062673141eef81b7a17c02943d1
5
5
  SHA512:
6
- metadata.gz: e3851768089ad03bab75b2de7c9d1b013f5350983469cec312e184a64b210e2b1ff522f0a6ed05f40d5cd3eed5bc22cc2af041b7fc887f2e1b373175ed2ddf50
7
- data.tar.gz: 5ee7c87b6b4c058f3f3c485b92b7c28b68d4f2d04e2a8600eebd67d15f8179e8dea0e8025d88fe031bff48fdc74ecfbc4f82097199c1784248d49f5d097de64e
6
+ metadata.gz: b5859cfa565098e2b10e8dc245df6002fb7e60ec5cca968b01154052e9035ac568951039708c19864fee5592aa0faeb7c0fc65c88468d9ae242c669a1b02b2ca
7
+ data.tar.gz: 4ece7fdc0338187af8677499069eb039489759d98947c5bce2c965a9a61b4e4fcc445a2540e29a9d5909c272deb6b4988dea55e7d88efe55e744d181943e4a41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.76.0 (2026-04-15)
4
+
5
+ Full Changelog: [v5.75.0...v5.76.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.75.0...v5.76.0)
6
+
7
+ ### Features
8
+
9
+ * MSG-6868: document whitelisted_destinations as conditionally required ([9eaa65e](https://github.com/team-telnyx/telnyx-ruby/commit/9eaa65e4b48ee96132d94227b4cae9519c82b8dc))
10
+
3
11
  ## 5.75.0 (2026-04-14)
4
12
 
5
13
  Full Changelog: [v5.74.0...v5.75.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.74.0...v5.75.0)
data/README.md CHANGED
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "telnyx", "~> 5.75.0"
27
+ gem "telnyx", "~> 5.76.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -129,7 +129,7 @@ module Telnyx
129
129
  extend Telnyx::Internal::Type::Enum
130
130
 
131
131
  CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT = :"current_billing_period_consumed_data.amount"
132
- MINUS_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT = :"-current_billing_period_consumed_data.amount"
132
+ DESC_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT = :"-current_billing_period_consumed_data.amount"
133
133
 
134
134
  # @!method self.values
135
135
  # @return [Array<Symbol>]
@@ -72,9 +72,9 @@ module Telnyx
72
72
  extend Telnyx::Internal::Type::Enum
73
73
 
74
74
  SERVICE = :service
75
- MINUS_SERVICE = :"-service"
75
+ DESC_SERVICE = :"-service"
76
76
  TYPE = :type
77
- MINUS_TYPE = :"-type"
77
+ DESC_TYPE = :"-type"
78
78
 
79
79
  # @!method self.values
80
80
  # @return [Array<Symbol>]
@@ -123,7 +123,9 @@ module Telnyx
123
123
  # @!attribute whitelisted_destinations
124
124
  # Enabled country destinations to send verification codes. The elements in the
125
125
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
126
- # destinations will be allowed.
126
+ # destinations will be allowed. **Conditionally required:** this field must be
127
+ # provided when your organization is configured to require explicit whitelisted
128
+ # destinations; otherwise it is optional.
127
129
  #
128
130
  # @return [Array<String>, nil]
129
131
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -209,7 +211,9 @@ module Telnyx
209
211
  # @!attribute whitelisted_destinations
210
212
  # Enabled country destinations to send verification codes. The elements in the
211
213
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
212
- # destinations will be allowed.
214
+ # destinations will be allowed. **Conditionally required:** this field must be
215
+ # provided when your organization is configured to require explicit whitelisted
216
+ # destinations; otherwise it is optional.
213
217
  #
214
218
  # @return [Array<String>, nil]
215
219
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -283,7 +287,9 @@ module Telnyx
283
287
  # @!attribute whitelisted_destinations
284
288
  # Enabled country destinations to send verification codes. The elements in the
285
289
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
286
- # destinations will be allowed.
290
+ # destinations will be allowed. **Conditionally required:** this field must be
291
+ # provided when your organization is configured to require explicit whitelisted
292
+ # destinations; otherwise it is optional.
287
293
  #
288
294
  # @return [Array<String>, nil]
289
295
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -96,7 +96,9 @@ module Telnyx
96
96
  # @!attribute whitelisted_destinations
97
97
  # Enabled country destinations to send verification codes. The elements in the
98
98
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
99
- # destinations will be allowed.
99
+ # destinations will be allowed. **Conditionally required:** this field must be
100
+ # provided when your organization is configured to require explicit whitelisted
101
+ # destinations; otherwise it is optional.
100
102
  #
101
103
  # @return [Array<String>, nil]
102
104
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -136,7 +138,9 @@ module Telnyx
136
138
  # @!attribute whitelisted_destinations
137
139
  # Enabled country destinations to send verification codes. The elements in the
138
140
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
139
- # destinations will be allowed.
141
+ # destinations will be allowed. **Conditionally required:** this field must be
142
+ # provided when your organization is configured to require explicit whitelisted
143
+ # destinations; otherwise it is optional.
140
144
  #
141
145
  # @return [Array<String>, nil]
142
146
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -190,7 +194,9 @@ module Telnyx
190
194
  # @!attribute whitelisted_destinations
191
195
  # Enabled country destinations to send verification codes. The elements in the
192
196
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
193
- # destinations will be allowed.
197
+ # destinations will be allowed. **Conditionally required:** this field must be
198
+ # provided when your organization is configured to require explicit whitelisted
199
+ # destinations; otherwise it is optional.
194
200
  #
195
201
  # @return [Array<String>, nil]
196
202
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -251,7 +257,9 @@ module Telnyx
251
257
  # @!attribute whitelisted_destinations
252
258
  # Enabled country destinations to send verification codes. The elements in the
253
259
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
254
- # destinations will be allowed.
260
+ # destinations will be allowed. **Conditionally required:** this field must be
261
+ # provided when your organization is configured to require explicit whitelisted
262
+ # destinations; otherwise it is optional.
255
263
  #
256
264
  # @return [Array<String>, nil]
257
265
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -293,7 +301,9 @@ module Telnyx
293
301
  # @!attribute whitelisted_destinations
294
302
  # Enabled country destinations to send verification codes. The elements in the
295
303
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
296
- # destinations will be allowed.
304
+ # destinations will be allowed. **Conditionally required:** this field must be
305
+ # provided when your organization is configured to require explicit whitelisted
306
+ # destinations; otherwise it is optional.
297
307
  #
298
308
  # @return [Array<String>, nil]
299
309
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -102,7 +102,9 @@ module Telnyx
102
102
  # @!attribute whitelisted_destinations
103
103
  # Enabled country destinations to send verification codes. The elements in the
104
104
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
105
- # destinations will be allowed.
105
+ # destinations will be allowed. **Conditionally required:** this field must be
106
+ # provided when your organization is configured to require explicit whitelisted
107
+ # destinations; otherwise it is optional.
106
108
  #
107
109
  # @return [Array<String>, nil]
108
110
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -142,7 +144,9 @@ module Telnyx
142
144
  # @!attribute whitelisted_destinations
143
145
  # Enabled country destinations to send verification codes. The elements in the
144
146
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
145
- # destinations will be allowed.
147
+ # destinations will be allowed. **Conditionally required:** this field must be
148
+ # provided when your organization is configured to require explicit whitelisted
149
+ # destinations; otherwise it is optional.
146
150
  #
147
151
  # @return [Array<String>, nil]
148
152
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -196,7 +200,9 @@ module Telnyx
196
200
  # @!attribute whitelisted_destinations
197
201
  # Enabled country destinations to send verification codes. The elements in the
198
202
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
199
- # destinations will be allowed.
203
+ # destinations will be allowed. **Conditionally required:** this field must be
204
+ # provided when your organization is configured to require explicit whitelisted
205
+ # destinations; otherwise it is optional.
200
206
  #
201
207
  # @return [Array<String>, nil]
202
208
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -257,7 +263,9 @@ module Telnyx
257
263
  # @!attribute whitelisted_destinations
258
264
  # Enabled country destinations to send verification codes. The elements in the
259
265
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
260
- # destinations will be allowed.
266
+ # destinations will be allowed. **Conditionally required:** this field must be
267
+ # provided when your organization is configured to require explicit whitelisted
268
+ # destinations; otherwise it is optional.
261
269
  #
262
270
  # @return [Array<String>, nil]
263
271
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -299,7 +307,9 @@ module Telnyx
299
307
  # @!attribute whitelisted_destinations
300
308
  # Enabled country destinations to send verification codes. The elements in the
301
309
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
302
- # destinations will be allowed.
310
+ # destinations will be allowed. **Conditionally required:** this field must be
311
+ # provided when your organization is configured to require explicit whitelisted
312
+ # destinations; otherwise it is optional.
303
313
  #
304
314
  # @return [Array<String>, nil]
305
315
  optional :whitelisted_destinations, Telnyx::Internal::Type::ArrayOf[String]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.75.0"
4
+ VERSION = "5.76.0"
5
5
  end
@@ -254,7 +254,7 @@ module Telnyx
254
254
  :"current_billing_period_consumed_data.amount",
255
255
  Telnyx::SimCardListParams::Sort::TaggedSymbol
256
256
  )
257
- MINUS_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT =
257
+ DESC_CURRENT_BILLING_PERIOD_CONSUMED_DATA_AMOUNT =
258
258
  T.let(
259
259
  :"-current_billing_period_consumed_data.amount",
260
260
  Telnyx::SimCardListParams::Sort::TaggedSymbol
@@ -165,7 +165,7 @@ module Telnyx
165
165
  :service,
166
166
  Telnyx::TrafficPolicyProfileListParams::Sort::TaggedSymbol
167
167
  )
168
- MINUS_SERVICE =
168
+ DESC_SERVICE =
169
169
  T.let(
170
170
  :"-service",
171
171
  Telnyx::TrafficPolicyProfileListParams::Sort::TaggedSymbol
@@ -175,7 +175,7 @@ module Telnyx
175
175
  :type,
176
176
  Telnyx::TrafficPolicyProfileListParams::Sort::TaggedSymbol
177
177
  )
178
- MINUS_TYPE =
178
+ DESC_TYPE =
179
179
  T.let(
180
180
  :"-type",
181
181
  Telnyx::TrafficPolicyProfileListParams::Sort::TaggedSymbol
@@ -177,7 +177,9 @@ module Telnyx
177
177
 
178
178
  # Enabled country destinations to send verification codes. The elements in the
179
179
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
180
- # destinations will be allowed.
180
+ # destinations will be allowed. **Conditionally required:** this field must be
181
+ # provided when your organization is configured to require explicit whitelisted
182
+ # destinations; otherwise it is optional.
181
183
  sig { returns(T.nilable(T::Array[String])) }
182
184
  attr_reader :whitelisted_destinations
183
185
 
@@ -208,7 +210,9 @@ module Telnyx
208
210
  messaging_template_id: nil,
209
211
  # Enabled country destinations to send verification codes. The elements in the
210
212
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
211
- # destinations will be allowed.
213
+ # destinations will be allowed. **Conditionally required:** this field must be
214
+ # provided when your organization is configured to require explicit whitelisted
215
+ # destinations; otherwise it is optional.
212
216
  whitelisted_destinations: nil
213
217
  )
214
218
  end
@@ -326,7 +330,9 @@ module Telnyx
326
330
 
327
331
  # Enabled country destinations to send verification codes. The elements in the
328
332
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
329
- # destinations will be allowed.
333
+ # destinations will be allowed. **Conditionally required:** this field must be
334
+ # provided when your organization is configured to require explicit whitelisted
335
+ # destinations; otherwise it is optional.
330
336
  sig { returns(T.nilable(T::Array[String])) }
331
337
  attr_reader :whitelisted_destinations
332
338
 
@@ -360,7 +366,9 @@ module Telnyx
360
366
  sms_fallback: nil,
361
367
  # Enabled country destinations to send verification codes. The elements in the
362
368
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
363
- # destinations will be allowed.
369
+ # destinations will be allowed. **Conditionally required:** this field must be
370
+ # provided when your organization is configured to require explicit whitelisted
371
+ # destinations; otherwise it is optional.
364
372
  whitelisted_destinations: nil
365
373
  )
366
374
  end
@@ -449,7 +457,9 @@ module Telnyx
449
457
 
450
458
  # Enabled country destinations to send verification codes. The elements in the
451
459
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
452
- # destinations will be allowed.
460
+ # destinations will be allowed. **Conditionally required:** this field must be
461
+ # provided when your organization is configured to require explicit whitelisted
462
+ # destinations; otherwise it is optional.
453
463
  sig { returns(T.nilable(T::Array[String])) }
454
464
  attr_reader :whitelisted_destinations
455
465
 
@@ -484,7 +494,9 @@ module Telnyx
484
494
  messaging_template_id: nil,
485
495
  # Enabled country destinations to send verification codes. The elements in the
486
496
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
487
- # destinations will be allowed.
497
+ # destinations will be allowed. **Conditionally required:** this field must be
498
+ # provided when your organization is configured to require explicit whitelisted
499
+ # destinations; otherwise it is optional.
488
500
  whitelisted_destinations: nil
489
501
  )
490
502
  end
@@ -160,7 +160,9 @@ module Telnyx
160
160
 
161
161
  # Enabled country destinations to send verification codes. The elements in the
162
162
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
163
- # destinations will be allowed.
163
+ # destinations will be allowed. **Conditionally required:** this field must be
164
+ # provided when your organization is configured to require explicit whitelisted
165
+ # destinations; otherwise it is optional.
164
166
  sig { returns(T.nilable(T::Array[String])) }
165
167
  attr_reader :whitelisted_destinations
166
168
 
@@ -191,7 +193,9 @@ module Telnyx
191
193
  messaging_template_id: nil,
192
194
  # Enabled country destinations to send verification codes. The elements in the
193
195
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
194
- # destinations will be allowed.
196
+ # destinations will be allowed. **Conditionally required:** this field must be
197
+ # provided when your organization is configured to require explicit whitelisted
198
+ # destinations; otherwise it is optional.
195
199
  whitelisted_destinations: nil
196
200
  )
197
201
  end
@@ -240,7 +244,9 @@ module Telnyx
240
244
 
241
245
  # Enabled country destinations to send verification codes. The elements in the
242
246
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
243
- # destinations will be allowed.
247
+ # destinations will be allowed. **Conditionally required:** this field must be
248
+ # provided when your organization is configured to require explicit whitelisted
249
+ # destinations; otherwise it is optional.
244
250
  sig { returns(T.nilable(T::Array[String])) }
245
251
  attr_reader :whitelisted_destinations
246
252
 
@@ -265,7 +271,9 @@ module Telnyx
265
271
  default_verification_timeout_secs: nil,
266
272
  # Enabled country destinations to send verification codes. The elements in the
267
273
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
268
- # destinations will be allowed.
274
+ # destinations will be allowed. **Conditionally required:** this field must be
275
+ # provided when your organization is configured to require explicit whitelisted
276
+ # destinations; otherwise it is optional.
269
277
  whitelisted_destinations: nil
270
278
  )
271
279
  end
@@ -333,7 +341,9 @@ module Telnyx
333
341
 
334
342
  # Enabled country destinations to send verification codes. The elements in the
335
343
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
336
- # destinations will be allowed.
344
+ # destinations will be allowed. **Conditionally required:** this field must be
345
+ # provided when your organization is configured to require explicit whitelisted
346
+ # destinations; otherwise it is optional.
337
347
  sig { returns(T.nilable(T::Array[String])) }
338
348
  attr_reader :whitelisted_destinations
339
349
 
@@ -367,7 +377,9 @@ module Telnyx
367
377
  sms_fallback: nil,
368
378
  # Enabled country destinations to send verification codes. The elements in the
369
379
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
370
- # destinations will be allowed.
380
+ # destinations will be allowed. **Conditionally required:** this field must be
381
+ # provided when your organization is configured to require explicit whitelisted
382
+ # destinations; otherwise it is optional.
371
383
  whitelisted_destinations: nil
372
384
  )
373
385
  end
@@ -436,7 +448,9 @@ module Telnyx
436
448
 
437
449
  # Enabled country destinations to send verification codes. The elements in the
438
450
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
439
- # destinations will be allowed.
451
+ # destinations will be allowed. **Conditionally required:** this field must be
452
+ # provided when your organization is configured to require explicit whitelisted
453
+ # destinations; otherwise it is optional.
440
454
  sig { returns(T.nilable(T::Array[String])) }
441
455
  attr_reader :whitelisted_destinations
442
456
 
@@ -471,7 +485,9 @@ module Telnyx
471
485
  messaging_template_id: nil,
472
486
  # Enabled country destinations to send verification codes. The elements in the
473
487
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
474
- # destinations will be allowed.
488
+ # destinations will be allowed. **Conditionally required:** this field must be
489
+ # provided when your organization is configured to require explicit whitelisted
490
+ # destinations; otherwise it is optional.
475
491
  whitelisted_destinations: nil
476
492
  )
477
493
  end
@@ -521,7 +537,9 @@ module Telnyx
521
537
 
522
538
  # Enabled country destinations to send verification codes. The elements in the
523
539
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
524
- # destinations will be allowed.
540
+ # destinations will be allowed. **Conditionally required:** this field must be
541
+ # provided when your organization is configured to require explicit whitelisted
542
+ # destinations; otherwise it is optional.
525
543
  sig { returns(T.nilable(T::Array[String])) }
526
544
  attr_reader :whitelisted_destinations
527
545
 
@@ -546,7 +564,9 @@ module Telnyx
546
564
  default_verification_timeout_secs: nil,
547
565
  # Enabled country destinations to send verification codes. The elements in the
548
566
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
549
- # destinations will be allowed.
567
+ # destinations will be allowed. **Conditionally required:** this field must be
568
+ # provided when your organization is configured to require explicit whitelisted
569
+ # destinations; otherwise it is optional.
550
570
  whitelisted_destinations: nil
551
571
  )
552
572
  end
@@ -169,7 +169,9 @@ module Telnyx
169
169
 
170
170
  # Enabled country destinations to send verification codes. The elements in the
171
171
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
172
- # destinations will be allowed.
172
+ # destinations will be allowed. **Conditionally required:** this field must be
173
+ # provided when your organization is configured to require explicit whitelisted
174
+ # destinations; otherwise it is optional.
173
175
  sig { returns(T.nilable(T::Array[String])) }
174
176
  attr_reader :whitelisted_destinations
175
177
 
@@ -200,7 +202,9 @@ module Telnyx
200
202
  messaging_template_id: nil,
201
203
  # Enabled country destinations to send verification codes. The elements in the
202
204
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
203
- # destinations will be allowed.
205
+ # destinations will be allowed. **Conditionally required:** this field must be
206
+ # provided when your organization is configured to require explicit whitelisted
207
+ # destinations; otherwise it is optional.
204
208
  whitelisted_destinations: nil
205
209
  )
206
210
  end
@@ -249,7 +253,9 @@ module Telnyx
249
253
 
250
254
  # Enabled country destinations to send verification codes. The elements in the
251
255
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
252
- # destinations will be allowed.
256
+ # destinations will be allowed. **Conditionally required:** this field must be
257
+ # provided when your organization is configured to require explicit whitelisted
258
+ # destinations; otherwise it is optional.
253
259
  sig { returns(T.nilable(T::Array[String])) }
254
260
  attr_reader :whitelisted_destinations
255
261
 
@@ -274,7 +280,9 @@ module Telnyx
274
280
  default_verification_timeout_secs: nil,
275
281
  # Enabled country destinations to send verification codes. The elements in the
276
282
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
277
- # destinations will be allowed.
283
+ # destinations will be allowed. **Conditionally required:** this field must be
284
+ # provided when your organization is configured to require explicit whitelisted
285
+ # destinations; otherwise it is optional.
278
286
  whitelisted_destinations: nil
279
287
  )
280
288
  end
@@ -342,7 +350,9 @@ module Telnyx
342
350
 
343
351
  # Enabled country destinations to send verification codes. The elements in the
344
352
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
345
- # destinations will be allowed.
353
+ # destinations will be allowed. **Conditionally required:** this field must be
354
+ # provided when your organization is configured to require explicit whitelisted
355
+ # destinations; otherwise it is optional.
346
356
  sig { returns(T.nilable(T::Array[String])) }
347
357
  attr_reader :whitelisted_destinations
348
358
 
@@ -376,7 +386,9 @@ module Telnyx
376
386
  sms_fallback: nil,
377
387
  # Enabled country destinations to send verification codes. The elements in the
378
388
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
379
- # destinations will be allowed.
389
+ # destinations will be allowed. **Conditionally required:** this field must be
390
+ # provided when your organization is configured to require explicit whitelisted
391
+ # destinations; otherwise it is optional.
380
392
  whitelisted_destinations: nil
381
393
  )
382
394
  end
@@ -445,7 +457,9 @@ module Telnyx
445
457
 
446
458
  # Enabled country destinations to send verification codes. The elements in the
447
459
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
448
- # destinations will be allowed.
460
+ # destinations will be allowed. **Conditionally required:** this field must be
461
+ # provided when your organization is configured to require explicit whitelisted
462
+ # destinations; otherwise it is optional.
449
463
  sig { returns(T.nilable(T::Array[String])) }
450
464
  attr_reader :whitelisted_destinations
451
465
 
@@ -480,7 +494,9 @@ module Telnyx
480
494
  messaging_template_id: nil,
481
495
  # Enabled country destinations to send verification codes. The elements in the
482
496
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
483
- # destinations will be allowed.
497
+ # destinations will be allowed. **Conditionally required:** this field must be
498
+ # provided when your organization is configured to require explicit whitelisted
499
+ # destinations; otherwise it is optional.
484
500
  whitelisted_destinations: nil
485
501
  )
486
502
  end
@@ -530,7 +546,9 @@ module Telnyx
530
546
 
531
547
  # Enabled country destinations to send verification codes. The elements in the
532
548
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
533
- # destinations will be allowed.
549
+ # destinations will be allowed. **Conditionally required:** this field must be
550
+ # provided when your organization is configured to require explicit whitelisted
551
+ # destinations; otherwise it is optional.
534
552
  sig { returns(T.nilable(T::Array[String])) }
535
553
  attr_reader :whitelisted_destinations
536
554
 
@@ -555,7 +573,9 @@ module Telnyx
555
573
  default_verification_timeout_secs: nil,
556
574
  # Enabled country destinations to send verification codes. The elements in the
557
575
  # list must be valid ISO 3166-1 alpha-2 country codes. If set to `["*"]`, all
558
- # destinations will be allowed.
576
+ # destinations will be allowed. **Conditionally required:** this field must be
577
+ # provided when your organization is configured to require explicit whitelisted
578
+ # destinations; otherwise it is optional.
559
579
  whitelisted_destinations: nil
560
580
  )
561
581
  end
@@ -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
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.75.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-14 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