telnyx 5.32.0 → 5.33.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: 3ae05814abf430e64f02a7cbadff7ba780597c729216171e62b24fae4e3bfe67
4
- data.tar.gz: a89d9a80e6f5fdb7e855c1f167974a49201337020f3a6dab38a2619605767900
3
+ metadata.gz: 684266a8c2402f14d3c3fbb913c7729afa79cf50e72aa4afe5f29b35b977ff6e
4
+ data.tar.gz: b74606c9c2e1be10da6766a2f0fb5985efa6b20d8d64e84dbfb3a04babf3eadc
5
5
  SHA512:
6
- metadata.gz: 385536480c8ef2df4aee5d23645be823eb066e05c91b7aa1c60508b8f84bb05f16e92f5b76c1f51629a748bdf53e3ad72dfd81468a4a61f177a22322afa9119a
7
- data.tar.gz: 854359436063daeb51d1dd539099f1d1fbed7ad183e5ed32c57ed3ae91b6bf988b1380d1fd5c214f460fed974c913671b07a41f6a38b0eb20c5fabe852aa1d29
6
+ metadata.gz: 8f203e8893d4b6958f6f8f38769434ddf6663fa358c5c5eb3c1b5e2cfcac271c4655dae36610cee8da97fad3ca6924a1c423869811f819549a919505ab68f0ad
7
+ data.tar.gz: a19e22a08448f02928664a8f7b00f9af01603264df9795a93fed9587d3ca5979d688e5f7ffb38b253a54b42a47913e4f172ad6a77423a54b6c20148eceaaf1e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.33.0 (2026-02-20)
4
+
5
+ Full Changelog: [v5.32.0...v5.33.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.32.0...v5.33.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([673a6f3](https://github.com/team-telnyx/telnyx-ruby/commit/673a6f37d7105932492e0d44abd7fda51f0abe9c))
10
+ * **api:** manual updates ([be9fcae](https://github.com/team-telnyx/telnyx-ruby/commit/be9fcae3d1d762f8c7ea5def6081551dfdae38c1))
11
+ * **api:** manual updates ([e6866c1](https://github.com/team-telnyx/telnyx-ruby/commit/e6866c10b985345f6b3ac5988957d130bede563e))
12
+
13
+
14
+ ### Documentation
15
+
16
+ * add service_provider_login_url to authentication provider settings ([a786340](https://github.com/team-telnyx/telnyx-ruby/commit/a7863402c278e0a5cb133fc1d7081391922b56b4))
17
+
3
18
  ## 5.32.0 (2026-02-19)
4
19
 
5
20
  Full Changelog: [v5.31.0...v5.32.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.31.0...v5.32.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.32.0"
27
+ gem "telnyx", "~> 5.33.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -70,9 +70,9 @@ module Telnyx
70
70
 
71
71
  variant Telnyx::Internal::Type::Boolean
72
72
 
73
- variant -> { Telnyx::Models::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3Array }
73
+ variant -> { Telnyx::Models::AI::ConversationAddMessageParams::Metadata::UnionMember3Array }
74
74
 
75
- module UnionArrayVariant3
75
+ module UnionMember3
76
76
  extend Telnyx::Internal::Type::Union
77
77
 
78
78
  variant String
@@ -89,9 +89,9 @@ module Telnyx
89
89
  # @return [Array(String, Integer, Boolean, Array<String, Integer, Boolean>)]
90
90
 
91
91
  # @type [Telnyx::Internal::Type::Converter]
92
- UnionArrayVariant3Array =
92
+ UnionMember3Array =
93
93
  Telnyx::Internal::Type::ArrayOf[union: -> {
94
- Telnyx::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3
94
+ Telnyx::AI::ConversationAddMessageParams::Metadata::UnionMember3
95
95
  }]
96
96
  end
97
97
 
@@ -10,6 +10,13 @@ module Telnyx
10
10
  # @return [String, nil]
11
11
  optional :id, String
12
12
 
13
+ # @!attribute activated_at
14
+ # ISO 8601 formatted date indicating when the authentication provider was
15
+ # activated.
16
+ #
17
+ # @return [Time, nil]
18
+ optional :activated_at, Time
19
+
13
20
  # @!attribute active
14
21
  # The active status of the authentication provider
15
22
  #
@@ -59,12 +66,14 @@ module Telnyx
59
66
  # @return [Time, nil]
60
67
  optional :updated_at, Time
61
68
 
62
- # @!method initialize(id: nil, active: nil, created_at: nil, name: nil, organization_id: nil, record_type: nil, settings: nil, short_name: nil, updated_at: nil)
69
+ # @!method initialize(id: nil, activated_at: nil, active: nil, created_at: nil, name: nil, organization_id: nil, record_type: nil, settings: nil, short_name: nil, updated_at: nil)
63
70
  # Some parameter documentations has been truncated, see
64
71
  # {Telnyx::Models::AuthenticationProvider} for more details.
65
72
  #
66
73
  # @param id [String] Uniquely identifies the authentication provider.
67
74
  #
75
+ # @param activated_at [Time] ISO 8601 formatted date indicating when the authentication provider was activate
76
+ #
68
77
  # @param active [Boolean] The active status of the authentication provider
69
78
  #
70
79
  # @param created_at [Time] ISO 8601 formatted date indicating when the resource was created.
@@ -89,6 +98,12 @@ module Telnyx
89
98
  # @return [String, nil]
90
99
  optional :assertion_consumer_service_url, String
91
100
 
101
+ # @!attribute idp_attribute_names
102
+ # Mapping of SAML attribute names used by the identity provider (IdP).
103
+ #
104
+ # @return [Object, nil]
105
+ optional :idp_attribute_names, Telnyx::Internal::Type::Unknown
106
+
92
107
  # @!attribute idp_cert_fingerprint
93
108
  # The certificate fingerprint for the identity provider (IdP)
94
109
  #
@@ -103,12 +118,24 @@ module Telnyx
103
118
  optional :idp_cert_fingerprint_algorithm,
104
119
  enum: -> { Telnyx::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm }
105
120
 
121
+ # @!attribute idp_certificate
122
+ # The full X.509 certificate for the identity provider (IdP).
123
+ #
124
+ # @return [String, nil]
125
+ optional :idp_certificate, String
126
+
106
127
  # @!attribute idp_entity_id
107
128
  # The Entity ID for the identity provider (IdP).
108
129
  #
109
130
  # @return [String, nil]
110
131
  optional :idp_entity_id, String
111
132
 
133
+ # @!attribute idp_slo_target_url
134
+ # The Single Logout (SLO) target URL for the identity provider (IdP).
135
+ #
136
+ # @return [String, nil]
137
+ optional :idp_slo_target_url, String
138
+
112
139
  # @!attribute idp_sso_target_url
113
140
  # The SSO target url for the identity provider (IdP).
114
141
  #
@@ -123,13 +150,26 @@ module Telnyx
123
150
  # @return [String, nil]
124
151
  optional :name_identifier_format, String
125
152
 
153
+ # @!attribute provision_groups
154
+ # Whether group provisioning is enabled for this authentication provider.
155
+ #
156
+ # @return [Boolean, nil]
157
+ optional :provision_groups, Telnyx::Internal::Type::Boolean
158
+
126
159
  # @!attribute service_provider_entity_id
127
160
  # The Entity ID for the service provider (Telnyx).
128
161
  #
129
162
  # @return [String, nil]
130
163
  optional :service_provider_entity_id, String
131
164
 
132
- # @!method initialize(assertion_consumer_service_url: nil, idp_cert_fingerprint: nil, idp_cert_fingerprint_algorithm: nil, idp_entity_id: nil, idp_sso_target_url: nil, name_identifier_format: nil, service_provider_entity_id: nil)
165
+ # @!attribute service_provider_login_url
166
+ # The login URL for the service provider (Telnyx). Users navigate to this URL to
167
+ # initiate SSO login.
168
+ #
169
+ # @return [String, nil]
170
+ optional :service_provider_login_url, String
171
+
172
+ # @!method initialize(assertion_consumer_service_url: nil, idp_attribute_names: nil, idp_cert_fingerprint: nil, idp_cert_fingerprint_algorithm: nil, idp_certificate: nil, idp_entity_id: nil, idp_slo_target_url: nil, idp_sso_target_url: nil, name_identifier_format: nil, provision_groups: nil, service_provider_entity_id: nil, service_provider_login_url: nil)
133
173
  # Some parameter documentations has been truncated, see
134
174
  # {Telnyx::Models::AuthenticationProvider::Settings} for more details.
135
175
  #
@@ -137,17 +177,27 @@ module Telnyx
137
177
  #
138
178
  # @param assertion_consumer_service_url [String] The Assertion Consumer Service URL for the service provider (Telnyx).
139
179
  #
180
+ # @param idp_attribute_names [Object] Mapping of SAML attribute names used by the identity provider (IdP).
181
+ #
140
182
  # @param idp_cert_fingerprint [String] The certificate fingerprint for the identity provider (IdP)
141
183
  #
142
184
  # @param idp_cert_fingerprint_algorithm [Symbol, Telnyx::Models::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm] The algorithm used to generate the identity provider's (IdP) certificate fingerp
143
185
  #
186
+ # @param idp_certificate [String] The full X.509 certificate for the identity provider (IdP).
187
+ #
144
188
  # @param idp_entity_id [String] The Entity ID for the identity provider (IdP).
145
189
  #
190
+ # @param idp_slo_target_url [String] The Single Logout (SLO) target URL for the identity provider (IdP).
191
+ #
146
192
  # @param idp_sso_target_url [String] The SSO target url for the identity provider (IdP).
147
193
  #
148
194
  # @param name_identifier_format [String] The name identifier format associated with the authentication provider. This mus
149
195
  #
196
+ # @param provision_groups [Boolean] Whether group provisioning is enabled for this authentication provider.
197
+ #
150
198
  # @param service_provider_entity_id [String] The Entity ID for the service provider (Telnyx).
199
+ #
200
+ # @param service_provider_login_url [String] The login URL for the service provider (Telnyx). Users navigate to this URL to i
151
201
 
152
202
  # The algorithm used to generate the identity provider's (IdP) certificate
153
203
  # fingerprint
@@ -77,7 +77,7 @@ module Telnyx
77
77
  # Filter porting orders by status(es). Originally: filter[status],
78
78
  # filter[status][in][]
79
79
  #
80
- # @return [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>, nil]
80
+ # @return [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>, nil]
81
81
  optional :status, union: -> { Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status }
82
82
 
83
83
  # @!attribute support_key
@@ -104,7 +104,7 @@ module Telnyx
104
104
  #
105
105
  # @param porting_order_id [Array<String>] Filter results by a list of porting order ids
106
106
  #
107
- # @param status [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>] Filter porting orders by status(es). Originally: filter[status], filter[status]
107
+ # @param status [Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>] Filter porting orders by status(es). Originally: filter[status], filter[status]
108
108
  #
109
109
  # @param support_key [String, Array<String>] Filter results by support key(s). Originally: filter[support_key][eq], filter[su
110
110
 
@@ -157,7 +157,7 @@ module Telnyx
157
157
  variant enum: -> { Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus }
158
158
 
159
159
  # Filter by multiple statuses (in operation)
160
- variant -> { Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1Array }
160
+ variant -> { Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1Array }
161
161
 
162
162
  # Filter by single status
163
163
  module PortingOrderSingleStatus
@@ -176,7 +176,7 @@ module Telnyx
176
176
  # @return [Array<Symbol>]
177
177
  end
178
178
 
179
- module UnionArrayVariant1
179
+ module UnionMember1
180
180
  extend Telnyx::Internal::Type::Enum
181
181
 
182
182
  DRAFT = :draft
@@ -193,12 +193,12 @@ module Telnyx
193
193
  end
194
194
 
195
195
  # @!method self.variants
196
- # @return [Array(Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1>)]
196
+ # @return [Array(Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus, Array<Symbol, Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1>)]
197
197
 
198
198
  # @type [Telnyx::Internal::Type::Converter]
199
- UnionArrayVariant1Array =
199
+ UnionMember1Array =
200
200
  Telnyx::Internal::Type::ArrayOf[enum: -> {
201
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1
201
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
202
202
  }]
203
203
  end
204
204
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.32.0"
4
+ VERSION = "5.33.0"
5
5
  end
@@ -152,12 +152,12 @@ module Telnyx
152
152
  Integer,
153
153
  T::Boolean,
154
154
  T::Array[
155
- Telnyx::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3::Variants
155
+ Telnyx::AI::ConversationAddMessageParams::Metadata::UnionMember3::Variants
156
156
  ]
157
157
  )
158
158
  end
159
159
 
160
- module UnionArrayVariant3
160
+ module UnionMember3
161
161
  extend Telnyx::Internal::Type::Union
162
162
 
163
163
  Variants = T.type_alias { T.any(String, Integer, T::Boolean) }
@@ -165,7 +165,7 @@ module Telnyx
165
165
  sig do
166
166
  override.returns(
167
167
  T::Array[
168
- Telnyx::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3::Variants
168
+ Telnyx::AI::ConversationAddMessageParams::Metadata::UnionMember3::Variants
169
169
  ]
170
170
  )
171
171
  end
@@ -183,11 +183,11 @@ module Telnyx
183
183
  def self.variants
184
184
  end
185
185
 
186
- UnionArrayVariant3Array =
186
+ UnionMember3Array =
187
187
  T.let(
188
188
  Telnyx::Internal::Type::ArrayOf[
189
189
  union:
190
- Telnyx::AI::ConversationAddMessageParams::Metadata::UnionArrayVariant3
190
+ Telnyx::AI::ConversationAddMessageParams::Metadata::UnionMember3
191
191
  ],
192
192
  Telnyx::Internal::Type::Converter
193
193
  )
@@ -15,6 +15,14 @@ module Telnyx
15
15
  sig { params(id: String).void }
16
16
  attr_writer :id
17
17
 
18
+ # ISO 8601 formatted date indicating when the authentication provider was
19
+ # activated.
20
+ sig { returns(T.nilable(Time)) }
21
+ attr_reader :activated_at
22
+
23
+ sig { params(activated_at: Time).void }
24
+ attr_writer :activated_at
25
+
18
26
  # The active status of the authentication provider
19
27
  sig { returns(T.nilable(T::Boolean)) }
20
28
  attr_reader :active
@@ -77,6 +85,7 @@ module Telnyx
77
85
  sig do
78
86
  params(
79
87
  id: String,
88
+ activated_at: Time,
80
89
  active: T::Boolean,
81
90
  created_at: Time,
82
91
  name: String,
@@ -90,6 +99,9 @@ module Telnyx
90
99
  def self.new(
91
100
  # Uniquely identifies the authentication provider.
92
101
  id: nil,
102
+ # ISO 8601 formatted date indicating when the authentication provider was
103
+ # activated.
104
+ activated_at: nil,
93
105
  # The active status of the authentication provider
94
106
  active: nil,
95
107
  # ISO 8601 formatted date indicating when the resource was created.
@@ -114,6 +126,7 @@ module Telnyx
114
126
  override.returns(
115
127
  {
116
128
  id: String,
129
+ activated_at: Time,
117
130
  active: T::Boolean,
118
131
  created_at: Time,
119
132
  name: String,
@@ -144,6 +157,13 @@ module Telnyx
144
157
  sig { params(assertion_consumer_service_url: String).void }
145
158
  attr_writer :assertion_consumer_service_url
146
159
 
160
+ # Mapping of SAML attribute names used by the identity provider (IdP).
161
+ sig { returns(T.nilable(T.anything)) }
162
+ attr_reader :idp_attribute_names
163
+
164
+ sig { params(idp_attribute_names: T.anything).void }
165
+ attr_writer :idp_attribute_names
166
+
147
167
  # The certificate fingerprint for the identity provider (IdP)
148
168
  sig { returns(T.nilable(String)) }
149
169
  attr_reader :idp_cert_fingerprint
@@ -170,6 +190,13 @@ module Telnyx
170
190
  end
171
191
  attr_writer :idp_cert_fingerprint_algorithm
172
192
 
193
+ # The full X.509 certificate for the identity provider (IdP).
194
+ sig { returns(T.nilable(String)) }
195
+ attr_reader :idp_certificate
196
+
197
+ sig { params(idp_certificate: String).void }
198
+ attr_writer :idp_certificate
199
+
173
200
  # The Entity ID for the identity provider (IdP).
174
201
  sig { returns(T.nilable(String)) }
175
202
  attr_reader :idp_entity_id
@@ -177,6 +204,13 @@ module Telnyx
177
204
  sig { params(idp_entity_id: String).void }
178
205
  attr_writer :idp_entity_id
179
206
 
207
+ # The Single Logout (SLO) target URL for the identity provider (IdP).
208
+ sig { returns(T.nilable(String)) }
209
+ attr_reader :idp_slo_target_url
210
+
211
+ sig { params(idp_slo_target_url: String).void }
212
+ attr_writer :idp_slo_target_url
213
+
180
214
  # The SSO target url for the identity provider (IdP).
181
215
  sig { returns(T.nilable(String)) }
182
216
  attr_reader :idp_sso_target_url
@@ -193,6 +227,13 @@ module Telnyx
193
227
  sig { params(name_identifier_format: String).void }
194
228
  attr_writer :name_identifier_format
195
229
 
230
+ # Whether group provisioning is enabled for this authentication provider.
231
+ sig { returns(T.nilable(T::Boolean)) }
232
+ attr_reader :provision_groups
233
+
234
+ sig { params(provision_groups: T::Boolean).void }
235
+ attr_writer :provision_groups
236
+
196
237
  # The Entity ID for the service provider (Telnyx).
197
238
  sig { returns(T.nilable(String)) }
198
239
  attr_reader :service_provider_entity_id
@@ -200,37 +241,61 @@ module Telnyx
200
241
  sig { params(service_provider_entity_id: String).void }
201
242
  attr_writer :service_provider_entity_id
202
243
 
244
+ # The login URL for the service provider (Telnyx). Users navigate to this URL to
245
+ # initiate SSO login.
246
+ sig { returns(T.nilable(String)) }
247
+ attr_reader :service_provider_login_url
248
+
249
+ sig { params(service_provider_login_url: String).void }
250
+ attr_writer :service_provider_login_url
251
+
203
252
  # The settings associated with the authentication provider.
204
253
  sig do
205
254
  params(
206
255
  assertion_consumer_service_url: String,
256
+ idp_attribute_names: T.anything,
207
257
  idp_cert_fingerprint: String,
208
258
  idp_cert_fingerprint_algorithm:
209
259
  Telnyx::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm::OrSymbol,
260
+ idp_certificate: String,
210
261
  idp_entity_id: String,
262
+ idp_slo_target_url: String,
211
263
  idp_sso_target_url: String,
212
264
  name_identifier_format: String,
213
- service_provider_entity_id: String
265
+ provision_groups: T::Boolean,
266
+ service_provider_entity_id: String,
267
+ service_provider_login_url: String
214
268
  ).returns(T.attached_class)
215
269
  end
216
270
  def self.new(
217
271
  # The Assertion Consumer Service URL for the service provider (Telnyx).
218
272
  assertion_consumer_service_url: nil,
273
+ # Mapping of SAML attribute names used by the identity provider (IdP).
274
+ idp_attribute_names: nil,
219
275
  # The certificate fingerprint for the identity provider (IdP)
220
276
  idp_cert_fingerprint: nil,
221
277
  # The algorithm used to generate the identity provider's (IdP) certificate
222
278
  # fingerprint
223
279
  idp_cert_fingerprint_algorithm: nil,
280
+ # The full X.509 certificate for the identity provider (IdP).
281
+ idp_certificate: nil,
224
282
  # The Entity ID for the identity provider (IdP).
225
283
  idp_entity_id: nil,
284
+ # The Single Logout (SLO) target URL for the identity provider (IdP).
285
+ idp_slo_target_url: nil,
226
286
  # The SSO target url for the identity provider (IdP).
227
287
  idp_sso_target_url: nil,
228
288
  # The name identifier format associated with the authentication provider. This
229
289
  # must be the same for both the Identity Provider (IdP) and the service provider
230
290
  # (Telnyx).
231
291
  name_identifier_format: nil,
292
+ # Whether group provisioning is enabled for this authentication provider.
293
+ provision_groups: nil,
232
294
  # The Entity ID for the service provider (Telnyx).
233
- service_provider_entity_id: nil
295
+ service_provider_entity_id: nil,
296
+ # The login URL for the service provider (Telnyx). Users navigate to this URL to
297
+ # initiate SSO login.
298
+ service_provider_login_url: nil
234
299
  )
235
300
  end
236
301
 
@@ -238,13 +303,18 @@ module Telnyx
238
303
  override.returns(
239
304
  {
240
305
  assertion_consumer_service_url: String,
306
+ idp_attribute_names: T.anything,
241
307
  idp_cert_fingerprint: String,
242
308
  idp_cert_fingerprint_algorithm:
243
309
  Telnyx::AuthenticationProvider::Settings::IdpCertFingerprintAlgorithm::TaggedSymbol,
310
+ idp_certificate: String,
244
311
  idp_entity_id: String,
312
+ idp_slo_target_url: String,
245
313
  idp_sso_target_url: String,
246
314
  name_identifier_format: String,
247
- service_provider_entity_id: String
315
+ provision_groups: T::Boolean,
316
+ service_provider_entity_id: String,
317
+ service_provider_login_url: String
248
318
  }
249
319
  )
250
320
  end
@@ -166,7 +166,7 @@ module Telnyx
166
166
  T.any(
167
167
  Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
168
168
  T::Array[
169
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::OrSymbol
169
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
170
170
  ]
171
171
  )
172
172
  )
@@ -180,7 +180,7 @@ module Telnyx
180
180
  T.any(
181
181
  Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
182
182
  T::Array[
183
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::OrSymbol
183
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
184
184
  ]
185
185
  )
186
186
  ).void
@@ -221,7 +221,7 @@ module Telnyx
221
221
  T.any(
222
222
  Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
223
223
  T::Array[
224
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::OrSymbol
224
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
225
225
  ]
226
226
  ),
227
227
  support_key:
@@ -259,7 +259,7 @@ module Telnyx
259
259
  T.any(
260
260
  Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::OrSymbol,
261
261
  T::Array[
262
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::OrSymbol
262
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::OrSymbol
263
263
  ]
264
264
  ),
265
265
  support_key:
@@ -410,7 +410,7 @@ module Telnyx
410
410
  T.any(
411
411
  Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::PortingOrderSingleStatus::TaggedSymbol,
412
412
  T::Array[
413
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
413
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
414
414
  ]
415
415
  )
416
416
  end
@@ -480,14 +480,14 @@ module Telnyx
480
480
  end
481
481
  end
482
482
 
483
- module UnionArrayVariant1
483
+ module UnionMember1
484
484
  extend Telnyx::Internal::Type::Enum
485
485
 
486
486
  TaggedSymbol =
487
487
  T.type_alias do
488
488
  T.all(
489
489
  Symbol,
490
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1
490
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
491
491
  )
492
492
  end
493
493
  OrSymbol = T.type_alias { T.any(Symbol, String) }
@@ -495,48 +495,48 @@ module Telnyx
495
495
  DRAFT =
496
496
  T.let(
497
497
  :draft,
498
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
498
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
499
499
  )
500
500
  IN_PROCESS =
501
501
  T.let(
502
502
  :"in-process",
503
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
503
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
504
504
  )
505
505
  SUBMITTED =
506
506
  T.let(
507
507
  :submitted,
508
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
508
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
509
509
  )
510
510
  EXCEPTION =
511
511
  T.let(
512
512
  :exception,
513
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
513
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
514
514
  )
515
515
  FOC_DATE_CONFIRMED =
516
516
  T.let(
517
517
  :"foc-date-confirmed",
518
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
518
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
519
519
  )
520
520
  CANCEL_PENDING =
521
521
  T.let(
522
522
  :"cancel-pending",
523
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
523
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
524
524
  )
525
525
  PORTED =
526
526
  T.let(
527
527
  :ported,
528
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
528
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
529
529
  )
530
530
  CANCELLED =
531
531
  T.let(
532
532
  :cancelled,
533
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
533
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
534
534
  )
535
535
 
536
536
  sig do
537
537
  override.returns(
538
538
  T::Array[
539
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1::TaggedSymbol
539
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1::TaggedSymbol
540
540
  ]
541
541
  )
542
542
  end
@@ -554,11 +554,11 @@ module Telnyx
554
554
  def self.variants
555
555
  end
556
556
 
557
- UnionArrayVariant1Array =
557
+ UnionMember1Array =
558
558
  T.let(
559
559
  Telnyx::Internal::Type::ArrayOf[
560
560
  enum:
561
- Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionArrayVariant1
561
+ Telnyx::PortingOrders::PhoneNumberBlockListParams::Filter::Status::UnionMember1
562
562
  ],
563
563
  Telnyx::Internal::Type::Converter
564
564
  )
@@ -82,22 +82,22 @@ module Telnyx
82
82
  String
83
83
  | Integer
84
84
  | bool
85
- | ::Array[Telnyx::Models::AI::ConversationAddMessageParams::Metadata::union_array_variant3]
85
+ | ::Array[Telnyx::Models::AI::ConversationAddMessageParams::Metadata::union_member3]
86
86
 
87
87
  module Metadata
88
88
  extend Telnyx::Internal::Type::Union
89
89
 
90
- type union_array_variant3 = String | Integer | bool
90
+ type union_member3 = String | Integer | bool
91
91
 
92
- module UnionArrayVariant3
92
+ module UnionMember3
93
93
  extend Telnyx::Internal::Type::Union
94
94
 
95
- def self?.variants: -> ::Array[Telnyx::Models::AI::ConversationAddMessageParams::Metadata::union_array_variant3]
95
+ def self?.variants: -> ::Array[Telnyx::Models::AI::ConversationAddMessageParams::Metadata::union_member3]
96
96
  end
97
97
 
98
98
  def self?.variants: -> ::Array[Telnyx::Models::AI::ConversationAddMessageParams::metadata]
99
99
 
100
- UnionArrayVariant3Array: Telnyx::Internal::Type::Converter
100
+ UnionMember3Array: Telnyx::Internal::Type::Converter
101
101
  end
102
102
 
103
103
  type tool_choice = String | ::Hash[Symbol, top]
@@ -3,6 +3,7 @@ module Telnyx
3
3
  type authentication_provider =
4
4
  {
5
5
  id: String,
6
+ activated_at: Time,
6
7
  active: bool,
7
8
  created_at: Time,
8
9
  name: String,
@@ -18,6 +19,10 @@ module Telnyx
18
19
 
19
20
  def id=: (String) -> String
20
21
 
22
+ attr_reader activated_at: Time?
23
+
24
+ def activated_at=: (Time) -> Time
25
+
21
26
  attr_reader active: bool?
22
27
 
23
28
  def active=: (bool) -> bool
@@ -54,6 +59,7 @@ module Telnyx
54
59
 
55
60
  def initialize: (
56
61
  ?id: String,
62
+ ?activated_at: Time,
57
63
  ?active: bool,
58
64
  ?created_at: Time,
59
65
  ?name: String,
@@ -66,6 +72,7 @@ module Telnyx
66
72
 
67
73
  def to_hash: -> {
68
74
  id: String,
75
+ activated_at: Time,
69
76
  active: bool,
70
77
  created_at: Time,
71
78
  name: String,
@@ -79,12 +86,17 @@ module Telnyx
79
86
  type settings =
80
87
  {
81
88
  assertion_consumer_service_url: String,
89
+ idp_attribute_names: top,
82
90
  idp_cert_fingerprint: String,
83
91
  idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
92
+ idp_certificate: String,
84
93
  idp_entity_id: String,
94
+ idp_slo_target_url: String,
85
95
  idp_sso_target_url: String,
86
96
  name_identifier_format: String,
87
- service_provider_entity_id: String
97
+ provision_groups: bool,
98
+ service_provider_entity_id: String,
99
+ service_provider_login_url: String
88
100
  }
89
101
 
90
102
  class Settings < Telnyx::Internal::Type::BaseModel
@@ -92,6 +104,10 @@ module Telnyx
92
104
 
93
105
  def assertion_consumer_service_url=: (String) -> String
94
106
 
107
+ attr_reader idp_attribute_names: top?
108
+
109
+ def idp_attribute_names=: (top) -> top
110
+
95
111
  attr_reader idp_cert_fingerprint: String?
96
112
 
97
113
  def idp_cert_fingerprint=: (String) -> String
@@ -102,10 +118,18 @@ module Telnyx
102
118
  Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm
103
119
  ) -> Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm
104
120
 
121
+ attr_reader idp_certificate: String?
122
+
123
+ def idp_certificate=: (String) -> String
124
+
105
125
  attr_reader idp_entity_id: String?
106
126
 
107
127
  def idp_entity_id=: (String) -> String
108
128
 
129
+ attr_reader idp_slo_target_url: String?
130
+
131
+ def idp_slo_target_url=: (String) -> String
132
+
109
133
  attr_reader idp_sso_target_url: String?
110
134
 
111
135
  def idp_sso_target_url=: (String) -> String
@@ -114,28 +138,46 @@ module Telnyx
114
138
 
115
139
  def name_identifier_format=: (String) -> String
116
140
 
141
+ attr_reader provision_groups: bool?
142
+
143
+ def provision_groups=: (bool) -> bool
144
+
117
145
  attr_reader service_provider_entity_id: String?
118
146
 
119
147
  def service_provider_entity_id=: (String) -> String
120
148
 
149
+ attr_reader service_provider_login_url: String?
150
+
151
+ def service_provider_login_url=: (String) -> String
152
+
121
153
  def initialize: (
122
154
  ?assertion_consumer_service_url: String,
155
+ ?idp_attribute_names: top,
123
156
  ?idp_cert_fingerprint: String,
124
157
  ?idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
158
+ ?idp_certificate: String,
125
159
  ?idp_entity_id: String,
160
+ ?idp_slo_target_url: String,
126
161
  ?idp_sso_target_url: String,
127
162
  ?name_identifier_format: String,
128
- ?service_provider_entity_id: String
163
+ ?provision_groups: bool,
164
+ ?service_provider_entity_id: String,
165
+ ?service_provider_login_url: String
129
166
  ) -> void
130
167
 
131
168
  def to_hash: -> {
132
169
  assertion_consumer_service_url: String,
170
+ idp_attribute_names: top,
133
171
  idp_cert_fingerprint: String,
134
172
  idp_cert_fingerprint_algorithm: Telnyx::Models::AuthenticationProvider::Settings::idp_cert_fingerprint_algorithm,
173
+ idp_certificate: String,
135
174
  idp_entity_id: String,
175
+ idp_slo_target_url: String,
136
176
  idp_sso_target_url: String,
137
177
  name_identifier_format: String,
138
- service_provider_entity_id: String
178
+ provision_groups: bool,
179
+ service_provider_entity_id: String,
180
+ service_provider_login_url: String
139
181
  }
140
182
 
141
183
  type idp_cert_fingerprint_algorithm =
@@ -160,7 +160,7 @@ module Telnyx
160
160
 
161
161
  type status =
162
162
  Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::porting_order_single_status
163
- | ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::union_array_variant1]
163
+ | ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::union_member1]
164
164
 
165
165
  module Status
166
166
  extend Telnyx::Internal::Type::Union
@@ -190,7 +190,7 @@ module Telnyx
190
190
  def self?.values: -> ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::porting_order_single_status]
191
191
  end
192
192
 
193
- type union_array_variant1 =
193
+ type union_member1 =
194
194
  :draft
195
195
  | :"in-process"
196
196
  | :submitted
@@ -200,7 +200,7 @@ module Telnyx
200
200
  | :ported
201
201
  | :cancelled
202
202
 
203
- module UnionArrayVariant1
203
+ module UnionMember1
204
204
  extend Telnyx::Internal::Type::Enum
205
205
 
206
206
  DRAFT: :draft
@@ -212,12 +212,12 @@ module Telnyx
212
212
  PORTED: :ported
213
213
  CANCELLED: :cancelled
214
214
 
215
- def self?.values: -> ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::union_array_variant1]
215
+ def self?.values: -> ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::Status::union_member1]
216
216
  end
217
217
 
218
218
  def self?.variants: -> ::Array[Telnyx::Models::PortingOrders::PhoneNumberBlockListParams::Filter::status]
219
219
 
220
- UnionArrayVariant1Array: Telnyx::Internal::Type::Converter
220
+ UnionMember1Array: Telnyx::Internal::Type::Converter
221
221
  end
222
222
 
223
223
  type support_key = String | ::Array[String]
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.32.0
4
+ version: 5.33.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-02-19 00:00:00.000000000 Z
11
+ date: 2026-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi