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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 66cc3908526324548af1553f5694c677b8eb96b3
4
- data.tar.gz: 9e54dba6f422bd84e6484ea56ae3eedcf3abe60f
3
+ metadata.gz: 636ed03f6688ad8391bafd9dccf3cec1900c8079
4
+ data.tar.gz: 37b0f3e27da200e51bda5e9392c8885a22713a0d
5
5
  SHA512:
6
- metadata.gz: 13f529c21b94ebce48e6d728dbcf7265842f750d193dd0139f82b77a6c516dffdabfee415ffe9088339e4b5073f3237370fc7f725eed90d965516645415e718c
7
- data.tar.gz: cc80fa3f8530b31e5e83f4177bd4feeef928e1fbade0f29fe19b355ccd272acd45d8b81978cb41fc69c3a35975977b16add2b3e803a259f31e5793c179335e3b
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
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.7"
19
+ VERSION = "1.0.8"
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.7
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-14 00:00:00.000000000 Z
11
+ date: 2018-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client