authlete 0.4.7 → 0.4.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91b73a4c6a20b9af75780aeba2f128d436f658c5
4
- data.tar.gz: cc3fd2c3677c4e44af64398287b7fadaad23aeec
3
+ metadata.gz: 667d509828a78b43c8822d1a86b4c9d8571f80ab
4
+ data.tar.gz: 0b0a99236167f8f34215f7f0b55e7281e00ada8b
5
5
  SHA512:
6
- metadata.gz: 1a2de88ae2496d7854cb547d9aae66bb07109c32ac56b6a11ab6bb6ba77d7ef87a4104fc6ed75a149519729d80c02269060e2592e796d06a336388a85d0fbca8
7
- data.tar.gz: 143d589841476dce7e3c1c09cd323a6f85c254f461a4712a3b34e0ada91b50f3c1bf27df0d6acbbbf5e7cfe35336ac76bd96797497b783c8c6f3e787c1a47f89
6
+ metadata.gz: dba4d6adf8087428efd1a06311747c4daa0dbbd52458fed54dfd3f023ff34077b624b8294e31f49cd2b7adf71734a1fcb24e4f334351c3310a4571e5dfd448d2
7
+ data.tar.gz: 53fc73e5994d3d7b02c7525739d444926a1c9685f9446d604bafcddf09e39304bae6a3cf92ca0eb7c99b5cfc14d13512d6cdab41b22a763a8a98305387937067
@@ -147,6 +147,12 @@ module Authlete
147
147
  alias_method :id_token_duration, :idTokenDuration
148
148
  alias_method :id_token_duration=, :idTokenDuration=
149
149
 
150
+ # The key ID to identify a JWK used for ID token signature using an
151
+ # asymmetric key. (String)
152
+ attr_accessor :idTokenSignatureKeyId
153
+ alias_method :id_token_signature_key_id, :idTokenSignatureKeyId
154
+ alias_method :id_token_signature_key_id=, :idTokenSignatureKeyId=
155
+
150
156
  # The issuer identifier of this OpenID Provider. (URI)
151
157
  attr_accessor :issuer
152
158
 
@@ -319,6 +325,12 @@ module Authlete
319
325
  alias_method :user_info_endpoint, :userInfoEndpoint
320
326
  alias_method :user_info_endpoint=, :userInfoEndpoint=
321
327
 
328
+ # The key ID to identify a JWK used for user info signature using an
329
+ # asymmetric key. (String)
330
+ attr_accessor :userInfoSignatureKeyId
331
+ alias_method :user_info_signature_key_id, :userInfoSignatureKeyId
332
+ alias_method :user_info_signature_key_id=, :userInfoSignatureKeyId=
333
+
322
334
  private
323
335
 
324
336
  # Integer attributes.
@@ -341,8 +353,9 @@ module Authlete
341
353
  :authenticationCallbackApiSecret, :authenticationCallbackEndpoint,
342
354
  :authorizationEndpoint, :description, :developerAuthenticationCallbackApiKey,
343
355
  :developerAuthenticationCallbackApiSecret, :developerAuthenticationCallbackEndpoint,
344
- :issuer, :jwks, :jwksUri, :policyUri, :registrationEndpoint, :serviceDocumentation,
345
- :serviceName, :tokenEndpoint, :tosUri, :userInfoEndpoint, :revocationEndpoint
356
+ :idTokenSignatureKeyId, :issuer, :jwks, :jwksUri, :policyUri, :registrationEndpoint,
357
+ :serviceDocumentation, :serviceName, :tokenEndpoint, :tosUri, :userInfoEndpoint,
358
+ :userInfoSignatureKeyId, :revocationEndpoint
346
359
  ])
347
360
 
348
361
  # String array attributes.
@@ -376,6 +389,7 @@ module Authlete
376
389
  :direct_token_endpoint_enabled => :directTokenEndpointEnabled,
377
390
  :direct_user_info_endpoint_enabled => :directUserInfoEndpointEnabled,
378
391
  :id_token_duration => :idTokenDuration,
392
+ :id_token_signature_key_id => :idTokenSignatureKeyId,
379
393
  :jwks_uri => :jwksUri,
380
394
  :modified_at => :modifiedAt,
381
395
  :pkce_required => :pkceRequired,
@@ -403,7 +417,8 @@ module Authlete
403
417
  :supported_ui_locales => :supportedUiLocales,
404
418
  :token_endpoint => :tokenEndpoint,
405
419
  :tos_uri => :tosUri,
406
- :user_info_endpoint => :userInfoEndpoint
420
+ :user_info_endpoint => :userInfoEndpoint,
421
+ :user_info_signature_key_id => :usrInfoSignatureKeyId
407
422
  }
408
423
 
409
424
  # The constructor
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "0.4.7"
19
+ VERSION = "0.4.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: 0.4.7
4
+ version: 0.4.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: 2017-04-05 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client