authlete 0.4.7 → 0.4.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/service.rb +18 -3
- 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: 667d509828a78b43c8822d1a86b4c9d8571f80ab
|
|
4
|
+
data.tar.gz: 0b0a99236167f8f34215f7f0b55e7281e00ada8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,
|
|
345
|
-
:serviceName, :tokenEndpoint, :tosUri, :userInfoEndpoint,
|
|
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
|
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: 0.4.
|
|
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-
|
|
11
|
+
date: 2017-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|