telnyx 5.54.0 → 5.55.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: 6fbe68b26624761d3c1b50bd6ed162c43de1c432bbfda7594f768665c0a6e1b7
4
- data.tar.gz: 44ca7372e568826461d1c3c9afdb38e0c83b6ecd8cc119544ef5d08f7e593f1e
3
+ metadata.gz: 356e6c41b63f97ca790fb4ce787423939e5baa395db3d2f1ac1c578f5d0c62d8
4
+ data.tar.gz: c89902273a5a02f7f098e51b59e0a9eac53b1bfe61a174bad47914aafab46ecd
5
5
  SHA512:
6
- metadata.gz: 9f04022c0177c42ef3399d58997073529bbaf3cf3fb9f91d58ed6ad5a0477b2926e7a53be6fae523dbd44bcc51ccf68d379fd83c3373ecc97e94b2684bbcf72d
7
- data.tar.gz: f54df6b47a4a9c5047f5fae9fe838bee1112ef3582b6ce826629da5b113277eaf8785077366e7cf79c2190ca96ad1f979c07f6a064244fdcdc06c6b6f4bb6229
6
+ metadata.gz: 396aad1572805770b72fd861aa39ae2b52d639bb912cebe46a966e0232e07f30cf3f3a4ce7b6f58da4c5cb523652276ae064968356224a9074513705ca8e2a1c
7
+ data.tar.gz: 81c386d95f49aa38ffdbbcd3b6a5dd45ea2f4839822cf9f1c5014306b3b96c472ee4b5172fa97512797759dd4024a42489aef3e52049c26482a754e56be6cd04
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.55.0 (2026-03-16)
4
+
5
+ Full Changelog: [v5.54.0...v5.55.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.54.0...v5.55.0)
6
+
7
+ ### Features
8
+
9
+ * CW-2881 update `filter[action_type]` enum ([fd2d525](https://github.com/team-telnyx/telnyx-ruby/commit/fd2d52506f8fb5b45a5cc73bf918500528b0ce0b))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **internal:** tweak CI branches ([e611101](https://github.com/team-telnyx/telnyx-ruby/commit/e611101cffd78d386e297c0cfe40e4b38743f382))
15
+
3
16
  ## 5.54.0 (2026-03-16)
4
17
 
5
18
  Full Changelog: [v5.53.0...v5.54.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.53.0...v5.54.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.54.0"
27
+ gem "telnyx", "~> 5.55.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -38,6 +38,8 @@ module Telnyx
38
38
  module FilterActionType
39
39
  extend Telnyx::Internal::Type::Enum
40
40
 
41
+ BULK_DISABLE_VOICE = :bulk_disable_voice
42
+ BULK_ENABLE_VOICE = :bulk_enable_voice
41
43
  BULK_SET_PUBLIC_IPS = :bulk_set_public_ips
42
44
 
43
45
  # @!method self.values
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.54.0"
4
+ VERSION = "5.55.0"
5
5
  end
@@ -87,6 +87,16 @@ module Telnyx
87
87
  end
88
88
  OrSymbol = T.type_alias { T.any(Symbol, String) }
89
89
 
90
+ BULK_DISABLE_VOICE =
91
+ T.let(
92
+ :bulk_disable_voice,
93
+ Telnyx::BulkSimCardActionListParams::FilterActionType::TaggedSymbol
94
+ )
95
+ BULK_ENABLE_VOICE =
96
+ T.let(
97
+ :bulk_enable_voice,
98
+ Telnyx::BulkSimCardActionListParams::FilterActionType::TaggedSymbol
99
+ )
90
100
  BULK_SET_PUBLIC_IPS =
91
101
  T.let(
92
102
  :bulk_set_public_ips,
@@ -40,11 +40,14 @@ module Telnyx
40
40
  request_options: Telnyx::RequestOptions
41
41
  }
42
42
 
43
- type filter_action_type = :bulk_set_public_ips
43
+ type filter_action_type =
44
+ :bulk_disable_voice | :bulk_enable_voice | :bulk_set_public_ips
44
45
 
45
46
  module FilterActionType
46
47
  extend Telnyx::Internal::Type::Enum
47
48
 
49
+ BULK_DISABLE_VOICE: :bulk_disable_voice
50
+ BULK_ENABLE_VOICE: :bulk_enable_voice
48
51
  BULK_SET_PUBLIC_IPS: :bulk_set_public_ips
49
52
 
50
53
  def self?.values: -> ::Array[Telnyx::Models::BulkSimCardActionListParams::filter_action_type]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.54.0
4
+ version: 5.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx