@momentumcms/auth 0.1.10 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.0 (2026-02-17)
2
+
3
+ This was a version bump only for auth to align it with other projects, there were no code changes.
4
+
1
5
  ## 0.1.10 (2026-02-17)
2
6
 
3
7
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/auth",
3
- "version": "0.1.10",
3
+ "version": "0.2.0",
4
4
  "description": "Better Auth integration for Momentum CMS",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
package/src/lib/auth.d.ts CHANGED
@@ -4,7 +4,7 @@ import type { Database } from 'better-sqlite3';
4
4
  import { type EmailConfig } from './email';
5
5
  import type { Field } from '@momentumcms/core';
6
6
  import type { OAuthProvidersConfig } from './auth-core';
7
- export type { MomentumUser, MomentumSession, OAuthProviderConfig, OAuthProvidersConfig } from './auth-core';
7
+ export type { MomentumUser, MomentumSession, OAuthProviderConfig, OAuthProvidersConfig, } from './auth-core';
8
8
  /**
9
9
  * Database configuration for Better Auth.
10
10
  * Supports both SQLite (better-sqlite3) and PostgreSQL (pg).