@authhero/kysely-adapter 0.23.0 → 0.24.1
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.
- package/dist/kysely-adapter.cjs +1 -1
- package/dist/kysely-adapter.d.ts +0 -6
- package/dist/kysely-adapter.mjs +988 -1020
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1102,7 +1102,6 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1102
1102
|
"oauth2_state",
|
|
1103
1103
|
"ticket"
|
|
1104
1104
|
]>;
|
|
1105
|
-
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1106
1105
|
expires_at: z.ZodString;
|
|
1107
1106
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1108
1107
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1113,7 +1112,6 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1113
1112
|
expires_at: string;
|
|
1114
1113
|
user_id?: string | undefined;
|
|
1115
1114
|
connection_id?: string | undefined;
|
|
1116
|
-
code_verifier?: string | undefined;
|
|
1117
1115
|
used_at?: string | undefined;
|
|
1118
1116
|
}, {
|
|
1119
1117
|
code_id: string;
|
|
@@ -1122,7 +1120,6 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1122
1120
|
expires_at: string;
|
|
1123
1121
|
user_id?: string | undefined;
|
|
1124
1122
|
connection_id?: string | undefined;
|
|
1125
|
-
code_verifier?: string | undefined;
|
|
1126
1123
|
used_at?: string | undefined;
|
|
1127
1124
|
}>;
|
|
1128
1125
|
export type CodeInsert = z.infer<typeof codeInsertSchema>;
|
|
@@ -1139,7 +1136,6 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1139
1136
|
"oauth2_state",
|
|
1140
1137
|
"ticket"
|
|
1141
1138
|
]>;
|
|
1142
|
-
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1143
1139
|
expires_at: z.ZodString;
|
|
1144
1140
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1145
1141
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1151,7 +1147,6 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1151
1147
|
expires_at: string;
|
|
1152
1148
|
user_id?: string | undefined;
|
|
1153
1149
|
connection_id?: string | undefined;
|
|
1154
|
-
code_verifier?: string | undefined;
|
|
1155
1150
|
used_at?: string | undefined;
|
|
1156
1151
|
}, {
|
|
1157
1152
|
created_at: string;
|
|
@@ -1161,7 +1156,6 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1161
1156
|
expires_at: string;
|
|
1162
1157
|
user_id?: string | undefined;
|
|
1163
1158
|
connection_id?: string | undefined;
|
|
1164
|
-
code_verifier?: string | undefined;
|
|
1165
1159
|
used_at?: string | undefined;
|
|
1166
1160
|
}>;
|
|
1167
1161
|
export type Code = z.infer<typeof codeSchema>;
|