@absolutejs/auth 0.45.4 → 0.45.6
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/apikeys/postgresStores.d.ts +4 -4
- package/dist/cli/migrate.js.map +7 -7
- package/dist/index.js.map +7 -7
- package/dist/organizations/postgresOrganizationStore.d.ts +2 -2
- package/dist/portal/postgresSetupSessionStore.d.ts +2 -2
- package/dist/scim/postgresScimTokenStore.d.ts +2 -2
- package/dist/sso/postgresSsoConnectionStore.d.ts +2 -2
- package/dist/stores/postgres.d.ts +2 -5
- package/package.json +4 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type AnyPgDatabase
|
|
1
|
+
import { type AnyPgDatabase } from '../stores/postgres';
|
|
2
2
|
import type { AccessTokenStore, ApiClientStore, ApiKeyStore } from './types';
|
|
3
3
|
export declare const accessTokensTable: import("drizzle-orm/pg-core").PgTableWithColumns<{
|
|
4
4
|
name: "auth_access_tokens";
|
|
@@ -502,6 +502,6 @@ export declare const apiKeysTable: import("drizzle-orm/pg-core").PgTableWithColu
|
|
|
502
502
|
export declare const createNeonAccessTokenStore: (databaseUrl: string) => AccessTokenStore;
|
|
503
503
|
export declare const createNeonApiClientStore: (databaseUrl: string) => ApiClientStore;
|
|
504
504
|
export declare const createNeonApiKeyStore: (databaseUrl: string) => ApiKeyStore;
|
|
505
|
-
export declare const createPostgresAccessTokenStore: <
|
|
506
|
-
export declare const createPostgresApiClientStore: <
|
|
507
|
-
export declare const createPostgresApiKeyStore: <
|
|
505
|
+
export declare const createPostgresAccessTokenStore: <DB extends AnyPgDatabase>(db: DB) => AccessTokenStore;
|
|
506
|
+
export declare const createPostgresApiClientStore: <DB extends AnyPgDatabase>(db: DB) => ApiClientStore;
|
|
507
|
+
export declare const createPostgresApiKeyStore: <DB extends AnyPgDatabase>(db: DB) => ApiKeyStore;
|