Socket
Socket
Sign inDemoInstall

firearch

Package Overview
Dependencies
252
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1018 to 0.0.1019

14

model.js

@@ -287,2 +287,16 @@ const { asyncForEach } = require('./utils');

schema() {
const schema = {};
for (const key in this._modelSchema._fieldDefs) {
// console.log(key);
if (typeof this._modelSchema._fieldDefs[key] === 'function') {
schema[key] = this._modelSchema._fieldDefs[key].name;
} else {
schema[key] = this._modelSchema._fieldDefs[key];
}
}
return schema;
}
};

2

package.json
{
"name": "firearch",
"version": "0.0.1018",
"version": "0.0.1019",
"description": "Schema modeling for Firestore",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc