sig/plugins/digest_authentication.rbs in httpx-0.15.4 vs sig/plugins/digest_authentication.rbs in httpx-0.16.0
- old
+ new
@@ -3,13 +3,12 @@
module DigestAuthentication
DigestError: singleton(Error)
interface _DigestOptions
def digest: () -> Digest?
- def digest=: (Digest) -> Digest
end
-
+
def self.extra_options: (Options) -> (Options & _DigestOptions)
def self.load_dependencies: (*untyped) -> void
module InstanceMethods
@@ -25,8 +24,8 @@
def make_cnonce: () -> String
def next_nonce: () -> Integer
end
end
- type sessionDigestAuthentication = Plugins::sessionAuthentication & Plugins::DigestAuthentication::InstanceMethods
+ type sessionDigestAuthentication = sessionAuthentication & DigestAuthentication::InstanceMethods
end
end