@authhero/kysely-adapter 10.127.0 → 10.128.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 +27 -15
- package/dist/kysely-adapter.d.ts +3 -0
- package/dist/kysely-adapter.mjs +1989 -1770
- package/package.json +1 -1
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -19778,6 +19778,7 @@ declare const sqlLoginSchema: z.ZodObject<{
|
|
|
19778
19778
|
auth_strategy_strategy: z.ZodOptional<z.ZodString>;
|
|
19779
19779
|
auth_strategy_strategy_type: z.ZodOptional<z.ZodString>;
|
|
19780
19780
|
authenticated_at: z.ZodOptional<z.ZodString>;
|
|
19781
|
+
auth_params: z.ZodOptional<z.ZodString>;
|
|
19781
19782
|
created_at_ts: z.ZodNumber;
|
|
19782
19783
|
updated_at_ts: z.ZodNumber;
|
|
19783
19784
|
expires_at_ts: z.ZodNumber;
|
|
@@ -19794,6 +19795,7 @@ declare const sqlLoginSchema: z.ZodObject<{
|
|
|
19794
19795
|
auth_strategy_strategy?: unknown;
|
|
19795
19796
|
auth_strategy_strategy_type?: unknown;
|
|
19796
19797
|
authenticated_at?: unknown;
|
|
19798
|
+
auth_params?: unknown;
|
|
19797
19799
|
created_at_ts?: unknown;
|
|
19798
19800
|
updated_at_ts?: unknown;
|
|
19799
19801
|
expires_at_ts?: unknown;
|
|
@@ -19810,6 +19812,7 @@ declare const sqlLoginSchema: z.ZodObject<{
|
|
|
19810
19812
|
auth_strategy_strategy?: unknown;
|
|
19811
19813
|
auth_strategy_strategy_type?: unknown;
|
|
19812
19814
|
authenticated_at?: unknown;
|
|
19815
|
+
auth_params?: unknown;
|
|
19813
19816
|
created_at_ts?: unknown;
|
|
19814
19817
|
updated_at_ts?: unknown;
|
|
19815
19818
|
expires_at_ts?: unknown;
|