authlete 1.0.19 → 1.0.20
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 +44 -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: 474d2787aafcd817deac04fb0d7a860aada0c9fa
|
|
4
|
+
data.tar.gz: 6a5cd3414dc144c0a660439f5a83a0ac8810a609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fdab7c8923663c6ef9937a1a2cf43936b0434a2a7521848384518bdb07555b472c08f7ef654bc13d101232f6c9588603a1265a03eb5f34c267296f794b7c8a4
|
|
7
|
+
data.tar.gz: 25c19ff4c3d71488b79b7f195598e79577e8014b43622e909c05f264782ae643aadcbfc8cfa0b24f21136b1f5f7e984d25574bc08f4235c8146024e320dd3b04
|
|
@@ -523,6 +523,41 @@ module Authlete
|
|
|
523
523
|
alias_method :supported_authorization_data_types, :supportedAuthorizationDataTypes
|
|
524
524
|
alias_method :supported_authorization_data_types=, :supportedAuthorizationDataTypes=
|
|
525
525
|
|
|
526
|
+
# Trust frameworks supported by this service. (String array)
|
|
527
|
+
# This corresponds to the +trust_frameworks_supported+ in OpenID Connect
|
|
528
|
+
# for Identity Assurance 1.0.
|
|
529
|
+
attr_accessor :supportedTrustFrameworks
|
|
530
|
+
alias_method :supported_trust_frameworks, :supportedTrustFrameworks
|
|
531
|
+
alias_method :supported_trust_frameworks=, :supportedTrustFrameworks=
|
|
532
|
+
|
|
533
|
+
# Evidence supported by this service. (String array)
|
|
534
|
+
# This corresponds to the +evidence_supported+ in OpenID Connect for
|
|
535
|
+
# Identity Assurance 1.0.
|
|
536
|
+
attr_accessor :supportedEvidence
|
|
537
|
+
alias_method :supported_evidence, :supportedEvidence
|
|
538
|
+
alias_method :supported_evidence=, :supportedEvidence=
|
|
539
|
+
|
|
540
|
+
# Identity documents supported by this service. (String array)
|
|
541
|
+
# This corresponds to the +id_documents_supported+ in OpenID Connect
|
|
542
|
+
# for Identity Assurance 1.0.
|
|
543
|
+
attr_accessor :supportedIdentityDocuments
|
|
544
|
+
alias_method :supported_identity_documents, :supportedIdentityDocuments
|
|
545
|
+
alias_method :supported_identity_documents=, :supportedIdentityDocuments=
|
|
546
|
+
|
|
547
|
+
# Verification methods supported by this service. (String array)
|
|
548
|
+
# This corresponds to the +id_documents_verification_methods_supported+ in
|
|
549
|
+
# OpenID Connect for Identity Assurance 1.0.
|
|
550
|
+
attr_accessor :supportedVerificationMethods
|
|
551
|
+
alias_method :supported_verification_methods, :supportedVerificationMethods
|
|
552
|
+
alias_method :supported_verification_methods=, :supportedVerificationMethods=
|
|
553
|
+
|
|
554
|
+
# Verified claims supported by this service. (String array)
|
|
555
|
+
# This corresponds to the +claims_in_verified_claims_supported+ in
|
|
556
|
+
# OpenID Connect for Identity Assurance 1.0.
|
|
557
|
+
attr_accessor :supportedVerifiedClaims
|
|
558
|
+
alias_method :supported_verified_claims, :supportedVerifiedClaims
|
|
559
|
+
alias_method :supported_verified_claims=, :supportedVerifiedClaims=
|
|
560
|
+
|
|
526
561
|
private
|
|
527
562
|
|
|
528
563
|
# Integer attributes.
|
|
@@ -567,7 +602,9 @@ module Authlete
|
|
|
567
602
|
:supportedClaims, :supportedClaimTypes, :supportedDeveloperSnses,
|
|
568
603
|
:supportedDisplays, :supportedGrantTypes, :supportedResponseTypes,
|
|
569
604
|
:supportedServiceProfiles, :supportedSnses, :supportedTokenAuthMethods,
|
|
570
|
-
:supportedUiLocales, :trustedRootCertificates, :supportedAuthorizationDataTypes
|
|
605
|
+
:supportedUiLocales, :trustedRootCertificates, :supportedAuthorizationDataTypes,
|
|
606
|
+
:supportedTrustFrameworks, :supportedEvidence, :supportedIdentityDocuments,
|
|
607
|
+
:supportedVerificationMethods, :supportedVerifiedClaims
|
|
571
608
|
])
|
|
572
609
|
|
|
573
610
|
# SNS credentials array attributes.
|
|
@@ -661,7 +698,12 @@ module Authlete
|
|
|
661
698
|
:mtls_endpoint_aliases => :mtlsEndpointAliases,
|
|
662
699
|
:pushed_auth_req_endpoint => :pushedAuthReqEndpoint,
|
|
663
700
|
:pushed_auth_req_duration => :pushedAuthReqDuration,
|
|
664
|
-
:supported_authorization_data_types => :supportedAuthorizationDataTypes
|
|
701
|
+
:supported_authorization_data_types => :supportedAuthorizationDataTypes,
|
|
702
|
+
:supported_trust_frameworks => :supportedTrustFrameworks,
|
|
703
|
+
:supported_evidence => :supportedEvidence,
|
|
704
|
+
:supported_identity_documents => :supportedIdentityDocuments,
|
|
705
|
+
:supported_verification_methods => :supportedVerificationMethods,
|
|
706
|
+
:supported_verified_claims => :supportedVerifiedClaims
|
|
665
707
|
}
|
|
666
708
|
|
|
667
709
|
# 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.20
|
|
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-
|
|
11
|
+
date: 2019-12-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|