@adtrackify/at-tracking-event-types 2.0.76 → 2.0.77
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/dist/cjs/types/fingerprint/browser-attributes.d.ts +60 -0
- package/dist/cjs/types/fingerprint/browser-attributes.js +3 -0
- package/dist/cjs/types/fingerprint/browser-attributes.js.map +1 -0
- package/dist/cjs/types/fingerprint/index.d.ts +6 -0
- package/dist/cjs/types/fingerprint/index.js +19 -0
- package/dist/cjs/types/fingerprint/index.js.map +1 -0
- package/dist/cjs/types/fingerprint/server-attributes.d.ts +36 -0
- package/dist/cjs/types/fingerprint/server-attributes.js +3 -0
- package/dist/cjs/types/fingerprint/server-attributes.js.map +1 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/cjs/types/index.js +1 -0
- package/dist/cjs/types/index.js.map +1 -1
- package/dist/esm/types/fingerprint/browser-attributes.d.ts +60 -0
- package/dist/esm/types/fingerprint/browser-attributes.js +2 -0
- package/dist/esm/types/fingerprint/browser-attributes.js.map +1 -0
- package/dist/esm/types/fingerprint/index.d.ts +6 -0
- package/dist/esm/types/fingerprint/index.js +3 -0
- package/dist/esm/types/fingerprint/index.js.map +1 -0
- package/dist/esm/types/fingerprint/server-attributes.d.ts +36 -0
- package/dist/esm/types/fingerprint/server-attributes.js +2 -0
- package/dist/esm/types/fingerprint/server-attributes.js.map +1 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/esm/types/index.js +1 -0
- package/dist/esm/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export interface BrowserFingerprintAttributes {
|
|
2
|
+
ad_blocker?: boolean;
|
|
3
|
+
architecture?: number;
|
|
4
|
+
audio_analyser?: string;
|
|
5
|
+
audio_formats?: string;
|
|
6
|
+
browser_locationbar?: boolean;
|
|
7
|
+
browser_menubar?: boolean;
|
|
8
|
+
browser_personalbar?: boolean;
|
|
9
|
+
browser_statusbar?: boolean;
|
|
10
|
+
browser_toolbar?: boolean;
|
|
11
|
+
canvas_geometry_hash?: string;
|
|
12
|
+
canvas_winding?: boolean;
|
|
13
|
+
color_depth?: number;
|
|
14
|
+
color_gamut?: string;
|
|
15
|
+
cookie_enabled?: boolean;
|
|
16
|
+
device_timezone?: string;
|
|
17
|
+
fonts?: string;
|
|
18
|
+
forced_colors?: boolean;
|
|
19
|
+
hdr?: boolean;
|
|
20
|
+
indexed_db?: boolean;
|
|
21
|
+
inverted_colors?: boolean;
|
|
22
|
+
local_storage?: boolean;
|
|
23
|
+
motion_reduced?: boolean;
|
|
24
|
+
navigator_build_id?: string;
|
|
25
|
+
navigator_cpu_class?: string;
|
|
26
|
+
navigator_device_memory?: number;
|
|
27
|
+
navigator_do_not_track?: string;
|
|
28
|
+
navigator_hardware_concurrency?: number;
|
|
29
|
+
navigator_java_enabled?: boolean;
|
|
30
|
+
navigator_language?: string;
|
|
31
|
+
navigator_languages?: string;
|
|
32
|
+
navigator_media_devices?: string;
|
|
33
|
+
navigator_os_cpu?: string;
|
|
34
|
+
navigator_pdf_viewer_enabled?: boolean;
|
|
35
|
+
navigator_permissions?: string;
|
|
36
|
+
navigator_platform?: string;
|
|
37
|
+
navigator_plugins?: string;
|
|
38
|
+
navigator_product?: string;
|
|
39
|
+
navigator_product_sub?: string;
|
|
40
|
+
navigator_properties?: string;
|
|
41
|
+
navigator_user_agent?: string;
|
|
42
|
+
navigator_vendor?: string;
|
|
43
|
+
navigator_vendor_sub?: string;
|
|
44
|
+
open_database?: boolean;
|
|
45
|
+
screen_resolution?: string;
|
|
46
|
+
session_storage?: boolean;
|
|
47
|
+
video_card?: string;
|
|
48
|
+
video_formats?: string;
|
|
49
|
+
web_gl_extensions?: string;
|
|
50
|
+
web_gl_img_bytes_hash?: string;
|
|
51
|
+
web_gl_img_hash?: string;
|
|
52
|
+
web_gl_renderer?: string;
|
|
53
|
+
web_gl_renderer_unmasked?: string;
|
|
54
|
+
web_gl_shader_precisions?: string;
|
|
55
|
+
web_gl_shading_language_version?: string;
|
|
56
|
+
web_gl_status?: string;
|
|
57
|
+
web_gl_vendor?: string;
|
|
58
|
+
web_gl_vendor_unmasked?: string;
|
|
59
|
+
web_gl_version?: string;
|
|
60
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-attributes.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/browser-attributes.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BrowserFingerprintAttributes } from './browser-attributes';
|
|
2
|
+
import { ServerFingerprintAttributes } from './server-attributes';
|
|
3
|
+
export interface FingerprintAttributes extends BrowserFingerprintAttributes, ServerFingerprintAttributes {
|
|
4
|
+
}
|
|
5
|
+
export * from './browser-attributes';
|
|
6
|
+
export * from './server-attributes';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./browser-attributes"), exports);
|
|
18
|
+
__exportStar(require("./server-attributes"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAKA,uDAAqC;AACrC,sDAAoC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export interface ServerFingerprintAttributes {
|
|
2
|
+
ip_address?: string;
|
|
3
|
+
is_wireless_carrier?: boolean;
|
|
4
|
+
ip_geo_city?: string;
|
|
5
|
+
ip_geo_region?: string;
|
|
6
|
+
ip_geo_region_code?: string;
|
|
7
|
+
ip_geo_region_type?: string;
|
|
8
|
+
ip_geo_postal_code?: string;
|
|
9
|
+
ip_geo_country_name?: string;
|
|
10
|
+
ip_geo_country_code?: string;
|
|
11
|
+
ip_geo_continent_name?: string;
|
|
12
|
+
ip_geo_continent_code?: string;
|
|
13
|
+
ip_longitude?: number;
|
|
14
|
+
ip_latitude?: number;
|
|
15
|
+
ip_asn_name?: string;
|
|
16
|
+
ip_asn_type?: string;
|
|
17
|
+
ip_company_name?: string;
|
|
18
|
+
ip_company_type?: string;
|
|
19
|
+
browser_name?: string;
|
|
20
|
+
browser_major_version?: string;
|
|
21
|
+
browser_version?: string;
|
|
22
|
+
browser_engine?: string;
|
|
23
|
+
browser_engine_version?: string;
|
|
24
|
+
browser_os_name?: string;
|
|
25
|
+
browser_os_version?: string;
|
|
26
|
+
browser_device_model?: string;
|
|
27
|
+
browser_device_type?: string;
|
|
28
|
+
browser_device_vendor?: string;
|
|
29
|
+
browser_cpu?: string;
|
|
30
|
+
user_agent_header?: string;
|
|
31
|
+
accept_header?: string;
|
|
32
|
+
accept_encoding_header?: string;
|
|
33
|
+
accept_language_header?: string;
|
|
34
|
+
mobile_header?: string;
|
|
35
|
+
platform_header?: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server-attributes.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/server-attributes.ts"],"names":[],"mappings":""}
|
package/dist/cjs/types/index.js
CHANGED
|
@@ -19,4 +19,5 @@ __exportStar(require("./common"), exports);
|
|
|
19
19
|
__exportStar(require("./event"), exports);
|
|
20
20
|
__exportStar(require("./event-bus-event"), exports);
|
|
21
21
|
__exportStar(require("./third-party-event-configuration-types"), exports);
|
|
22
|
+
__exportStar(require("./fingerprint"), exports);
|
|
22
23
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB;AACtB,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,0EAAwD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB;AACtB,2CAAyB;AACzB,0CAAwB;AACxB,oDAAkC;AAClC,0EAAwD;AACxD,gDAA8B"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export interface BrowserFingerprintAttributes {
|
|
2
|
+
ad_blocker?: boolean;
|
|
3
|
+
architecture?: number;
|
|
4
|
+
audio_analyser?: string;
|
|
5
|
+
audio_formats?: string;
|
|
6
|
+
browser_locationbar?: boolean;
|
|
7
|
+
browser_menubar?: boolean;
|
|
8
|
+
browser_personalbar?: boolean;
|
|
9
|
+
browser_statusbar?: boolean;
|
|
10
|
+
browser_toolbar?: boolean;
|
|
11
|
+
canvas_geometry_hash?: string;
|
|
12
|
+
canvas_winding?: boolean;
|
|
13
|
+
color_depth?: number;
|
|
14
|
+
color_gamut?: string;
|
|
15
|
+
cookie_enabled?: boolean;
|
|
16
|
+
device_timezone?: string;
|
|
17
|
+
fonts?: string;
|
|
18
|
+
forced_colors?: boolean;
|
|
19
|
+
hdr?: boolean;
|
|
20
|
+
indexed_db?: boolean;
|
|
21
|
+
inverted_colors?: boolean;
|
|
22
|
+
local_storage?: boolean;
|
|
23
|
+
motion_reduced?: boolean;
|
|
24
|
+
navigator_build_id?: string;
|
|
25
|
+
navigator_cpu_class?: string;
|
|
26
|
+
navigator_device_memory?: number;
|
|
27
|
+
navigator_do_not_track?: string;
|
|
28
|
+
navigator_hardware_concurrency?: number;
|
|
29
|
+
navigator_java_enabled?: boolean;
|
|
30
|
+
navigator_language?: string;
|
|
31
|
+
navigator_languages?: string;
|
|
32
|
+
navigator_media_devices?: string;
|
|
33
|
+
navigator_os_cpu?: string;
|
|
34
|
+
navigator_pdf_viewer_enabled?: boolean;
|
|
35
|
+
navigator_permissions?: string;
|
|
36
|
+
navigator_platform?: string;
|
|
37
|
+
navigator_plugins?: string;
|
|
38
|
+
navigator_product?: string;
|
|
39
|
+
navigator_product_sub?: string;
|
|
40
|
+
navigator_properties?: string;
|
|
41
|
+
navigator_user_agent?: string;
|
|
42
|
+
navigator_vendor?: string;
|
|
43
|
+
navigator_vendor_sub?: string;
|
|
44
|
+
open_database?: boolean;
|
|
45
|
+
screen_resolution?: string;
|
|
46
|
+
session_storage?: boolean;
|
|
47
|
+
video_card?: string;
|
|
48
|
+
video_formats?: string;
|
|
49
|
+
web_gl_extensions?: string;
|
|
50
|
+
web_gl_img_bytes_hash?: string;
|
|
51
|
+
web_gl_img_hash?: string;
|
|
52
|
+
web_gl_renderer?: string;
|
|
53
|
+
web_gl_renderer_unmasked?: string;
|
|
54
|
+
web_gl_shader_precisions?: string;
|
|
55
|
+
web_gl_shading_language_version?: string;
|
|
56
|
+
web_gl_status?: string;
|
|
57
|
+
web_gl_vendor?: string;
|
|
58
|
+
web_gl_vendor_unmasked?: string;
|
|
59
|
+
web_gl_version?: string;
|
|
60
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser-attributes.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/browser-attributes.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BrowserFingerprintAttributes } from './browser-attributes';
|
|
2
|
+
import { ServerFingerprintAttributes } from './server-attributes';
|
|
3
|
+
export interface FingerprintAttributes extends BrowserFingerprintAttributes, ServerFingerprintAttributes {
|
|
4
|
+
}
|
|
5
|
+
export * from './browser-attributes';
|
|
6
|
+
export * from './server-attributes';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/index.ts"],"names":[],"mappings":"AAKA,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export interface ServerFingerprintAttributes {
|
|
2
|
+
ip_address?: string;
|
|
3
|
+
is_wireless_carrier?: boolean;
|
|
4
|
+
ip_geo_city?: string;
|
|
5
|
+
ip_geo_region?: string;
|
|
6
|
+
ip_geo_region_code?: string;
|
|
7
|
+
ip_geo_region_type?: string;
|
|
8
|
+
ip_geo_postal_code?: string;
|
|
9
|
+
ip_geo_country_name?: string;
|
|
10
|
+
ip_geo_country_code?: string;
|
|
11
|
+
ip_geo_continent_name?: string;
|
|
12
|
+
ip_geo_continent_code?: string;
|
|
13
|
+
ip_longitude?: number;
|
|
14
|
+
ip_latitude?: number;
|
|
15
|
+
ip_asn_name?: string;
|
|
16
|
+
ip_asn_type?: string;
|
|
17
|
+
ip_company_name?: string;
|
|
18
|
+
ip_company_type?: string;
|
|
19
|
+
browser_name?: string;
|
|
20
|
+
browser_major_version?: string;
|
|
21
|
+
browser_version?: string;
|
|
22
|
+
browser_engine?: string;
|
|
23
|
+
browser_engine_version?: string;
|
|
24
|
+
browser_os_name?: string;
|
|
25
|
+
browser_os_version?: string;
|
|
26
|
+
browser_device_model?: string;
|
|
27
|
+
browser_device_type?: string;
|
|
28
|
+
browser_device_vendor?: string;
|
|
29
|
+
browser_cpu?: string;
|
|
30
|
+
user_agent_header?: string;
|
|
31
|
+
accept_header?: string;
|
|
32
|
+
accept_encoding_header?: string;
|
|
33
|
+
accept_language_header?: string;
|
|
34
|
+
mobile_header?: string;
|
|
35
|
+
platform_header?: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server-attributes.js","sourceRoot":"","sources":["../../../../src/types/fingerprint/server-attributes.ts"],"names":[],"mappings":""}
|
package/dist/esm/types/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,yCAAyC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,yCAAyC,CAAC;AACxD,cAAc,eAAe,CAAC"}
|