@netacea/netaceaintegrationbase 2.0.92 → 2.0.94

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +21 -19
  2. 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-fowarded-for" header
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
- requestHost?: string;
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
- Referer: string;
307
- NetaceaUserIdCookie: string;
308
- NetaceaMitigationApplied: string;
300
+ HeaderHash?: string;
309
301
  IntegrationType?: string;
310
302
  IntegrationVersion?: string;
311
- XForwardedFor?: string;
312
- WorkerInstanceId?: string;
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
- NetaceaUserIdCookieStatus?: number;
319
- HeaderHash?: string;
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.92",
3
+ "version": "2.0.94",
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.110"
27
+ "@netacea/kinesisingest": "^1.5.112"
28
28
  },
29
- "gitHead": "5f39380ff465c8783a254b95cdccb2f266bb918c"
29
+ "gitHead": "ab522e607a1fca3f5669846ec230846ec493ca88"
30
30
  }