@authhero/kysely-adapter 11.5.4 → 11.6.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.
@@ -606,6 +606,16 @@ declare const sqlRolePermissionSchema: z.ZodObject<{
606
606
  created_at: z.ZodString;
607
607
  tenant_id: z.ZodString;
608
608
  }, z.core.$strip>;
609
+ declare const sqlGrantSchema: z.ZodObject<{
610
+ id: z.ZodString;
611
+ tenant_id: z.ZodString;
612
+ user_id: z.ZodString;
613
+ client_id: z.ZodString;
614
+ audience: z.ZodString;
615
+ scope: z.ZodString;
616
+ created_at: z.ZodString;
617
+ updated_at: z.ZodString;
618
+ }, z.core.$strip>;
609
619
  declare const sqlUserPermissionSchema: z.ZodObject<{
610
620
  user_id: z.ZodString;
611
621
  resource_server_identifier: z.ZodString;
@@ -830,6 +840,7 @@ interface Database {
830
840
  themes: z.infer<typeof sqlThemeSchema>;
831
841
  resource_servers: z.infer<typeof sqlResourceServerSchema>;
832
842
  role_permissions: z.infer<typeof sqlRolePermissionSchema>;
843
+ grants: z.infer<typeof sqlGrantSchema>;
833
844
  user_permissions: z.infer<typeof sqlUserPermissionSchema>;
834
845
  user_roles: z.infer<typeof sqlUserRoleSchema>;
835
846
  roles: z.infer<typeof sqlRoleSchema>;