rez-table-listing-mui 1.3.32 → 1.3.34

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.
package/dist/index.d.ts CHANGED
@@ -22,6 +22,9 @@ interface FilterOperationListProps {
22
22
  value: string;
23
23
  is_shared: boolean;
24
24
  is_editable: boolean;
25
+ is_owner: boolean;
26
+ created_by: string;
27
+ description: string | null;
25
28
  }
26
29
  interface FilterSharedListProps {
27
30
  created_date: string;
@@ -216,6 +219,7 @@ interface createSavedFilterPayload {
216
219
  enterprise_id?: number;
217
220
  user_id?: number;
218
221
  is_default: boolean;
222
+ description: string | null;
219
223
  mapped_entity_type: string;
220
224
  status?: string;
221
225
  entity_type: string;
@@ -265,8 +269,10 @@ interface FilterMasterStateProps {
265
269
  selectedId: string;
266
270
  selectedName: string;
267
271
  selectedCode?: string;
272
+ description?: string;
268
273
  is_shared?: boolean;
269
274
  is_editable?: boolean;
275
+ is_owner?: boolean;
270
276
  };
271
277
  activeFilterTabIndex: number;
272
278
  shared_filters_meta?: Record<string, SavedFilterSharingPreference>;