@applitools/eyes 1.6.6 → 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 CHANGED
@@ -1,6 +1,38 @@
1
1
  # Changelog
2
2
 
3
- ## 1.0.0 (2023-08-03)
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
+
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)
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * @applitools/ufg-client bumped to 1.7.0
24
+ #### Features
25
+
26
+ * allow providing custom headers for resource fetching ([#1852](https://github.com/applitools/eyes.sdk.javascript1/issues/1852)) ([372cb96](https://github.com/applitools/eyes.sdk.javascript1/commit/372cb96b905a0661c36e2fa10a7855208fb55bb0))
27
+ * @applitools/core bumped to 3.7.0
28
+ #### Features
29
+
30
+ * allow providing custom headers for resource fetching ([#1852](https://github.com/applitools/eyes.sdk.javascript1/issues/1852)) ([372cb96](https://github.com/applitools/eyes.sdk.javascript1/commit/372cb96b905a0661c36e2fa10a7855208fb55bb0))
31
+
32
+
33
+
34
+
35
+ ## [1.6.6](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes@1.6.5...js/eyes@1.6.6) (2023-08-03)
4
36
 
5
37
 
6
38
  ### Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.6.6",
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.6.6",
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>): {