@digital-ai/devops-page-object-release 0.0.0-snapshot-20251201073056 → 0.0.0-snapshot-20251204060936
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 +2 -2
- package/dist/main.js +19 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +19 -12
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1444,7 +1444,6 @@ declare class HeaderPage extends WithPage {
|
|
|
1444
1444
|
verifyDigitalAiWebsite(): Promise<void>;
|
|
1445
1445
|
clickAvatarIcon(username: string): Promise<void>;
|
|
1446
1446
|
verifyUser(userFullName: string): Promise<void>;
|
|
1447
|
-
verifyUserReginalSettings(userFullName: string): Promise<void>;
|
|
1448
1447
|
clickAccessTokens(): Promise<void>;
|
|
1449
1448
|
getVersionNumber(): Promise<string>;
|
|
1450
1449
|
}
|
|
@@ -1483,7 +1482,6 @@ declare class PersonalSettingsPage extends WithPage {
|
|
|
1483
1482
|
setPassword(previousPassword: string, password: string): Promise<PersonalSettingsPage>;
|
|
1484
1483
|
refresh(): Promise<PersonalSettingsPage>;
|
|
1485
1484
|
editUserProfile(email: string): Promise<void>;
|
|
1486
|
-
editUserProfileDateAndTimeFormat(dateFormat: string, timeFormat: string): Promise<void>;
|
|
1487
1485
|
generateNewAccessToken(tokenName: string, expiryOptions: string): Promise<void>;
|
|
1488
1486
|
deleteAccessToken(tokenName: string): Promise<void>;
|
|
1489
1487
|
}
|
|
@@ -1539,6 +1537,10 @@ declare class UsersPage extends WithPage {
|
|
|
1539
1537
|
updateUser(username: string): Promise<UserModal>;
|
|
1540
1538
|
sortByColumn(columnName: string, columnIndex: number): Promise<this>;
|
|
1541
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<this>;
|
|
1543
|
+
editUserClickCancelButton(): Promise<void>;
|
|
1542
1544
|
}
|
|
1543
1545
|
declare class WorkflowCatalogPage extends WithPage {
|
|
1544
1546
|
constructor(page: Page);
|