ia-table 0.12.7 → 0.12.9

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.
@@ -183,6 +183,13 @@ export interface SmartGridDisptach {
183
183
  payload?: unknown;
184
184
  }
185
185
 
186
+ export type SmartGridUpdateDataReturnType = {
187
+ success: boolean;
188
+ totalRows: number;
189
+ blocksUpdated: number;
190
+ errors: string[];
191
+ };
192
+
186
193
  export interface SmartGridAPI {
187
194
  getInfiniteRowModel: () => SmartGridInfiniteRowModel | null;
188
195
  getInfiniteCache: () => SmartGridInfiniteCache | null;
@@ -272,4 +279,7 @@ export interface SmartGridAPI {
272
279
  refreshClientSideRowModel: () => void;
273
280
  resetRecentSearchChanges: () => void;
274
281
  onFilterChanged: () => void;
282
+ updateSmartGridTableData: (
283
+ wholeData: SmartGridRowData[]
284
+ ) => SmartGridUpdateDataReturnType;
275
285
  }