From f468758c75dbef4c776ad347e7766608569d7daf Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Fri, 19 Jun 2026 06:04:44 +0100 Subject: [PATCH] Repo boundary breach detection on import normalise --- _types/src/LiveSyncBaseCore.d.ts | 32 ++++++++++++++++---------------- _types/src/deps.d.ts | 2 +- _types/src/types.d.ts | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/_types/src/LiveSyncBaseCore.d.ts b/_types/src/LiveSyncBaseCore.d.ts index e7940d4..518fd74 100644 --- a/_types/src/LiveSyncBaseCore.d.ts +++ b/_types/src/LiveSyncBaseCore.d.ts @@ -1,20 +1,20 @@ // REPO: https://github.com/vrtmrz/livesync-commonlib Commit hash: 6de1db1 import type { SimpleStore } from "octagonal-wheels/databases/SimpleStoreBase"; -import type { HasSettings, ObsidianLiveSyncSettings, EntryDoc } from "./lib/src/common/types"; -import type { Confirm } from "./lib/src/interfaces/Confirm"; -import type { DatabaseFileAccess } from "./lib/src/interfaces/DatabaseFileAccess"; -import type { Rebuilder } from "./lib/src/interfaces/DatabaseRebuilder"; -import type { IFileHandler } from "./lib/src/interfaces/FileHandler"; -import type { StorageAccess } from "./lib/src/interfaces/StorageAccess"; -import type { LiveSyncLocalDBEnv } from "./lib/src/pouchdb/LiveSyncLocalDB"; -import type { LiveSyncCouchDBReplicatorEnv } from "./lib/src/replication/couchdb/LiveSyncReplicator"; -import type { CheckPointInfo } from "./lib/src/replication/journal/JournalSyncTypes"; -import type { LiveSyncJournalReplicatorEnv } from "./lib/src/replication/journal/LiveSyncJournalReplicatorEnv"; -import type { LiveSyncReplicatorEnv } from "./lib/src/replication/LiveSyncAbstractReplicator"; -import type { ServiceContext } from "./lib/src/services/base/ServiceBase"; -import type { InjectableServiceHub } from "./lib/src/services/InjectableServices"; +import type { HasSettings, ObsidianLiveSyncSettings, EntryDoc } from "@lib/common/types"; +import type { Confirm } from "@lib/interfaces/Confirm"; +import type { DatabaseFileAccess } from "@lib/interfaces/DatabaseFileAccess"; +import type { Rebuilder } from "@lib/interfaces/DatabaseRebuilder"; +import type { IFileHandler } from "@lib/interfaces/FileHandler"; +import type { StorageAccess } from "@lib/interfaces/StorageAccess"; +import type { LiveSyncLocalDBEnv } from "@lib/pouchdb/LiveSyncLocalDB"; +import type { LiveSyncCouchDBReplicatorEnv } from "@lib/replication/couchdb/LiveSyncReplicator"; +import type { CheckPointInfo } from "@lib/replication/journal/JournalSyncTypes"; +import type { LiveSyncJournalReplicatorEnv } from "@lib/replication/journal/LiveSyncJournalReplicatorEnv"; +import type { LiveSyncReplicatorEnv } from "@lib/replication/LiveSyncAbstractReplicator"; +import type { ServiceContext } from "@lib/services/base/ServiceBase"; +import type { InjectableServiceHub } from "@lib/services/InjectableServices"; import { AbstractModule } from "./modules/AbstractModule"; -import type { ServiceModules } from "./lib/src/interfaces/ServiceModule"; +import type { ServiceModules } from "@lib/interfaces/ServiceModule"; import type { Constructor } from "@lib/common/utils.type"; export declare class LiveSyncBaseCore implements LiveSyncLocalDBEnv, LiveSyncReplicatorEnv, LiveSyncJournalReplicatorEnv, LiveSyncCouchDBReplicatorEnv, HasSettings { addOns: TCommands[]; @@ -82,7 +82,7 @@ export declare class LiveSyncBaseCore(from: T) => T; diff --git a/_types/src/types.d.ts b/_types/src/types.d.ts index dc94eba..6cee45a 100644 --- a/_types/src/types.d.ts +++ b/_types/src/types.d.ts @@ -3,7 +3,7 @@ import type { DatabaseFileAccess } from "@lib/interfaces/DatabaseFileAccess"; import type { Rebuilder } from "@lib/interfaces/DatabaseRebuilder"; import type { IFileHandler } from "@lib/interfaces/FileHandler"; import type { StorageAccess } from "@lib/interfaces/StorageAccess"; -import type { IServiceHub } from "./lib/src/services/base/IService"; +import type { IServiceHub } from "@lib/services/base/IService"; export interface ServiceModules { storageAccess: StorageAccess; /**