authlete 1.0.11 → 1.0.12

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: de60afc02ade827ea64087dc062490ba90fdf672
4
- data.tar.gz: a0dc92a108f6db1a78efa48e99c639dfb6fe1870
3
+ metadata.gz: c38cf1d128a223d7642621bff6c0f7151d4059cc
4
+ data.tar.gz: b7af5291074e67a5d72fd4130b1f9c8c4ca52eea
5
5
  SHA512:
6
- metadata.gz: 43929678536ec4264845f24a8d90c4f14638d98bbee8ffc66241ebf2c46ad45033bb86b62589b98a12625d4c4180124c16d8462ba6e2487e161ff96689bc89e0
7
- data.tar.gz: 8ba6ce4747ad936c958877261e659be7495138c35894f7aae85eec05f19823bb50b3282d1b8b04eea61b64ec9890399ce2d568c244c60302f6ae151e1fec8a29
6
+ metadata.gz: e3b7539d8d733f7379f0b51acba04380d682cc1832f60094c5e647e2a9cd1d8306ebbf4f2d98578fb285a61f8847387b1b37147c8129ea7089640aa1ddfe5ee2
7
+ data.tar.gz: cc066ced1f686c009129403e0569f33c7b837d0f1ed11dfcb5a31d1cba193fb3ff704399e397cbb03af3c55737b4b56b30e7929f9ddea4faa182ece780d49588
@@ -27,6 +27,16 @@ module Authlete
27
27
  alias_method :access_token_duration, :accessTokenDuration
28
28
  alias_method :access_token_duration=, :accessTokenDuration=
29
29
 
30
+ # The signature algorithm for access tokens. (String)
31
+ attr_accessor :accessTokenSignAlg
32
+ alias_method :access_token_sign_alg, :accessTokenSignAlg
33
+ alias_method :access_token_sign_alg=, :accessTokenSignAlg=
34
+
35
+ # The key ID to identify a JWK used for signing access tokens. (String)
36
+ attr_accessor :accessTokenSignatureKeyId
37
+ alias_method :access_token_signature_key_id, :accessTokenSignatureKeyId
38
+ alias_method :access_token_signature_key_id=, :accessTokenSignatureKeyId=
39
+
30
40
  # The access token type. (String)
31
41
  attr_accessor :accessTokenType
32
42
  alias_method :access_token_type, :accessTokenType
@@ -448,14 +458,15 @@ module Authlete
448
458
 
449
459
  # String attributes.
450
460
  STRING_ATTRIBUTES = ::Set.new([
451
- :accessTokenType, :apiSecret, :authenticationCallbackApiKey,
452
- :authenticationCallbackApiSecret, :authenticationCallbackEndpoint,
453
- :authorizationEndpoint, :authorizationSignatureKeyId, :backchannelAuthenticationEndpoint,
454
- :description, :developerAuthenticationCallbackApiKey, :developerAuthenticationCallbackApiSecret,
455
- :developerAuthenticationCallbackEndpoint, :idTokenSignatureKeyId,
456
- :introspectionEndpoint, :issuer, :jwks, :jwksUri, :policyUri, :registrationEndpoint,
457
- :serviceDocumentation, :serviceName, :tokenEndpoint, :tosUri, :userInfoEndpoint,
458
- :userInfoSignatureKeyId, :revocationEndpoint
461
+ :accessTokenSignAlg, :accessTokenSignatureKeyId, :accessTokenType,
462
+ :apiSecret, :authenticationCallbackApiKey, :authenticationCallbackApiSecret,
463
+ :authenticationCallbackEndpoint, :authorizationEndpoint, :authorizationSignatureKeyId,
464
+ :backchannelAuthenticationEndpoint, :description, :developerAuthenticationCallbackApiKey,
465
+ :developerAuthenticationCallbackApiSecret, :developerAuthenticationCallbackEndpoint,
466
+ :idTokenSignatureKeyId, :introspectionEndpoint, :issuer, :jwks, :jwksUri,
467
+ :policyUri, :registrationEndpoint, :serviceDocumentation, :serviceName,
468
+ :tokenEndpoint, :tosUri, :userInfoEndpoint, :userInfoSignatureKeyId,
469
+ :revocationEndpoint
459
470
  ])
460
471
 
461
472
  # String array attributes.
@@ -475,6 +486,8 @@ module Authlete
475
486
  # Mapping from snake cases to camel cases.
476
487
  SNAKE_TO_CAMEL = {
477
488
  :access_token_duration => :accessTokenDuration,
489
+ :access_token_sign_alg => :accessTokenSignAlg,
490
+ :access_token_signature_key_id => :accessTokenSignatureKeyId,
478
491
  :access_token_type => :accessTokenType,
479
492
  :allowable_clock_skew => :allowableClockSkew,
480
493
  :api_key => :apiKey,
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.11"
19
+ VERSION = "1.0.12"
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: 1.0.11
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-20 00:00:00.000000000 Z
11
+ date: 2019-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client