c2-clinical 1.0.86 → 1.0.88

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.
@@ -74,13 +74,15 @@ exports.FormUnitSchema = new mongoose_1.Schema({
74
74
  description: { type: String },
75
75
  labelButtonCancel: { type: String },
76
76
  labelButtonConfirm: { type: String }
77
- }
77
+ },
78
+ _id: false
78
79
  },
79
80
  //DADOS PARA GRUPO
80
81
  groupConfig: {
81
82
  type: {
82
83
  showTips: { type: Boolean, default: true }
83
- }
84
+ },
85
+ _id: false
84
86
  },
85
87
  tips: {
86
88
  type: [
@@ -92,7 +94,8 @@ exports.FormUnitSchema = new mongoose_1.Schema({
92
94
  url: { type: String }, // URL para imagens ou vídeos
93
95
  thumb: { type: String } // Miniatura para imagens ou vídeos
94
96
  }
95
- ]
97
+ ],
98
+ _id: false
96
99
  }
97
100
  }, {
98
101
  timestamps: { createdAt: "createdAtDateTime", updatedAt: "updatedAtDateTime" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "c2-clinical",
3
- "version": "1.0.86",
3
+ "version": "1.0.88",
4
4
  "description": "Biblioteca Typescript para API NodeJS",
5
5
  "repository": "https://github.com/cabralsilva/c2-clinical.git",
6
6
  "author": "Daniel Cabral <cabralconsultoriaemsoftware@gmail.com>",