authlete 1.0.14 → 1.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18a6f4ab1279094560de9c05aa3ed5b7db891727
4
- data.tar.gz: 301e9bf4600e5ebf07a00353169408f6be2ed06f
3
+ metadata.gz: 89ee12cf865cf2301ae4cdb14c2cb74a4f755b3b
4
+ data.tar.gz: 5cdc9e48ca8427c30909ceb75c26d6f8227b25a7
5
5
  SHA512:
6
- metadata.gz: f5338d1308f42692b88021aa594d664d770ccea3dffd4d2800fc6d7eb41978f52efbda83d460fcb4710913bd0576f4632b7887b10a462134e8adf7ce547c9538
7
- data.tar.gz: 6b77b644d6196d45d218d7e726004b07b604f300f5ed7d019f87a56017607eddad7eec6a8dbb93ce15074505497266c23d9420749bd4f34d6fdfd53d00829892
6
+ metadata.gz: d256b732138ce36e4483de6fb52e889817519cf758e5a0aa2f780fdc29d9be089b842a73fabc283fce27a62a838c8bfe2659f326d7f074e08749ded9716e9848
7
+ data.tar.gz: dc6766f30300d0505bc68c4114196806566e987eaeed46a34ab3539fedc29480340e5927c0f98d85d83e34e921ec430180bdc397c030c0533fb2e93d2035d5a6
@@ -102,6 +102,13 @@ module Authlete
102
102
  alias_method :backchannel_auth_req_id_duration, :backchannelAuthReqIdDuration
103
103
  alias_method :backchannel_auth_req_id_duration=, :backchannelAuthReqIdDuration=
104
104
 
105
+ # The flag indicating whether the +binding_message+ request parameter
106
+ # is always required whenever a backchannel authentication request is
107
+ # judged as a request for Financial-grade API. (Boolean)
108
+ attr_accessor :backchannelBindingMessageRequiredInFapi
109
+ alias_method :backchannel_binding_message_required_in_fapi, :backchannelBindingMessageRequiredInFapi
110
+ alias_method :backchannel_binding_message_required_in_fapi=, :backchannelBindingMessageRequiredInFapi=
111
+
105
112
  # The minimum interval between polling requests in seconds. (Integer)
106
113
  attr_accessor :backchannelPollingInterval
107
114
  alias_method :backchannel_polling_interval, :backchannelPollingInterval
@@ -291,6 +298,12 @@ module Authlete
291
298
  alias_method :pkce_required, :pkceRequired
292
299
  alias_method :pkce_required=, :pkceRequired=
293
300
 
301
+ # The flag indicating whether S256 is required as the code challenge
302
+ # method whenever PKCE is used. (Boolean)
303
+ attr_accessor :pkceS256Required
304
+ alias_method :pkce_s256_required, :pkceS256Required
305
+ alias_method :pkce_s256_required=, :pkceS256Required=
306
+
294
307
  # The URI of the service's policy page. (String)
295
308
  attr_accessor :policyUri
296
309
  alias_method :policy_uri, :policyUri
@@ -485,6 +498,11 @@ module Authlete
485
498
  alias_method :registration_management_endpoint, :registrationManagementEndpoint
486
499
  alias_method :registration_management_endpoint=, :registrationManagementEndpoint=
487
500
 
501
+ # The URI of request object endpoint. (String)
502
+ attr_accessor :requestObjectEndpoint
503
+ alias_method :request_object_endpoint, :requestObjectEndpoint
504
+ alias_method :request_object_endpoint=, :requestObjectEndpoint=
505
+
488
506
  private
489
507
 
490
508
  # Integer attributes.
@@ -498,11 +516,12 @@ module Authlete
498
516
 
499
517
  # Boolean attributes.
