@authhero/kysely-adapter 0.20.1 → 0.21.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.
- package/dist/kysely-adapter.cjs +1 -1
- package/dist/kysely-adapter.d.ts +6 -0
- package/dist/kysely-adapter.mjs +123 -110
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1113,6 +1113,7 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1113
1113
|
"oauth2_state",
|
|
1114
1114
|
"ticket"
|
|
1115
1115
|
]>;
|
|
1116
|
+
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1116
1117
|
expires_at: z.ZodString;
|
|
1117
1118
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1118
1119
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1123,6 +1124,7 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1123
1124
|
expires_at: string;
|
|
1124
1125
|
user_id?: string | undefined;
|
|
1125
1126
|
connection_id?: string | undefined;
|
|
1127
|
+
code_verifier?: string | undefined;
|
|
1126
1128
|
used_at?: string | undefined;
|
|
1127
1129
|
}, {
|
|
1128
1130
|
code_id: string;
|
|
@@ -1131,6 +1133,7 @@ declare const codeInsertSchema: z.ZodObject<{
|
|
|
1131
1133
|
expires_at: string;
|
|
1132
1134
|
user_id?: string | undefined;
|
|
1133
1135
|
connection_id?: string | undefined;
|
|
1136
|
+
code_verifier?: string | undefined;
|
|
1134
1137
|
used_at?: string | undefined;
|
|
1135
1138
|
}>;
|
|
1136
1139
|
export type CodeInsert = z.infer<typeof codeInsertSchema>;
|
|
@@ -1147,6 +1150,7 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1147
1150
|
"oauth2_state",
|
|
1148
1151
|
"ticket"
|
|
1149
1152
|
]>;
|
|
1153
|
+
code_verifier: z.ZodOptional<z.ZodString>;
|
|
1150
1154
|
expires_at: z.ZodString;
|
|
1151
1155
|
used_at: z.ZodOptional<z.ZodString>;
|
|
1152
1156
|
user_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1158,6 +1162,7 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1158
1162
|
expires_at: string;
|
|
1159
1163
|
user_id?: string | undefined;
|
|
1160
1164
|
connection_id?: string | undefined;
|
|
1165
|
+
code_verifier?: string | undefined;
|
|
1161
1166
|
used_at?: string | undefined;
|
|
1162
1167
|
}, {
|
|
1163
1168
|
created_at: string;
|
|
@@ -1167,6 +1172,7 @@ declare const codeSchema: z.ZodObject<{
|
|
|
1167
1172
|
expires_at: string;
|
|
1168
1173
|
user_id?: string | undefined;
|
|
1169
1174
|
connection_id?: string | undefined;
|
|
1175
|
+
code_verifier?: string | undefined;
|
|
1170
1176
|
used_at?: string | undefined;
|
|
1171
1177
|
}>;
|
|
1172
1178
|
export type Code = z.infer<typeof codeSchema>;
|