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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3772410c2839e6063299d2ddac1a2242f594141c
4
- data.tar.gz: e4882c0c42fd48e5200d74f23adf0df2204a6780
3
+ metadata.gz: 4d991116008816b2d446dc23deeb429352203e07
4
+ data.tar.gz: ce31e600aa5b8fe9a3215c3013c80cf8dc63e275
5
5
  SHA512:
6
- metadata.gz: 92cfef4663dfde51f524ab656113f70aadcdf3beb04b83f5ffe40af5a14e98e79f826bcf9592fe48d5e6cc98171ed0edfd44875fba82b5d6eafcebe063d8420f
7
- data.tar.gz: 2a65f95b9f9a412219119a09e9837915fb5adac1022d5ad9b447b0079e2b87b4b6c86a7ae3f8984104bf1162c4ddd7f06f482a3634ff785243d5eb92b6a2c54a
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
- :directJwksEndpointEnabled, :directRevocationEndpointEnabled,
346
- :directTokenEndpointEnabled, :directUserInfoEndpointEnabled,
347
- :pkceRequired, :refreshTokenKept, :singleAccessTokenPerSubject
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,
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "0.4.9"
19
+ VERSION = "0.5.0"
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.9
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-04-20 00:00:00.000000000 Z
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client