@tolinax/ayoune-interfaces 2025.16.24 → 2025.16.25

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.
@@ -4,7 +4,179 @@ export interface IaYOUneEvent {
4
4
  label?: string;
5
5
  value?: string;
6
6
  }
7
- export interface IaYOUneTrackingParams {
7
+ export interface IFingerprintData {
8
+ requestId?: string;
9
+ url?: string;
10
+ ip?: string;
11
+ environmentId?: string;
12
+ time?: string;
13
+ timestamp?: number;
14
+ ipLocation?: {
15
+ accuracyRadius?: number;
16
+ latitude?: number;
17
+ longitude?: number;
18
+ postalCode?: string;
19
+ timezone?: string;
20
+ city?: {
21
+ name?: string;
22
+ };
23
+ country?: {
24
+ code?: string;
25
+ name?: string;
26
+ };
27
+ continent?: {
28
+ code?: string;
29
+ name?: string;
30
+ };
31
+ subdivisions?: Array<{
32
+ isoCode?: string;
33
+ name?: string;
34
+ }>;
35
+ };
36
+ visitorId?: string;
37
+ visitorFound?: boolean;
38
+ confidence?: {
39
+ score?: number;
40
+ revision?: string;
41
+ };
42
+ firstSeenAt?: {
43
+ global?: string;
44
+ subscription?: string;
45
+ };
46
+ lastSeenAt?: {
47
+ global?: string;
48
+ subscription?: string;
49
+ };
50
+ browserDetails?: {
51
+ browserName?: string;
52
+ browserMajorVersion?: string;
53
+ browserFullVersion?: string;
54
+ os?: string;
55
+ osVersion?: string;
56
+ device?: string;
57
+ userAgent?: string;
58
+ };
59
+ incognito?: boolean;
60
+ clientReferrer?: string;
61
+ bot?: {
62
+ result?: string;
63
+ };
64
+ userAgent?: string;
65
+ rootApps?: {
66
+ result?: boolean;
67
+ };
68
+ emulator?: {
69
+ result?: boolean;
70
+ };
71
+ ipInfo?: {
72
+ v4?: IIpInfoDetail;
73
+ v6?: IIpInfoDetail;
74
+ };
75
+ ipBlocklist?: {
76
+ result?: boolean;
77
+ details?: {
78
+ emailSpam?: boolean;
79
+ attackSource?: boolean;
80
+ };
81
+ };
82
+ tor?: {
83
+ result?: boolean;
84
+ };
85
+ vpn?: {
86
+ result?: boolean;
87
+ confidence?: string;
88
+ originTimezone?: string;
89
+ originCountry?: string;
90
+ methods?: {
91
+ timezoneMismatch?: boolean;
92
+ publicVPN?: boolean;
93
+ auxiliaryMobile?: boolean;
94
+ osMismatch?: boolean;
95
+ relay?: boolean;
96
+ };
97
+ };
98
+ proxy?: {
99
+ result?: boolean;
100
+ confidence?: string;
101
+ };
102
+ tampering?: {
103
+ result?: boolean;
104
+ anomalyScore?: number;
105
+ antiDetectBrowser?: boolean;
106
+ };
107
+ clonedApp?: {
108
+ result?: boolean;
109
+ };
110
+ factoryReset?: {
111
+ time?: string;
112
+ timestamp?: number;
113
+ };
114
+ jailbroken?: {
115
+ result?: boolean;
116
+ };
117
+ frida?: {
118
+ result?: boolean;
119
+ };
120
+ privacySettings?: {
121
+ result?: boolean;
122
+ };
123
+ virtualMachine?: {
124
+ result?: boolean;
125
+ };
126
+ highActivity?: {
127
+ result?: boolean;
128
+ };
129
+ locationSpoofing?: {
130
+ result?: boolean;
131
+ };
132
+ suspectScore?: {
133
+ result?: number;
134
+ };
135
+ velocity?: {
136
+ distinctIp?: IVelocityIntervals;
137
+ distinctCountry?: IVelocityIntervals;
138
+ events?: IVelocityIntervals;
139
+ ipEvents?: IVelocityIntervals;
140
+ };
141
+ developerTools?: {
142
+ result?: boolean;
143
+ };
144
+ mitmAttack?: {
145
+ result?: boolean;
146
+ };
147
+ replayed?: boolean;
148
+ sdk?: {
149
+ platform?: string;
150
+ version?: string;
151
+ };
152
+ proximity?: {
153
+ id?: string;
154
+ precisionRadius?: number;
155
+ confidence?: number;
156
+ };
157
+ }
158
+ interface IIpInfoDetail {
159
+ address?: string;
160
+ geolocation?: any;
161
+ asn?: {
162
+ asn?: string;
163
+ name?: string;
164
+ network?: string;
165
+ type?: string;
166
+ };
167
+ datacenter?: {
168
+ result?: boolean;
169
+ name?: string;
170
+ };
171
+ }
172
+ interface IVelocityIntervals {
173
+ intervals?: {
174
+ "5m"?: number;
175
+ "1h"?: number;
176
+ "24h"?: number;
177
+ };
178
+ }
179
+ export interface IaYOUneTrackingParams extends IFingerprintData {
8
180
  ayoune_ac?: string;
9
181
  ayoune_ucd?: string;
10
182
  ayoune_fp?: string[] | string;
@@ -78,3 +250,4 @@ export interface IaYOUneTrackingParams {
78
250
  searchEngine?: string;
79
251
  site?: string;
80
252
  }
253
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2025.16.24",
3
+ "version": "2025.16.25",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",