@digital-ai/devops-page-object-release 0.0.22 → 0.0.24
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/CHANGELOG.md +13 -0
- package/dist/main.js +21 -10
- package/dist/main.js.map +1 -1
- package/dist/module.js +21 -10
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +4 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -389,7 +389,7 @@ declare class ReleasePage extends WithPage {
|
|
|
389
389
|
openRelationships(): Promise<void>;
|
|
390
390
|
openTeamsPermissions(): Promise<void>;
|
|
391
391
|
openDashboard(): Promise<void>;
|
|
392
|
-
|
|
392
|
+
openHistory(): Promise<void>;
|
|
393
393
|
openTask(taskName: string): Promise<void>;
|
|
394
394
|
collapseAllTaskView(): Promise<void>;
|
|
395
395
|
expandAllTaskView(): Promise<void>;
|
|
@@ -880,7 +880,7 @@ declare class TemplatePage extends WithPage {
|
|
|
880
880
|
openRelationships(): Promise<void>;
|
|
881
881
|
openTeamsPermissions(): Promise<void>;
|
|
882
882
|
openDashboard(): Promise<void>;
|
|
883
|
-
|
|
883
|
+
openHistory(): Promise<void>;
|
|
884
884
|
openTriggers(): Promise<void>;
|
|
885
885
|
backToTemplate(): Promise<void>;
|
|
886
886
|
expectTemplateLabelToBePresent(): Promise<void>;
|
|
@@ -913,6 +913,7 @@ declare class _Phase1 extends WithPage {
|
|
|
913
913
|
deletePhase(phaseName: string): Promise<void>;
|
|
914
914
|
}
|
|
915
915
|
declare class TemplateListPage extends WithPage {
|
|
916
|
+
templatePage: TemplatePage;
|
|
916
917
|
constructor(page: Page);
|
|
917
918
|
openTemplatesList(filter: string): Promise<void>;
|
|
918
919
|
searchBy(criteria: string): Promise<void>;
|
|
@@ -924,6 +925,7 @@ declare class TemplateListPage extends WithPage {
|
|
|
924
925
|
clickCreateNewTemplate(): Promise<void>;
|
|
925
926
|
openTemplateByName(templateName: string): Promise<void>;
|
|
926
927
|
clickNewReleaseIcon(templateName: string): Promise<void>;
|
|
928
|
+
createTemplate(templateName: string, description: string): Promise<void>;
|
|
927
929
|
filterByTitle(templateName: string): Promise<void>;
|
|
928
930
|
}
|
|
929
931
|
declare class RolesModal extends WithPage {
|