tango-api-schema 2.2.126 → 2.2.127

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/index.js CHANGED
@@ -88,7 +88,7 @@ import auditConfigModel from "./schema/auditConfig.model.js";
88
88
  import revopConfigModel from "./schema/revopConfig.model.js";
89
89
  import planoCrestLogModel from './schema/planoCrestLog.model.js';
90
90
  import countryCurrencyModel from './schema/countryCurrency.model.js';
91
-
91
+ import streamingModel from './schema/streaming.model.js';
92
92
 
93
93
 
94
94
  export default {
@@ -182,4 +182,5 @@ export default {
182
182
  revopConfigModel,
183
183
  planoCrestLogModel,
184
184
  countryCurrencyModel,
185
+ streamingModel
185
186
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.2.126",
3
+ "version": "2.2.127",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -7,9 +7,7 @@ import mongoose from 'mongoose';
7
7
 
8
8
  // Schema
9
9
  const streaming = new mongoose.Schema( {
10
- storeId: {
11
- type: String,
12
- },
10
+
13
11
  streamName:{
14
12
  type: String,
15
13
  unique: true,