@digital-ai/devops-page-object-release 0.0.57 → 0.0.59
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 +12 -0
- package/dist/main.js +7 -3
- package/dist/main.js.map +1 -1
- package/dist/module.js +7 -3
- 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
|
@@ -1500,6 +1500,7 @@ declare class ConfigurationInstancePage extends WithPage {
|
|
|
1500
1500
|
expectDropdownToBe(fieldName: string, fieldValue: string): Promise<this>;
|
|
1501
1501
|
clearDropdown(fieldName: string): Promise<this>;
|
|
1502
1502
|
clickField(fieldName: string): Promise<this>;
|
|
1503
|
+
expectTextFieldNotToExist(fieldName: string): Promise<this>;
|
|
1503
1504
|
clickHeader(): Promise<void>;
|
|
1504
1505
|
expectTextFieldToBe(fieldName: string, fieldValue: string): Promise<this>;
|
|
1505
1506
|
setStringList(value: Array<string> | string): Promise<this>;
|
|
@@ -1780,9 +1781,11 @@ type DeepPartial<T> = {
|
|
|
1780
1781
|
};
|
|
1781
1782
|
type FixtureRelease = DeepPartial<Release> & Pick<Release, 'id'>;
|
|
1782
1783
|
interface FixtureConfiguration extends PlanItem {
|
|
1784
|
+
accessTokenUrl?: string;
|
|
1783
1785
|
address?: string;
|
|
1784
1786
|
apiToken?: string;
|
|
1785
1787
|
authenticationMethod?: string;
|
|
1788
|
+
clientId?: string;
|
|
1786
1789
|
folderId?: string;
|
|
1787
1790
|
password?: string;
|
|
1788
1791
|
port?: number;
|