@authhero/kysely-adapter 0.22.0 → 0.23.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 +1374 -1342
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1540,6 +1540,7 @@ declare const loginInsertSchema: z.ZodObject<{
|
|
|
1540
1540
|
expires_at: z.ZodString;
|
|
1541
1541
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
1542
1542
|
ip: z.ZodOptional<z.ZodString>;
|
|
1543
|
+
useragent: z.ZodOptional<z.ZodString>;
|
|
1543
1544
|
}, "strip", z.ZodTypeAny, {
|
|
1544
1545
|
expires_at: string;
|
|
1545
1546
|
authParams: {
|
|
@@ -1562,6 +1563,7 @@ declare const loginInsertSchema: z.ZodObject<{
|
|
|
1562
1563
|
auth0Client?: string | undefined;
|
|
1563
1564
|
deleted_at?: string | undefined;
|
|
1564
1565
|
ip?: string | undefined;
|
|
1566
|
+
useragent?: string | undefined;
|
|
1565
1567
|
}, {
|
|
1566
1568
|
expires_at: string;
|
|
1567
1569
|
authParams: {
|
|
@@ -1584,6 +1586,7 @@ declare const loginInsertSchema: z.ZodObject<{
|
|
|
1584
1586
|
auth0Client?: string | undefined;
|
|
1585
1587
|
deleted_at?: string | undefined;
|
|
1586
1588
|
ip?: string | undefined;
|
|
1589
|
+
useragent?: string | undefined;
|
|
1587
1590
|
}>;
|
|
1588
1591
|
export type LoginInsert = z.infer<typeof loginInsertSchema>;
|
|
1589
1592
|
declare const loginSchema: z.ZodObject<{
|
|
@@ -1643,6 +1646,7 @@ declare const loginSchema: z.ZodObject<{
|
|
|
1643
1646
|
expires_at: z.ZodString;
|
|
1644
1647
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
1645
1648
|
ip: z.ZodOptional<z.ZodString>;
|
|
1649
|
+
useragent: z.ZodOptional<z.ZodString>;
|
|
1646
1650
|
}, "strip", z.ZodTypeAny, {
|
|
1647
1651
|
created_at: string;
|
|
1648
1652
|
updated_at: string;
|
|
@@ -1668,6 +1672,7 @@ declare const loginSchema: z.ZodObject<{
|
|
|
1668
1672
|
auth0Client?: string | undefined;
|
|
1669
1673
|
deleted_at?: string | undefined;
|
|
1670
1674
|
ip?: string | undefined;
|
|
1675
|
+
useragent?: string | undefined;
|
|
1671
1676
|
}, {
|
|
1672
1677
|
created_at: string;
|
|
1673
1678
|
updated_at: string;
|
|
@@ -1693,6 +1698,7 @@ declare const loginSchema: z.ZodObject<{
|
|
|
1693
1698
|
auth0Client?: string | undefined;
|
|
1694
1699
|
deleted_at?: string | undefined;
|
|
1695
1700
|
ip?: string | undefined;
|
|
1701
|
+
useragent?: string | undefined;
|
|
1696
1702
|
}>;
|
|
1697
1703
|
export type Login = z.infer<typeof loginSchema>;
|
|
1698
1704
|
declare const LogType: z.ZodEnum<[
|