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

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
@@ -592,7 +592,11 @@ declare class ReleasePropertiesPage extends WithPage {
592
592
  getAttachmentsListCount(): Promise<number>;
593
593
  uploadFile(filePath: string): Promise<void>;
594
594
  expectWithNoAttachment(filename: string): Promise<void>;
595
+ expectSubscribeLinkIsPublic(): Promise<void>;
596
+ expectSubscribeLinkIsPrivate(): Promise<void>;
597
+ setSubscribeLink(isPublic: boolean): Promise<void>;
595
598
  downloadFile(filename: string): Promise<void>;
599
+ verifyCalendarEventDownload(releaseName: string): Promise<void>;
596
600
  deleteAttachment(fileName: string): Promise<void>;
597
601
  expectVariableDisplayed(variable: string, present: boolean): Promise<void>;
598
602
  setScheduledStartDate(date?: string, monthYear?: string): Promise<void>;
@@ -943,6 +947,8 @@ interface Release extends PlanItem {
943
947
  allowConcurrentReleasesFromTrigger: boolean;
944
948
  attachments: Array<Attachment>;
945
949
  autoStart: boolean;
950
+ calendarLinkToken: string;
951
+ calendarPublished: boolean;
946
952
  description: string;
947
953
  dueDate?: Date;
948
954
  endDate?: Date;