@authhero/kysely-adapter 10.99.0 → 10.101.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 +4 -4
- package/dist/kysely-adapter.d.ts +12 -3
- package/dist/kysely-adapter.mjs +291 -274
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -14790,6 +14790,7 @@ export type EmailProvider = z.infer<typeof emailProviderSchema>;
|
|
|
14790
14790
|
declare const refreshTokenInsertSchema: z.ZodObject<{
|
|
14791
14791
|
id: z.ZodString;
|
|
14792
14792
|
session_id: z.ZodString;
|
|
14793
|
+
login_id: z.ZodOptional<z.ZodString>;
|
|
14793
14794
|
user_id: z.ZodString;
|
|
14794
14795
|
client_id: z.ZodString;
|
|
14795
14796
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
@@ -14846,6 +14847,7 @@ declare const refreshTokenInsertSchema: z.ZodObject<{
|
|
|
14846
14847
|
scopes: string;
|
|
14847
14848
|
}[];
|
|
14848
14849
|
rotating: boolean;
|
|
14850
|
+
login_id?: string | undefined;
|
|
14849
14851
|
expires_at?: string | undefined;
|
|
14850
14852
|
idle_expires_at?: string | undefined;
|
|
14851
14853
|
last_exchanged_at?: string | undefined;
|
|
@@ -14867,6 +14869,7 @@ declare const refreshTokenInsertSchema: z.ZodObject<{
|
|
|
14867
14869
|
scopes: string;
|
|
14868
14870
|
}[];
|
|
14869
14871
|
rotating: boolean;
|
|
14872
|
+
login_id?: string | undefined;
|
|
14870
14873
|
expires_at?: string | undefined;
|
|
14871
14874
|
idle_expires_at?: string | undefined;
|
|
14872
14875
|
last_exchanged_at?: string | undefined;
|
|
@@ -14875,6 +14878,7 @@ export type RefreshTokenInsert = z.infer<typeof refreshTokenInsertSchema>;
|
|
|
14875
14878
|
declare const refreshTokenSchema: z.ZodObject<{
|
|
14876
14879
|
id: z.ZodString;
|
|
14877
14880
|
session_id: z.ZodString;
|
|
14881
|
+
login_id: z.ZodOptional<z.ZodString>;
|
|
14878
14882
|
user_id: z.ZodString;
|
|
14879
14883
|
client_id: z.ZodString;
|
|
14880
14884
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
@@ -14933,6 +14937,7 @@ declare const refreshTokenSchema: z.ZodObject<{
|
|
|
14933
14937
|
scopes: string;
|
|
14934
14938
|
}[];
|
|
14935
14939
|
rotating: boolean;
|
|
14940
|
+
login_id?: string | undefined;
|
|
14936
14941
|
expires_at?: string | undefined;
|
|
14937
14942
|
idle_expires_at?: string | undefined;
|
|
14938
14943
|
last_exchanged_at?: string | undefined;
|
|
@@ -14955,6 +14960,7 @@ declare const refreshTokenSchema: z.ZodObject<{
|
|
|
14955
14960
|
scopes: string;
|
|
14956
14961
|
}[];
|
|
14957
14962
|
rotating: boolean;
|
|
14963
|
+
login_id?: string | undefined;
|
|
14958
14964
|
expires_at?: string | undefined;
|
|
14959
14965
|
idle_expires_at?: string | undefined;
|
|
14960
14966
|
last_exchanged_at?: string | undefined;
|
|
@@ -16659,6 +16665,7 @@ declare const sqlSessionSchema: z.ZodObject<Omit<{
|
|
|
16659
16665
|
declare const sqlRefreshTokensSchema: z.ZodObject<Omit<{
|
|
16660
16666
|
id: z.ZodString;
|
|
16661
16667
|
session_id: z.ZodString;
|
|
16668
|
+
login_id: z.ZodOptional<z.ZodString>;
|
|
16662
16669
|
user_id: z.ZodString;
|
|
16663
16670
|
client_id: z.ZodString;
|
|
16664
16671
|
expires_at: z.ZodOptional<z.ZodString>;
|
|
@@ -16719,6 +16726,7 @@ declare const sqlRefreshTokensSchema: z.ZodObject<Omit<{
|
|
|
16719
16726
|
rotating: number;
|
|
16720
16727
|
expires_at_ts?: number | null | undefined;
|
|
16721
16728
|
idle_expires_at_ts?: number | null | undefined;
|
|
16729
|
+
login_id?: string | undefined;
|
|
16722
16730
|
last_exchanged_at_ts?: number | null | undefined;
|
|
16723
16731
|
}, {
|
|
16724
16732
|
tenant_id: string;
|
|
@@ -16732,11 +16740,13 @@ declare const sqlRefreshTokensSchema: z.ZodObject<Omit<{
|
|
|
16732
16740
|
rotating: number;
|
|
16733
16741
|
expires_at_ts?: number | null | undefined;
|
|
16734
16742
|
idle_expires_at_ts?: number | null | undefined;
|
|
16743
|
+
login_id?: string | undefined;
|
|
16735
16744
|
last_exchanged_at_ts?: number | null | undefined;
|
|
16736
16745
|
}>;
|
|
16737
16746
|
declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
16738
16747
|
primary: z.ZodNumber;
|
|
16739
16748
|
tenant_id: z.ZodString;
|
|
16749
|
+
domain_metadata: z.ZodOptional<z.ZodString>;
|
|
16740
16750
|
created_at: z.ZodString;
|
|
16741
16751
|
updated_at: z.ZodString;
|
|
16742
16752
|
custom_domain_id: z.ZodString;
|
|
@@ -16790,7 +16800,6 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
16790
16800
|
"x-azure-clientip",
|
|
16791
16801
|
"null"
|
|
16792
16802
|
]>>;
|
|
16793
|
-
domain_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16794
16803
|
}, "strip", z.ZodTypeAny, {
|
|
16795
16804
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16796
16805
|
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
@@ -16800,6 +16809,7 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
16800
16809
|
primary: number;
|
|
16801
16810
|
custom_domain_id: string;
|
|
16802
16811
|
domain: string;
|
|
16812
|
+
domain_metadata?: string | undefined;
|
|
16803
16813
|
origin_domain_name?: string | undefined;
|
|
16804
16814
|
verification?: {
|
|
16805
16815
|
methods: {
|
|
@@ -16811,7 +16821,6 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
16811
16821
|
tls_policy?: string | undefined;
|
|
16812
16822
|
verification_method?: "txt" | undefined;
|
|
16813
16823
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16814
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
16815
16824
|
}, {
|
|
16816
16825
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
16817
16826
|
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
@@ -16821,6 +16830,7 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
16821
16830
|
primary: number;
|
|
16822
16831
|
custom_domain_id: string;
|
|
16823
16832
|
domain: string;
|
|
16833
|
+
domain_metadata?: string | undefined;
|
|
16824
16834
|
origin_domain_name?: string | undefined;
|
|
16825
16835
|
verification?: {
|
|
16826
16836
|
methods: {
|
|
@@ -16832,7 +16842,6 @@ declare const sqlCustomDomainSchema: z.ZodObject<{
|
|
|
16832
16842
|
tls_policy?: string | undefined;
|
|
16833
16843
|
verification_method?: "txt" | undefined;
|
|
16834
16844
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
16835
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
16836
16845
|
}>;
|
|
16837
16846
|
declare const sqlFormSchema: z.ZodObject<{
|
|
16838
16847
|
tenant_id: z.ZodString;
|