@dynamatix/cat-shared 0.0.127 → 0.0.129

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.
@@ -70,6 +70,10 @@ const formfieldSchema = new mongoose.Schema({
70
70
  defaultValue: {
71
71
  type: mongoose.Schema.Types.Mixed
72
72
  },
73
+ lookupDefaultValue: {
74
+ lookupGroupName: { type: String },
75
+ lookupName: { type: String }
76
+ },
73
77
  validationRules: [{
74
78
  type: mongoose.Schema.Types.Mixed,
75
79
  default: {}
@@ -133,6 +137,10 @@ const formfieldSchema = new mongoose.Schema({
133
137
  type: String,
134
138
  default: null
135
139
  },
140
+ isHtmlContent: {
141
+ type: Boolean,
142
+ default: false
143
+ },
136
144
  syncMapping: mongoose.Schema.Types.Mixed, // Ex: {true:'Checked', false: ''}
137
145
  order: {
138
146
  type: Number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/cat-shared",
3
- "version": "0.0.127",
3
+ "version": "0.0.129",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"