@enbox/auth 0.4.0 → 0.6.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 (86) hide show
  1. package/dist/esm/auth-manager.js +244 -121
  2. package/dist/esm/auth-manager.js.map +1 -1
  3. package/dist/esm/connect/import.js +131 -0
  4. package/dist/esm/connect/import.js.map +1 -0
  5. package/dist/esm/connect/lifecycle.js +235 -0
  6. package/dist/esm/connect/lifecycle.js.map +1 -0
  7. package/dist/esm/connect/local.js +91 -0
  8. package/dist/esm/connect/local.js.map +1 -0
  9. package/dist/esm/{flows/session-restore.js → connect/restore.js} +39 -50
  10. package/dist/esm/connect/restore.js.map +1 -0
  11. package/dist/esm/{flows/wallet-connect.js → connect/wallet.js} +33 -39
  12. package/dist/esm/connect/wallet.js.map +1 -0
  13. package/dist/esm/{flows/dwn-discovery.js → discovery.js} +98 -83
  14. package/dist/esm/discovery.js.map +1 -0
  15. package/dist/esm/index.js +7 -3
  16. package/dist/esm/index.js.map +1 -1
  17. package/dist/esm/password-provider.js +319 -0
  18. package/dist/esm/password-provider.js.map +1 -0
  19. package/dist/esm/{flows/dwn-registration.js → registration.js} +50 -4
  20. package/dist/esm/registration.js.map +1 -0
  21. package/dist/esm/types.js +11 -1
  22. package/dist/esm/types.js.map +1 -1
  23. package/dist/esm/wallet-connect-client.js +188 -0
  24. package/dist/esm/wallet-connect-client.js.map +1 -0
  25. package/dist/types/auth-manager.d.ts +86 -7
  26. package/dist/types/auth-manager.d.ts.map +1 -1
  27. package/dist/types/connect/import.d.ts +25 -0
  28. package/dist/types/connect/import.d.ts.map +1 -0
  29. package/dist/types/connect/lifecycle.d.ts +152 -0
  30. package/dist/types/connect/lifecycle.d.ts.map +1 -0
  31. package/dist/types/connect/local.d.ts +18 -0
  32. package/dist/types/connect/local.d.ts.map +1 -0
  33. package/dist/types/connect/restore.d.ts +18 -0
  34. package/dist/types/connect/restore.d.ts.map +1 -0
  35. package/dist/types/{flows/wallet-connect.d.ts → connect/wallet.d.ts} +7 -16
  36. package/dist/types/connect/wallet.d.ts.map +1 -0
  37. package/dist/types/{flows/dwn-discovery.d.ts → discovery.d.ts} +43 -56
  38. package/dist/types/discovery.d.ts.map +1 -0
  39. package/dist/types/index.d.ts +8 -4
  40. package/dist/types/index.d.ts.map +1 -1
  41. package/dist/types/password-provider.d.ts +194 -0
  42. package/dist/types/password-provider.d.ts.map +1 -0
  43. package/dist/types/{flows/dwn-registration.d.ts → registration.d.ts} +21 -2
  44. package/dist/types/registration.d.ts.map +1 -0
  45. package/dist/types/types.d.ts +92 -4
  46. package/dist/types/types.d.ts.map +1 -1
  47. package/dist/types/wallet-connect-client.d.ts +89 -0
  48. package/dist/types/wallet-connect-client.d.ts.map +1 -0
  49. package/package.json +15 -12
  50. package/src/auth-manager.ts +279 -145
  51. package/src/connect/import.ts +148 -0
  52. package/src/connect/lifecycle.ts +321 -0
  53. package/src/connect/local.ts +101 -0
  54. package/src/connect/restore.ts +117 -0
  55. package/src/{flows/wallet-connect.ts → connect/wallet.ts} +42 -58
  56. package/src/{flows/dwn-discovery.ts → discovery.ts} +103 -82
  57. package/src/index.ts +14 -4
  58. package/src/password-provider.ts +383 -0
  59. package/src/{flows/dwn-registration.ts → registration.ts} +61 -6
  60. package/src/types.ts +100 -4
  61. package/src/wallet-connect-client.ts +278 -0
  62. package/dist/esm/flows/dwn-discovery.js.map +0 -1
  63. package/dist/esm/flows/dwn-registration.js.map +0 -1
  64. package/dist/esm/flows/import-identity.js +0 -175
  65. package/dist/esm/flows/import-identity.js.map +0 -1
  66. package/dist/esm/flows/local-connect.js +0 -141
  67. package/dist/esm/flows/local-connect.js.map +0 -1
  68. package/dist/esm/flows/session-restore.js.map +0 -1
  69. package/dist/esm/flows/wallet-connect.js.map +0 -1
  70. package/dist/esm/vault/vault-manager.js +0 -95
  71. package/dist/esm/vault/vault-manager.js.map +0 -1
  72. package/dist/types/flows/dwn-discovery.d.ts.map +0 -1
  73. package/dist/types/flows/dwn-registration.d.ts.map +0 -1
  74. package/dist/types/flows/import-identity.d.ts +0 -35
  75. package/dist/types/flows/import-identity.d.ts.map +0 -1
  76. package/dist/types/flows/local-connect.d.ts +0 -29
  77. package/dist/types/flows/local-connect.d.ts.map +0 -1
  78. package/dist/types/flows/session-restore.d.ts +0 -27
  79. package/dist/types/flows/session-restore.d.ts.map +0 -1
  80. package/dist/types/flows/wallet-connect.d.ts.map +0 -1
  81. package/dist/types/vault/vault-manager.d.ts +0 -57
  82. package/dist/types/vault/vault-manager.d.ts.map +0 -1
  83. package/src/flows/import-identity.ts +0 -217
  84. package/src/flows/local-connect.ts +0 -171
  85. package/src/flows/session-restore.ts +0 -142
  86. package/src/vault/vault-manager.ts +0 -89
