authlete 0.3.7.1 → 0.3.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/client-list.rb +4 -2
 - data/lib/authlete/model/scope.rb +1 -1
 - data/lib/authlete/model/service-list.rb +4 -2
 - data/lib/authlete/model/service.rb +13 -1
 - 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: 6359bc8a0dc852b7f474d101e6f2b319824abba9
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a7b8c8d25392fccb509c56436fe3a4a47ae1681f
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 2202c0461f04010252ad723fe1739aabf0331bc2bd5fd2625c4b310294fcc56daa8a67d22219ce86cf8daab0fb601a00b08eaee00b4bfb7adcdfaf990f894a4d
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: dc54cc70bb49037dae39181792006dea35c6e463220173e60832089d5dd235f774ae6dd9fae3b6a5b614a7e3179495c854a9157b125649015a77817e4e70e2c3
         
     | 
| 
         @@ -23,17 +23,19 @@ module Authlete 
     | 
|
| 
       23 
23 
     | 
    
         
             
                class ClientList < Authlete::Model::Hashable
         
     | 
| 
       24 
24 
     | 
    
         
             
                  include Authlete::Utility
         
     | 
| 
       25 
25 
     | 
    
         
             
                  # The start index (inclusive) of the clients in this list.
         
     | 
| 
      
 26 
     | 
    
         
            +
                  # (Integer)
         
     | 
| 
       26 
27 
     | 
    
         
             
                  attr_accessor :start
         
     | 
| 
       27 
28 
     | 
    
         | 
| 
       28 
29 
     | 
    
         
             
                  # The end index (exclusive) of the clients in this list.
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # (Integer)
         
     | 
| 
       29 
31 
     | 
    
         
             
                  attr_accessor :end
         
     | 
| 
       30 
32 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
                  # The total count of clients.
         
     | 
| 
      
 33 
     | 
    
         
            +
                  # The total count of clients. (Integer)
         
     | 
| 
       32 
34 
     | 
    
         
             
                  attr_accessor :totalCount
         
     | 
| 
       33 
35 
     | 
    
         
             
                  alias_method  :total_count,  :totalCount
         
     | 
| 
       34 
36 
     | 
    
         
             
                  alias_method  :total_count=, :totalCount=
         
     | 
| 
       35 
37 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
                  # The list of clients.
         
     | 
| 
      
 38 
     | 
    
         
            +
                  # The list of clients. (Client array)
         
     | 
| 
       37 
39 
     | 
    
         
             
                  attr_accessor :clients
         
     | 
| 
       38 
40 
     | 
    
         | 
| 
       39 
41 
     | 
    
         
             
                  private
         
     | 
    
        data/lib/authlete/model/scope.rb
    CHANGED
    
    | 
         @@ -28,7 +28,7 @@ module Authlete 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  attr_accessor :name
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
30 
     | 
    
         
             
                  # The flag to indicate whether this scope is included in the
         
     | 
| 
       31 
     | 
    
         
            -
                  # default scope set. ( 
     | 
| 
      
 31 
     | 
    
         
            +
                  # default scope set. (Boolean)
         
     | 
| 
       32 
32 
     | 
    
         
             
                  attr_accessor :defaultEntry
         
     | 
| 
       33 
33 
     | 
    
         
             
                  alias_method  :default_entry,  :defaultEntry
         
     | 
| 
       34 
34 
     | 
    
         
             
                  alias_method  :default_entry=, :defaultEntry=
         
     | 
| 
         @@ -23,17 +23,19 @@ module Authlete 
     | 
|
| 
       23 
23 
     | 
    
         
             
                class ServiceList < Authlete::Model::Hashable
         
     | 
| 
       24 
24 
     | 
    
         
             
                  include Authlete::Utility
         
     | 
| 
       25 
25 
     | 
    
         
             
                  # The start index (inclusive) of the services in this list.
         
     | 
| 
      
 26 
     | 
    
         
            +
                  # (Integer)
         
     | 
| 
       26 
27 
     | 
    
         
             
                  attr_accessor :start
         
     | 
| 
       27 
28 
     | 
    
         | 
| 
       28 
29 
     | 
    
         
             
                  # The end index (exclusive) of the services in this list.
         
     | 
| 
      
 30 
     | 
    
         
            +
                  # (Integer)
         
     | 
| 
       29 
31 
     | 
    
         
             
                  attr_accessor :end
         
     | 
| 
       30 
32 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
                  # The total count of services.
         
     | 
| 
      
 33 
     | 
    
         
            +
                  # The total count of services. (Integer)
         
     | 
| 
       32 
34 
     | 
    
         
             
                  attr_accessor :totalCount
         
     | 
