@applitools/types
Advanced tools
Comparing version 1.4.7 to 1.5.0
{ | ||
"name": "@applitools/types", | ||
"version": "1.4.7", | ||
"version": "1.5.0", | ||
"keywords": [ | ||
@@ -28,2 +28,5 @@ "applitools", | ||
}, | ||
"aliases": [ | ||
"types" | ||
], | ||
"exports": { | ||
@@ -48,10 +51,5 @@ ".": { | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-push": "yarn bongo lint" | ||
} | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@applitools/bongo": "^2.1.4", | ||
"@applitools/bongo": "^2.1.5", | ||
"@types/node": "12", | ||
@@ -69,3 +67,8 @@ "@typescript-eslint/eslint-plugin": "^5.27.0", | ||
"node": ">=12.13.0" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-push": "yarn bongo lint" | ||
} | ||
} | ||
} |
@@ -154,2 +154,7 @@ export declare type SessionType = 'SEQUENTIAL' | 'PROGRESSION'; | ||
}; | ||
export declare type LazyLoadOptions = { | ||
scrollLength?: number; | ||
waitingTime?: number; | ||
maxAmountToScroll?: number; | ||
}; | ||
export declare type TestResultContainer = { | ||
@@ -156,0 +161,0 @@ readonly exception?: Error; |
import { Selector } from './driver'; | ||
import { MatchLevel, Region, AccessibilityRegionType, AccessibilityGuidelinesVersion, AccessibilityLevel, Proxy } from './data'; | ||
import { MatchLevel, Region, AccessibilityRegionType, AccessibilityGuidelinesVersion, AccessibilityLevel, Proxy, LazyLoadOptions } from './data'; | ||
declare type RegionReference<TElement, TSelector> = Region | ElementReference<TElement, TSelector>; | ||
@@ -66,2 +66,3 @@ declare type ElementReference<TElement, TSelector> = TElement | Selector<TSelector>; | ||
timeout?: number; | ||
lazyLoad?: LazyLoadOptions; | ||
}; | ||
@@ -68,0 +69,0 @@ export declare type OCRExtractSettings<TElement, TSelector> = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44124
713