@applitools/eyes-browser 1.2.3 → 1.4.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 +162 -0
- package/dist/index.js +47572 -46723
- package/package.json +2 -2
- package/types/input/Configuration.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-browser",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"browser",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@applitools/eyes": "1.
|
|
51
|
+
"@applitools/eyes": "1.18.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/node": "^12.20.55",
|
|
@@ -52,6 +52,7 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
52
52
|
environmentName?: string;
|
|
53
53
|
branchName?: string;
|
|
54
54
|
parentBranchName?: string;
|
|
55
|
+
gitMergeBaseTimestamp?: string;
|
|
55
56
|
baselineBranchName?: string;
|
|
56
57
|
compareWithParentBranch?: boolean;
|
|
57
58
|
ignoreBaseline?: boolean;
|
|
@@ -206,6 +207,10 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
206
207
|
set baselineBranchName(baselineBranchName: string);
|
|
207
208
|
getBaselineBranchName(): string;
|
|
208
209
|
setBaselineBranchName(baselineBranchName: string): this;
|
|
210
|
+
get gitMergeBaseTimestamp(): string;
|
|
211
|
+
set gitMergeBaseTimestamp(gitMergeBaseTimestamp: string);
|
|
212
|
+
getGitMergeBaseTimestamp(): string;
|
|
213
|
+
setGitMergeBaseTimestamp(gitMergeBaseTimestamp: string): this;
|
|
209
214
|
get compareWithParentBranch(): boolean;
|
|
210
215
|
set compareWithParentBranch(compareWithParentBranch: boolean);
|
|
211
216
|
getCompareWithParentBranch(): boolean;
|