@surbee/cipher 0.1.0 → 0.2.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/README.md +95 -0
- package/dist/checks/index.d.mts +215 -0
- package/dist/checks/index.d.ts +215 -0
- package/dist/checks/index.js +1157 -0
- package/dist/checks/index.mjs +60 -0
- package/dist/chunk-P2MIOVFQ.mjs +1104 -0
- package/dist/index.d.mts +38 -244
- package/dist/index.d.ts +38 -244
- package/dist/index.js +1716 -35
- package/dist/index.mjs +649 -35
- package/dist/types-C8t_T3bP.d.mts +251 -0
- package/dist/types-C8t_T3bP.d.ts +251 -0
- package/package.json +16 -4
- package/src/checks/behavioral.ts +0 -527
- package/src/checks/content.ts +0 -372
- package/src/checks/device.ts +0 -384
- package/src/checks/index.ts +0 -59
- package/src/checks/timing.ts +0 -256
- package/src/cipher.ts +0 -225
- package/src/index.ts +0 -75
- package/src/tiers.ts +0 -507
- package/src/types.ts +0 -366
- package/test/cipher.test.ts +0 -245
- package/test/fixtures.ts +0 -627
- package/tsconfig.json +0 -20
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import {
|
|
2
|
+
checkAutomationDetected,
|
|
3
|
+
checkDeviceFingerprintMismatch,
|
|
4
|
+
checkExcessivePaste,
|
|
5
|
+
checkExcessiveTabSwitching,
|
|
6
|
+
checkHoverBehavior,
|
|
7
|
+
checkImpossiblyFast,
|
|
8
|
+
checkLowInteraction,
|
|
9
|
+
checkMinimalEffort,
|
|
10
|
+
checkMouseAcceleration,
|
|
11
|
+
checkMouseTeleporting,
|
|
12
|
+
checkNoCorrections,
|
|
13
|
+
checkNoPlugins,
|
|
14
|
+
checkPointerSpikes,
|
|
15
|
+
checkRapidCompletion,
|
|
16
|
+
checkRoboticTyping,
|
|
17
|
+
checkScreenAnomaly,
|
|
18
|
+
checkScrollPatterns,
|
|
19
|
+
checkStraightLining,
|
|
20
|
+
checkSuspiciousPauses,
|
|
21
|
+
checkSuspiciousUserAgent,
|
|
22
|
+
checkTimezoneValidation,
|
|
23
|
+
checkUniformTiming,
|
|
24
|
+
checkWebDriverDetected,
|
|
25
|
+
checkWindowFocusLoss,
|
|
26
|
+
runBehavioralChecks,
|
|
27
|
+
runContentChecks,
|
|
28
|
+
runDeviceChecks,
|
|
29
|
+
runTimingChecks
|
|
30
|
+
} from "../chunk-P2MIOVFQ.mjs";
|
|
31
|
+
export {
|
|
32
|
+
checkAutomationDetected,
|
|
33
|
+
checkDeviceFingerprintMismatch,
|
|
34
|
+
checkExcessivePaste,
|
|
35
|
+
checkExcessiveTabSwitching,
|
|
36
|
+
checkHoverBehavior,
|
|
37
|
+
checkImpossiblyFast,
|
|
38
|
+
checkLowInteraction,
|
|
39
|
+
checkMinimalEffort,
|
|
40
|
+
checkMouseAcceleration,
|
|
41
|
+
checkMouseTeleporting,
|
|
42
|
+
checkNoCorrections,
|
|
43
|
+
checkNoPlugins,
|
|
44
|
+
checkPointerSpikes,
|
|
45
|
+
checkRapidCompletion,
|
|
46
|
+
checkRoboticTyping,
|
|
47
|
+
checkScreenAnomaly,
|
|
48
|
+
checkScrollPatterns,
|
|
49
|
+
checkStraightLining,
|
|
50
|
+
checkSuspiciousPauses,
|
|
51
|
+
checkSuspiciousUserAgent,
|
|
52
|
+
checkTimezoneValidation,
|
|
53
|
+
checkUniformTiming,
|
|
54
|
+
checkWebDriverDetected,
|
|
55
|
+
checkWindowFocusLoss,
|
|
56
|
+
runBehavioralChecks,
|
|
57
|
+
runContentChecks,
|
|
58
|
+
runDeviceChecks,
|
|
59
|
+
runTimingChecks
|
|
60
|
+
};
|