@netacea/netaceaintegrationbase 2.0.87 → 2.0.88
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 +5 -0
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -255,6 +255,10 @@ interface IngestArgs {
|
|
|
255
255
|
* Request content-length header, or body size
|
|
256
256
|
*/
|
|
257
257
|
bytesSent: string | number;
|
|
258
|
+
/**
|
|
259
|
+
* The time the request was started, in unix milliseconds format.
|
|
260
|
+
*/
|
|
261
|
+
timeUnixMsUTC?: number;
|
|
258
262
|
/**
|
|
259
263
|
* Time taken to serve request
|
|
260
264
|
*/
|
|
@@ -293,6 +297,7 @@ interface IngestArgs {
|
|
|
293
297
|
interface WebLog {
|
|
294
298
|
Request: string;
|
|
295
299
|
TimeLocal: string;
|
|
300
|
+
TimeUnixMsUTC?: number;
|
|
296
301
|
RealIp: string;
|
|
297
302
|
UserAgent: string;
|
|
298
303
|
Status: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.88",
|
|
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.106"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "2406302b62a3db0af442fb6cc1ce82345267ef6b"
|
|
30
30
|
}
|