@digital-ai/devops-page-object-release 0.0.0-snapshot-20251205091732 → 0.0.0-snapshot-20251205190028

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
@@ -1538,6 +1538,10 @@ declare class UsersPage extends WithPage {
1538
1538
  updateUser(username: string): Promise<UserModal>;
1539
1539
  sortByColumn(columnName: string, columnIndex: number): Promise<this>;
1540
1540
  expectColumnVisible(column: string, visible?: boolean): Promise<this>;
1541
+ expectUserUnlockedToaster(user: string): Promise<void>;
1542
+ unlockUser(user: string): Promise<void>;
1543
+ expectWarningVisibility(warningRegex: RegExp, shouldBeVisible: boolean): Promise<void>;
1544
+ editUserClickCancelButton(): Promise<void>;
1541
1545
  }
1542
1546
  declare class WorkflowCatalogPage extends WithPage {
1543
1547
  constructor(page: Page);