| 
       33 
35 
     | 
    
         
             
                  alias_method  :total_count,  :totalCount
         
     | 
| 
       34 
36 
     | 
    
         
             
                  alias_method  :total_count=, :totalCount=
         
     | 
| 
       35 
37 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
                  # The list of services.
         
     | 
| 
      
 38 
     | 
    
         
            +
                  # The list of services. (Service array)
         
     | 
| 
       37 
39 
     | 
    
         
             
                  attr_accessor :services
         
     | 
| 
       38 
40 
     | 
    
         | 
| 
       39 
41 
     | 
    
         
             
                  private
         
     | 
| 
         @@ -99,6 +99,7 @@ module Authlete 
     | 
|
| 
       99 
99 
     | 
    
         
             
                  # The flag to indicate whether the direct authorization endpoint
         
     | 
| 
       100 
100 
     | 
    
         
             
                  # is enabled or not. The path of the endpoint is
         
     | 
| 
       101 
101 
     | 
    
         
             
                  # <code>/api/auth/authorization/direct/{serviceApiKey}</code>
         
     | 
| 
      
 102 
     | 
    
         
            +
                  # (Boolean)
         
     | 
| 
       102 
103 
     | 
    
         
             
                  attr_accessor :directAuthorizationEndpointEnabled
         
     | 
| 
       103 
104 
     | 
    
         
             
                  alias_method  :direct_authorization_endpoint_enabled,  :directAuthorizationEndpointEnabled
         
     | 
| 
       104 
105 
     | 
    
         
             
                  alias_method  :direct_authorization_endpoint_enabled=, :directAuthorizationEndpointEnabled=
         
     | 
| 
         @@ -106,6 +107,7 @@ module Authlete 
     | 
|
| 
       106 
107 
     | 
    
         
             
                  # The flag to indicate whether the direct jwks endpoint
         
     | 
| 
       107 
108 
     | 
    
         
             
                  # is enabled or not. The path of the endpoint is
         
     | 
| 
       108 
109 
     | 
    
         
             
                  # <code>/api/service/jwks/get/direct/{serviceApiKey}</code>
         
     | 
| 
      
 110 
     | 
    
         
            +
                  # (Boolean)
         
     | 
| 
       109 
111 
     | 
    
         
             
                  attr_accessor :directJwksEndpointEnabled
         
     | 
| 
       110 
112 
     | 
    
         
             
                  alias_method  :direct_jwks_endpoint_enabled,  :directJwksEndpointEnabled
         
     | 
| 
       111 
113 
     | 
    
         
             
                  alias_method  :direct_jwks_endpoint_enabled=, :directJwksEndpointEnabled=
         
     | 
| 
         @@ -113,6 +115,7 @@ module Authlete 
     | 
|
| 
       113 
115 
     | 
    
         
             
                  # The flag to indicate whether the direct revocation endpoint
         
     | 
| 
       114 
116 
     | 
    
         
             
                  # is enabled or not. The path of the endpoint is
         
     | 
| 
       115 
117 
     | 
    
         
             
                  # <code>/api/auth/revocation/direct/{serviceApiKey}</code>
         
     | 
| 
      
 118 
     | 
    
         
            +
                  # (Boolean)
         
     | 
| 
       116 
119 
     | 
    
         
             
                  attr_accessor :directRevocationEndpointEnabled
         
     | 
| 
       117 
120 
     | 
    
         
             
                  alias_method  :direct_revocation_endpoint_enabled,  :directRevocationEndpointEnabled
         
     | 
| 
       118 
121 
     | 
    
         
             
                  alias_method  :direct_revocation_endpoint_enabled=, :directRevocationEndpointEnabled=
         
     | 
| 
         @@ -120,6 +123,7 @@ module Authlete 
     | 
|
| 
       120 
123 
     | 
    
         
             
                  # The flag to indicate whether the direct token endpoint
         
     | 
| 
       121 
124 
     | 
    
         
             
                  # is enabled or not. The path of the endpoint is
         
     | 
| 
       122 
125 
     | 
    
         
             
                  # <code>/api/auth/token/direct/{serviceApiKey}</code>
         
     | 
| 
      
 126 
     | 
    
         
            +
                  # (Boolean)
         
     | 
| 
       123 
127 
     | 
    
         
             
                  attr_accessor :directTokenEndpointEnabled
         
     | 
| 
       124 
128 
     | 
    
         
             
                  alias_method  :direct_token_endpoint_enabled,  :directTokenEndpointEnabled
         
     | 
| 
       125 
