authlete 1.0.7 → 1.0.8
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 +4 -4
- data/lib/authlete/model/client.rb +11 -4
- 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: 636ed03f6688ad8391bafd9dccf3cec1900c8079
|
|
4
|
+
data.tar.gz: 37b0f3e27da200e51bda5e9392c8885a22713a0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 647876ae68893aadea28627420cb01fad8a809356c9d6686d646fd443ca3c81d7b4dc20380347cf6ae4d787611a29c7b0093988efeb56e0ddeef849b82313e12
|
|
7
|
+
data.tar.gz: 5230ea5040c6c0a83747ac71717353eaccf5fcf420cbe02e8e87bd9bf3dd470cace139f49da10265fc005d229d79b6e5437203b3a2420248a27d4638a46a2cf3
|
|
@@ -146,7 +146,7 @@ module Authlete
|
|
|
146
146
|
|
|
147
147
|
# The content of the JWK Set of the client application. (String)
|
|
148
148
|
attr_accessor :jwks
|
|
149
|
-
|
|
149
|
+
|
|
150
150
|
# The DN of the certificate used in mutual client authentication
|
|
151
151
|
attr_accessor :tlsClientAuthSubjectDn
|
|
152
152
|
alias_method :tls_client_auth_subject_dn, :tlsClientAuthSubjectDn
|
|
@@ -275,12 +275,17 @@ module Authlete
|
|
|
275
275
|
attr_accessor :modifiedAt
|
|
276
276
|
alias_method :modified_at, :modifiedAt
|
|
277
277
|
alias_method :modified_at=, :modifiedAt=
|
|
278
|
-
|
|
278
|
+
|
|
279
279
|
# The flag that indicates whether the client uses TLS client certificate bound access tokens
|
|
280
280
|
attr_accessor :tlsClientCertificateBoundAccessTokens
|
|
281
281
|
alias_method :tls_client_certificate_bound_access_tokens, :tlsClientCertificateBoundAccessTokens
|
|
282
282
|
alias_method :tls_client_certificate_bound_access_tokens=, :tlsClientCertificateBoundAccessTokens=
|
|
283
283
|
|
|
284
|
+
# The key ID of a JWK containing a self-signed certificate of this client.
|
|
285
|
+
attr_accessor :selfSignedCertificateKeyId
|
|
286
|
+
alias_method :self_signed_certificate_key_id, :selfSignedCertificateKeyId
|
|
287
|
+
alias_method :self_signed_certificate_key_id=, :selfSignedCertificateKeyId=
|
|
288
|
+
|
|
284
289
|
# The special information that extends the client. (ClientExtension)
|
|
285
290
|
attr_accessor :extension
|
|
286
291
|
|
|
@@ -303,7 +308,8 @@ module Authlete
|
|
|
303
308
|
:jwksUri, :jwks, :sectorIdentifier, :subjectType, :idTokenSignAlg,
|
|
304
309
|
:idTokenEncryptionAlg, :idTokenEncryptionEnc, :userInfoSignAlg, :userInfoEncryptionAlg,
|
|
305
310
|
:userInfoEncryptionEnc, :requestSignAlg, :requestEncryptionAlg, :requestEncryptionEnc,
|
|
306
|
-
:tokenAuthMethod, :tokenAuthSignAlg, :loginUri, :description, :tlsClientAuthSubjectDn
|
|
311
|
+
:tokenAuthMethod, :tokenAuthSignAlg, :loginUri, :description, :tlsClientAuthSubjectDn,
|
|
312
|
+
:selfSignedCertificateKeyId
|
|
307
313
|
])
|
|
308
314
|
|
|
309
315
|
# String array attributes.
|
|
@@ -360,7 +366,8 @@ module Authlete
|
|
|
360
366
|
:created_at => :createdAt,
|
|
361
367
|
:modified_at => :modifiedAt,
|
|
362
368
|
:tls_client_auth_subject_dn => :tlsClientAuthSubjectDn,
|
|
363
|
-
:tls_client_certificate_bound_access_tokens => :tlsClientCertificateBoundAccessTokens
|
|
369
|
+
:tls_client_certificate_bound_access_tokens => :tlsClientCertificateBoundAccessTokens,
|
|
370
|
+
:self_signed_certificate_key_id => :selfSignedCertificateKeyId
|
|
364
371
|
}
|
|
365
372
|
|
|
366
373
|
# The constructor
|
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.8
|
|
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-05-
|
|
11
|
+
date: 2018-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|