@dynamatix/cat-shared 0.0.162 → 0.0.164
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.
|
@@ -261,6 +261,10 @@ const formConfigurationSchema = new mongoose.Schema({
|
|
|
261
261
|
type: Boolean,
|
|
262
262
|
default: false
|
|
263
263
|
},
|
|
264
|
+
isShowDateTime: {
|
|
265
|
+
type: Boolean,
|
|
266
|
+
default: false
|
|
267
|
+
},
|
|
264
268
|
isTable: {
|
|
265
269
|
type: Boolean,
|
|
266
270
|
default: false
|
|
@@ -325,6 +329,7 @@ const formConfigurationSchema = new mongoose.Schema({
|
|
|
325
329
|
schemaDeployment: {
|
|
326
330
|
configSavedAt: { type: String },
|
|
327
331
|
prRaisedAt: { type: String },
|
|
332
|
+
reviewedAt: { type: String },
|
|
328
333
|
mergedAt: { type: String },
|
|
329
334
|
publishedAt: { type: String },
|
|
330
335
|
apisUpdatedAt: { type: String }
|