@cendo/database-schemas
Advanced tools
Comparing version
{ | ||
"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, |
3843
9.49%178
7.23%