@netacea/netaceaintegrationbase 2.0.113 → 2.0.115

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 +8 -2
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -285,6 +285,8 @@ interface IngestArgs {
285
285
  * IP values set by a CDN under "x-forwarded-for" header
286
286
  */
287
287
  cookieFingerprint?: string;
288
+ gqlOpName?: string;
289
+ gqlOpType?: string;
288
290
  headerFingerprint?: string;
289
291
  integrationMode?: string;
290
292
  ipHeader?: string;
@@ -297,18 +299,21 @@ interface IngestArgs {
297
299
  xForwardedFor?: string;
298
300
  }
299
301
  interface WebLog {
300
- BytesSent: string;
302
+ BytesReceived?: number;
303
+ BytesSent: number | string;
304
+ GraphQL?: Record<string, string>;
301
305
  HeaderHash?: string;
302
306
  IntegrationType?: string;
303
307
  IntegrationVersion?: string;
304
308
  IpFromHeader?: string;
305
309
  NetaceaMitigationApplied: string;
306
- NetaceaUserIdCookie: string;
310
+ NetaceaUserIdCookie?: string;
307
311
  NetaceaUserIdCookieStatus?: number;
308
312
  optional?: Record<string, unknown>;
309
313
  ProtectionMode?: string;
310
314
  ProtectorLatencyMs?: number;
311
315
  ProtectorStatus?: number;
316
+ Query?: string;
312
317
  RealIp: string;
313
318
  Referer: string;
314
319
  Request: string;
@@ -319,6 +324,7 @@ interface WebLog {
319
324
  TimeLocal: string;
320
325
  TimeUnixMsUTC?: number;
321
326
  UserAgent: string;
327
+ UserId?: string;
322
328
  WorkerInstanceId?: string;
323
329
  XForwardedFor?: string;
324
330
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netacea/netaceaintegrationbase",
3
- "version": "2.0.113",
3
+ "version": "2.0.115",
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.131"
27
+ "@netacea/kinesisingest": "^1.5.133"
28
28
  },
29
- "gitHead": "a13a15a7da5e6ddbe24eb0113dd62bfb6026c9ec"
29
+ "gitHead": "40fd25f0ba02ac8e704f76f8df6b963c684b2da8"
30
30
  }