commit d58bc3e68e4a5bf701c1a0bc07abbeb341b476fd
parent 29eaf4adbfed09d049bd5dcac7a1e2481c26dd69
Author: triesap <137732411+triesap@users.noreply.github.com>
Date: Sun, 3 Aug 2025 22:18:47 +0000
apps-lib: update working tree
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/apps-lib/package.json b/apps-lib/package.json
@@ -51,7 +51,7 @@
"@nostr-dev-kit/ndk-cache-dexie": "^2.5.9",
"@nostr-dev-kit/ndk-svelte": "^2.4.0",
"@radroots/locales": "*",
- "@radroots/nostr-util": "*",
+ "@radroots/utils-nostr": "*",
"@radroots/radroots-common-bindings": "*",
"@radroots/theme": "*",
"@radroots/util": "*",
diff --git a/apps-lib/src/lib/util/nostr/nostr-poll-relays.ts b/apps-lib/src/lib/util/nostr/nostr-poll-relays.ts
@@ -1,6 +1,6 @@
import { get_store, handle_err, ndk_user, nostr_poll_relays_attempts, nostr_poll_relays_attempts_max, nostr_poll_relays_stop, nostr_relays_connected } from "$root";
-import { lib_nostr_relay_build_information_document, type NostrRelayInformationDocumentFields } from "@radroots/nostr-util";
import { type CallbackPromiseFull, type CallbackPromiseGeneric, type ErrorMessage, type I18nTranslateFunction, type IHttpResponse } from "@radroots/util";
+import { lib_nostr_relay_build_information_document, type NostrRelayInformationDocumentFields } from "@radroots/utils-nostr";
export const nostr_poll_relays_retry_handler = async (callback: () => Promise<any>) => {
let current_count = 0;
diff --git a/apps-lib/src/lib/util/nostr/nostr-sync.ts b/apps-lib/src/lib/util/nostr/nostr-sync.ts
@@ -1,6 +1,6 @@
import { get_store, handle_err, ndk_user, nostr_sync, nostr_sync_attempts, nostr_sync_attempts_max, nostr_sync_prevent, nostr_sync_stop } from "$root";
-import type { INostrMetadata } from "@radroots/nostr-util";
import { throw_err, type CallbackPromiseFull, type CallbackPromiseGeneric, type I18nTranslateFunction } from "@radroots/util";
+import type { INostrMetadata } from "@radroots/utils-nostr";
export const nostr_sync_retry_handler = async (callback: () => Promise<any>) => {
let current_count = 0;
diff --git a/apps-lib/src/lib/util/service/nostr-sync.ts b/apps-lib/src/lib/util/service/nostr-sync.ts
@@ -1,8 +1,8 @@
import { get_store, handle_err, ndk, ndk_user } from "$root";
import type { NDKEvent, NDKUser } from "@nostr-dev-kit/ndk";
import type NDKSvelte from "@nostr-dev-kit/ndk-svelte";
-import { ndk_event_metadata, type INostrMetadata } from "@radroots/nostr-util";
import { err_msg, type ErrorMessage } from "@radroots/util";
+import { ndk_event_metadata, type INostrMetadata } from "@radroots/utils-nostr";
export type INostrSyncServiceMetadata = {
metadata: INostrMetadata;