@byline/auth 3.17.1 → 3.19.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.
Files changed (2) hide show
  1. package/dist/errors.d.ts +6 -6
  2. package/package.json +8 -8
package/dist/errors.d.ts CHANGED
@@ -20,12 +20,12 @@
20
20
  * logger integration is wanted (Phase 4 call sites will do this).
21
21
  */
22
22
  export declare const AuthErrorCodes: {
23
- readonly UNAUTHENTICATED: "ERR_UNAUTHENTICATED";
24
- readonly FORBIDDEN: "ERR_FORBIDDEN";
25
- readonly INVALID_CREDENTIALS: "ERR_INVALID_CREDENTIALS";
26
- readonly INVALID_TOKEN: "ERR_INVALID_TOKEN";
27
- readonly REVOKED_TOKEN: "ERR_REVOKED_TOKEN";
28
- readonly ACCOUNT_DISABLED: "ERR_ACCOUNT_DISABLED";
23
+ readonly UNAUTHENTICATED: 'ERR_UNAUTHENTICATED';
24
+ readonly FORBIDDEN: 'ERR_FORBIDDEN';
25
+ readonly INVALID_CREDENTIALS: 'ERR_INVALID_CREDENTIALS';
26
+ readonly INVALID_TOKEN: 'ERR_INVALID_TOKEN';
27
+ readonly REVOKED_TOKEN: 'ERR_REVOKED_TOKEN';
28
+ readonly ACCOUNT_DISABLED: 'ERR_ACCOUNT_DISABLED';
29
29
  };
30
30
  export type AuthErrorCode = (typeof AuthErrorCodes)[keyof typeof AuthErrorCodes];
31
31
  export interface AuthErrorOptions {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@byline/auth",
3
3
  "private": false,
4
4
  "license": "MPL-2.0",
5
- "version": "3.17.1",
5
+ "version": "3.19.0",
6
6
  "engines": {
7
7
  "node": ">=20.9.0"
8
8
  },
@@ -39,18 +39,18 @@
39
39
  "dist"
40
40
  ],
41
41
  "dependencies": {
42
- "uuid": "^14.0.0"
42
+ "uuid": "^14.0.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@biomejs/biome": "2.4.15",
46
- "@types/node": "^25.9.1",
45
+ "@biomejs/biome": "2.5.2",
46
+ "@types/node": "^26.1.0",
47
47
  "chokidar": "^5.0.0",
48
48
  "chokidar-cli": "^3.0.0",
49
49
  "npm-run-all": "^4.1.5",
50
- "tsc-alias": "^1.8.17",
51
- "tsx": "^4.22.3",
52
- "typescript": "6.0.3",
53
- "vitest": "^4.1.7"
50
+ "tsc-alias": "^1.9.0",
51
+ "tsx": "^4.23.0",
52
+ "typescript": "^7.0.2",
53
+ "vitest": "^4.1.10"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public",