@authhero/kysely-adapter 10.0.0 → 10.1.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 +3 -1
- package/dist/kysely-adapter.mjs +702 -668
- package/package.json +1 -1
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -4066,7 +4066,9 @@ export interface Database {
|
|
|
4066
4066
|
}
|
|
4067
4067
|
export declare function migrateToLatest(db: Kysely<Database>, debug?: boolean): Promise<void>;
|
|
4068
4068
|
export declare function migrateDown(db: Kysely<Database>): Promise<void>;
|
|
4069
|
-
declare function createAdapters(db: Kysely<Database>): DataAdapters
|
|
4069
|
+
declare function createAdapters(db: Kysely<Database>): DataAdapters & {
|
|
4070
|
+
cleanup: () => Promise<void>;
|
|
4071
|
+
};
|
|
4070
4072
|
|
|
4071
4073
|
export {
|
|
4072
4074
|
createAdapters as default,
|