@authhero/kysely-adapter 11.19.0 → 11.20.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 +19 -19
- package/dist/kysely-adapter.d.ts +1 -0
- package/dist/kysely-adapter.mjs +2003 -1871
- package/dist/types/migrate/migrations/2026-07-16T10:00:00_control_plane_comm_keys.d.ts +28 -0
- package/dist/types/migrate/migrations/2026-07-16T12:00:00_codes_expires_at_ts.d.ts +4 -0
- package/dist/types/migrate/migrations/index.d.ts +4 -0
- package/dist/types/src/codes/cleanup.d.ts +3 -0
- package/dist/types/src/codes/expires-at-ts.d.ts +10 -0
- package/dist/types/src/db.d.ts +1 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -836,6 +836,7 @@ interface Database {
|
|
|
836
836
|
client_registration_tokens: z.infer<typeof sqlClientRegistrationTokenSchema>;
|
|
837
837
|
codes: Code & {
|
|
838
838
|
tenant_id: string;
|
|
839
|
+
expires_at_ts?: number | null;
|
|
839
840
|
};
|
|
840
841
|
connections: z.infer<typeof sqlConnectionSchema>;
|
|
841
842
|
custom_domains: z.infer<typeof sqlCustomDomainSchema>;
|