authlete 1.0.6 → 1.0.7

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
  SHA1:
3
- metadata.gz: d0635facb4ac433823a07f6e74d6a5c498500e40
4
- data.tar.gz: ffa62d8e9eac757626dd6cfd611cc0732f1729a3
3
+ metadata.gz: 66cc3908526324548af1553f5694c677b8eb96b3
4
+ data.tar.gz: 9e54dba6f422bd84e6484ea56ae3eedcf3abe60f
5
5
  SHA512:
6
- metadata.gz: 436bcb5ff851beb2a835fa2dd690f21e5a6d607d3bb52d7712b85821a372d6eec3003704aa3073592ef560068f86e7cc43312b5690125ada518bda98b02e0a04
7
- data.tar.gz: d1c7682653e7f57c821c5596819cc255fb8ee014c12640a72d12e67aca11082cd6c9217ae659fd425bb47312033e715f92f3e71af8f7e4aab395923ee56e9538
6
+ metadata.gz: 13f529c21b94ebce48e6d728dbcf7265842f750d193dd0139f82b77a6c516dffdabfee415ffe9088339e4b5073f3237370fc7f725eed90d965516645415e718c
7
+ data.tar.gz: cc80fa3f8530b31e5e83f4177bd4feeef928e1fbade0f29fe19b355ccd272acd45d8b81978cb41fc69c3a35975977b16add2b3e803a259f31e5793c179335e3b
@@ -276,11 +276,10 @@ module Authlete
276
276
  alias_method :modified_at, :modifiedAt
277
277
  alias_method :modified_at=, :modifiedAt=
278
278
 
279
- # The flag that indicates whether the client uses sender authenticated MTLS bound
280
- # access tokens.
281
- attr_accessor :mutualTlsSenderConstrainedAccessTokens
282
- alias_method :mutual_tls_sender_constrained_access_tokens, :mutualTlsSenderConstrainedAccessTokens
283
- alias_method :mutual_tls_sender_constrained_access_tokens=, :mutualTlsSenderConstrainedAccessTokens=
279
+ # The flag that indicates whether the client uses TLS client certificate bound access tokens
280
+ attr_accessor :tlsClientCertificateBoundAccessTokens
281
+ alias_method :tls_client_certificate_bound_access_tokens, :tlsClientCertificateBoundAccessTokens
282
+ alias_method :tls_client_certificate_bound_access_tokens=, :tlsClientCertificateBoundAccessTokens=
284
283
 
285
284
  # The special information that extends the client. (ClientExtension)
286
285
  attr_accessor :extension
@@ -294,7 +293,7 @@ module Authlete
294
293
 
295
294
  # Boolean attributes.
296
295
  BOOLEAN_ATTRIBUTES = ::Set.new([
297
- :authTimeRequired, :clientIdAliasEnabled, :mutualTlsSenderConstrainedAccessTokens
296
+ :authTimeRequired, :clientIdAliasEnabled, :tlsClientCertificateBoundAccessTokens
298
297
  ])
299
298
 
300
299
  # String attributes.
@@ -361,7 +360,7 @@ module Authlete
361
360
  :created_at => :createdAt,
362
361
  :modified_at => :modifiedAt,
363
362
  :tls_client_auth_subject_dn => :tlsClientAuthSubjectDn,
364
- :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens
363
+ :tls_client_certificate_bound_access_tokens => :tlsClientCertificateBoundAccessTokens
365
364
  }
366
365
 
367
366
  # The constructor
@@ -356,11 +356,11 @@ module Authlete
356
356
  alias_method :user_info_signature_key_id, :userInfoSignatureKeyId
357
357
  alias_method :user_info_signature_key_id=, :userInfoSignatureKeyId=
358
358
 
359
- # The flag that indicates whether the service offers sender authenticated MTLS bound
360
- # access tokens. (Boolean)
361
- attr_accessor :mutualTlsSenderConstrainedAccessTokens
362
- alias_method :mutual_tls_sender_constrained_access_tokens, :mutualTlsSenderConstrainedAccessTokens
363
- alias_method :mutual_tls_sender_constrained_access_tokens=, :mutualTlsSenderConstrainedAccessTokens=
359
+ # The flag that indicates whether the service offers TLS client certificate
360
+ # bound access tokens (Boolean)
361
+ attr_accessor :tlsClientCertificateBoundAccessTokens
362
+ alias_method :tls_client_certificate_bound_access_tokens, :tlsClientCertificateBoundAccessTokens
363
+ alias_method :tls_client_certificate_bound_access_tokens=, :tlsClientCertificateBoundAccessTokens=
364
364
 
365
365
  # The flag that indicates whether the service will validate the PKI certificate chain
366
366
  # for MTLS based authentication. (Boolean)
@@ -391,7 +391,7 @@ module Authlete
391
391
  :directRevocationEndpointEnabled, :directTokenEndpointEnabled,
392
392
  :directUserInfoEndpointEnabled, :errorDescriptionOmitted, :errorUriOmitted,
393
393
  :pkceRequired, :refreshTokenKept, :singleAccessTokenPerSubject,
394
- :mutualTlsSenderConstrainedAccessTokens, :mutualTlsValidatePkiCertChain
394
+ :tlsClientCertificateBoundAccessTokens, :mutualTlsValidatePkiCertChain
395
395
  ])
396
396
 
397
397
  # String attributes.
@@ -476,7 +476,7 @@ module Authlete
476
476
  :tos_uri => :tosUri,
477
477
  :user_info_endpoint => :userInfoEndpoint,
478
478
  :user_info_signature_key_id => :userInfoSignatureKeyId,
479
- :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens,
479
+ :tls_client_certificate_bound_access_tokens => :tlsClientCertificateBoundAccessTokens,
480
480
  :mutual_tls_validate_pki_cert_chain => :mutualTlsValidatePkiCertChain,
481
481
  :trusted_root_certificates => :trustedRootCertificates
482
482
  }
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.6"
19
+ VERSION = "1.0.7"
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlete
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-12 00:00:00.000000000 Z
11
+ date: 2018-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client