@pintahub/database-schemas 3.9.2 → 3.9.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/Order.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pintahub/database-schemas",
3
- "version": "3.9.2",
3
+ "version": "3.9.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Order.js CHANGED
@@ -102,6 +102,10 @@ const Order = new Schema({
102
102
  type: MoneyObject,
103
103
  },
104
104
 
105
+ payout: {
106
+ type: MoneyObject,
107
+ },
108
+
105
109
  email: {
106
110
  type: String,
107
111
  trim: true,