@extrahorizon/exh-cli 1.12.0-dev-150-a93c690 → 1.12.0-dev-151-7544bdb
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.
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"type": "object",
|
|
166
166
|
"required": ["type"],
|
|
167
167
|
"properties": {
|
|
168
|
-
"type": { "enum": ["object", "array", "string", "number", "boolean"] }
|
|
168
|
+
"type": { "enum": ["object", "array", "string", "number", "boolean", "object_id", "date"] }
|
|
169
169
|
},
|
|
170
170
|
"allOf": [
|
|
171
171
|
{
|
|
@@ -212,6 +212,24 @@
|
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
214
|
"then": { "$ref": "#/definitions/BooleanConfiguration" }
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"if": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"type": { "const": "object_id" }
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"then": { "$ref": "#/definitions/ObjectIdConfiguration" }
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"if": {
|
|
227
|
+
"type": "object",
|
|
228
|
+
"properties": {
|
|
229
|
+
"type": { "const": "date" }
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"then": { "$ref": "#/definitions/DateConfiguration" }
|
|
215
233
|
}
|
|
216
234
|
]
|
|
217
235
|
},
|
|
@@ -256,6 +274,20 @@
|
|
|
256
274
|
"properties": {
|
|
257
275
|
"type": { "const": "boolean" }
|
|
258
276
|
}
|
|
277
|
+
},
|
|
278
|
+
"ObjectIdConfiguration": {
|
|
279
|
+
"type": "object",
|
|
280
|
+
"required": ["type"],
|
|
281
|
+
"properties": {
|
|
282
|
+
"type": { "const": "object_id" }
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"DateConfiguration": {
|
|
286
|
+
"type": "object",
|
|
287
|
+
"required": ["type"],
|
|
288
|
+
"properties": {
|
|
289
|
+
"type": { "const": "date" }
|
|
290
|
+
}
|
|
259
291
|
}
|
|
260
292
|
}
|
|
261
293
|
}
|