@authhero/kysely-adapter 0.26.0 → 0.27.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.
@@ -30,12 +30,11 @@ declare const userInsertSchema: z.ZodObject<z.objectUtil.extendShape<{
30
30
  user_id: z.ZodOptional<z.ZodString>;
31
31
  provider: z.ZodDefault<z.ZodString>;
32
32
  connection: z.ZodDefault<z.ZodString>;
33
- is_social: z.ZodBoolean;
33
+ is_social: z.ZodOptional<z.ZodBoolean>;
34
34
  }>, "strip", z.ZodTypeAny, {
35
35
  email_verified: boolean;
36
36
  connection: string;
37
37
  provider: string;
38
- is_social: boolean;
39
38
  email?: string | undefined;
40
39
  name?: string | undefined;
41
40
  username?: string | undefined;
@@ -52,8 +51,8 @@ declare const userInsertSchema: z.ZodObject<z.objectUtil.extendShape<{
52
51
  verify_email?: boolean | undefined;
53
52
  last_ip?: string | undefined;
54
53
  last_login?: string | undefined;
54
+ is_social?: boolean | undefined;
55
55
  }, {
56
- is_social: boolean;
57
56
  email?: string | undefined;
58
57
  email_verified?: boolean | undefined;
59
58
  name?: string | undefined;
@@ -73,10 +72,12 @@ declare const userInsertSchema: z.ZodObject<z.objectUtil.extendShape<{
73
72
  verify_email?: boolean | undefined;
74
73
  last_ip?: string | undefined;
75
74
  last_login?: string | undefined;
75
+ is_social?: boolean | undefined;
76
76
  }>;
77
77
  export type UserInsert = z.infer<typeof userInsertSchema>;
78
78
  declare const userSchema: z.ZodObject<{
79
79
  user_id: z.ZodString;
80
+ is_social: z.ZodBoolean;
80
81
  email: z.ZodString;
81
82
  login_count: z.ZodNumber;
82
83
  identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -171,7 +172,6 @@ declare const userSchema: z.ZodObject<{
171
172
  last_login: z.ZodOptional<z.ZodString>;
172
173
  provider: z.ZodDefault<z.ZodString>;
173
174
  connection: z.ZodDefault<z.ZodString>;
174
- is_social: z.ZodBoolean;
175
175
  }, "strip", z.ZodTypeAny, {
176
176
  created_at: string;
177
177
  updated_at: string;