authlete 1.36.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- 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: 22ecdaa24a7b32d5b64af960a4436cc00c638500
|
4
|
+
data.tar.gz: e94085943cb60b8cfa8d9e723217317959d01543
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3103c6daf9883baf5253f6d010a3aac581470f6c7ea2344534301f44c0cb88a4bf5a60754f9c631d7c76cb08c13e6128dc6b8b4cfa09f6feed21b91538259071
|
7
|
+
data.tar.gz: 705c8c5858f83ffc26d7e7070ad5300b5aee2e4401cdca8b98220717ccfe0c962422cb3af1e47c62c2593e4408c0e96d6dfddcb316f25a5b3a7b024065ec4fd4
|
@@ -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.38.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
|