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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 474d2787aafcd817deac04fb0d7a860aada0c9fa
4
- data.tar.gz: 6a5cd3414dc144c0a660439f5a83a0ac8810a609
3
+ metadata.gz: b18c3acf2bff70c5782f1dfa6e3d3a652ad60759
4
+ data.tar.gz: b684b91b3dbc5a9b6c7adf12094f730c4e8d2790
5
5
  SHA512:
6
- metadata.gz: 8fdab7c8923663c6ef9937a1a2cf43936b0434a2a7521848384518bdb07555b472c08f7ef654bc13d101232f6c9588603a1265a03eb5f34c267296f794b7c8a4
7
- data.tar.gz: 25c19ff4c3d71488b79b7f195598e79577e8014b43622e909c05f264782ae643aadcbfc8cfa0b24f21136b1f5f7e984d25574bc08f4235c8146024e320dd3b04
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
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.20"
19
+ VERSION = "1.0.21"
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.20
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: 2019-12-26 00:00:00.000000000 Z
11
+ date: 2020-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client