@authhero/kysely-adapter 10.15.0 → 10.16.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.
@@ -3341,6 +3341,7 @@ declare const loginSessionInsertSchema: z.ZodObject<{
3341
3341
  useragent: z.ZodOptional<z.ZodString>;
3342
3342
  session_id: z.ZodOptional<z.ZodString>;
3343
3343
  authorization_url: z.ZodOptional<z.ZodString>;
3344
+ login_completed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3344
3345
  }, "strip", z.ZodTypeAny, {
3345
3346
  expires_at: string;
3346
3347
  csrf_token: string;
@@ -3362,6 +3363,7 @@ declare const loginSessionInsertSchema: z.ZodObject<{
3362
3363
  ui_locales?: string | undefined;
3363
3364
  vendor_id?: string | undefined;
3364
3365
  };
3366
+ login_completed: boolean;
3365
3367
  auth0Client?: string | undefined;
3366
3368
  deleted_at?: string | undefined;
3367
3369
  ip?: string | undefined;
@@ -3395,8 +3397,9 @@ declare const loginSessionInsertSchema: z.ZodObject<{
3395
3397
  useragent?: string | undefined;
3396
3398
  session_id?: string | undefined;
3397
3399
  authorization_url?: string | undefined;
3400
+ login_completed?: boolean | undefined;
3398
3401
  }>;
3399
- export type LoginSessionInsert = z.infer<typeof loginSessionInsertSchema>;
3402
+ export type LoginSessionInsert = z.input<typeof loginSessionInsertSchema>;
3400
3403
  declare const loginSessionSchema: z.ZodObject<{
3401
3404
  id: z.ZodString;
3402
3405
  created_at: z.ZodString;
@@ -3461,6 +3464,7 @@ declare const loginSessionSchema: z.ZodObject<{
3461
3464
  useragent: z.ZodOptional<z.ZodString>;
3462
3465
  session_id: z.ZodOptional<z.ZodString>;
3463
3466
  authorization_url: z.ZodOptional<z.ZodString>;
3467
+ login_completed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3464
3468
  }, "strip", z.ZodTypeAny, {
3465
3469
  created_at: string;
3466
3470
  updated_at: string;
@@ -3485,6 +3489,7 @@ declare const loginSessionSchema: z.ZodObject<{
3485
3489
  ui_locales?: string | undefined;
3486
3490
  vendor_id?: string | undefined;
3487
3491
  };
3492
+ login_completed: boolean;
3488
3493
  auth0Client?: string | undefined;
3489
3494
  deleted_at?: string | undefined;
3490
3495
  ip?: string | undefined;
@@ -3521,6 +3526,7 @@ declare const loginSessionSchema: z.ZodObject<{
3521
3526
  useragent?: string | undefined;
3522
3527
  session_id?: string | undefined;
3523
3528
  authorization_url?: string | undefined;
3529
+ login_completed?: boolean | undefined;
3524
3530
  }>;
3525
3531
  export type LoginSession = z.infer<typeof loginSessionSchema>;
3526
3532
  declare const LogType: z.ZodEnum<[
@@ -5298,12 +5304,15 @@ declare const sqlLoginSchema: z.ZodObject<{
5298
5304
  [x: string]: any;
5299
5305
  } & {
5300
5306
  tenant_id: z.ZodString;
5307
+ login_completed: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
5301
5308
  }, "strip", z.ZodTypeAny, {
5302
5309
  [x: string]: any;
5303
5310
  tenant_id?: unknown;
5311
+ login_completed?: unknown;
5304
5312
  }, {
5305
5313
  [x: string]: any;
5306
5314
  tenant_id?: unknown;
5315
+ login_completed?: unknown;
5307
5316
  }>;
5308
5317
  declare const sqlConnectionSchema: z.ZodObject<{
5309
5318
  [x: string]: any;