@absolutejs/auth 0.45.6 → 0.45.8

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.
@@ -0,0 +1,2 @@
1
+ import type { SamlAdapter } from './config';
2
+ export declare const createNodeSamlAdapter: () => Promise<SamlAdapter>;
@@ -0,0 +1,2 @@
1
+ import type { WebAuthnAdapter } from './adapter';
2
+ export declare const createSimpleWebAuthnAdapter: () => Promise<WebAuthnAdapter>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.45.6",
2
+ "version": "0.45.8",
3
3
  "name": "@absolutejs/auth",
4
4
  "description": "An authorization library for absolutejs",
5
5
  "repository": {
@@ -13,7 +13,7 @@
13
13
  "license": "BSL-1.1",
14
14
  "author": "Alex Kahn",
15
15
  "scripts": {
16
- "build": "rm -rf dist && bun build src/index.ts src/htmx/index.ts src/client/index.ts src/client/react.ts src/client/vue.ts src/client/solid.ts src/client/svelte.ts src/plugins/index.ts src/providers/index.ts --root src --outdir dist --sourcemap --target=bun --external elysia --external react --external vue --external solid-js --external svelte --external @opentelemetry/api && bun build src/cli/migrate.ts --outdir dist/cli --sourcemap --target=bun --external @neondatabase/serverless --external drizzle-orm && bun build src/fingerprint-client/index.ts --outdir dist/fingerprint-client --sourcemap --target=browser && tsc --emitDeclarationOnly --project tsconfig.json && chmod +x dist/cli/migrate.js",
16
+ "build": "rm -rf dist && bun build src/index.ts src/htmx/index.ts src/client/index.ts src/client/react.ts src/client/vue.ts src/client/solid.ts src/client/svelte.ts src/plugins/index.ts src/providers/index.ts --root src --outdir dist --sourcemap --target=bun --external elysia --external react --external vue --external solid-js --external svelte --external @opentelemetry/api --external @simplewebauthn/server --external @node-saml/node-saml && bun build src/cli/migrate.ts --outdir dist/cli --sourcemap --target=bun --external @neondatabase/serverless --external drizzle-orm && bun build src/fingerprint-client/index.ts --outdir dist/fingerprint-client --sourcemap --target=browser && tsc --emitDeclarationOnly --project tsconfig.json && chmod +x dist/cli/migrate.js",
17
17
  "config": "absolute config",
18
18
  "test": "bun test",
19
19
  "format": "absolute prettier --write",
@@ -33,12 +33,14 @@
33
33
  "peerDependencies": {
34
34
  "@opentelemetry/api": ">=1.7",
35
35
  "@simplewebauthn/browser": ">=13",
36
+ "@simplewebauthn/server": ">=13",
36
37
  "drizzle-orm": ">=0.41.0",
37
38
  "elysia": ">= 1.4.26",
38
39
  "react": ">=18 <20",
39
40
  "solid-js": ">=1.8",
40
41
  "svelte": ">=4",
41
- "vue": ">=3.4"
42
+ "vue": ">=3.4",
43
+ "@node-saml/node-saml": ">=5"
42
44
  },
43
45
  "peerDependenciesMeta": {
44
46
  "@opentelemetry/api": {
@@ -47,6 +49,9 @@
47
49
  "@simplewebauthn/browser": {
48
50
  "optional": true
49
51
  },
52
+ "@simplewebauthn/server": {
53
+ "optional": true
54
+ },
50
55
  "react": {
51
56
  "optional": true
52
57
  },
@@ -58,6 +63,9 @@
58
63
  },
59
64
  "vue": {
60
65
  "optional": true
66
+ },
67
+ "@node-saml/node-saml": {
68
+ "optional": true
61
69
  }
62
70
  },
63
71
  "dependencies": {
@@ -67,15 +75,17 @@
67
75
  },
68
76
  "devDependencies": {
69
77
  "@absolutejs/absolute": "^0.19.0-beta.1023",
70
- "drizzle-orm": "0.41.0",
71
78
  "@eslint/js": "^10.0.1",
79
+ "@node-saml/node-saml": "^5.1.0",
72
80
  "@opentelemetry/api": "^1.9.1",
73
81
  "@opentelemetry/sdk-trace-base": "^2.7.1",
74
82
  "@simplewebauthn/browser": "^13.3.0",
83
+ "@simplewebauthn/server": "^13",
75
84
  "@stylistic/eslint-plugin": "^5.10.0",
76
85
  "@types/bun": "1.2.9",
77
86
  "@types/react": "^19.0.0",
78
87
  "@typescript-eslint/parser": "^8.57.2",
88
+ "drizzle-orm": "0.41.0",
79
89
  "elysia": "1.4.26",
80
90
  "eslint": "^10.1.0",
81
91
  "eslint-plugin-absolute": "^0.11.0",
@@ -153,5 +163,6 @@
153
163
  "dist/index.d.ts"
154
164
  ]
155
165
  }
156
- }
166
+ },
167
+ "build": null
157
168
  }