@authhero/kysely-adapter 10.16.0 → 10.17.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 +9 -0
- package/dist/kysely-adapter.mjs +172 -156
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -3733,6 +3733,7 @@ declare const sessionInsertSchema: z.ZodObject<{
|
|
|
3733
3733
|
used_at: z.ZodOptional<z.ZodString>;
|
|
3734
3734
|
user_id: z.ZodString;
|
|
3735
3735
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
3736
|
+
login_session_id: z.ZodString;
|
|
3736
3737
|
idle_expires_at: z.ZodOptional<z.ZodString>;
|
|
3737
3738
|
device: z.ZodObject<{
|
|
3738
3739
|
initial_user_agent: z.ZodString;
|
|
@@ -3760,6 +3761,7 @@ declare const sessionInsertSchema: z.ZodObject<{
|
|
|
3760
3761
|
}, "strip", z.ZodTypeAny, {
|
|
3761
3762
|
user_id: string;
|
|
3762
3763
|
id: string;
|
|
3764
|
+
login_session_id: string;
|
|
3763
3765
|
device: {
|
|
3764
3766
|
last_ip: string;
|
|
3765
3767
|
initial_user_agent: string;
|
|
@@ -3776,6 +3778,7 @@ declare const sessionInsertSchema: z.ZodObject<{
|
|
|
3776
3778
|
}, {
|
|
3777
3779
|
user_id: string;
|
|
3778
3780
|
id: string;
|
|
3781
|
+
login_session_id: string;
|
|
3779
3782
|
device: {
|
|
3780
3783
|
last_ip: string;
|
|
3781
3784
|
initial_user_agent: string;
|
|
@@ -3797,6 +3800,7 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
3797
3800
|
used_at: z.ZodOptional<z.ZodString>;
|
|
3798
3801
|
user_id: z.ZodString;
|
|
3799
3802
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
3803
|
+
login_session_id: z.ZodString;
|
|
3800
3804
|
idle_expires_at: z.ZodOptional<z.ZodString>;
|
|
3801
3805
|
device: z.ZodObject<{
|
|
3802
3806
|
initial_user_agent: z.ZodString;
|
|
@@ -3830,6 +3834,7 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
3830
3834
|
updated_at: string;
|
|
3831
3835
|
user_id: string;
|
|
3832
3836
|
id: string;
|
|
3837
|
+
login_session_id: string;
|
|
3833
3838
|
device: {
|
|
3834
3839
|
last_ip: string;
|
|
3835
3840
|
initial_user_agent: string;
|
|
@@ -3850,6 +3855,7 @@ declare const sessionSchema: z.ZodObject<{
|
|
|
3850
3855
|
updated_at: string;
|
|
3851
3856
|
user_id: string;
|
|
3852
3857
|
id: string;
|
|
3858
|
+
login_session_id: string;
|
|
3853
3859
|
device: {
|
|
3854
3860
|
last_ip: string;
|
|
3855
3861
|
initial_user_agent: string;
|
|
@@ -5669,6 +5675,7 @@ declare const sqlSessionSchema: z.ZodObject<{
|
|
|
5669
5675
|
used_at: z.ZodOptional<z.ZodString>;
|
|
5670
5676
|
user_id: z.ZodString;
|
|
5671
5677
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
5678
|
+
login_session_id: z.ZodString;
|
|
5672
5679
|
idle_expires_at: z.ZodOptional<z.ZodString>;
|
|
5673
5680
|
created_at: z.ZodString;
|
|
5674
5681
|
updated_at: z.ZodString;
|
|
@@ -5682,6 +5689,7 @@ declare const sqlSessionSchema: z.ZodObject<{
|
|
|
5682
5689
|
user_id: string;
|
|
5683
5690
|
device: string;
|
|
5684
5691
|
clients: string;
|
|
5692
|
+
login_session_id: string;
|
|
5685
5693
|
authenticated_at: string;
|
|
5686
5694
|
last_interaction_at: string;
|
|
5687
5695
|
revoked_at?: string | undefined;
|
|
@@ -5696,6 +5704,7 @@ declare const sqlSessionSchema: z.ZodObject<{
|
|
|
5696
5704
|
user_id: string;
|
|
5697
5705
|
device: string;
|
|
5698
5706
|
clients: string;
|
|
5707
|
+
login_session_id: string;
|
|
5699
5708
|
authenticated_at: string;
|
|
5700
5709
|
last_interaction_at: string;
|
|
5701
5710
|
revoked_at?: string | undefined;
|