@digital-ai/devops-page-object-release 0.0.0-snapshot-20251201054550 → 0.0.0-snapshot-20251203110023
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 -57
- package/dist/main.js.map +1 -1
- package/dist/module.js +19 -57
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -8
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1345,13 +1345,6 @@ declare class FolderTeamsAndPermissionsPage extends WithPage {
|
|
|
1345
1345
|
constructor(page: Page);
|
|
1346
1346
|
expectPermissionToExist(permission: string, team: string): Promise<void>;
|
|
1347
1347
|
removePermission(permission: string, team: string): Promise<void>;
|
|
1348
|
-
expectPermissionReadOnly(permission: string, team: string, readOnly: boolean): Promise<void>;
|
|
1349
|
-
expectTeamsNotToExist(teams: string[], readOnly: boolean): Promise<void>;
|
|
1350
|
-
expectInheritTeamsDisabled(): Promise<void>;
|
|
1351
|
-
expectNewTeamButtonDisabled(): Promise<void>;
|
|
1352
|
-
expectRemoveTeamButtonNotToExist(): Promise<this>;
|
|
1353
|
-
expectSaveButtonDisabled(): Promise<this>;
|
|
1354
|
-
expectTeamsReadOnly(teams: string[], readOnly: boolean): Promise<this>;
|
|
1355
1348
|
expectPermissionNotToExist(permission: string, team: string): Promise<void>;
|
|
1356
1349
|
removeTeam(teamName: string): Promise<void>;
|
|
1357
1350
|
expectInheritMessagePresent(folder: string): Promise<this>;
|
|
@@ -1544,6 +1537,10 @@ declare class UsersPage extends WithPage {
|
|
|
1544
1537
|
updateUser(username: string): Promise<UserModal>;
|
|
1545
1538
|
sortByColumn(columnName: string, columnIndex: number): Promise<this>;
|
|
1546
1539
|
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>;
|
|
1547
1544
|
}
|
|
1548
1545
|
declare class WorkflowCatalogPage extends WithPage {
|
|
1549
1546
|
constructor(page: Page);
|
|
@@ -2198,7 +2195,6 @@ declare class Navigation {
|
|
|
2198
2195
|
constructor(page: Page);
|
|
2199
2196
|
openTemplate(id: string): Promise<ReleasePage>;
|
|
2200
2197
|
openFolder(id: string): Promise<FolderPage>;
|
|
2201
|
-
openFolderByName(folderName: string): Promise<this>;
|
|
2202
2198
|
openProfilePage(): Promise<PersonalSettingsPage>;
|
|
2203
2199
|
openVariablesOnReleasePage(releaseId: string): Promise<ReleaseVariablesPage>;
|
|
2204
2200
|
openRelease(id: string): Promise<ReleasePage>;
|