@privy-io/react-auth 1.35.0-beta.2 → 1.35.0-beta.4

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.
package/dist/index.d.ts CHANGED
@@ -803,7 +803,7 @@ type PrivyClientConfig = {
803
803
  * }}
804
804
  * />
805
805
  */
806
- getCustomAccessToken?: () => Promise<string | undefined>;
806
+ getCustomAccessToken: () => Promise<string | undefined>;
807
807
  /**
808
808
  * Custom auth providers loading state
809
809
  *
@@ -820,22 +820,6 @@ type PrivyClientConfig = {
820
820
  * />
821
821
  */
822
822
  isLoading: boolean;
823
- /**
824
- * Custom auth providers authenticated state
825
- *
826
- * @example
827
- * const {user} = useAuth();
828
- *
829
- * <PrivyProvider
830
- * {...props}
831
- * config={{
832
- * customAuth: {
833
- * isAuthenticated: Boolean(user),
834
- * },
835
- * }}
836
- * />
837
- */
838
- isAuthenticated: boolean;
839
823
  };
840
824
  /** All legal configuration */
841
825
  legal?: {