authlete 0.3.8 → 0.3.9

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: 6359bc8a0dc852b7f474d101e6f2b319824abba9
4
- data.tar.gz: a7b8c8d25392fccb509c56436fe3a4a47ae1681f
3
+ metadata.gz: ad8ec40ae1d8d22dc51b9362bf8098cc9d95a9ce
4
+ data.tar.gz: 2f339d8ae2ef65b871963782d5b69260c672b4d3
5
5
  SHA512:
6
- metadata.gz: 2202c0461f04010252ad723fe1739aabf0331bc2bd5fd2625c4b310294fcc56daa8a67d22219ce86cf8daab0fb601a00b08eaee00b4bfb7adcdfaf990f894a4d
7
- data.tar.gz: dc54cc70bb49037dae39181792006dea35c6e463220173e60832089d5dd235f774ae6dd9fae3b6a5b614a7e3179495c854a9157b125649015a77817e4e70e2c3
6
+ metadata.gz: b703f059eb3264fbdb7d6f3597263d7e7c426e3553ab82a6359b2c88095028eb82f3d663d6a90d64459b0dd074bdd7107d5c6e994ff6b67ce4a47540b9b263b9
7
+ data.tar.gz: a7a3efe36e7b71ba5e2f901615f153e9d66de8a028b37a2520567b05fb8d86d8eb6050facb3d7b2de023254cebb7eba3ee1daa50bfd7245a362ff09ac72f98dd
@@ -154,12 +154,20 @@ module Authlete
154
154
 
155
155
  # The timestamp at which the service was modified. (Integer)
156
156
  attr_accessor :modifiedAt
157
- alias_method :modified_at, :modifiedAt
157
+ alias_method :modified_at, :modifiedAt
158
158
  alias_method :modified_at=, :modifiedAt=
159
159
 
160
160
  # The service number. (Integer)
161
161
  attr_accessor :number
162
162
 
163
+ # The flag to indicate whether the use of Proof Key for Code
164
+ # Exchange (PKCE) is always required for authorization requests
165
+ # Authorization Code Flow.
166
+ # (Boolean)
167
+ attr_accessor :pkceRequired
168
+ alias_method :pkce_required, :pkceRequired
169
+ alias_method :pkce_required=, :pkceRequired=
170
+
163
171
  # The URI of the service's policy page. (URI)
164
172
  attr_accessor :policyUri
165
173
  alias_method :policy_uri, :policyUri
@@ -309,7 +317,7 @@ module Authlete
309
317
  # Boolean attributes.
310
318
  BOOLEAN_ATTRIBUTES = ::Set.new([
311
319
  :directAuthorizationEndpointEnabled, :directJwksEndpointEnabled, :directRevocationEndpointEnabled,
312
- :directTokenEndpointEnabled, :directUserInfoEndpointEnabled, :singleAccessTokenPerSubject
320
+ :directTokenEndpointEnabled, :directUserInfoEndpointEnabled, :pkceRequired, :singleAccessTokenPerSubject
313
321
  ])
314
322
 
315
323
  # String attributes.
@@ -354,6 +362,7 @@ module Authlete
354
362
  :id_tokn_duration => :idTokenDuration,
355
363
  :jwks_uri => :jwksUri,
356
364
  :modified_at => :modifiedAt,
365
+ :pkce_required => :pkceRequired,
357
366
  :policy_uri => :policyUri,
358
367
  :refresh_token_duration => :refreshTokenDuration,
359
368
  :registration_endpoint => :registrationEndpoint,
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "0.3.8"
19
+ VERSION = "0.3.9"
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.3.8
4
+ version: 0.3.9
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-12-04 00:00:00.000000000 Z
11
+ date: 2015-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client