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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e645ba6a9061dc718c1f7a5529148efe72a16ece964549ce097b38054faca4f
|
|
4
|
+
data.tar.gz: 46bd67aac79c0eaac41b03767e81bacd88d79e2221047541bdde20b32cca437b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
#
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -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,
|