@digital-ai/devops-page-object-release 0.0.0-snapshot-20251023115157 → 0.0.0-snapshot-20251025024649
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 +8 -2
- package/dist/main.js +19 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +19 -0
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -614,6 +614,8 @@ declare class ReleasePropertiesPage extends WithPage {
|
|
|
614
614
|
expectStartFromReleaseToBe(parentRelease: string): Promise<void>;
|
|
615
615
|
expectTemplateURLToBe(templateURL: string): Promise<void>;
|
|
616
616
|
expectStartFromReleaseURLToBe(parentReleaseURL: string): Promise<void>;
|
|
617
|
+
expectFlaggedWith(flagName: string, flagComment: string): Promise<void>;
|
|
618
|
+
flag(flagName: string, flagComment: string): Promise<void>;
|
|
617
619
|
}
|
|
618
620
|
declare class ReleaseTeamsAndPermissionsPage extends WithPage {
|
|
619
621
|
saveButton: Locator;
|
|
@@ -701,6 +703,7 @@ declare class ReleasePage extends WithPage {
|
|
|
701
703
|
util: Util;
|
|
702
704
|
constructor(page: Page);
|
|
703
705
|
openTriggers(): Promise<TriggersPage>;
|
|
706
|
+
openEditor(): Promise<ReleasePage>;
|
|
704
707
|
abort(comment?: string): Promise<void>;
|
|
705
708
|
getPhase(phaseName: string): Phase;
|
|
706
709
|
expectPhaseCountToBe(expectedPhaseCount: number): Promise<void>;
|