@authhero/kysely-adapter 10.59.0 → 10.60.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 +3 -3
- package/dist/kysely-adapter.d.ts +19 -57
- package/dist/kysely-adapter.mjs +684 -688
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -28,13 +28,12 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
28
28
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
29
29
|
last_login: z.ZodOptional<z.ZodString>;
|
|
30
30
|
user_id: z.ZodOptional<z.ZodString>;
|
|
31
|
-
provider: z.
|
|
32
|
-
connection: z.
|
|
31
|
+
provider: z.ZodOptional<z.ZodString>;
|
|
32
|
+
connection: z.ZodString;
|
|
33
33
|
is_social: z.ZodOptional<z.ZodBoolean>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
35
|
email_verified: boolean;
|
|
36
36
|
connection: string;
|
|
37
|
-
provider: string;
|
|
38
37
|
email?: string | undefined;
|
|
39
38
|
name?: string | undefined;
|
|
40
39
|
username?: string | undefined;
|
|
@@ -42,6 +41,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
42
41
|
phone_number?: string | undefined;
|
|
43
42
|
family_name?: string | undefined;
|
|
44
43
|
user_id?: string | undefined;
|
|
44
|
+
provider?: string | undefined;
|
|
45
45
|
profileData?: string | undefined;
|
|
46
46
|
nickname?: string | undefined;
|
|
47
47
|
picture?: string | undefined;
|
|
@@ -54,6 +54,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
54
54
|
last_login?: string | undefined;
|
|
55
55
|
is_social?: boolean | undefined;
|
|
56
56
|
}, {
|
|
57
|
+
connection: string;
|
|
57
58
|
email?: string | undefined;
|
|
58
59
|
email_verified?: boolean | undefined;
|
|
59
60
|
name?: string | undefined;
|
|
@@ -61,7 +62,6 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
61
62
|
given_name?: string | undefined;
|
|
62
63
|
phone_number?: string | undefined;
|
|
63
64
|
family_name?: string | undefined;
|
|
64
|
-
connection?: string | undefined;
|
|
65
65
|
user_id?: string | undefined;
|
|
66
66
|
provider?: string | undefined;
|
|
67
67
|
profileData?: string | undefined;
|
|
@@ -79,6 +79,7 @@ declare const userInsertSchema: z.ZodObject<{
|
|
|
79
79
|
export type UserInsert = z.infer<typeof userInsertSchema>;
|
|
80
80
|
declare const userSchema: z.ZodObject<{
|
|
81
81
|
user_id: z.ZodString;
|
|
82
|
+
provider: z.ZodString;
|
|
82
83
|
is_social: z.ZodBoolean;
|
|
83
84
|
email: z.ZodOptional<z.ZodString>;
|
|
84
85
|
login_count: z.ZodDefault<z.ZodNumber>;
|
|
@@ -173,8 +174,7 @@ declare const userSchema: z.ZodObject<{
|
|
|
173
174
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
174
175
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
175
176
|
last_login: z.ZodOptional<z.ZodString>;
|
|
176
|
-
|
|
177
|
-
connection: z.ZodDefault<z.ZodString>;
|
|
177
|
+
connection: z.ZodString;
|
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
|
179
179
|
created_at: string;
|
|
180
180
|
updated_at: string;
|
|
@@ -222,7 +222,9 @@ declare const userSchema: z.ZodObject<{
|
|
|
222
222
|
}, {
|
|
223
223
|
created_at: string;
|
|
224
224
|
updated_at: string;
|
|
225
|
+
connection: string;
|
|
225
226
|
user_id: string;
|
|
227
|
+
provider: string;
|
|
226
228
|
is_social: boolean;
|
|
227
229
|
email?: string | undefined;
|
|
228
230
|
email_verified?: boolean | undefined;
|
|
@@ -231,8 +233,6 @@ declare const userSchema: z.ZodObject<{
|
|
|
231
233
|
given_name?: string | undefined;
|
|
232
234
|
phone_number?: string | undefined;
|
|
233
235
|
family_name?: string | undefined;
|
|
234
|
-
connection?: string | undefined;
|
|
235
|
-
provider?: string | undefined;
|
|
236
236
|
profileData?: string | undefined;
|
|
237
237
|
nickname?: string | undefined;
|
|
238
238
|
picture?: string | undefined;
|
|
@@ -751,29 +751,29 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
751
751
|
end: z.ZodOptional<z.ZodString>;
|
|
752
752
|
angle_deg: z.ZodOptional<z.ZodNumber>;
|
|
753
753
|
}, "strip", z.ZodTypeAny, {
|
|
754
|
-
start?: string | undefined;
|
|
755
754
|
type?: string | undefined;
|
|
755
|
+
start?: string | undefined;
|
|
756
756
|
end?: string | undefined;
|
|
757
757
|
angle_deg?: number | undefined;
|
|
758
758
|
}, {
|
|
759
|
-
start?: string | undefined;
|
|
760
759
|
type?: string | undefined;
|
|
760
|
+
start?: string | undefined;
|
|
761
761
|
end?: string | undefined;
|
|
762
762
|
angle_deg?: number | undefined;
|
|
763
763
|
}>>;
|
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
|
765
765
|
primary: string;
|
|
766
766
|
page_background?: {
|
|
767
|
-
start?: string | undefined;
|
|
768
767
|
type?: string | undefined;
|
|
768
|
+
start?: string | undefined;
|
|
769
769
|
end?: string | undefined;
|
|
770
770
|
angle_deg?: number | undefined;
|
|
771
771
|
} | undefined;
|
|
772
772
|
}, {
|
|
773
773
|
primary: string;
|
|
774
774
|
page_background?: {
|
|
775
|
-
start?: string | undefined;
|
|
776
775
|
type?: string | undefined;
|
|
776
|
+
start?: string | undefined;
|
|
777
777
|
end?: string | undefined;
|
|
778
778
|
angle_deg?: number | undefined;
|
|
779
779
|
} | undefined;
|
|
@@ -792,8 +792,8 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
792
792
|
colors?: {
|
|
793
793
|
primary: string;
|
|
794
794
|
page_background?: {
|
|
795
|
-
start?: string | undefined;
|
|
796
795
|
type?: string | undefined;
|
|
796
|
+
start?: string | undefined;
|
|
797
797
|
end?: string | undefined;
|
|
798
798
|
angle_deg?: number | undefined;
|
|
799
799
|
} | undefined;
|
|
@@ -808,8 +808,8 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
808
808
|
colors?: {
|
|
809
809
|
primary: string;
|
|
810
810
|
page_background?: {
|
|
811
|
-
start?: string | undefined;
|
|
812
811
|
type?: string | undefined;
|
|
812
|
+
start?: string | undefined;
|
|
813
813
|
end?: string | undefined;
|
|
814
814
|
angle_deg?: number | undefined;
|
|
815
815
|
} | undefined;
|
|
@@ -4683,8 +4683,6 @@ declare const logInsertSchema: z.ZodObject<{
|
|
|
4683
4683
|
log_id: z.ZodOptional<z.ZodString>;
|
|
4684
4684
|
location_info: z.ZodOptional<z.ZodObject<{
|
|
4685
4685
|
country_code: z.ZodString;
|
|
4686
|
-
country_code3: z.ZodString;
|
|
4687
|
-
country_name: z.ZodString;
|
|
4688
4686
|
city_name: z.ZodString;
|
|
4689
4687
|
latitude: z.ZodString;
|
|
4690
4688
|
longitude: z.ZodString;
|
|
@@ -4692,8 +4690,6 @@ declare const logInsertSchema: z.ZodObject<{
|
|
|
4692
4690
|
continent_code: z.ZodString;
|
|
4693
4691
|
}, "strip", z.ZodTypeAny, {
|
|
4694
4692
|
country_code: string;
|
|
4695
|
-
country_code3: string;
|
|
4696
|
-
country_name: string;
|
|
4697
4693
|
city_name: string;
|
|
4698
4694
|
latitude: string;
|
|
4699
4695
|
longitude: string;
|
|
@@ -4701,8 +4697,6 @@ declare const logInsertSchema: z.ZodObject<{
|
|
|
4701
4697
|
continent_code: string;
|
|
4702
4698
|
}, {
|
|
4703
4699
|
country_code: string;
|
|
4704
|
-
country_code3: string;
|
|
4705
|
-
country_name: string;
|
|
4706
4700
|
city_name: string;
|
|
4707
4701
|
latitude: string;
|
|
4708
4702
|
longitude: string;
|
|
@@ -4738,8 +4732,6 @@ declare const logInsertSchema: z.ZodObject<{
|
|
|
4738
4732
|
log_id?: string | undefined;
|
|
4739
4733
|
location_info?: {
|
|
4740
4734
|
country_code: string;
|
|
4741
|
-
country_code3: string;
|
|
4742
|
-
country_name: string;
|
|
4743
4735
|
city_name: string;
|
|
4744
4736
|
latitude: string;
|
|
4745
4737
|
longitude: string;
|
|
@@ -4775,8 +4767,6 @@ declare const logInsertSchema: z.ZodObject<{
|
|
|
4775
4767
|
log_id?: string | undefined;
|
|
4776
4768
|
location_info?: {
|
|
4777
4769
|
country_code: string;
|
|
4778
|
-
country_code3: string;
|
|
4779
|
-
country_name: string;
|
|
4780
4770
|
city_name: string;
|
|
4781
4771
|
latitude: string;
|
|
4782
4772
|
longitude: string;
|
|
@@ -4830,8 +4820,6 @@ declare const logSchema: z.ZodObject<{
|
|
|
4830
4820
|
}>>;
|
|
4831
4821
|
location_info: z.ZodOptional<z.ZodObject<{
|
|
4832
4822
|
country_code: z.ZodString;
|
|
4833
|
-
country_code3: z.ZodString;
|
|
4834
|
-
country_name: z.ZodString;
|
|
4835
4823
|
city_name: z.ZodString;
|
|
4836
4824
|
latitude: z.ZodString;
|
|
4837
4825
|
longitude: z.ZodString;
|
|
@@ -4839,8 +4827,6 @@ declare const logSchema: z.ZodObject<{
|
|
|
4839
4827
|
continent_code: z.ZodString;
|
|
4840
4828
|
}, "strip", z.ZodTypeAny, {
|
|
4841
4829
|
country_code: string;
|
|
4842
|
-
country_code3: string;
|
|
4843
|
-
country_name: string;
|
|
4844
4830
|
city_name: string;
|
|
4845
4831
|
latitude: string;
|
|
4846
4832
|
longitude: string;
|
|
@@ -4848,8 +4834,6 @@ declare const logSchema: z.ZodObject<{
|
|
|
4848
4834
|
continent_code: string;
|
|
4849
4835
|
}, {
|
|
4850
4836
|
country_code: string;
|
|
4851
|
-
country_code3: string;
|
|
4852
|
-
country_name: string;
|
|
4853
4837
|
city_name: string;
|
|
4854
4838
|
latitude: string;
|
|
4855
4839
|
longitude: string;
|
|
@@ -4885,8 +4869,6 @@ declare const logSchema: z.ZodObject<{
|
|
|
4885
4869
|
} | undefined;
|
|
4886
4870
|
location_info?: {
|
|
4887
4871
|
country_code: string;
|
|
4888
|
-
country_code3: string;
|
|
4889
|
-
country_name: string;
|
|
4890
4872
|
city_name: string;
|
|
4891
4873
|
latitude: string;
|
|
4892
4874
|
longitude: string;
|
|
@@ -4922,8 +4904,6 @@ declare const logSchema: z.ZodObject<{
|
|
|
4922
4904
|
} | undefined;
|
|
4923
4905
|
location_info?: {
|
|
4924
4906
|
country_code: string;
|
|
4925
|
-
country_code3: string;
|
|
4926
|
-
country_name: string;
|
|
4927
4907
|
city_name: string;
|
|
4928
4908
|
latitude: string;
|
|
4929
4909
|
longitude: string;
|
|
@@ -7684,8 +7664,6 @@ export interface InvitesAdapter {
|
|
|
7684
7664
|
}
|
|
7685
7665
|
export interface GeoInfo {
|
|
7686
7666
|
country_code: string;
|
|
7687
|
-
country_code3: string;
|
|
7688
|
-
country_name: string;
|
|
7689
7667
|
city_name: string;
|
|
7690
7668
|
latitude: string;
|
|
7691
7669
|
longitude: string;
|
|
@@ -7838,6 +7816,7 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
7838
7816
|
user_metadata: z.ZodString;
|
|
7839
7817
|
tenant_id: z.ZodString;
|
|
7840
7818
|
user_id: z.ZodString;
|
|
7819
|
+
provider: z.ZodString;
|
|
7841
7820
|
email: z.ZodOptional<z.ZodString>;
|
|
7842
7821
|
login_count: z.ZodDefault<z.ZodNumber>;
|
|
7843
7822
|
identities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7928,8 +7907,7 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
7928
7907
|
verify_email: z.ZodOptional<z.ZodBoolean>;
|
|
7929
7908
|
last_ip: z.ZodOptional<z.ZodString>;
|
|
7930
7909
|
last_login: z.ZodOptional<z.ZodString>;
|
|
7931
|
-
|
|
7932
|
-
connection: z.ZodDefault<z.ZodString>;
|
|
7910
|
+
connection: z.ZodString;
|
|
7933
7911
|
}, "strip", z.ZodTypeAny, {
|
|
7934
7912
|
tenant_id: string;
|
|
7935
7913
|
user_id: string;
|
|
@@ -7939,8 +7917,8 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
7939
7917
|
is_social: number;
|
|
7940
7918
|
app_metadata: string;
|
|
7941
7919
|
user_metadata: string;
|
|
7942
|
-
login_count: number;
|
|
7943
7920
|
provider: string;
|
|
7921
|
+
login_count: number;
|
|
7944
7922
|
connection: string;
|
|
7945
7923
|
name?: string | undefined;
|
|
7946
7924
|
email?: string | undefined;
|
|
@@ -7984,6 +7962,8 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
7984
7962
|
is_social: number;
|
|
7985
7963
|
app_metadata: string;
|
|
7986
7964
|
user_metadata: string;
|
|
7965
|
+
provider: string;
|
|
7966
|
+
connection: string;
|
|
7987
7967
|
name?: string | undefined;
|
|
7988
7968
|
email?: string | undefined;
|
|
7989
7969
|
login_count?: number | undefined;
|
|
@@ -8018,8 +7998,6 @@ declare const sqlUserSchema: z.ZodObject<{
|
|
|
8018
7998
|
verify_email?: boolean | undefined;
|
|
8019
7999
|
last_ip?: string | undefined;
|
|
8020
8000
|
last_login?: string | undefined;
|
|
8021
|
-
provider?: string | undefined;
|
|
8022
|
-
connection?: string | undefined;
|
|
8023
8001
|
}>;
|
|
8024
8002
|
declare const sqlHookSchema: z.ZodObject<{
|
|
8025
8003
|
tenant_id: z.ZodString;
|
|
@@ -8358,8 +8336,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8358
8336
|
details: z.ZodOptional<z.ZodString>;
|
|
8359
8337
|
session_connection: z.ZodOptional<z.ZodString>;
|
|
8360
8338
|
country_code: z.ZodOptional<z.ZodString>;
|
|
8361
|
-
country_code3: z.ZodOptional<z.ZodString>;
|
|
8362
|
-
country_name: z.ZodOptional<z.ZodString>;
|
|
8363
8339
|
city_name: z.ZodOptional<z.ZodString>;
|
|
8364
8340
|
latitude: z.ZodOptional<z.ZodString>;
|
|
8365
8341
|
longitude: z.ZodOptional<z.ZodString>;
|
|
@@ -8383,8 +8359,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8383
8359
|
hostname: z.ZodOptional<z.ZodString>;
|
|
8384
8360
|
location_info: z.ZodOptional<z.ZodObject<{
|
|
8385
8361
|
country_code: z.ZodString;
|
|
8386
|
-
country_code3: z.ZodString;
|
|
8387
|
-
country_name: z.ZodString;
|
|
8388
8362
|
city_name: z.ZodString;
|
|
8389
8363
|
latitude: z.ZodString;
|
|
8390
8364
|
longitude: z.ZodString;
|
|
@@ -8392,8 +8366,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8392
8366
|
continent_code: z.ZodString;
|
|
8393
8367
|
}, "strip", z.ZodTypeAny, {
|
|
8394
8368
|
country_code: string;
|
|
8395
|
-
country_code3: string;
|
|
8396
|
-
country_name: string;
|
|
8397
8369
|
city_name: string;
|
|
8398
8370
|
latitude: string;
|
|
8399
8371
|
longitude: string;
|
|
@@ -8401,8 +8373,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8401
8373
|
continent_code: string;
|
|
8402
8374
|
}, {
|
|
8403
8375
|
country_code: string;
|
|
8404
|
-
country_code3: string;
|
|
8405
|
-
country_name: string;
|
|
8406
8376
|
city_name: string;
|
|
8407
8377
|
latitude: string;
|
|
8408
8378
|
longitude: string;
|
|
@@ -8425,8 +8395,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8425
8395
|
details?: string | undefined;
|
|
8426
8396
|
session_connection?: string | undefined;
|
|
8427
8397
|
country_code?: string | undefined;
|
|
8428
|
-
country_code3?: string | undefined;
|
|
8429
|
-
country_name?: string | undefined;
|
|
8430
8398
|
city_name?: string | undefined;
|
|
8431
8399
|
latitude?: string | undefined;
|
|
8432
8400
|
longitude?: string | undefined;
|
|
@@ -8443,8 +8411,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8443
8411
|
hostname?: string | undefined;
|
|
8444
8412
|
location_info?: {
|
|
8445
8413
|
country_code: string;
|
|
8446
|
-
country_code3: string;
|
|
8447
|
-
country_name: string;
|
|
8448
8414
|
city_name: string;
|
|
8449
8415
|
latitude: string;
|
|
8450
8416
|
longitude: string;
|
|
@@ -8467,8 +8433,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8467
8433
|
details?: string | undefined;
|
|
8468
8434
|
session_connection?: string | undefined;
|
|
8469
8435
|
country_code?: string | undefined;
|
|
8470
|
-
country_code3?: string | undefined;
|
|
8471
|
-
country_name?: string | undefined;
|
|
8472
8436
|
city_name?: string | undefined;
|
|
8473
8437
|
latitude?: string | undefined;
|
|
8474
8438
|
longitude?: string | undefined;
|
|
@@ -8485,8 +8449,6 @@ declare const sqlLogSchema: z.ZodObject<{
|
|
|
8485
8449
|
hostname?: string | undefined;
|
|
8486
8450
|
location_info?: {
|
|
8487
8451
|
country_code: string;
|
|
8488
|
-
country_code3: string;
|
|
8489
|
-
country_name: string;
|
|
8490
8452
|
city_name: string;
|
|
8491
8453
|
latitude: string;
|
|
8492
8454
|
longitude: string;
|