Skip to content

Commit

Permalink
Merge pull request #28 from Web3Auth/fix_loginparams_codable
Browse files Browse the repository at this point in the history
fix: loginparams codable
  • Loading branch information
metalurgical authored Nov 12, 2024
2 parents 851365e + 20e77e0 commit 7f3a94a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SingleFactorAuth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "SingleFactorAuth"
spec.version = "9.0.2"
spec.version = "9.0.3"
spec.ios.deployment_target = "14.0"
spec.summary = "Enable one key flow for Web3Auth"
spec.homepage = "https://github.com/Web3Auth/single-factor-auth-swift"
Expand Down
4 changes: 2 additions & 2 deletions Sources/SingleFactorAuth/LoginParams.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public class LoginParams {
public class LoginParams: Codable {
public let verifier: String
public let verifierId: String
public let idToken: String
Expand All @@ -16,7 +16,7 @@ public class LoginParams {
}
}

public struct TorusSubVerifierInfo {
public struct TorusSubVerifierInfo: Codable {
public var verifier: String
public var idToken: String

Expand Down

0 comments on commit 7f3a94a

Please sign in to comment.