@absolutejs/auth 0.57.5 → 0.57.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.
@@ -1,4 +1,5 @@
1
1
  import { type AnyPgDatabase } from '../stores/postgres';
2
+ import type { SecretCipher } from '../compliance/cipher';
2
3
  import type { OidcConnectionConfig, SamlConnectionConfig, SSOConnectionStore, SSOConnectionType } from './types';
3
4
  export declare const ssoConnectionsTable: import("drizzle-orm/pg-core").PgTableWithColumns<{
4
5
  name: "auth_sso_connections";
@@ -113,4 +114,4 @@ export declare const ssoConnectionsTable: import("drizzle-orm/pg-core").PgTableW
113
114
  dialect: "pg";
114
115
  }>;
115
116
  export declare const createNeonSsoConnectionStore: (databaseUrl: string) => SSOConnectionStore;
116
- export declare const createPostgresSsoConnectionStore: <DB extends AnyPgDatabase>(db: DB) => SSOConnectionStore;
117
+ export declare const createPostgresSsoConnectionStore: <DB extends AnyPgDatabase>(db: DB, cipher?: SecretCipher) => SSOConnectionStore;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.57.5",
2
+ "version": "0.57.6",
3
3
  "name": "@absolutejs/auth",
4
4
  "description": "An authorization library for absolutejs",
5
5
  "repository": {