@digital-ai/devops-page-object-release 0.0.93 → 0.0.94

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