@empiricalrun/playwright-utils 0.14.23 → 0.14.25
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 +15 -0
- package/dist/email.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @empiricalrun/playwright-utils
|
|
2
2
|
|
|
3
|
+
## 0.14.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [53aabd4]
|
|
8
|
+
- @empiricalrun/llm@0.9.18
|
|
9
|
+
|
|
10
|
+
## 0.14.24
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 3b04b0e: chore: stop using static env vars
|
|
15
|
+
- Updated dependencies [3b04b0e]
|
|
16
|
+
- @empiricalrun/llm@0.9.17
|
|
17
|
+
|
|
3
18
|
## 0.14.23
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/email.js
CHANGED
|
@@ -12,7 +12,7 @@ class EmailClient {
|
|
|
12
12
|
timeout;
|
|
13
13
|
serverId = "pnyrwq5o";
|
|
14
14
|
constructor(opts = {}) {
|
|
15
|
-
this.client = new mailosaur_1.default(
|
|
15
|
+
this.client = new mailosaur_1.default(process.env.MAILOSAUR_API_KEY);
|
|
16
16
|
const { timeout = DEFAULT_TIMEOUT, emailId: knownEmailId } = opts;
|
|
17
17
|
this.timeout = timeout;
|
|
18
18
|
const emailId = knownEmailId ||
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/playwright-utils",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.25",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"playwright-core": "1.47.1",
|
|
41
41
|
"playwright-extra": "^4.3.6",
|
|
42
42
|
"puppeteer-extra-plugin-recaptcha": "^3.6.8",
|
|
43
|
-
"@empiricalrun/llm": "^0.9.
|
|
43
|
+
"@empiricalrun/llm": "^0.9.18",
|
|
44
44
|
"@empiricalrun/r2-uploader": "^0.3.6"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "tsc --build --watch",
|
|
48
|
-
"build": "tsc --build
|
|
48
|
+
"build": "tsc --build",
|
|
49
49
|
"clean": "tsc --build --clean",
|
|
50
50
|
"lint": "eslint .",
|
|
51
51
|
"test": "vitest run",
|