@authhero/kysely-adapter 0.13.3 → 0.14.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 +2 -0
- package/dist/kysely-adapter.iife.js +1 -1
- package/dist/kysely-adapter.mjs +5893 -3601
- package/package.json +7 -7
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -3373,6 +3373,8 @@ export interface Database {
|
|
|
3373
3373
|
themes: z.infer<typeof sqlThemeSchema>;
|
|
3374
3374
|
tickets: SqlTicket;
|
|
3375
3375
|
}
|
|
3376
|
+
export declare function migrateToLatest(db: Kysely<Database>, debug?: boolean): Promise<void>;
|
|
3377
|
+
export declare function migrateDown(db: Kysely<Database>): Promise<void>;
|
|
3376
3378
|
declare function createAdapters(db: Kysely<Database>): DataAdapters;
|
|
3377
3379
|
|
|
3378
3380
|
export {
|