@digital-ai/devops-page-object-release 0.0.0-snapshot-20251205202250 → 0.0.0-snapshot-20251208152659

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
@@ -591,6 +591,9 @@ declare class ReleasePropertiesPage extends WithPage {
591
591
  getAttachmentsListCount(): Promise<number>;
592
592
  uploadFile(filePath: string): Promise<void>;
593
593
  expectWithNoAttachment(filename: string): Promise<void>;
594
+ expectSubscribeLinkIsPublic(): Promise<void>;
595
+ expectSubscribeLinkIsPrivate(): Promise<void>;
596
+ setSubscribeLink(isPublic: boolean): Promise<void>;
594
597
  downloadFile(filename: string): Promise<void>;
595
598
  deleteAttachment(fileName: string): Promise<void>;
596
599
  expectVariableDisplayed(variable: string, present: boolean): Promise<void>;
@@ -942,6 +945,8 @@ interface Release extends PlanItem {
942
945
  allowConcurrentReleasesFromTrigger: boolean;
943
946
  attachments: Array<Attachment>;
944
947
  autoStart: boolean;
948
+ calendarLinkToken: string;
949
+ calendarPublished: boolean;
945
950
  description: string;
946
951
  dueDate?: Date;
947
952
  endDate?: Date;
@@ -1527,7 +1532,6 @@ declare class UsersPage extends WithPage {
1527
1532
  openPermissions(): Promise<void>;
1528
1533
  openTaskAccess(): Promise<void>;
1529
1534
  expectUsers(users: Array<{
1530
- accountLocked?: boolean;
1531
1535
  email?: string;
1532
1536
  external: boolean;
1533
1537
  externalId?: string;
@@ -1538,10 +1542,6 @@ declare class UsersPage extends WithPage {
1538
1542
  updateUser(username: string): Promise<UserModal>;
1539
1543
  sortByColumn(columnName: string, columnIndex: number): Promise<this>;
1540
1544
  expectColumnVisible(column: string, visible?: boolean): Promise<this>;
1541
- expectUserUnlockedToaster(user: string): Promise<void>;
1542
- unlockUser(user: string): Promise<void>;
1543
- expectWarningVisibility(warningRegex: RegExp, shouldBeVisible: boolean): Promise<void>;
1544
- editUserClickCancelButton(): Promise<void>;
1545
1545
  }
1546
1546
  declare class WorkflowCatalogPage extends WithPage {
1547
1547
  constructor(page: Page);