@digital-ai/devops-page-object-release 0.0.0-snapshot-20251203110023 → 0.0.0-snapshot-20251204122443

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/types.d.ts CHANGED
@@ -1527,6 +1527,7 @@ declare class UsersPage extends WithPage {
1527
1527
  openPermissions(): Promise<void>;
1528
1528
  openTaskAccess(): Promise<void>;
1529
1529
  expectUsers(users: Array<{
1530
+ accountLocked?: string;
1530
1531
  email?: string;
1531
1532
  external: boolean;
1532
1533
  externalId?: string;
@@ -1537,10 +1538,6 @@ declare class UsersPage extends WithPage {
1537
1538
  updateUser(username: string): Promise<UserModal>;
1538
1539
  sortByColumn(columnName: string, columnIndex: number): Promise<this>;
1539
1540
  expectColumnVisible(column: string, visible?: boolean): Promise<this>;
1540
- verifyUserUnlockedToaster(user: string): Promise<void>;
1541
- unlockUser(user: string): Promise<void>;
1542
- verifyWarningVisibility(warningRegex: RegExp, shouldBeVisible: boolean): Promise<this>;
1543
- editUserClickCancelButton(): Promise<void>;
1544
1541
  }
1545
1542
  declare class WorkflowCatalogPage extends WithPage {
1546
1543
  constructor(page: Page);