@positivegrid/pg-mongoose-schema 27.7.5 → 27.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -555,6 +555,10 @@ module.exports = (mongoose) => {
555
555
  trial_days: { type: Number, default: 0 },
556
556
  not_allow_same_product: { type: Boolean, default: false },
557
557
  created_by: { type: String, default: null },
558
+ terminate: {
559
+ reason: { type: String },
560
+ time: { type: Date },
561
+ },
558
562
  metadata: { type: Schema.Types.Mixed, default: null },
559
563
  created_on: { type: Date, default: Date.now, required: true },
560
564
  updated_on: { type: Date, default: Date.now, required: true }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@positivegrid/pg-mongoose-schema",
3
- "version": "27.7.5",
3
+ "version": "27.7.6",
4
4
  "description": "Positive Grid mongoose schema",
5
5
  "author": "Ferrari Lee <shiyung@positivegrid.com>",
6
6
  "homepage": "https://git.positivegrid.com:8443/backend/pg-mongoose-schema",