Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@forest-fire/firestore-db

Package Overview
Dependencies
Maintainers
2
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forest-fire/firestore-db - npm Package Compare versions

Comparing version 0.8.0 to 0.10.0

dist/cjs/FirestoreDb.d.ts

3

dist/cjs/index.d.ts

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc