@applitools/eyes 1.1.0 → 1.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -53,7 +53,7 @@
53
53
  "postversion": "bongo postversion"
54
54
  },
55
55
  "dependencies": {
56
- "@applitools/core": "2.4.5",
56
+ "@applitools/core": "2.4.7",
57
57
  "@applitools/logger": "1.1.48",
58
58
  "@applitools/utils": "1.3.32"
59
59
  },
@@ -1,9 +1,9 @@
1
1
  export type ApiUrls = {
2
- readonly baselineImage?: string;
3
- readonly currentImage?: string;
4
- readonly checkpointImage?: string;
5
- readonly checkpointImageThumbnail?: string;
6
- readonly diffImage?: string;
2
+ readonly baselineImage: string;
3
+ readonly currentImage: string;
4
+ readonly checkpointImage: string;
5
+ readonly checkpointImageThumbnail: string;
6
+ readonly diffImage: string;
7
7
  };
8
8
  export declare class ApiUrlsData implements Required<ApiUrls> {
9
9
  private _urls;
@@ -1,6 +1,6 @@
1
1
  export type AppUrls = {
2
- readonly step?: string;
3
- readonly stepEditor?: string;
2
+ readonly step: string;
3
+ readonly stepEditor: string;
4
4
  };
5
5
  export declare class AppUrlsData implements Required<AppUrls> {
6
6
  private _urls;
@@ -1,6 +1,6 @@
1
1
  export type SessionUrls = {
2
- readonly batch?: string;
3
- readonly session?: string;
2
+ readonly batch: string;
3
+ readonly session: string;
4
4
  };
5
5
  export declare class SessionUrlsData implements Required<SessionUrls> {
6
6
  private _urls;
@@ -1,13 +1,13 @@
1
1
  import { AppUrls, AppUrlsData } from './AppUrls';
2
2
  import { ApiUrls, ApiUrlsData } from './ApiUrls';
3
3
  export type StepInfo = {
4
- readonly name?: string;
5
- readonly isDifferent?: boolean;
6
- readonly hasBaselineImage?: boolean;
7
- readonly hasCurrentImage?: boolean;
8
- readonly appUrls?: AppUrls;
9
- readonly apiUrls?: ApiUrls;
10
- readonly renderId?: string[];
4
+ readonly name: string;
5
+ readonly isDifferent: boolean;
6
+ readonly hasBaselineImage: boolean;
7
+ readonly hasCurrentImage: boolean;
8
+ readonly appUrls: AppUrls;
9
+ readonly apiUrls: ApiUrls;
10
+ readonly renderId: string[];
11
11
  };
12
12
  export declare class StepInfoData implements Required<StepInfo> {
13
13
  private _info;
@@ -18,7 +18,7 @@ export type TestResults = {
18
18
  readonly hostApp?: string;
19
19
  readonly hostDisplaySize?: RectangleSize;
20
20
  readonly accessibilityStatus?: TestAccessibilityStatus;
21
- readonly startedAt?: Date | string;
21
+ readonly startedAt?: string;
22
22
  readonly duration?: number;
23
23
  readonly isNew?: boolean;
24
24
  readonly isDifferent?: boolean;
@@ -48,7 +48,7 @@ export declare class TestResultsData implements Required<TestResults> {
48
48
  private _deleteTest?;
49
49
  /** @internal */
50
50
  constructor(options: {
51
- result?: Core.TestResult<'classic' | 'ufg'>;
51
+ result?: Partial<Core.TestResult<'classic' | 'ufg'>>;
52
52
  deleteTest?: Core.Core<Core.SpecType, 'classic' | 'ufg'>['deleteTest'];
53
53
  });
54
54
  get id(): string;
@@ -99,7 +99,7 @@ export declare class TestResultsData implements Required<TestResults> {
99
99
  getAccessibilityStatus(): TestAccessibilityStatus;
100
100
  /** @deprecated */
101
101
  setAccessibilityStatus(_accessibilityStatus: TestAccessibilityStatus): void;
102
- get startedAt(): Date | string;
102
+ get startedAt(): string;
103
103
  getStartedAt(): Date;
104
104
  /** @deprecated */
105
105
  setStartedAt(_startedAt: Date | string): void;