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 +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/telnyx/models/bulk_sim_card_action_list_params.rb +2 -0
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/bulk_sim_card_action_list_params.rbi +10 -0
- data/sig/telnyx/models/bulk_sim_card_action_list_params.rbs +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 356e6c41b63f97ca790fb4ce787423939e5baa395db3d2f1ac1c578f5d0c62d8
|
|
4
|
+
data.tar.gz: c89902273a5a02f7f098e51b59e0a9eac53b1bfe61a174bad47914aafab46ecd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/lib/telnyx/version.rb
CHANGED
|
@@ -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 =
|
|
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]
|