authlete 1.0.20 → 1.0.21
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 +9 -2
- 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: b18c3acf2bff70c5782f1dfa6e3d3a652ad60759
|
|
4
|
+
data.tar.gz: b684b91b3dbc5a9b6c7adf12094f730c4e8d2790
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a12c3ea20cc4e6a487f4509c6fcfc82805e54b2fbcaf0861e7378f2dec11f5549050edf505a9aae0b341ee122981034019ad79d580018258bdda5838d3d14d72
|
|
7
|
+
data.tar.gz: 450b964300dad2371ffcf3def464eed3014662c82c78dc1f321a1fecce7f1918cb341e2bfe68e77ca0f7f0d44947b8a464136a5caec395e55fccfa15b878ed6c
|
|
@@ -558,6 +558,12 @@ module Authlete
|
|
|
558
558
|
alias_method :supported_verified_claims, :supportedVerifiedClaims
|
|
559
559
|
alias_method :supported_verified_claims=, :supportedVerifiedClaims=
|
|
560
560
|
|
|
561
|
+
# Flag of whether this service allows token requests without client ID
|
|
562
|
+
# from public clients or not. (Boolean)
|
|
563
|
+
attr_accessor :missingClientIdAllowed
|
|
564
|
+
alias_method :missing_client_id_allowed, :missingClientIdAllowed
|
|
565
|
+
alias_method :missing_client_id_allowed=, :missingClientIdAllowed=
|
|
566
|
+
|
|
561
567
|
private
|
|
562
568
|
|
|
563
569
|
# Integer attributes.
|
|
@@ -578,7 +584,7 @@ module Authlete
|
|
|
578
584
|
:directUserInfoEndpointEnabled, :errorDescriptionOmitted, :errorUriOmitted,
|
|
579
585
|
:mutualTlsValidatePkiCertChain, :pkceRequired, :pkceS256Required, :refreshTokenKept,
|
|
580
586
|
:singleAccessTokenPerSubject, :tlsClientCertificateBoundAccessTokens,
|
|
581
|
-
:dynamicRegistrationSupported
|
|
587
|
+
:dynamicRegistrationSupported, :missingClientIdAllowed
|
|
582
588
|
])
|
|
583
589
|
|
|
584
590
|
# String attributes.
|
|
@@ -703,7 +709,8 @@ module Authlete
|
|
|
703
709
|
:supported_evidence => :supportedEvidence,
|
|
704
710
|
:supported_identity_documents => :supportedIdentityDocuments,
|
|
705
711
|
:supported_verification_methods => :supportedVerificationMethods,
|
|
706
|
-
:supported_verified_claims => :supportedVerifiedClaims
|
|
712
|
+
:supported_verified_claims => :supportedVerifiedClaims,
|
|
713
|
+
:missing_client_id_allowed => :missingClientIdAllowed
|
|
707
714
|
}
|
|
708
715
|
|
|
709
716
|
# The constructor
|
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.21
|
|
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: 2020-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|