@applitools/eyes 1.6.7 → 1.7.0
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/package.json +2 -2
- package/types/SDK.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.7.0](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes@1.6.7...js/eyes@1.7.0) (2023-08-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* rework log event on opent eyes ([#1842](https://github.com/applitools/eyes.sdk.javascript1/issues/1842)) ([532756b](https://github.com/applitools/eyes.sdk.javascript1/commit/532756b75c1023967c3781316148c890dbcfaac8))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/core bumped to 3.8.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* rework log event on opent eyes ([#1842](https://github.com/applitools/eyes.sdk.javascript1/issues/1842)) ([532756b](https://github.com/applitools/eyes.sdk.javascript1/commit/532756b75c1023967c3781316148c890dbcfaac8))
|
|
17
|
+
|
|
3
18
|
## [1.6.7](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-v1.6.6...js/eyes@1.6.7) (2023-08-08)
|
|
4
19
|
|
|
5
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@applitools/core": "3.
|
|
48
|
+
"@applitools/core": "3.8.0",
|
|
49
49
|
"@applitools/logger": "2.0.7",
|
|
50
50
|
"@applitools/utils": "1.5.0"
|
|
51
51
|
},
|
package/types/SDK.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { makeCore as makeDefaultCore, type Core, type SpecType, type SpecDriver } from '@applitools/core';
|
|
2
2
|
export interface SDK<TSpec extends SpecType = SpecType> {
|
|
3
|
-
agentId?: string;
|
|
4
3
|
spec?: SpecDriver<TSpec>;
|
|
4
|
+
agentId?: string;
|
|
5
|
+
environment?: Record<string, any>;
|
|
5
6
|
makeCore?: typeof makeDefaultCore;
|
|
6
7
|
}
|
|
7
8
|
export declare function initSDK<TSpec extends SpecType = SpecType>(options?: SDK<TSpec>): {
|