@authhero/kysely-adapter 12.0.0 → 12.2.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.
@@ -56,6 +56,7 @@ declare const sqlPromptSettingSchema: z.ZodObject<{
56
56
  identifier_first: z.ZodNumber;
57
57
  password_first: z.ZodNumber;
58
58
  webauthn_platform_first_factor: z.ZodNumber;
59
+ show_last_used_connection: z.ZodNullable<z.ZodNumber>;
59
60
  tenant_id: z.ZodString;
60
61
  }, z.core.$strip>;
61
62
  declare const sqlPasswordSchema: z.ZodObject<{
@@ -124,6 +125,7 @@ declare const sqlUserSchema: z.ZodObject<{
124
125
  email_verified: z.ZodNumber;
125
126
  phone_verified: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
126
127
  is_social: z.ZodNumber;
128
+ blocked: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
127
129
  app_metadata: z.ZodString;
128
130
  user_metadata: z.ZodString;
129
131
  address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -939,6 +941,31 @@ interface Database {
939
941
  created_at: string;
940
942
  updated_at: string;
941
943
  };
944
+ scim_configurations: {
945
+ connection_id: string;
946
+ tenant_id: string;
947
+ user_id_attribute: string;
948
+ mapping: string;
949
+ created_at: string;
950
+ updated_at: string;
951
+ };
952
+ scim_tokens: {
953
+ token_id: string;
954
+ tenant_id: string;
955
+ connection_id: string;
956
+ token_hash: string;
957
+ scopes: string;
958
+ valid_until: string | null;
959
+ created_at: string;
960
+ last_used_at: string | null;
961
+ };
962
+ scim_external_ids: {
963
+ tenant_id: string;
964
+ connection_id: string;
965
+ external_id: string;
966
+ user_id: string;
967
+ created_at: string;
968
+ };
942
969
  tenant_operations: {
943
970
  id: string;
944
971
  tenant_id: string | null;