@@ -1,7 +1,7 @@
1
1
  /**
2
- * Wallet connect (OIDC/QR) flow.
2
+ * Wallet connect (Enbox Connect relay) flow.
3
3
  *
4
- * Connects to an external wallet via the WalletConnect relay protocol,
4
+ * Connects to an external wallet via the Enbox Connect relay protocol,
5
5
  * importing a delegated DID with permission grants.
6
6
  * This replaces the "Mode B/C" paths in Enbox.connect().
7
7
  * @module
@@ -27,11 +27,11 @@ var __rest = (this && this.__rest) || function (s, e) {
27
27
  return t;
28
28
  };
29
29
  import { Convert } from '@enbox/common';
30
- import { WalletConnect } from '@enbox/agent';
30
+ import { registerWithDwnEndpoints } from '../registration.js';
31
+ import { WalletConnect } from '../wallet-connect-client.js';
32
+ import { DEFAULT_DWN_ENDPOINTS, STORAGE_KEYS } from '../types.js';
31
33
  import { DwnInterface, DwnPermissionGrant } from '@enbox/agent';
32
- import { AuthSession } from '../identity-session.js';
33
- import { registerWithDwnEndpoints } from './dwn-registration.js';
34
- import { STORAGE_KEYS } from '../types.js';
34
+ import { ensureVaultReady, finalizeSession, resolvePassword, startSyncIfEnabled } from './lifecycle.js';
35
35
  /**
36
36
  * Process connected grants by storing them in the local DWN as the owner.
37
37
  *
@@ -87,12 +87,21 @@ export function walletConnect(ctx, options) {
87
87
  throw new Error('[@enbox/auth] Sync must be enabled when using wallet connect. ' +
88
88
  'Remove sync: "off" or set an interval like "15s".');
89
89
  }
90
- // Run the full OIDC wallet connect flow.
90
+ // Ensure the agent is initialized and started before the relay flow.
91
+ const isFirstLaunch = yield userAgent.firstLaunch();
92
+ const password = yield resolvePassword(ctx, undefined, isFirstLaunch);
93
+ yield ensureVaultReady({
94
+ userAgent,
95
+ emitter,
96
+ password,
97
+ isFirstLaunch,
98
+ });
99
+ // Run the Enbox Connect relay flow.
91
100
  // permissionRequests are already agent-level ConnectPermissionRequest objects.
92
101
  const result = yield WalletConnect.initClient({
93
102
  displayName: options.displayName,
94
103
  connectServerUrl: options.connectServerUrl,
95
- walletUri: (_b = options.walletUri) !== null && _b !== void 0 ? _b : 'web5://connect',
104
+ walletUri: (_b = options.walletUri) !== null && _b !== void 0 ? _b : 'enbox://connect',
96
105
  permissionRequests: options.permissionRequests,
97
106
  onWalletUriReady: options.onWalletUriReady,
98
107
  validatePin: options.validatePin,
@@ -123,12 +132,13 @@ export function walletConnect(ctx, options) {
123
132
  });
124
133
  // Register with DWN endpoints (if registration options are provided).
125
134
  if (ctx.registration) {
126
- const dwnEndpoints = (_c = ctx.defaultDwnEndpoints) !== null && _c !== void 0 ? _c : ['https://enbox-dwn.fly.dev'];
135
+ const dwnEndpoints = (_c = ctx.defaultDwnEndpoints) !== null && _c !== void 0 ? _c : DEFAULT_DWN_ENDPOINTS;
127
136
  yield registerWithDwnEndpoints({
128
137
  userAgent: userAgent,
129
138
  dwnEndpoints,
130
139
  agentDid: userAgent.agentDid.uri,
131
140
  connectedDid,
141
+ storage: storage,
132
142
  }, ctx.registration);
133
143
  }
134
144
  // Register sync for the connected identity.
@@ -161,39 +171,23 @@ export function walletConnect(ctx, options) {
161
171
  const message = error instanceof Error ? error.message : String(error);
162
172
  throw new Error(`[@enbox/auth] Wallet connect failed: ${message}`);
163
173
  }
164
- // Start sync.
165
- const syncMode = sync === undefined ? 'live' : 'poll';
166
- const syncInterval = sync !== null && sync !== void 0 ? sync : (syncMode === 'live' ? '5m' : '2m');
167
- userAgent.sync.startSync({ mode: syncMode, interval: syncInterval })
168
- .catch((err) => {
169
- console.error('[@enbox/auth] Sync failed:', err);
170
- });
171
174
  const delegateDid = delegatePortableDid.uri;
172
- // Persist session info.
173
- yield storage.set(STORAGE_KEYS.PREVIOUSLY_CONNECTED, 'true');
174
- yield storage.set(STORAGE_KEYS.ACTIVE_IDENTITY, connectedDid);
175
- yield storage.set(STORAGE_KEYS.DELEGATE_DID, delegateDid);
176
- yield storage.set(STORAGE_KEYS.CONNECTED_DID, connectedDid);
177
- const identityInfo = {
178
- didUri: connectedDid,
179
- name: identity.metadata.name,
180
- connectedDid: identity.metadata.connectedDid,
181
- };
182
- const session = new AuthSession({
183
- agent: userAgent,
184
- did: connectedDid,
175
+ // Start sync.
176
+ startSyncIfEnabled(userAgent, sync);
177
+ // Persist session info, build AuthSession, and emit lifecycle events.
178
+ return finalizeSession({
179
+ userAgent,
180
+ emitter,
181
+ storage,
182
+ connectedDid,
185
183
  delegateDid,
186
- identity: identityInfo,
187
- });
188
- emitter.emit('identity-added', { identity: identityInfo });
189
- emitter.emit('session-start', {
190
- session: {
191
- did: session.did,
192
- delegateDid,
193
- identity: identityInfo,
184
+ identityName: identity.metadata.name,
185
+ identityConnectedDid: identity.metadata.connectedDid,
186
+ extraStorageKeys: {
187
+ [STORAGE_KEYS.DELEGATE_DID]: delegateDid,
188
+ [STORAGE_KEYS.CONNECTED_DID]: connectedDid,
194
189
  },
195
190
  });
196
- return session;
197
191
  });
198
192
  }
199
- //# sourceMappingURL=wallet-connect.js.map
193
+ //# sourceMappingURL=wallet.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wallet.js","sourceRoot":"","sources":["../../../src/connect/wallet.ts"],"names":[],"mappings":"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"}
@@ -7,26 +7,21 @@
7
7
  *
8
8
  * ## Discovery channels (browser, highest to lowest priority)
9
9
  *
10
- * 1. **URL fragment payload** — A `dwn://register` redirect just landed
10
+ * 1. **URL fragment payload** — A `dwn://connect` redirect just landed
11
11
  * on the page with the endpoint in `#`. Highest priority because it's
12
12
  * fresh and explicit.
13
13
  * 2. **Persisted endpoint** (localStorage) — A previously discovered
14
14
  * endpoint restored and re-validated via `GET /info`.
15
- * 3. **Agent-level discovery** (transparent, runs on every `sendRequest`)
16
- * — `~/.enbox/dwn.json` discovery file (Node/Bun only; skipped in
17
- * browsers) and sequential port probing on `127.0.0.1:{3000,55500–55509}`.
18
- * This channel works even if the browser-specific functions here
19
- * return `false`.
20
15
  *
21
16
  * ## Discovery channels (CLI / native, all transparent)
22
17
  *
23
- * In Node/Bun environments, all discovery happens automatically inside
18
+ * In Node/Bun environments, the agent's `LocalDwnDiscovery` reads the
19
+ * `~/.enbox/dwn.json` discovery file automatically inside
24
20
  * `AgentDwnApi.getLocalDwnEndpoint()`. The browser-specific functions
25
21
  * in this module (`checkUrlForDwnDiscoveryPayload`, `requestLocalDwnDiscovery`)
26
- * are not needed the agent reads `~/.enbox/dwn.json` and probes ports
27
- * on its own.
22
+ * are not needed in those environments.
28
23
  *
29
- * @see https://github.com/enboxorg/enbox/issues/589
24
+ * @see https://github.com/enboxorg/enbox/issues/677
30
25
  * @module
31
26
  */
