@authhero/kysely-adapter 9.3.0 → 9.5.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 +6 -0
- package/dist/kysely-adapter.mjs +176 -153
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1603,6 +1603,7 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
1603
1603
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
1604
1604
|
ip: z.ZodOptional<z.ZodString>;
|
|
1605
1605
|
useragent: z.ZodOptional<z.ZodString>;
|
|
1606
|
+
session: z.ZodOptional<z.ZodString>;
|
|
1606
1607
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
1607
1608
|
}, "strip", z.ZodTypeAny, {
|
|
1608
1609
|
expires_at: string;
|
|
@@ -1628,6 +1629,7 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
1628
1629
|
deleted_at?: string | undefined;
|
|
1629
1630
|
ip?: string | undefined;
|
|
1630
1631
|
useragent?: string | undefined;
|
|
1632
|
+
session?: string | undefined;
|
|
1631
1633
|
authorization_url?: string | undefined;
|
|
1632
1634
|
}, {
|
|
1633
1635
|
expires_at: string;
|
|
@@ -1653,6 +1655,7 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
1653
1655
|
deleted_at?: string | undefined;
|
|
1654
1656
|
ip?: string | undefined;
|
|
1655
1657
|
useragent?: string | undefined;
|
|
1658
|
+
session?: string | undefined;
|
|
1656
1659
|
authorization_url?: string | undefined;
|
|
1657
1660
|
}>;
|
|
1658
1661
|
export type LoginSessionInsert = z.infer<typeof loginSessionInsertSchema>;
|
|
@@ -1717,6 +1720,7 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
1717
1720
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
1718
1721
|
ip: z.ZodOptional<z.ZodString>;
|
|
1719
1722
|
useragent: z.ZodOptional<z.ZodString>;
|
|
1723
|
+
session: z.ZodOptional<z.ZodString>;
|
|
1720
1724
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
1721
1725
|
}, "strip", z.ZodTypeAny, {
|
|
1722
1726
|
created_at: string;
|
|
@@ -1745,6 +1749,7 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
1745
1749
|
deleted_at?: string | undefined;
|
|
1746
1750
|
ip?: string | undefined;
|
|
1747
1751
|
useragent?: string | undefined;
|
|
1752
|
+
session?: string | undefined;
|
|
1748
1753
|
authorization_url?: string | undefined;
|
|
1749
1754
|
}, {
|
|
1750
1755
|
created_at: string;
|
|
@@ -1773,6 +1778,7 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
1773
1778
|
deleted_at?: string | undefined;
|
|
1774
1779
|
ip?: string | undefined;
|
|
1775
1780
|
useragent?: string | undefined;
|
|
1781
|
+
session?: string | undefined;
|
|
1776
1782
|
authorization_url?: string | undefined;
|
|
1777
1783
|
}>;
|
|
1778
1784
|
export type LoginSession = z.infer<typeof loginSessionSchema>;
|