tango-api-schema 1.0.70 → 1.0.72

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.70",
3
+ "version": "1.0.72",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -96,6 +96,18 @@ const clientSchema = new mongoose.Schema(
96
96
  type: String,
97
97
  },
98
98
  },
99
+ liveMetrics: {
100
+ type: String,
101
+ default: "",
102
+ },
103
+ isLiveMetricsEnable:{
104
+ type: Boolean,
105
+ default: false,
106
+ },
107
+ liveMetricsType: {
108
+ type: String,
109
+ default: "",
110
+ },
99
111
  },
100
112
  clientStatus: {
101
113
  type: String,
@@ -127,14 +139,6 @@ const clientSchema = new mongoose.Schema(
127
139
  type: String,
128
140
  default: "",
129
141
  },
130
- liveMetrics: {
131
- type: String,
132
- default: "",
133
- },
134
- isLiveMetricsEnable: {
135
- type: Boolean,
136
- default: false,
137
- },
138
142
  },
139
143
  auditConfigs: {
140
144
  count: {
@@ -36,6 +36,9 @@ const collection = new mongoose.Schema(
36
36
  storeId: {
37
37
  type: String,
38
38
  },
39
+ processType:{
40
+ type: String,
41
+ }
39
42
  },
40
43
  {
41
44
  timestamps: true,