@dynamatix/cat-shared 0.0.124 → 0.0.126
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.
|
@@ -153,6 +153,10 @@ const formfieldSchema = new mongoose.Schema({
|
|
|
153
153
|
type: Boolean,
|
|
154
154
|
default: false
|
|
155
155
|
},
|
|
156
|
+
readOnlyCondition: { // (LendingType=='BTL' || ApplicationType=='Company')
|
|
157
|
+
type: mongoose.Schema.Types.Mixed,
|
|
158
|
+
default: null
|
|
159
|
+
},
|
|
156
160
|
collectionName: { // name of collection for field if field doesnt belong to main collection
|
|
157
161
|
type: String,
|
|
158
162
|
default: null
|
|
@@ -250,6 +254,10 @@ const formConfigurationSchema = new mongoose.Schema({
|
|
|
250
254
|
type: Boolean,
|
|
251
255
|
default: true
|
|
252
256
|
},
|
|
257
|
+
isActiveRecordOnly: {
|
|
258
|
+
type: Boolean,
|
|
259
|
+
default: false
|
|
260
|
+
},
|
|
253
261
|
isDeleteApprivoSync: {
|
|
254
262
|
type: Boolean,
|
|
255
263
|
default: true
|