32
27
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
@@ -38,13 +33,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
38
33
  step((generator = generator.apply(thisArg, _arguments || [])).next());
39
34
  });
40
35
  };
41
- import { buildDwnRegisterUrl, readDwnDiscoveryPayloadFromUrl } from '@enbox/agent';
42
- import { STORAGE_KEYS } from '../types.js';
36
+ import { EnboxRpcClient } from '@enbox/dwn-clients';
37
+ import { buildDwnConnectUrl, localDwnServerName, normalizeBaseUrl, readDwnDiscoveryPayloadFromUrl } from '@enbox/agent';
38
+ import { STORAGE_KEYS } from './types.js';
43
39
  /**
44
40
  * Check the current page URL for a `DwnDiscoveryPayload` in the fragment.
45
41
  *
46
42
  * This is called once at the start of a connection flow to detect whether
47
- * the user was just redirected back from a `dwn://register` handler. If a
43
+ * the user was just redirected back from a `dwn://connect` handler. If a
48
44
  * valid payload is found, the endpoint is persisted and the fragment is
49
45
  * cleared to prevent double-reads.
50
46
  *
@@ -67,6 +63,80 @@ export function checkUrlForDwnDiscoveryPayload() {
67
63
  }
68
64
  return payload.endpoint;
69
65
  }
66
+ // ─── Standalone (pre-agent) discovery ───────────────────────────
67
+ /**
68
+ * Validate a local DWN endpoint by calling `GET /info` and checking
69
+ * that the server identifies itself as `@enbox/dwn-server`.
70
+ *
71
+ * This function has **zero** agent or vault dependencies — it only uses
72
+ * the network. It is safe to call before the agent exists.
73
+ *
74
+ * @param endpoint - The candidate endpoint URL.
75
+ * @returns The normalised endpoint if valid, `undefined` otherwise.
76
+ */
77
+ function validateEndpointStandalone(endpoint) {
78
+ return __awaiter(this, void 0, void 0, function* () {
79
+ const normalized = normalizeBaseUrl(endpoint);
80
+ try {
81
+ const rpc = new EnboxRpcClient();
82
+ const serverInfo = yield rpc.getServerInfo(normalized);
83
+ if (serverInfo.server === localDwnServerName) {
84
+ return normalized;
85
+ }
86
+ }
87
+ catch (_a) {
88
+ // Server not reachable or not ours.
89
+ }
90
+ return undefined;
91
+ });
92
+ }
93
+ /**
94
+ * Run local DWN discovery **before the agent exists**.
95
+ *
96
+ * This is the standalone counterpart of {@link applyLocalDwnDiscovery} and
97
+ * is designed to be called in `AuthManager.create()`, before
98
+ * `EnboxUserAgent.create()`, so the agent creation can decide whether to
99
+ * spin up an in-process DWN or operate in remote mode.
100
+ *
101
+ * Discovery channels (highest → lowest priority):
102
+ * 1. **URL fragment payload** — A `dwn://connect` redirect just landed.
103
+ * 2. **Persisted endpoint** (localStorage) — A previously discovered
104
+ * endpoint, re-validated via `GET /info`.
105
+ *
106
+ * When a valid endpoint is found it is persisted to storage. When a
107
+ * previously-persisted endpoint is stale, it is removed.
108
+ *
109
+ * @param storage - The auth storage adapter (for reading/writing the
110
+ * cached endpoint).
111
+ * @returns The validated endpoint URL, or `undefined` if no local DWN
112
+ * server is available.
113
+ */
114
+ export function discoverLocalDwn(storage) {
115
+ return __awaiter(this, void 0, void 0, function* () {
116
+ // Channel 1: Fresh redirect payload in the URL fragment.
117
+ const freshEndpoint = checkUrlForDwnDiscoveryPayload();
118
+ if (freshEndpoint) {
119
+ const validated = yield validateEndpointStandalone(freshEndpoint);
120
+ if (validated) {
121
+ yield persistLocalDwnEndpoint(storage, validated);
122
+ return validated;
123
+ }
124
+ // Payload was in the URL but the server is unreachable — fall through.
125
+ }
126
+ // Channel 2: Persisted endpoint from a previous session.
127
+ const cached = yield storage.get(STORAGE_KEYS.LOCAL_DWN_ENDPOINT);
128
+ if (cached) {
129
+ const validated = yield validateEndpointStandalone(cached);
130
+ if (validated) {
131
+ return validated;
132
+ }
133
+ // Stale — server no longer running.
134
+ yield clearLocalDwnEndpoint(storage);
135
+ }
136
+ return undefined;
137
+ });
138
+ }
139
+ // ─── Storage helpers ────────────────────────────────────────────
70
140
  /**
71
141
  * Persist a discovered local DWN endpoint in auth storage.
72
142
  *
@@ -121,25 +191,18 @@ export function restoreLocalDwnEndpoint(agent, storage) {
121
191
  * Run the full local DWN discovery sequence for a browser connection flow.
122
192
  *
123
193
  * This function handles the **receiving** side of local DWN discovery in
124
- * the browser. It does NOT trigger the `dwn://register` redirect — use
194
+ * the browser. It does NOT trigger the `dwn://connect` redirect — use
125
195
  * {@link requestLocalDwnDiscovery} for that.
126
196
  *
127
197
  * The discovery channels, from highest to lowest priority:
128
198
  *
129
- * 1. **URL fragment payload** — A `dwn://register` redirect just landed on
199
+ * 1. **URL fragment payload** — A `dwn://connect` redirect just landed on
130
200
  * this page with the DWN endpoint in `#`. This is the highest-priority
131
201
  * signal because it's fresh and explicit.
132
202
  *
133
203
  * 2. **Persisted endpoint** (localStorage) — A previously discovered
134
204
  * endpoint is restored and re-validated via `GET /info`.
135
205
  *
136
- * 3. **Agent-level discovery** (transparent) — Even if this function
137
- * returns `false`, the agent's `LocalDwnDiscovery` will independently
138
- * try the discovery file (`~/.enbox/dwn.json`) and port probing on
139
- * every `sendRequest()` call. Those channels are not available in
140
- * browsers (no filesystem access, CORS may block probes), but they
141
- * work transparently in Node/Bun CLI environments.
142
- *
143
206
  * When an `emitter` is provided, this function emits:
144
207
  * - `'local-dwn-available'` with the endpoint when discovery succeeds.
145
208
  * - `'local-dwn-unavailable'` when no local DWN could be reached.
@@ -176,36 +239,30 @@ export function applyLocalDwnDiscovery(agent, storage, emitter) {
176
239
  return restored;
177
240
  });
178
241
  }
179
- // ─── dwn://register trigger ─────────────────────────────────────
242
+ // ─── dwn://connect trigger ──────────────────────────────────────
180
243
  /**
181
- * Initiate the `dwn://register` flow by opening the register URL.
244
+ * Initiate the `dwn://connect` flow by opening the connect URL.
182
245
  *
183
- * This asks the operating system to route `dwn://register?callback=<url>`
246
+ * This asks the operating system to route `dwn://connect?callback=<url>`
184
247
  * to the registered handler (electrobun-dwn), which will redirect the
185
248
  * user's browser back to `callbackUrl` with the local DWN endpoint
186
249
  * encoded in the URL fragment.
187
250
  *
188
- * **Important:** There is no reliable cross-browser API to detect whether
189
- * a `dwn://` handler is installed. If no handler is registered, this call
190
- * will silently fail or show an OS-level error dialog. Use
191
- * {@link probeLocalDwn} first to check if a local DWN is already
192
- * reachable via port probing — if it is, you can skip the register flow
193
- * entirely and call {@link applyLocalDwnDiscovery} instead.
251
+ * **Note:** There is no reliable cross-browser API to detect whether a
252
+ * `dwn://` handler is installed. If no handler is registered, this call
253
+ * will silently fail or show an OS-level error dialog.
194
254
  *
195
255
  * @param callbackUrl - The URL to redirect back to. Defaults to the
196
256
  * current page URL (without its fragment) if running in a browser.
197
- * @returns `true` if the register URL was opened, `false` if no
257
+ * @returns `true` if the connect URL was opened, `false` if no
198
258
  * callback URL could be determined (e.g. no `globalThis.location`).
199
259
  *
200
260
  * @example
201
261
  * ```ts
202
- * // Check if local DWN is already available via direct probe.
203
- * const alreadyAvailable = await probeLocalDwn();
204
- * if (!alreadyAvailable) {
205
- * // No local DWN found trigger the dwn://register flow.
206
- * requestLocalDwnDiscovery();
207
- * // The page will reload with the endpoint in the URL fragment.
208
- * }
262
+ * // Trigger the dwn://connect flow to discover a local DWN.
263
+ * requestLocalDwnDiscovery();
264
+ * // The page will reload with the endpoint in the URL fragment.
265
+ * // On the next connect/restore, applyLocalDwnDiscovery() reads it.
209
266
  * ```
210
267
  */
