@forest-fire/firestore-db
Advanced tools
Comparing version 0.8.0 to 0.10.0
@@ -1,1 +0,2 @@ | ||
export * from './src'; | ||
export * from './FirestoreDb'; | ||
export * from './types'; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./src")); | ||
__export(require("./FirestoreDb")); | ||
//# sourceMappingURL=index.js.map |
@@ -1,1 +0,2 @@ | ||
export * from './src'; | ||
export * from './FirestoreDb'; | ||
export * from './types'; |
@@ -1,2 +0,2 @@ | ||
export * from './src'; | ||
export * from './FirestoreDb'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@forest-fire/firestore-db", | ||
"version": "0.8.0", | ||
"version": "0.10.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs", |
@@ -70,8 +70,3 @@ import { AbstractedDatabase } from '@forest-fire/abstracted-database'; | ||
public async getValue<T = any>(path: string) { | ||
// const pathIsCollection = this._isCollection(path); | ||
// if (pathIsCollection) { | ||
// this._removeCollection(path); | ||
// } else { | ||
// this._removeDocument(path); | ||
// } | ||
throw new Error('Not implemented'); | ||
} | ||
@@ -108,9 +103,4 @@ | ||
public ref(path: string) { | ||
const pathIsCollection = this._isCollection(path); | ||
if (pathIsCollection) { | ||
return this.database.collection(path); | ||
} else { | ||
return this.database.doc(path); | ||
} | ||
public ref(path = '/') { | ||
throw new Error('Not implemented'); | ||
} | ||
@@ -117,0 +107,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20724
27
379
1