@authhero/kysely-adapter 0.7.8 → 0.7.10

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.
@@ -1057,6 +1057,7 @@ export type CodeType = z.infer<typeof codeTypeSchema>;
1057
1057
  declare const codeInsertSchema: z.ZodObject<{
1058
1058
  code_id: z.ZodString;
1059
1059
  login_id: z.ZodString;
1060
+ connection_id: z.ZodOptional<z.ZodString>;
1060
1061
  code_type: z.ZodEnum<[
1061
1062
  "password_reset",
1062
1063
  "email_verification",
@@ -1072,12 +1073,14 @@ declare const codeInsertSchema: z.ZodObject<{
1072
1073
  login_id: string;
1073
1074
  code_type: "password_reset" | "email_verification" | "otp" | "oauth2" | "oauth2_state" | "ticket";
1074
1075
  expires_at: string;
1076
+ connection_id?: string | undefined;
1075
1077
  used_at?: string | undefined;
1076
1078
  }, {
1077
1079
  code_id: string;
1078
1080
  login_id: string;
1079
1081
  code_type: "password_reset" | "email_verification" | "otp" | "oauth2" | "oauth2_state" | "ticket";
1080
1082
  expires_at: string;
1083
+ connection_id?: string | undefined;
1081
1084
  used_at?: string | undefined;
1082
1085
  }>;
1083
1086
  export type CodeInsert = z.infer<typeof codeInsertSchema>;
@@ -1085,6 +1088,7 @@ declare const codeSchema: z.ZodObject<{
1085
1088
  created_at: z.ZodString;
1086
1089
  code_id: z.ZodString;
1087
1090
  login_id: z.ZodString;
1091
+ connection_id: z.ZodOptional<z.ZodString>;
1088
1092
  code_type: z.ZodEnum<[
1089
1093
  "password_reset",
1090
1094
  "email_verification",
@@ -1101,6 +1105,7 @@ declare const codeSchema: z.ZodObject<{
1101
1105
  login_id: string;
1102
1106
  code_type: "password_reset" | "email_verification" | "otp" | "oauth2" | "oauth2_state" | "ticket";
1103
1107
  expires_at: string;
1108
+ connection_id?: string | undefined;
1104
1109
  used_at?: string | undefined;
1105
1110
  }, {
1106
1111
  created_at: string;
@@ -1108,6 +1113,7 @@ declare const codeSchema: z.ZodObject<{
1108
1113
  login_id: string;
1109
1114
  code_type: "password_reset" | "email_verification" | "otp" | "oauth2" | "oauth2_state" | "ticket";
1110
1115
  expires_at: string;
1116
+ connection_id?: string | undefined;
1111
1117
  used_at?: string | undefined;
1112
1118
  }>;
1113
1119
  export type Code = z.infer<typeof codeSchema>;
@@ -1595,11 +1601,11 @@ declare const logSchema: z.ZodObject<{
1595
1601
  audience?: string | undefined;
1596
1602
  client_id?: string | undefined;
1597
1603
  scope?: string[] | undefined;
1604
+ connection_id?: string | undefined;
1598
1605
  log_id?: string | undefined;
1599
1606
  _id?: string | undefined;
1600
1607
  details?: any;
1601
1608
  user_name?: string | undefined;
1602
- connection_id?: string | undefined;
1603
1609
  client_name?: string | undefined;
1604
1610
  strategy?: string | undefined;
1605
1611
  strategy_type?: string | undefined;
@@ -1623,11 +1629,11 @@ declare const logSchema: z.ZodObject<{
1623
1629
  audience?: string | undefined;
1624
1630
  client_id?: string | undefined;
1625
1631
  scope?: string[] | undefined;
1632
+ connection_id?: string | undefined;
1626
1633
  log_id?: string | undefined;
1627
1634
  _id?: string | undefined;
1628
1635
  details?: any;
1629
1636
  user_name?: string | undefined;
1630
- connection_id?: string | undefined;
1631
1637
  client_name?: string | undefined;
1632
1638
  strategy?: string | undefined;
1633
1639
  strategy_type?: string | undefined;