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

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,7 +591,11 @@ 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>;
598
+ verifyCalendarEventDownload(releaseName: string): Promise<void>;
595
599
  deleteAttachment(fileName: string): Promise<void>;
596
600
  expectVariableDisplayed(variable: string, present: boolean): Promise<void>;
597
601
  setScheduledStartDate(date?: string, monthYear?: string): Promise<void>;
@@ -942,6 +946,8 @@ interface Release extends PlanItem {
942
946
  allowConcurrentReleasesFromTrigger: boolean;
943
947
  attachments: Array<Attachment>;
944
948
  autoStart: boolean;
949
+ calendarLinkToken: string;
950
+ calendarPublished: boolean;
945
951
  description: string;
946
952
  dueDate?: Date;
947
953
  endDate?: Date;
@@ -1527,7 +1533,6 @@ declare class UsersPage extends WithPage {
1527
1533
  openPermissions(): Promise<void>;
1528
1534
  openTaskAccess(): Promise<void>;
1529
1535
  expectUsers(users: Array<{
1530
- accountLocked?: boolean;
1531
1536
  email?: string;
1532
1537
  external: boolean;
1533
1538
  externalId?: string;
@@ -1538,10 +1543,6 @@ declare class UsersPage extends WithPage {
1538
1543
  updateUser(username: string): Promise<UserModal>;
1539
1544
  sortByColumn(columnName: string, columnIndex: number): Promise<this>;
1540
1545
  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
1546
  }
1546
1547
  declare class WorkflowCatalogPage extends WithPage {
1547
1548
  constructor(page: Page);