applesauce-accounts 0.0.0-next-20250129183155 → 0.0.0-next-20250130155410

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.
@@ -1,4 +1,5 @@
1
1
  import { ExtensionAccount } from "./extension-account.js";
2
+ import { NostrConnectAccount } from "./nostr-connect-account.js";
2
3
  import { PasswordAccount } from "./password-account.js";
3
4
  import { ReadonlyAccount } from "./readonly-account.js";
4
5
  import { SimpleAccount } from "./simple-account.js";
@@ -8,4 +9,5 @@ export function registerCommonAccountTypes(manager) {
8
9
  manager.registerType(PasswordAccount);
9
10
  manager.registerType(ReadonlyAccount);
10
11
  manager.registerType(SimpleAccount);
12
+ manager.registerType(NostrConnectAccount);
11
13
  }
package/dist/manager.js CHANGED
@@ -141,6 +141,8 @@ export class AccountManager {
141
141
  catch (error) {
142
142
  if (!quite)
143
143
  throw error;
144
+ else
145
+ console.log(`Failed to load account`, error);
144
146
  }
145
147
  }
146
148
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-accounts",
3
- "version": "0.0.0-next-20250129183155",
3
+ "version": "0.0.0-next-20250130155410",
4
4
  "description": "A simple nostr account management system",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@noble/hashes": "^1.5.0",
36
- "applesauce-signers": "0.0.0-next-20250129183155",
36
+ "applesauce-signers": "0.0.0-next-20250130155410",
37
37
  "nanoid": "^5.0.9",
38
38
  "nostr-tools": "^2.10.3",
39
39
  "rxjs": "^7.8.1"