@authhero/kysely-adapter 10.97.0 → 10.98.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 +13 -13
- package/dist/kysely-adapter.d.ts +50 -0
- package/dist/kysely-adapter.mjs +1575 -1566
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -723,6 +723,11 @@ declare const userSchema: z.ZodObject<{
|
|
|
723
723
|
user_id: z.ZodString;
|
|
724
724
|
provider: z.ZodString;
|
|
725
725
|
isSocial: z.ZodBoolean;
|
|
726
|
+
email: z.ZodOptional<z.ZodString>;
|
|
727
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
729
|
+
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
730
|
+
username: z.ZodOptional<z.ZodString>;
|
|
726
731
|
access_token: z.ZodOptional<z.ZodString>;
|
|
727
732
|
access_token_secret: z.ZodOptional<z.ZodString>;
|
|
728
733
|
refresh_token: z.ZodOptional<z.ZodString>;
|
|
@@ -759,6 +764,11 @@ declare const userSchema: z.ZodObject<{
|
|
|
759
764
|
connection: string;
|
|
760
765
|
provider: string;
|
|
761
766
|
isSocial: boolean;
|
|
767
|
+
email?: string | undefined;
|
|
768
|
+
email_verified?: boolean | undefined;
|
|
769
|
+
username?: string | undefined;
|
|
770
|
+
phone_number?: string | undefined;
|
|
771
|
+
phone_verified?: boolean | undefined;
|
|
762
772
|
access_token?: string | undefined;
|
|
763
773
|
access_token_secret?: string | undefined;
|
|
764
774
|
refresh_token?: string | undefined;
|
|
@@ -777,6 +787,11 @@ declare const userSchema: z.ZodObject<{
|
|
|
777
787
|
connection: string;
|
|
778
788
|
provider: string;
|
|
779
789
|
isSocial: boolean;
|
|
790
|
+
email?: string | undefined;
|
|
791
|
+
email_verified?: boolean | undefined;
|
|
792
|
+
username?: string | undefined;
|
|
793
|
+
phone_number?: string | undefined;
|
|
794
|
+
phone_verified?: boolean | undefined;
|
|
780
795
|
access_token?: string | undefined;
|
|
781
796
|
access_token_secret?: string | undefined;
|
|
782
797
|
refresh_token?: string | undefined;
|
|
@@ -886,6 +901,11 @@ declare const userSchema: z.ZodObject<{
|
|
|
886
901
|
connection: string;
|
|
887
902
|
provider: string;
|
|
888
903
|
isSocial: boolean;
|
|
904
|
+
email?: string | undefined;
|
|
905
|
+
email_verified?: boolean | undefined;
|
|
906
|
+
username?: string | undefined;
|
|
907
|
+
phone_number?: string | undefined;
|
|
908
|
+
phone_verified?: boolean | undefined;
|
|
889
909
|
access_token?: string | undefined;
|
|
890
910
|
access_token_secret?: string | undefined;
|
|
891
911
|
refresh_token?: string | undefined;
|
|
@@ -946,6 +966,11 @@ declare const userSchema: z.ZodObject<{
|
|
|
946
966
|
connection: string;
|
|
947
967
|
provider: string;
|
|
948
968
|
isSocial: boolean;
|
|
969
|
+
email?: string | undefined;
|
|
970
|
+
email_verified?: boolean | undefined;
|
|
971
|
+
username?: string | undefined;
|
|
972
|
+
phone_number?: string | undefined;
|
|
973
|
+
phone_verified?: boolean | undefined;
|
|
949
974
|
access_token?: string | undefined;
|
|
950
975
|
access_token_secret?: string | undefined;
|
|
951
976
|
refresh_token?: string | undefined;
|
|
@@ -16263,6 +16288,11 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
16263
16288
|
user_id: z.ZodString;
|
|
16264
16289
|
provider: z.ZodString;
|
|
16265
16290
|
isSocial: z.ZodBoolean;
|
|
16291
|
+
email: z.ZodOptional<z.ZodString>;
|
|
16292
|
+
email_verified: z.ZodOptional<z.ZodBoolean>;
|
|
16293
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
16294
|
+
phone_verified: z.ZodOptional<z.ZodBoolean>;
|
|
16295
|
+
username: z.ZodOptional<z.ZodString>;
|
|
16266
16296
|
access_token: z.ZodOptional<z.ZodString>;
|
|
16267
16297
|
access_token_secret: z.ZodOptional<z.ZodString>;
|
|
16268
16298
|
refresh_token: z.ZodOptional<z.ZodString>;
|
|
@@ -16299,6 +16329,11 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
16299
16329
|
connection: string;
|
|
16300
16330
|
provider: string;
|
|
16301
16331
|
isSocial: boolean;
|
|
16332
|
+
email?: string | undefined;
|
|
16333
|
+
email_verified?: boolean | undefined;
|
|
16334
|
+
username?: string | undefined;
|
|
16335
|
+
phone_number?: string | undefined;
|
|
16336
|
+
phone_verified?: boolean | undefined;
|
|
16302
16337
|
access_token?: string | undefined;
|
|
16303
16338
|
access_token_secret?: string | undefined;
|
|
16304
16339
|
refresh_token?: string | undefined;
|
|
@@ -16317,6 +16352,11 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
16317
16352
|
connection: string;
|
|
16318
16353
|
provider: string;
|
|
16319
16354
|
isSocial: boolean;
|
|
16355
|
+
email?: string | undefined;
|
|
16356
|
+
email_verified?: boolean | undefined;
|
|
16357
|
+
username?: string | undefined;
|
|
16358
|
+
phone_number?: string | undefined;
|
|
16359
|
+
phone_verified?: boolean | undefined;
|
|
16320
16360
|
access_token?: string | undefined;
|
|
16321
16361
|
access_token_secret?: string | undefined;
|
|
16322
16362
|
refresh_token?: string | undefined;
|
|
@@ -16375,6 +16415,11 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
16375
16415
|
connection: string;
|
|
16376
16416
|
provider: string;
|
|
16377
16417
|
isSocial: boolean;
|
|
16418
|
+
email?: string | undefined;
|
|
16419
|
+
email_verified?: boolean | undefined;
|
|
16420
|
+
username?: string | undefined;
|
|
16421
|
+
phone_number?: string | undefined;
|
|
16422
|
+
phone_verified?: boolean | undefined;
|
|
16378
16423
|
access_token?: string | undefined;
|
|
16379
16424
|
access_token_secret?: string | undefined;
|
|
16380
16425
|
refresh_token?: string | undefined;
|
|
@@ -16429,6 +16474,11 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
16429
16474
|
connection: string;
|
|
16430
16475
|
provider: string;
|
|
16431
16476
|
isSocial: boolean;
|
|
16477
|
+
email?: string | undefined;
|
|
16478
|
+
email_verified?: boolean | undefined;
|
|
16479
|
+
username?: string | undefined;
|
|
16480
|
+
phone_number?: string | undefined;
|
|
16481
|
+
phone_verified?: boolean | undefined;
|
|
16432
16482
|
access_token?: string | undefined;
|
|
16433
16483
|
access_token_secret?: string | undefined;
|
|
16434
16484
|
refresh_token?: string | undefined;
|