@applitools/core 2.4.11 → 2.4.12

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.4.12 - 2023/4/12
6
+
7
+ ### Features
8
+ ### Bug fixes
9
+ - Expose types for eyes-cypress
10
+
5
11
  ## 2.4.11 - 2023/4/11
6
12
 
7
13
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "2.4.11",
3
+ "version": "2.4.12",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
package/types/types.d.ts CHANGED
@@ -6,7 +6,7 @@ import { type SpecType } from '@applitools/driver';
6
6
  import { type Logger } from '@applitools/logger';
7
7
  import { type Renderer } from '@applitools/ufg-client';
8
8
  import { type ECClient, type ECClientSettings } from '@applitools/ec-client';
9
- export { ECClient };
9
+ export { ECClient, Renderer };
10
10
  export * from './automation/types';
11
11
  export type TypedCore<TSpec extends SpecType, TType extends 'classic' | 'ufg'> = TType extends 'ufg' ? UFGCore.Core<TSpec> : ClassicCore.Core<TSpec>;
12
12
  export type TypedEyes<TSpec extends SpecType, TType extends 'classic' | 'ufg'> = TType extends 'ufg' ? UFGCore.Eyes<TSpec> : ClassicCore.Eyes<TSpec>;