@absolutejs/auth 0.78.0 → 0.79.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/types.d.ts CHANGED
@@ -319,7 +319,7 @@ export type AuthConfig<UserType> = {
319
319
  scim?: ScimConfig;
320
320
  /** Machine-to-machine authentication: static API keys (`sk_…`) + the OAuth2
321
321
  * client_credentials grant. When `apiClientStore` + `accessTokenStore` are set,
322
- * mounts `{tokenRoute}` (defaults `/oauth2/token`) so registered clients can
322
+ * mounts `{tokenRoute}` (defaults `/auth/api/token`) so registered clients can
323
323
  * exchange `client_id`/`client_secret` for short-lived `at_…` access tokens.
324
324
  * Pair with the exported `createApiKey` / `resolveApiPrincipal` / `hasScopes`
325
325
  * helpers to issue and guard with static keys. */
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.78.0",
2
+ "version": "0.79.0",
3
3
  "name": "@absolutejs/auth",
4
4
  "description": "An authorization library for absolutejs",
5
5
  "repository": {
@@ -24,8 +24,9 @@
24
24
  "lint": "absolute eslint",
25
25
  "typecheck": "absolute typecheck",
26
26
  "verify-package": "absolute-manifest verify-package",
27
- "check:package": "bun run typecheck && bun run lint && bun run test && bun run build && bun run verify-package",
28
- "release": "bun run format && bun run check:package && npm publish"
27
+ "check:package": "bun run typecheck && bun run lint && bun run test && bun run build && bun run verify-package && absolute-changelog check",
28
+ "release": "bun run format && bun run check:package && npm publish",
29
+ "prepublishOnly": "bun run check:package"
29
30
  },
30
31
  "keywords": [
31
32
  "authorization",
@@ -78,6 +79,7 @@
78
79
  },
79
80
  "devDependencies": {
80
81
  "@absolutejs/absolute": "^0.20.0-beta.0",
82
+ "@absolutejs/changelog": "^0.6.0",
81
83
  "@eslint/js": "^10.0.1",
82
84
  "@node-saml/node-saml": "5.1.0",
83
85
  "@opentelemetry/sdk-trace-base": "^2.7.1",
@@ -86,6 +88,7 @@
86
88
  "@types/bun": "1.2.9",
87
89
  "@types/react": "^19.0.0",
88
90
  "@typescript-eslint/parser": "^8.57.2",
91
+ "drizzle-orm": "1.0.0-rc.4",
89
92
  "elysia": "2.0.0-beta.6",
90
93
  "eslint": "^10.1.0",
91
94
  "eslint-plugin-absolute": "0.11.38",
@@ -98,8 +101,7 @@
98
101
  "svelte": "5.56.7",
99
102
  "typescript": "5.9.3",
100
103
  "typescript-eslint": "^8.57.2",
101
- "vue": "3.5.40",
102
- "drizzle-orm": "1.0.0-rc.4"
104
+ "vue": "3.5.40"
103
105
  },
104
106
  "module": "./dist/index.js",
105
107
  "exports": {
@@ -202,9 +204,11 @@
202
204
  },
203
205
  "type": "module",
204
206
  "files": [
207
+ "CHANGELOG.md",
208
+ "README.md",
209
+ "changelog.json",
205
210
  "dist",
206
- "docs",
207
- "README.md"
211
+ "docs"
208
212
  ],
209
213
  "typesVersions": {
210
214
  "*": {