chore: temporarily disable Firestore functionality and remove Firebase dependencies

Commented out all Firestore-related code across the project, including sync, storage, and vector search features. Removed Firebase dependencies (`firebase`, `firebase-admin`) from `package.json`. Updated `README.md` to reflect the temporary unavailability of Firestore features.
This commit is contained in:
David Snelling 2025-06-02 12:43:44 -07:00
parent 7e31719b2a
commit 3659b0069b
5 changed files with 166 additions and 237 deletions

View file

@ -1,3 +1,5 @@
// TEMPORARILY COMMENTED OUT: Firebase vector search type declarations
/*
declare module '@firebase/firestore-vector-search' {
interface VectorSearchOptions {
collection: any;
@ -15,3 +17,4 @@ declare module '@firebase/firestore-vector-search' {
export function findNearest(options: VectorSearchOptions): Promise<VectorSearchResult[]>;
}
*/