211
268
  export function requestLocalDwnDiscovery(callbackUrl) {
@@ -213,7 +270,7 @@ export function requestLocalDwnDiscovery(callbackUrl) {
213
270
  if (!resolvedCallback) {
214
271
  return false;
215
272
  }
216
- const registerUrl = buildDwnRegisterUrl(resolvedCallback);
273
+ const registerUrl = buildDwnConnectUrl(resolvedCallback);
217
274
  // Open the dwn:// URL. Use window.open() rather than location.href
218
275
  // assignment to avoid navigating away from the current page if the
219
276
  // OS handler isn't installed.
@@ -228,48 +285,6 @@ export function requestLocalDwnDiscovery(callbackUrl) {
228
285
  }
229
286
  return false;
230
287
  }
231
- /**
232
- * Probe whether a local DWN server is reachable via direct HTTP fetch.
233
- *
234
- * Attempts `GET http://127.0.0.1:{port}/info` on the well-known port
235
- * candidates and returns the endpoint URL of the first server that
236
- * responds with a valid `@enbox/dwn-server` identity.
237
- *
238
- * This is useful in browsers to check if a local DWN is available
239
- * *before* triggering the `dwn://register` redirect flow — if the
240
- * server is already reachable (CORS permitting), the redirect is
241
- * unnecessary.
242
- *
243
- * @returns The local DWN endpoint URL, or `undefined` if no server
244
- * was found. Returns `undefined` (rather than throwing) on CORS
245
- * errors or network failures.
246
- */
247
- export function probeLocalDwn() {
248
- return __awaiter(this, void 0, void 0, function* () {
249
- // Import port candidates from @enbox/agent. Using a dynamic import
250
- // here keeps the function self-contained and avoids circular deps.
251
- const { localDwnPortCandidates, localDwnHostCandidates } = yield import('@enbox/agent');
252
- for (const port of localDwnPortCandidates) {
253
- for (const host of localDwnHostCandidates) {
254
- const endpoint = `http://${host}:${port}`;
255
- try {
256
- const response = yield fetch(`${endpoint}/info`, { signal: AbortSignal.timeout(2000) });
257
- if (!response.ok) {
258
- continue;
259
- }
260
- const serverInfo = yield response.json();
261
- if ((serverInfo === null || serverInfo === void 0 ? void 0 : serverInfo.server) === '@enbox/dwn-server') {
262
- return endpoint;
263
- }
264
- }
265
- catch (_a) {
266
- // Network error, CORS block, or timeout — try next candidate.
267
- }
268
- }
269
- }
270
- return undefined;
271
- });
272
- }
273
288
  // ─── Internal helpers ───────────────────────────────────────────
274
289
  /** Return the current page URL without the fragment, or `undefined`. */
275
290
  function currentPageUrl() {
@@ -278,4 +293,4 @@ function currentPageUrl() {
278
293
  }
279
294
  return globalThis.location.href.split('#')[0];
280
295
  }
281
- //# sourceMappingURL=dwn-discovery.js.map
296
+ //# sourceMappingURL=discovery.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"discovery.js","sourceRoot":"","sources":["../../src/discovery.ts"],"names":[],"mappings":"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"}
package/dist/esm/index.js CHANGED
@@ -36,15 +36,19 @@
36
36
  // Core classes
37
37
  export { AuthManager } from './auth-manager.js';
38
38
  export { AuthSession } from './identity-session.js';
39
- export { VaultManager } from './vault/vault-manager.js';
40
39
  export { AuthEventEmitter } from './events.js';
40
+ // Password providers
41
+ export { PasswordProvider } from './password-provider.js';
41
42
  // Re-export agent classes so consumers can construct custom agents/vaults
42
43
  // without a direct @enbox/agent dependency.
43
44
  export { EnboxUserAgent, HdIdentityVault } from '@enbox/agent';
44
45
  // Wallet-connect helpers
45
- export { processConnectedGrants } from './flows/wallet-connect.js';
46
+ export { processConnectedGrants } from './connect/wallet.js';
47
+ export { WalletConnect } from './wallet-connect-client.js';
48
+ // Registration token storage helpers
49
+ export { loadTokensFromStorage, saveTokensToStorage } from './registration.js';
46
50
  // Local DWN discovery (browser dwn:// protocol integration)
47
- export { applyLocalDwnDiscovery, checkUrlForDwnDiscoveryPayload, clearLocalDwnEndpoint, persistLocalDwnEndpoint, probeLocalDwn, requestLocalDwnDiscovery, restoreLocalDwnEndpoint, } from './flows/dwn-discovery.js';
51
+ export { applyLocalDwnDiscovery, checkUrlForDwnDiscoveryPayload, clearLocalDwnEndpoint, discoverLocalDwn, persistLocalDwnEndpoint, requestLocalDwnDiscovery, restoreLocalDwnEndpoint, } from './discovery.js';
48
52
  // Storage adapters
49
53
  export { BrowserStorage, LevelStorage, MemoryStorage, createDefaultStorage } from './storage/storage.js';
50
54
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,eAAe;AACf,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,0EAA0E;AAC1E,4CAA4C;AAC5C,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/D,yBAAyB;AACzB,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAEnE,4DAA4D;AAC5D,OAAO,EACL,sBAAsB,EACtB,8BAA8B,EAC9B,qBAAqB,EACrB,uBAAuB,EACvB,aAAa,EACb,wBAAwB,EACxB,uBAAuB,GACxB,MAAM,0BAA0B,CAAC;AAElC,mBAAmB;AACnB,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AAEH,eAAe;AACf,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/C,qBAAqB;AACrB,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAG1D,0EAA0E;AAC1E,4CAA4C;AAC5C,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAE/D,yBAAyB;AACzB,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAG3D,qCAAqC;AACrC,OAAO,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAE/E,4DAA4D;AAC5D,OAAO,EACL,sBAAsB,EACtB,8BAA8B,EAC9B,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,wBAAwB,EACxB,uBAAuB,GACxB,MAAM,gBAAgB,CAAC;AAExB,mBAAmB;AACnB,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC"}