@netacea/netaceaintegrationbase 2.0.15 → 2.0.17
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/CHANGELOG.md +16 -0
- package/dist/NetaceaBase.types.d.ts +8 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 2.0.17 (2024-05-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 2.0.16 (2024-05-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 2.0.15 (2024-04-30)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
@@ -222,6 +222,8 @@ export interface IngestArgs {
|
|
|
222
222
|
* IP values set by a CDN under "x-fowarded-for" header
|
|
223
223
|
*/
|
|
224
224
|
xForwardedFor?: string;
|
|
225
|
+
headerFingerprint?: string;
|
|
226
|
+
cookieFingerprint?: string;
|
|
225
227
|
}
|
|
226
228
|
export interface WebLog {
|
|
227
229
|
Request: string;
|
|
@@ -237,6 +239,9 @@ export interface WebLog {
|
|
|
237
239
|
IntegrationType?: string;
|
|
238
240
|
IntegrationVersion?: string;
|
|
239
241
|
XForwardedFor?: string;
|
|
242
|
+
optional?: {
|
|
243
|
+
[key: string]: unknown;
|
|
244
|
+
};
|
|
240
245
|
}
|
|
241
246
|
export interface V2WebLog {
|
|
242
247
|
'@timestamp': string;
|
|
@@ -260,6 +265,9 @@ export interface V2WebLog {
|
|
|
260
265
|
user_agent: string;
|
|
261
266
|
user_id?: string;
|
|
262
267
|
x_forwarded_for?: string;
|
|
268
|
+
optional?: {
|
|
269
|
+
[key: string]: unknown;
|
|
270
|
+
};
|
|
263
271
|
}
|
|
264
272
|
export interface NetaceaResponseBase {
|
|
265
273
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"description": "Base package for Netacea CDN integrations.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"typescript": "^5.4.2"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@netacea/kinesisingest": "^1.5.
|
|
30
|
+
"@netacea/kinesisingest": "^1.5.35"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "49d687b7028d4c880438ef8288d45437d2cea8df"
|
|
33
33
|
}
|