automation_model 1.0.1 → 1.0.3
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/bin/auto_page.js +1 -1
- package/bin/browser_manager.js +1 -1
- package/bin/environment.js +1 -1
- package/bin/init_browser.js +3 -3
- package/bin/test_context.js +1 -1
- package/package.json +2 -2
package/bin/auto_page.js
CHANGED
package/bin/browser_manager.js
CHANGED
package/bin/environment.js
CHANGED
package/bin/init_browser.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
|
-
import Environment from "./environment.js";
|
|
3
|
-
import browserManager from "./browser_manager.js";
|
|
4
|
-
import TestContext from "./test_context.js";
|
|
2
|
+
import { Environment } from "./environment.js";
|
|
3
|
+
import { browserManager } from "./browser_manager.js";
|
|
4
|
+
import { TestContext } from "./test_context.js";
|
|
5
5
|
import { StableBrowser } from "./stable_browser.js";
|
|
6
6
|
|
|
7
7
|
let environment = null;
|
package/bin/test_context.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automation_model",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "An automation infrastructure module to be use for generative AI automation projects.",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"directories": {
|