@sistent/sistent 0.14.209 → 0.14.211

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.mts CHANGED
@@ -1243,6 +1243,8 @@ interface Tutorial {
1243
1243
  description: string;
1244
1244
  status?: boolean;
1245
1245
  cardImage: string;
1246
+ type?: string;
1247
+ level?: string;
1246
1248
  };
1247
1249
  }
1248
1250
  interface Props$1 {
@@ -1365,6 +1367,8 @@ interface TeamTableProps {
1365
1367
  columns: MUIDataTableColumn[];
1366
1368
  updateCols: (cols: any) => void;
1367
1369
  isRemoveFromTeamAllowed: boolean;
1370
+ isEditUserAllowed?: any;
1371
+ handleEditUser?: any;
1368
1372
  org_id: string;
1369
1373
  useGetUsersForOrgQuery: any;
1370
1374
  useNotificationHandlers: any;
@@ -1548,6 +1552,8 @@ interface UsersTableProps {
1548
1552
  useRemoveUserFromTeamMutation: any;
1549
1553
  useNotificationHandlers: any;
1550
1554
  isRemoveFromTeamAllowed: boolean;
1555
+ isEditUserAllowed: boolean;
1556
+ handleEditUser: (data: any[]) => () => void;
1551
1557
  theme?: Theme;
1552
1558
  }
1553
1559
  declare const UsersTable: React.FC<UsersTableProps>;
package/dist/index.d.ts CHANGED
@@ -1243,6 +1243,8 @@ interface Tutorial {
1243
1243
  description: string;
1244
1244
  status?: boolean;
1245
1245
  cardImage: string;
1246
+ type?: string;
1247
+ level?: string;
1246
1248
  };
1247
1249
  }
1248
1250
  interface Props$1 {
@@ -1365,6 +1367,8 @@ interface TeamTableProps {
1365
1367
  columns: MUIDataTableColumn[];
1366
1368
  updateCols: (cols: any) => void;
1367
1369
  isRemoveFromTeamAllowed: boolean;
1370
+ isEditUserAllowed?: any;
1371
+ handleEditUser?: any;
1368
1372
  org_id: string;
1369
1373
  useGetUsersForOrgQuery: any;
1370
1374
  useNotificationHandlers: any;
@@ -1548,6 +1552,8 @@ interface UsersTableProps {
1548
1552
  useRemoveUserFromTeamMutation: any;
1549
1553
  useNotificationHandlers: any;
1550
1554
  isRemoveFromTeamAllowed: boolean;
1555
+ isEditUserAllowed: boolean;
1556
+ handleEditUser: (data: any[]) => () => void;
1551
1557
  theme?: Theme;
1552
1558
  }
1553
1559
  declare const UsersTable: React.FC<UsersTableProps>;