@dynamatix/cat-shared 0.0.70 → 0.0.71

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.
@@ -252,6 +252,6 @@ const formConfigurationSchema = new mongoose.Schema({
252
252
  }
253
253
  }, { timestamps: true });
254
254
 
255
- const FormConfigurationModel = mongoose.models.FormConfigurationModel || mongoose.model('FormConfiguration', formConfigurationSchema);
255
+ const FormConfigurationModel = mongoose.models.FormConfiguration || mongoose.model('FormConfiguration', formConfigurationSchema);
256
256
 
257
257
  export default FormConfigurationModel;
@@ -8,5 +8,5 @@ const valueReferenceMapSchema = new mongoose.Schema({
8
8
 
9
9
  valueReferenceMapSchema.index({ field: 1 }, { unique: true });
10
10
 
11
- const ValueReferenceMapModel = mongoose.models.ValueReferenceMapModel || mongoose.model('ValueReferenceMap', valueReferenceMapSchema);
11
+ const ValueReferenceMapModel = mongoose.models.ValueReferenceMap || mongoose.model('ValueReferenceMap', valueReferenceMapSchema);
12
12
  export default ValueReferenceMapModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/cat-shared",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"