Select the types of activity you want to include in your feed.
1export interface IdentityProvider<TUser = unknown> { 2 authenticate(credentials: unknown | Record<string, string>): Promise<TUser>; 3}