@digital-ai/devops-page-object-release 0.0.101 → 0.0.102

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
@@ -1,4 +1,4 @@
1
- import { Page, Locator, APIResponse } from "@playwright/test";
1
+ import { Page, Locator, APIResponse, PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions, TestType } from "@playwright/test";
2
2
  import path from "path";
3
3
  import { APIRequestContext } from "playwright-core";
4
4
  declare class WithPage {
@@ -2270,7 +2270,7 @@ type ReleaseFixtures = {
2270
2270
  loginPage: LoginPage;
2271
2271
  navigation: Navigation;
2272
2272
  };
2273
- export const test: import("@playwright/test").TestType<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions & ReleaseFixtures, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>;
2273
+ export const test: TestType<PlaywrightTestArgs & PlaywrightTestOptions & ReleaseFixtures, PlaywrightWorkerArgs & PlaywrightWorkerOptions>;
2274
2274
  declare class Fixtures {
2275
2275
  constructor(request: APIRequestContext, page: Page);
2276
2276
  release(release: FixtureRelease): Promise<APIResponse>;