tango-api-schema 2.2.35 → 2.2.37
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
package/schema/camera.model.js
CHANGED
package/schema/client.model.js
CHANGED
|
@@ -86,7 +86,7 @@ const storeFixtureSchema = new mongoose.Schema(
|
|
|
86
86
|
associatedElementNumber: {
|
|
87
87
|
type: Number,
|
|
88
88
|
},
|
|
89
|
-
|
|
89
|
+
fixtureConfigId: {
|
|
90
90
|
type: mongoose.Types.ObjectId,
|
|
91
91
|
required: true,
|
|
92
92
|
},
|
|
@@ -114,6 +114,12 @@ const storeFixtureSchema = new mongoose.Schema(
|
|
|
114
114
|
type: Number,
|
|
115
115
|
required: true,
|
|
116
116
|
},
|
|
117
|
+
productResolutionLevel: {
|
|
118
|
+
type: String,
|
|
119
|
+
enum: [ 'L1', 'L2', 'L3', 'L4', 'L5' ],
|
|
120
|
+
// L1- floor level, L2- fixture level, L3- fixture-shelf level, L4- fixture-shelf-product level
|
|
121
|
+
default: 'L3',
|
|
122
|
+
}
|
|
117
123
|
},
|
|
118
124
|
{
|
|
119
125
|
strict: true,
|