shiplightai 0.1.71 → 0.1.72

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/fixture.d.ts CHANGED
@@ -2,6 +2,9 @@ import * as _playwright_test from '@playwright/test';
2
2
  export { expect } from '@playwright/test';
3
3
  import { VariableStore } from './VariableStore.js';
4
4
  import { WebAgent } from './agent/webAgent.js';
5
+ import { ShiplightUseOptions } from './index.js';
6
+ import './core/agentContext.js';
7
+ import './config.js';
5
8
 
6
9
  /**
7
10
  * Per-test auth: path to a login script + optional args passed to the login function.
@@ -92,6 +95,7 @@ type ShiplightFixtures = {
92
95
  userDataDir: string | undefined;
93
96
  extensionStorageState: string | undefined;
94
97
  autoDismissModal: boolean;
98
+ variables: ShiplightUseOptions['variables'];
95
99
  };
96
100
  declare const test: _playwright_test.TestType<_playwright_test.PlaywrightTestArgs & _playwright_test.PlaywrightTestOptions & ShiplightFixtures, _playwright_test.PlaywrightWorkerArgs & _playwright_test.PlaywrightWorkerOptions>;
97
101