applesauce-accounts 0.0.0-next-20250125183855 → 0.0.0-next-20250125184511

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.
@@ -37,7 +37,7 @@ describe("BaseAccount", () => {
37
37
  it("should cancel queue if request throws", () => { });
38
38
  it("should not use queueing if its disabled", async () => {
39
39
  const account = new BaseAccount(await signer.getPublicKey(), signer);
40
- account.disableQueue = false;
40
+ account.disableQueue = true;
41
41
  let resolve = [];
42
42
  vi.spyOn(signer, "signEvent").mockImplementation(() => {
43
43
  return new Promise((res) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-accounts",
3
- "version": "0.0.0-next-20250125183855",
3
+ "version": "0.0.0-next-20250125184511",
4
4
  "description": "A simple nostr account management system",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@noble/hashes": "^1.5.0",
35
- "applesauce-signer": "0.0.0-next-20250125183855",
35
+ "applesauce-signer": "0.0.0-next-20250125184511",
36
36
  "nanoid": "^5.0.9",
37
37
  "nostr-tools": "^2.10.3",
38
38
  "rxjs": "^7.8.1"