identity-admin 1.27.9 → 1.28.0

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.
@@ -371,6 +371,17 @@ export interface IFieldValue {
371
371
  * @default false
372
372
  */
373
373
  textArea?: boolean;
374
+ /**
375
+ * Only used if the field type is REFERENCE. Used to filter the list of referenced items.
376
+ */
377
+ filter?: {
378
+ formList?: Record<string, any>;
379
+ filterList?: Record<string, any>;
380
+ };
381
+ /**
382
+ * Path to access the resource.
383
+ */
384
+ path?: string;
374
385
  }
375
386
  export interface IVirtualValue {
376
387
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "identity-admin",
3
- "version": "1.27.9",
3
+ "version": "1.28.0",
4
4
  "description": "",
5
5
  "main": "lib/Dashboard.js",
6
6
  "types": "lib/Dashbord.d.ts",