telnyx 5.34.0 → 5.35.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: d58ade1177c23387b92b8b1ff66f045462f83014f2a8ac6f03f259f16085018e
4
- data.tar.gz: d61fe368d0d4b329b0804fd29b1bab6136517405cb99b93afb787612086ef104
3
+ metadata.gz: 1e645ba6a9061dc718c1f7a5529148efe72a16ece964549ce097b38054faca4f
4
+ data.tar.gz: 46bd67aac79c0eaac41b03767e81bacd88d79e2221047541bdde20b32cca437b
5
5
  SHA512:
6
- metadata.gz: b1fd2c132558bba8e5a516a104b818cc5498a98e62d3adf0588b56601e7e255de06afbfaeb92847d87939d701c3b01ba8a5200cf8f32c82c1c8149d7caf61515
7
- data.tar.gz: 66e7e8d02a9abd96e223969154689a644bdc416cd37cd4ccf1d3f22201d09f6042b7c689226dbb28886afe15149d8b20ed08ea4a7a78bebec585886a7897578c
6
+ metadata.gz: a5e0273786072f20e1fa458ba7ffe87b253fa953110136a0ea1fe240431c78c154e0be360fd036130383f523cba473d6365e9bfdd22d0ecebe2eef8efa630c92
7
+ data.tar.gz: 7d5cdb767a4d61702b16b30f1cd97ff69a5a8392dc911a587cdb152a6746340accfe1fbf190b26af1e50a1c8866189cf0bf7d50d0c442c9bfa4956fded392c7a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.35.0 (2026-02-20)
4
+
5
+ Full Changelog: [v5.34.0...v5.35.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.34.0...v5.35.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([ad2fab1](https://github.com/team-telnyx/telnyx-ruby/commit/ad2fab10a925dcdc3b9d2ff1eeca3bf49ea2e5a8))
10
+
3
11
  ## 5.34.0 (2026-02-20)
4
12
 
5
13
  Full Changelog: [v5.33.0...v5.34.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.33.0...v5.34.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.34.0"
27
+ gem "telnyx", "~> 5.35.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -101,8 +101,8 @@ module Telnyx
101
101
  # @!attribute idp_attribute_names
102
102
  # Mapping of SAML attribute names used by the identity provider (IdP).
103
103
  #
104
- # @return [Object, nil]
105
- optional :idp_attribute_names, Telnyx::Internal::Type::Unknown
104
+ # @return [Hash{Symbol=>Object}, nil]
105
+ optional :idp_attribute_names, Telnyx::Internal::Type::HashOf[Telnyx::Internal::Type::Unknown]
106
106
 
107
107
  # @!attribute idp_cert_fingerprint
108
108
  # The certificate fingerprint for the identity provider (IdP)
@@ -177,7 +177,7 @@ module Telnyx
177
177
  #
178
178
  # @param assertion_consumer_service_url [String] The Assertion Consumer Service URL for the service provider (Telnyx).
179
179
  #
180
- # @param idp_attribute_names [Object] Mapping of SAML attribute names used by the identity provider (IdP).
180
+ # @param idp_attribute_names [Hash{Symbol=>Object}] Mapping of SAML attribute names used by the identity provider (IdP).
181
181
  #
182
182
  # @param idp_cert_fingerprint [String] The certificate fingerprint for the identity provider (IdP)
183
183
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.34.0"
4
+ VERSION = "5.35.0"
5
5
  end
@@ -158,10 +158,10 @@ module Telnyx
158
158
  attr_writer :assertion_consumer_service_url
159
159
 
160
160
  # Mapping of SAML attribute names used by the identity provider (IdP).
161
- sig { returns(T.nilable(T.anything)) }
161
+ sig { returns(T.nilable(T::Hash[Symbol, T.anything])) }
162
162
  attr_reader :idp_attribute_names
163
163
 
164
- sig { params(idp_attribute_names: T.anything).void }
164
+ sig { params(idp_attribute_names: T::Hash[Symbol, T.anything]).void }
165
165
  attr_writer :idp_attribute_names
166
166
 
167
167
  # The certificate fingerprint for the identity provider (IdP)
@@ -253,7 +253,7 @@ module Telnyx
253
253
  sig do
254
254
  params(
255
255
  assertion_consumer_service_url: String,
256
- idp_attribute_names: T.anything,
256
+ idp_attribute_names: T::Hash[Symbol, T.anything],
257
257
  idp_cert_fingerprint: String,
258
258
  idp_cert_fingerprint_algorithm:
259
259
  Telnyx::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm::OrSymbol,
@@ -303,7 +303,7 @@ module Telnyx
303
303
  override.returns(
304
304
  {
305
305
  assertion_consumer_service_url: String,
306
- idp_attribute_names: T.anything,
306
+ idp_attribute_names: T::Hash[Symbol, T.anything],
307
307
  idp_cert_fingerprint: String,
308
308
  idp_cert_fingerprint_algorithm:
309
309
  Telnyx::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm::TaggedSymbol,
@@ -86,7 +86,7 @@ module Telnyx
86
86
  type settings =
87
87
  {
88
88
  assertion_consumer_service_url: String,
89
- idp_attribute_names: top,
89
+ idp_attribute_names: ::Hash[Symbol, top],
90
90
  idp_cert_fingerprint: String,
91
91
  idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
92
92
  idp_certificate: String,
@@ -104,9 +104,9 @@ module Telnyx
104
104
 
105
105
  def assertion_consumer_service_url=: (String) -> String
106
106
 
107
- attr_reader idp_attribute_names: top?
107
+ attr_reader idp_attribute_names: ::Hash[Symbol, top]?
108
108
 
109
- def idp_attribute_names=: (top) -> top
109
+ def idp_attribute_names=: (::Hash[Symbol, top]) -> ::Hash[Symbol, top]
110
110
 
111
111
  attr_reader idp_cert_fingerprint: String?
112
112
 
@@ -152,7 +152,7 @@ module Telnyx
152
152
 
153
153
  def initialize: (
154
154
  ?assertion_consumer_service_url: String,
155
- ?idp_attribute_names: top,
155
+ ?idp_attribute_names: ::Hash[Symbol, top],
156
156
  ?idp_cert_fingerprint: String,
157
157
  ?idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
158
158
  ?idp_certificate: String,
@@ -167,7 +167,7 @@ module Telnyx
167
167
 
168
168
  def to_hash: -> {
169
169
  assertion_consumer_service_url: String,
170
- idp_attribute_names: top,
170
+ idp_attribute_names: ::Hash[Symbol, top],
171
171
  idp_cert_fingerprint: String,
172
172
  idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
173
173
  idp_certificate: String,
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.34.0
4
+ version: 5.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx