🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →

@cendo/database-schemas

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cendo/database-schemas - npm Package Compare versions

Comparing version

to
1.0.5

{
"name": "@cendo/database-schemas",
"version": "1.0.4",
"version": "1.0.5",
"description": "",

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

@@ -33,2 +33,16 @@ const {Schema} = require('mongoose')

fulfillment_status: {
type: String,
default: 'unfulfilled',
enum: ['unfulfilled', 'processing', 'fulfilled', 'cancelled'],
index: true
},
validation_status: {
type: String,
default: 'pending',
enum: ['pending', 'approved', 'rejected'],
index: true
},
updated_at: {

@@ -35,0 +49,0 @@ type: Date,