diff --git a/main.ts b/main.ts index 3263e6e..86b815f 100644 --- a/main.ts +++ b/main.ts @@ -209,7 +209,7 @@ export default class VectorSearchPlugin extends Plugin { await adapter.write(vectorPath, JSON.stringify(payload, null, 2)); } - private async clearVectorStore(): Promise { + async clearVectorStore(): Promise { const adapter = this.app.vault.adapter; const vectorPath = this.getVectorStorePath(); this.vectorStore.clear(); @@ -218,7 +218,7 @@ export default class VectorSearchPlugin extends Plugin { } } - private markRequirementsStale(): void { + markRequirementsStale(): void { this.requirementsOk = null; } @@ -351,7 +351,7 @@ export default class VectorSearchPlugin extends Plugin { } } - private async ensureRequirements(showNotice: boolean): Promise { + async ensureRequirements(showNotice: boolean): Promise { if (this.requirementsOk === true) { return true; }