@netacea/netaceaintegrationbase 2.0.93 → 2.0.95
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/index.d.ts +21 -19
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -282,41 +282,43 @@ interface IngestArgs {
|
|
|
282
282
|
*/
|
|
283
283
|
integrationVersion?: string;
|
|
284
284
|
/**
|
|
285
|
-
* IP values set by a CDN under "x-
|
|
285
|
+
* IP values set by a CDN under "x-forwarded-for" header
|
|
286
286
|
*/
|
|
287
|
-
xForwardedFor?: string;
|
|
288
|
-
headerFingerprint?: string;
|
|
289
287
|
cookieFingerprint?: string;
|
|
288
|
+
headerFingerprint?: string;
|
|
290
289
|
integrationMode?: string;
|
|
291
|
-
|
|
290
|
+
ipHeader?: string;
|
|
292
291
|
mitigationLatency?: number;
|
|
293
292
|
mitigationStatus?: number;
|
|
294
293
|
netaceaCookieStatus?: number;
|
|
294
|
+
requestHost?: string;
|
|
295
295
|
workerInstanceId?: string;
|
|
296
|
+
xForwardedFor?: string;
|
|
296
297
|
}
|
|
297
298
|
interface WebLog {
|
|
298
|
-
Request: string;
|
|
299
|
-
TimeLocal: string;
|
|
300
|
-
TimeUnixMsUTC?: number;
|
|
301
|
-
RealIp: string;
|
|
302
|
-
UserAgent: string;
|
|
303
|
-
Status: string;
|
|
304
|
-
RequestTime: string;
|
|
305
299
|
BytesSent: string;
|
|
306
|
-
|
|
307
|
-
NetaceaUserIdCookie: string;
|
|
308
|
-
NetaceaMitigationApplied: string;
|
|
300
|
+
HeaderHash?: string;
|
|
309
301
|
IntegrationType?: string;
|
|
310
302
|
IntegrationVersion?: string;
|
|
311
|
-
|
|
312
|
-
|
|
303
|
+
IpFromHeader?: string;
|
|
304
|
+
NetaceaMitigationApplied: string;
|
|
305
|
+
NetaceaUserIdCookie: string;
|
|
306
|
+
NetaceaUserIdCookieStatus?: number;
|
|
313
307
|
optional?: Record<string, unknown>;
|
|
314
308
|
ProtectionMode?: string;
|
|
315
|
-
RequestHost?: string;
|
|
316
309
|
ProtectorLatencyMs?: number;
|
|
317
310
|
ProtectorStatus?: number;
|
|
318
|
-
|
|
319
|
-
|
|
311
|
+
RealIp: string;
|
|
312
|
+
Referer: string;
|
|
313
|
+
Request: string;
|
|
314
|
+
RequestHost?: string;
|
|
315
|
+
RequestTime: string;
|
|
316
|
+
Status: string;
|
|
317
|
+
TimeLocal: string;
|
|
318
|
+
TimeUnixMsUTC?: number;
|
|
319
|
+
UserAgent: string;
|
|
320
|
+
WorkerInstanceId?: string;
|
|
321
|
+
XForwardedFor?: string;
|
|
320
322
|
}
|
|
321
323
|
interface NetaceaResponseBase {
|
|
322
324
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.95",
|
|
4
4
|
"description": "Base package for Netacea CDN integrations.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "UNLICENSED",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@netacea/kinesisingest": "^1.5.
|
|
27
|
+
"@netacea/kinesisingest": "^1.5.113"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "8b8209eb1d96b08c5a9d193aa1f7094836374da7"
|
|
30
30
|
}
|