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 +4 -4
- data/lib/authlete/model/service.rb +21 -8
- 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: c38cf1d128a223d7642621bff6c0f7151d4059cc
|
|
4
|
+
data.tar.gz: b7af5291074e67a5d72fd4130b1f9c8c4ca52eea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
:
|
|
452
|
-
:
|
|
453
|
-
:
|
|
454
|
-
:
|
|
455
|
-
:
|
|
456
|
-
:introspectionEndpoint, :issuer, :jwks, :jwksUri,
|
|
457
|
-
:
|
|
458
|
-
:
|
|
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,
|
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: 1.0.
|
|
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:
|
|
11
|
+
date: 2019-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|