tango-api-schema 2.2.93 → 2.2.94

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
@@ -82,7 +82,7 @@ import fixtureConfigModel from './schema/fixtureConfig.model.js';
82
82
  import fixtureShelfModel from './schema/fixtureShelf.model.js';
83
83
  import planoTaskCompliance from './schema/planoTaskCompliance.model.js';
84
84
  import planoQrConversionRequest from './schema/planoQrConversionRequest.model.js';
85
- import planoStaticBrandCategories from './schema/planoStaticBrandCategories.model.js';
85
+ import planoStaticData from './schema/planoStaticData.model.js';
86
86
  import suspiciousActivityModel from "./schema/suspiciousActivity.model.js";
87
87
 
88
88
 
@@ -171,7 +171,7 @@ export default {
171
171
  fixtureShelfModel,
172
172
  planoTaskCompliance,
173
173
  planoQrConversionRequest,
174
- planoStaticBrandCategories,
174
+ planoStaticData,
175
175
  suspiciousActivityModel
176
176
 
177
177
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.2.93",
3
+ "version": "2.2.94",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -1,8 +1,11 @@
1
1
  import mongoose from 'mongoose';
2
2
 
3
- const planoStaticBrandCategories = new mongoose.Schema({
3
+ const planoStaticData = new mongoose.Schema({
4
4
  data: {
5
5
  type: Array,
6
+ },
7
+ type:{
8
+ type:String
6
9
  }
7
10
  },
8
11
  {
@@ -12,4 +15,4 @@ const planoStaticBrandCategories = new mongoose.Schema({
12
15
  },
13
16
  );
14
17
 
15
- export default mongoose.model( 'planoStaticBrandCategory', planoStaticBrandCategories);
18
+ export default mongoose.model( 'planoStaticData', planoStaticData);