@pear-protocol/symmio-client 0.3.10 → 0.3.11

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.
@@ -46,9 +46,6 @@ declare function useSymmAuth(params?: UseSymmAuthParams): {
46
46
  signIn: (accountAddress?: Address, options?: {
47
47
  force?: boolean;
48
48
  }) => Promise<string | null>;
49
- refreshAuth: (accountAddress?: Address, options?: {
50
- force?: boolean;
51
- }) => Promise<string | null>;
52
49
  clear: () => void;
53
50
  };
54
51
 
@@ -46,9 +46,6 @@ declare function useSymmAuth(params?: UseSymmAuthParams): {
46
46
  signIn: (accountAddress?: Address, options?: {
47
47
  force?: boolean;
48
48
  }) => Promise<string | null>;
49
- refreshAuth: (accountAddress?: Address, options?: {
50
- force?: boolean;
51
- }) => Promise<string | null>;
52
49
  clear: () => void;
53
50
  };
54
51
 
@@ -1132,7 +1132,6 @@ function useSymmAuth(params) {
1132
1132
  isAuthenticated: !!token,
1133
1133
  error,
1134
1134
  signIn,
1135
- refreshAuth: signIn,
1136
1135
  clear: clearAuth
1137
1136
  };
1138
1137
  }