@digital-ai/devops-page-object-release 0.0.0-snapshot-20251126150532 → 0.0.0-snapshot-20251201073056

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,9 +591,6 @@ 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>;
597
594
  downloadFile(filename: string): Promise<void>;
598
595
  deleteAttachment(fileName: string): Promise<void>;
599
596
  expectVariableDisplayed(variable: string, present: boolean): Promise<void>;
@@ -945,8 +942,6 @@ interface Release extends PlanItem {
945
942
  allowConcurrentReleasesFromTrigger: boolean;
946
943
  attachments: Array<Attachment>;
947
944
  autoStart: boolean;
948
- calendarLinkToken: string;
949
- calendarPublished: boolean;
950
945
  description: string;
951
946
  dueDate?: Date;
952
947
  endDate?: Date;
@@ -1449,6 +1444,7 @@ declare class HeaderPage extends WithPage {
1449
1444
  verifyDigitalAiWebsite(): Promise<void>;
1450
1445
  clickAvatarIcon(username: string): Promise<void>;
1451
1446
  verifyUser(userFullName: string): Promise<void>;
1447
+ verifyUserReginalSettings(userFullName: string): Promise<void>;
1452
1448
  clickAccessTokens(): Promise<void>;
1453
1449
  getVersionNumber(): Promise<string>;
1454
1450
  }
@@ -1487,6 +1483,7 @@ declare class PersonalSettingsPage extends WithPage {
1487
1483
  setPassword(previousPassword: string, password: string): Promise<PersonalSettingsPage>;
1488
1484
  refresh(): Promise<PersonalSettingsPage>;
1489
1485
  editUserProfile(email: string): Promise<void>;
1486
+ editUserProfileDateAndTimeFormat(dateFormat: string, timeFormat: string): Promise<void>;
1490
1487
  generateNewAccessToken(tokenName: string, expiryOptions: string): Promise<void>;
1491
1488
  deleteAccessToken(tokenName: string): Promise<void>;
1492
1489
  }