tango-api-schema 1.0.68 → 1.0.70

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "1.0.68",
3
+ "version": "1.0.70",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -131,6 +131,10 @@ const clientSchema = new mongoose.Schema(
131
131
  type: String,
132
132
  default: "",
133
133
  },
134
+ isLiveMetricsEnable: {
135
+ type: Boolean,
136
+ default: false,
137
+ },
134
138
  },
135
139
  auditConfigs: {
136
140
  count: {
@@ -130,6 +130,18 @@ const collection = new mongoose.Schema(
130
130
  },
131
131
 
132
132
  ],
133
+ total_customers_attended_after_threshold:{
134
+ type: Number,
135
+ },
136
+ total_unattended_customers:{
137
+ type: Number,
138
+ },
139
+ unattended_customers_data:{
140
+ type: Array,
141
+ },
142
+ staff_to_cust_ratio:{
143
+ type: String,
144
+ }
133
145
  },
134
146
  {
135
147
  timestamps: true,