authlete 0.4.9 → 0.5.0
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 +13 -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: 4d991116008816b2d446dc23deeb429352203e07
|
|
4
|
+
data.tar.gz: ce31e600aa5b8fe9a3215c3013c80cf8dc63e275
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8095288111a72a8ecfb7352915c41c0ae13a68e2e7c4e38a99957d2d419b24f2907398e9fa32910efb107c7b09209fa8e7b309738de82a591d06a24a91a7b444
|
|
7
|
+
data.tar.gz: 87375c1796f6bb23a1940cc475c08b30f67bb6a99b355372f8aa502229a8655ee2039ff89966e0f88ec0f952b72a955603260f64b2e584f76588886482465eb9
|
|
@@ -110,6 +110,14 @@ module Authlete
|
|
|
110
110
|
alias_method :direct_authorization_endpoint_enabled, :directAuthorizationEndpointEnabled
|
|
111
111
|
alias_method :direct_authorization_endpoint_enabled=, :directAuthorizationEndpointEnabled=
|
|
112
112
|
|
|
113
|
+
# The flag to indicate whether the direct introspection endpoint
|
|
114
|
+
# is enabled or not. The path of the endpoint is
|
|
115
|
+
# <code>/api/auth/introspection/direct/{serviceApiKey}</code>
|
|
116
|
+
# (Boolean)
|
|
117
|
+
attr_accessor :directIntrospectionEndpointEnabled
|
|
118
|
+
alias_method :direct_introspection_endpoint_enabled, :directIntrospectionEndpointEnabled
|
|
119
|
+
alias_method :direct_introspection_endpoint_enabled=, :directIntrospectionEndpointEnabled=
|
|
120
|
+
|
|
113
121
|
# The flag to indicate whether the direct jwks endpoint
|
|
114
122
|
# is enabled or not. The path of the endpoint is
|
|
115
123
|
# <code>/api/service/jwks/get/direct/{serviceApiKey}</code>
|
|
@@ -342,9 +350,10 @@ module Authlete
|
|
|
342
350
|
# Boolean attributes.
|
|
343
351
|
BOOLEAN_ATTRIBUTES = ::Set.new([
|
|
344
352
|
:clientIdAliasEnabled, :directAuthorizationEndpointEnabled,
|
|
345
|
-
:
|
|
346
|
-
:
|
|
347
|
-
:pkceRequired, :refreshTokenKept,
|
|
353
|
+
:directIntrospectionEndpointEnabled, :directJwksEndpointEnabled,
|
|
354
|
+
:directRevocationEndpointEnabled, :directTokenEndpointEnabled,
|
|
355
|
+
:directUserInfoEndpointEnabled, :pkceRequired, :refreshTokenKept,
|
|
356
|
+
:singleAccessTokenPerSubject
|
|
348
357
|
])
|
|
349
358
|
|
|
350
359
|
# String attributes.
|
|
@@ -384,6 +393,7 @@ module Authlete
|
|
|
384
393
|
:clients_per_developer => :clientsPerDeveloper,
|
|
385
394
|
:created_at => :createdAt,
|
|
386
395
|
:direct_authorization_endpoint_enabled => :directAuthorizationEndpointEnabled,
|
|
396
|
+
:direct_introspection_endpoint_enabled => :directIntrospectionEndpointEnabled,
|
|
387
397
|
:direct_jwks_endpoint_enabled => :directJwksEndpointEnabled,
|
|
388
398
|
:direct_revocation_endpoint_enabled => :directRevocationEndpointEnabled,
|
|
389
399
|
:direct_token_endpoint_enabled => :directTokenEndpointEnabled,
|
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
|
+
version: 0.5.0
|
|
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-
|
|
11
|
+
date: 2017-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|