@digital-ai/devops-page-object-release 0.0.0-snapshot-20251205091732 → 0.0.0-snapshot-20251205180746
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/CHANGELOG.md +8 -2
- package/dist/main.js +22 -9
- package/dist/main.js.map +1 -1
- package/dist/module.js +22 -9
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1527,7 +1527,6 @@ declare class UsersPage extends WithPage {
|
|
|
1527
1527
|
openPermissions(): Promise<void>;
|
|
1528
1528
|
openTaskAccess(): Promise<void>;
|
|
1529
1529
|
expectUsers(users: Array<{
|
|
1530
|
-
accountLocked?: boolean;
|
|
1531
1530
|
email?: string;
|
|
1532
1531
|
external: boolean;
|
|
1533
1532
|
externalId?: string;
|
|
@@ -1538,6 +1537,10 @@ declare class UsersPage extends WithPage {
|
|
|
1538
1537
|
updateUser(username: string): Promise<UserModal>;
|
|
1539
1538
|
sortByColumn(columnName: string, columnIndex: number): Promise<this>;
|
|
1540
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>;
|
|
1541
1544
|
}
|
|
1542
1545
|
declare class WorkflowCatalogPage extends WithPage {
|
|
1543
1546
|
constructor(page: Page);
|