authlete 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/authlete/model/client.rb +6 -7
- data/lib/authlete/model/service.rb +7 -7
- data/lib/authlete/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66cc3908526324548af1553f5694c677b8eb96b3
|
4
|
+
data.tar.gz: 9e54dba6f422bd84e6484ea56ae3eedcf3abe60f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
280
|
-
|
281
|
-
|
282
|
-
alias_method :
|
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, :
|
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
|
-
:
|
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
|
360
|
-
# access tokens
|
361
|
-
attr_accessor :
|
362
|
-
alias_method :
|
363
|
-
alias_method :
|
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
|
-
:
|
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
|
-
:
|
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
|
}
|
data/lib/authlete/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2018-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|