@authhero/kysely-adapter 11.10.2 → 11.11.0

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.
@@ -856,6 +856,15 @@ interface Database {
856
856
  prompt_settings: z.infer<typeof sqlPromptSettingSchema>;
857
857
  refresh_tokens: z.infer<typeof sqlRefreshTokensSchema>;
858
858
  users: z.infer<typeof sqlUserSchema>;
859
+ user_activity: {
860
+ tenant_id: string;
861
+ user_id: string;
862
+ last_login: string | null;
863
+ last_ip: string | null;
864
+ login_count: number;
865
+ failed_logins: string | null;
866
+ last_password_reset: string | null;
867
+ };
859
868
  sessions: z.infer<typeof sqlSessionSchema>;
860
869
  tenants: z.infer<typeof sqlTenantSchema>;
861
870
  themes: z.infer<typeof sqlThemeSchema>;