@digital-ai/devops-page-object-release 0.0.96 → 0.0.97

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
@@ -618,6 +618,9 @@ declare class ReleasePropertiesPage extends WithPage {
618
618
  reloadPage(): Promise<void>;
619
619
  expectOwnerToBe(user: string): Promise<void>;
620
620
  expectReleaseTaggedWith(tagName: string): Promise<void>;
621
+ expectReleaseNotTaggedWith(tagName: string): Promise<void>;
622
+ addTag(tagName: string): Promise<void>;
623
+ removeTag(tagName: string): Promise<void>;
621
624
  expectTemplateTitleToBe(templateTitle: string): Promise<void>;
622
625
  expectRiskProfileTitleToBe(riskProfile: string): Promise<void>;
623
626
  expectStartFromReleaseToBe(parentRelease: string): Promise<void>;
@@ -1534,6 +1537,7 @@ declare class UsersPage extends WithPage {
1534
1537
  openPermissions(): Promise<void>;
1535
1538
  openTaskAccess(): Promise<void>;
1536
1539
  expectUsers(users: Array<{
1540
+ accountLocked?: boolean;
1537
1541
  email?: string;
1538
1542
  external: boolean;
1539
1543
  externalId?: string;