129 
     | 
    
         
             
                  alias_method  :direct_token_endpoint_enabled=, :directTokenEndpointEnabled=
         
     | 
| 
         @@ -127,6 +131,7 @@ module Authlete 
     | 
|
| 
       127 
131 
     | 
    
         
             
                  # The flag to indicate whether the direct user info endpoint
         
     | 
| 
       128 
132 
     | 
    
         
             
                  # is enabled or not. The path of the endpoint is
         
     | 
| 
       129 
133 
     | 
    
         
             
                  # <code>/api/auth/userinfo/direct/{serviceApiKey}</code>
         
     | 
| 
      
 134 
     | 
    
         
            +
                  # (Boolean)
         
     | 
| 
       130 
135 
     | 
    
         
             
                  attr_accessor :directUserInfoEndpointEnabled
         
     | 
| 
       131 
136 
     | 
    
         
             
                  alias_method  :direct_user_info_endpoint_enabled,  :directUserInfoEndpointEnabled
         
     | 
| 
       132 
137 
     | 
    
         
             
                  alias_method  :direct_user_info_endpoint_enabled=, :directUserInfoEndpointEnabled=
         
     | 
| 
         @@ -193,6 +198,12 @@ module Authlete 
     | 
|
| 
       193 
198 
     | 
    
         
             
                  alias_method  :service_owner_number,  :serviceOwnerNumber
         
     | 
| 
       194 
199 
     | 
    
         
             
                  alias_method  :service_owner_number=, :serviceOwnerNumber=
         
     | 
| 
       195 
200 
     | 
    
         | 
| 
      
 201 
     | 
    
         
            +
                  # The flag to indicate whether the number of access tokens
         
     | 
| 
      
 202 
     | 
    
         
            +
                  # per subject (and per client) is at most one or can be more. (Boolean)
         
     | 
| 
      
 203 
     | 
    
         
            +
                  attr_accessor :singleAccessTokenPerSubject
         
     | 
| 
      
 204 
     | 
    
         
            +
                  alias_method  :single_access_token_per_subject, :singleAccessTokenPerSubject
         
     | 
| 
      
 205 
     | 
    
         
            +
                  alias_method  :single_access_token_per_subject=, :singleAccessTokenPerSubject=
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
       196 
207 
     | 
    
         
             
                  # The list of SNS credentials. (SnsCredentials array)
         
     | 
| 
       197 
208 
     | 
    
         
             
                  attr_accessor :snsCredentials
         
     | 
| 
       198 
209 
     | 
    
         
             
                  alias_method  :sns_credentials,  :snsCredentials
         
     | 
| 
         @@ -298,7 +309,7 @@ module Authlete 
     | 
|
| 
       298 
309 
     | 
    
         
             
                  # Boolean attributes.
         
     | 
| 
       299 
310 
     | 
    
         
             
                  BOOLEAN_ATTRIBUTES = ::Set.new([
         
     | 
| 
       300 
311 
     | 
    
         
             
                    :directAuthorizationEndpointEnabled, :directJwksEndpointEnabled, :directRevocationEndpointEnabled,
         
     | 
| 
       301 
     | 
    
         
            -
                    :directTokenEndpointEnabled, :directUserInfoEndpointEnabled
         
     | 
| 
      
 312 
     | 
    
         
            +
                    :directTokenEndpointEnabled, :directUserInfoEndpointEnabled, :singleAccessTokenPerSubject
         
     | 
| 
       302 
313 
     | 
    
         
             
                  ])
         
     | 
| 
       303 
314 
     | 
    
         | 
| 
       304 
315 
     | 
    
         
             
                  # String attributes.
         
     | 
| 
         @@ -350,6 +361,7 @@ module Authlete 
     | 
|
| 
       350 
361 
     | 
    
         
             
                    :service_documentation                        => :serviceDocumentation,
         
     | 
| 
       351 
362 
     | 
    
         
             
                    :service_name                                 => :serviceName,
         
     | 
| 
       352 
363 
     | 
    
         
             
                    :service_owner_number                         => :serviceOwnerNumber,
         
     | 
| 
      
 364 
     | 
    
         
            +
                    :single_access_token_per_subject              => :singleAccessTokenPerSubject,
         
     | 
| 
       353 
365 
     | 
    
         
             
                    :sns_credentials                              => :snsCredentials,
         
     | 
| 
       354 
366 
     | 
    
         
             
                    :supported_acrs                               => :supportedAcrs,
         
     | 
| 
       355 
367 
     | 
    
         
             
                    :supported_claim_locales                      => :supportedClaimLocales,
         
     | 
    
        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.3. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.3.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: 2015- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2015-12-04 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rest-client
         
     |