@authhero/kysely-adapter 12.4.2 → 12.5.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.
@@ -238,7 +238,10 @@ declare const sqlSessionSchema: z.ZodObject<{
238
238
  }, z.core.$strip>;
239
239
  declare const sqlRefreshTokensSchema: z.ZodObject<{
240
240
  client_id: z.ZodString;
241
+ organization: z.ZodOptional<z.ZodString>;
242
+ session_id: z.ZodOptional<z.ZodString>;
241
243
  user_id: z.ZodString;
244
+ auth_connection: z.ZodOptional<z.ZodString>;
242
245
  id: z.ZodString;
243
246
  login_id: z.ZodString;
244
247
  token_lookup: z.ZodOptional<z.ZodString>;
@@ -249,6 +252,8 @@ declare const sqlRefreshTokensSchema: z.ZodObject<{
249
252
  device: z.ZodString;
250
253
  resource_servers: z.ZodString;
251
254
  rotating: z.ZodNumber;
255
+ auth_strategy_strategy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
256
+ auth_strategy_strategy_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
252
257
  created_at_ts: z.ZodNumber;
253
258
  expires_at_ts: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
254
259
  idle_expires_at_ts: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;