authlete 1.36.0 → 1.37.0
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/client.rb +30 -1
- 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: def1fd8a82bc7e26be3fc77869f7a7357dd4f0b7
|
|
4
|
+
data.tar.gz: db03af1401c26b3d45006d33fb65d44c34e4624d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bad4c25c7259b81e9ef737d07e525fba926950760e5faf284908e7211d7fa7ab76d90e45e83a47dc6c3f5580b8b5752bf1baa41176d7db3c1be5eaf080a6eba7
|
|
7
|
+
data.tar.gz: c435d8b3575a1c5efd20a0c5fb8b4e17b436ecc7d33ffa6fd705874a1885808e524d023dd93992914234978e3e361154617d14351b5a57074694fb4a3686af69
|
|
@@ -314,7 +314,7 @@ module Authlete
|
|
|
314
314
|
|
|
315
315
|
attr_accessor :singleAccessTokenPerSubject
|
|
316
316
|
alias_method :single_access_token_per_subject, :singleAccessTokenPerSubject
|
|
317
|
-
alias_method :single_access_token_per_subject=, :singleAccessTokenPerSubject=
|
|
317
|
+
alias_method :single_access_token_per_subject=, :singleAccessTokenPerSubject=
|
|
318
318
|
|
|
319
319
|
attr_accessor :pkceRequired
|
|
320
320
|
alias_method :pkce_required, :pkceRequired
|
|
@@ -336,6 +336,25 @@ module Authlete
|
|
|
336
336
|
alias_method :dpop_required, :dpopRequired
|
|
337
337
|
alias_method :dpop_required=, :dpopRequired=
|
|
338
338
|
|
|
339
|
+
attr_accessor :locked
|
|
340
|
+
|
|
341
|
+
# This is required for backward compatibility.
|
|
342
|
+
attr_accessor :sectorIdentifier
|
|
343
|
+
alias_method :sector_identifier, :sectorIdentifier
|
|
344
|
+
alias_method :sector_identifier=, :sectorIdentifier=
|
|
345
|
+
|
|
346
|
+
attr_accessor :rsRequestSigned
|
|
347
|
+
alias_method :rs_request_signed, :rsRequestSigned
|
|
348
|
+
alias_method :rs_request_signed=, :rsRequestSigned=
|
|
349
|
+
|
|
350
|
+
attr_accessor :trustChainExpiresAt
|
|
351
|
+
alias_method :trust_chain_expires_at, :trustChainExpiresAt
|
|
352
|
+
alias_method :trust_chain_expires_at=, :trustChainExpiresAt=
|
|
353
|
+
|
|
354
|
+
attr_accessor :trustChainUpdatedAt
|
|
355
|
+
alias_method :trust_chain_updated_at, :trustChainUpdatedAt
|
|
356
|
+
alias_method :trust_chain_updated_at=, :trustChainUpdatedAt=
|
|
357
|
+
|
|
339
358
|
private
|
|
340
359
|
|
|
341
360
|
def defaults
|
|
@@ -422,6 +441,11 @@ module Authlete
|
|
|
422
441
|
automaticallyRegistered: false,
|
|
423
442
|
explicitlyRegistered: false,
|
|
424
443
|
dpopRequired: false,
|
|
444
|
+
locked: false,
|
|
445
|
+
sectorIdentifier: nil,
|
|
446
|
+
rsRequestSigned: false,
|
|
447
|
+
trustChainExpiresAt: 0,
|
|
448
|
+
trustChainUpdatedAt: 0
|
|
425
449
|
}
|
|
426
450
|
end
|
|
427
451
|
|
|
@@ -508,6 +532,11 @@ module Authlete
|
|
|
508
532
|
@automaticallyRegistered = hash[:automaticallyRegistered]
|
|
509
533
|
@explicitlyRegistered = hash[:explicitlyRegistered]
|
|
510
534
|
@dpopRequired = hash[:dpopRequired]
|
|
535
|
+
@locked = hash[:locked]
|
|
536
|
+
@sectorIdentifier = hash[:sectorIdentifier]
|
|
537
|
+
@rsRequestSigned = hash[:rsRequestSigned]
|
|
538
|
+
@trustChainExpiresAt = hash[:trustChainExpiresAt]
|
|
539
|
+
@trustChainUpdatedAt = hash[:trustChainUpdatedAt]
|
|
511
540
|
end
|
|
512
541
|
|
|
513
542
|
def to_hash_value(key, var)
|
data/lib/authlete/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: authlete
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takahiko Kawasaki
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-01-
|
|
13
|
+
date: 2024-01-30 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rest-client
|