identity-admin 1.28.12 → 1.28.13
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.
|
@@ -53,6 +53,8 @@ class ResourcesHelper {
|
|
|
53
53
|
static prepareProperties(properties, modelName, model, resource) {
|
|
54
54
|
var preparedProperties = [];
|
|
55
55
|
properties.forEach((key) => {
|
|
56
|
+
if (!key)
|
|
57
|
+
return;
|
|
56
58
|
if (model[key]) {
|
|
57
59
|
// const refCheck = model[key].type === FieldTypes.REFERENCE
|
|
58
60
|
// var path = undefined
|
|
@@ -376,6 +376,11 @@ export interface IFieldValue {
|
|
|
376
376
|
* @default undefined
|
|
377
377
|
*/
|
|
378
378
|
relatedFields?: string[];
|
|
379
|
+
/**
|
|
380
|
+
* Used to add the disableImageOptimization option in the field. Only used when the type of the field is image
|
|
381
|
+
* @default false
|
|
382
|
+
*/
|
|
383
|
+
disableImageOptimization?: boolean;
|
|
379
384
|
/**
|
|
380
385
|
* Only used if the field type is REFERENCE. Used to filter the list of referenced items.
|
|
381
386
|
*/
|