500
518
  BOOLEAN_ATTRIBUTES = ::Set.new([
501
- :backchannelUserCodeParameterSupported, :clientIdAliasEnabled,
519
+ :backchannelBindingMessageRequiredInFapi, :backchannelUserCodeParameterSupported,
520
+ :clientIdAliasEnabled,
502
521
  :directAuthorizationEndpointEnabled, :directIntrospectionEndpointEnabled,
503
522
  :directJwksEndpointEnabled, :directRevocationEndpointEnabled, :directTokenEndpointEnabled,
504
523
  :directUserInfoEndpointEnabled, :errorDescriptionOmitted, :errorUriOmitted,
505
- :mutualTlsValidatePkiCertChain, :pkceRequired, :refreshTokenKept,
524
+ :mutualTlsValidatePkiCertChain, :pkceRequired, :pkceS256Required, :refreshTokenKept,
506
525
  :singleAccessTokenPerSubject, :tlsClientCertificateBoundAccessTokens,
507
526
  :dynamicRegistrationSupported
508
527
  ])
@@ -516,9 +535,9 @@ module Authlete
516
535
  :developerAuthenticationCallbackApiSecret, :developerAuthenticationCallbackEndpoint,
517
536
  :deviceAuthorizationEndpoint, :deviceVerificationUri, :deviceVerificationUriComplete,
518
537
  :idTokenSignatureKeyId, :introspectionEndpoint, :issuer, :jwks, :jwksUri,
519
- :policyUri, :registrationEndpoint, :serviceDocumentation, :serviceName,
520
- :tokenEndpoint, :tosUri, :userCodeCharset, :userInfoEndpoint, :userInfoSignatureKeyId,
521
- :revocationEndpoint, :registrationManagementEndpoint
538
+ :policyUri, :registrationEndpoint, :registrationManagementEndpoint,
539
+ :requestObjectEndpoint, :revocationEndpoint, :serviceDocumentation, :serviceName,
540
+ :tokenEndpoint, :tosUri, :userCodeCharset, :userInfoEndpoint, :userInfoSignatureKeyId
522
541
  ])
523
542
 
524
543
  # String array attributes.
@@ -551,6 +570,7 @@ module Authlete
551
570
  :authorization_response_duration => :authorizationResponseDuration,
552
571
  :authorization_signature_key_id => :authorizationSignatureKeyId,
553
572
  :backchannel_authentication_endpoint => :backchannelAuthenticationEndpoint,
573
+ :backchannel_binding_message_required_in_fapi => :backchannelBindingMessageRequiredInFapi,
554
574
  :backchannel_auth_req_id_duration => :backchannelAuthReqIdDuration,
555
575
  :backchannel_polling_interval => :backchannelPollingInterval,
556
576
  :backchannel_user_code_parameter_supported => :backchannelUserCodeParameterSupported,
@@ -582,12 +602,14 @@ module Authlete
582
602
  :modified_at => :modifiedAt,
583
603
  :mutual_tls_validate_pki_cert_chain => :mutualTlsValidatePkiCertChain,
584
604
  :pkce_required => :pkceRequired,
605
+ :pkce_s256_required => :pkceS256Required,
585
606
  :policy_uri => :policyUri,
586
607
  :refresh_token_duration => :refreshTokenDuration,
587
608
  :refresh_token_kept => :refreshTokenKept,
588
609
  :registration_endpoint => :registrationEndpoint,
589
610
  :registration_management_endpoint => :registrationManagementEndpoint,
590
611
  :revocation_endpoint => :revocationEndpoint,
612
+ :request_object_endpoint => :requestObjectEndpoint,
591
613
  :service_documentation => :serviceDocumentation,
592
614
  :service_name => :serviceName,
593
615
  :service_owner_number => :serviceOwnerNumber,
@@ -16,6 +16,6 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.14"
19
+ VERSION = "1.0.15"
20
20
  end
21
21
 
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.14
4
+ version: 1.0.15
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-06-29 00:00:00.000000000 Z
11
+ date: 2019-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client