@netacea/netaceaintegrationbase 1.17.8 → 1.17.10
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 +6 -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
|
+
## 1.17.10 (2024-02-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 1.17.9 (2024-02-27)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 1.17.8 (2024-02-26)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
@@ -218,6 +218,10 @@ export interface IngestArgs {
|
|
|
218
218
|
* Example: 1.2.3
|
|
219
219
|
*/
|
|
220
220
|
integrationVersion?: string;
|
|
221
|
+
/**
|
|
222
|
+
* IP values set by a CDN under "x-fowarded-for" header
|
|
223
|
+
*/
|
|
224
|
+
xForwardedFor?: string;
|
|
221
225
|
}
|
|
222
226
|
export interface WebLog {
|
|
223
227
|
Request: string;
|
|
@@ -232,6 +236,7 @@ export interface WebLog {
|
|
|
232
236
|
NetaceaMitigationApplied: string;
|
|
233
237
|
IntegrationType?: string;
|
|
234
238
|
IntegrationVersion?: string;
|
|
239
|
+
XForwardedFor?: string;
|
|
235
240
|
}
|
|
236
241
|
export interface V2WebLog {
|
|
237
242
|
'@timestamp': string;
|
|
@@ -254,6 +259,7 @@ export interface V2WebLog {
|
|
|
254
259
|
status: string;
|
|
255
260
|
user_agent: string;
|
|
256
261
|
user_id?: string;
|
|
262
|
+
x_forwarded_for?: string;
|
|
257
263
|
}
|
|
258
264
|
export interface NetaceaResponseBase {
|
|
259
265
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.10",
|
|
4
4
|
"description": "Base package for Netacea CDN integrations.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"typescript": "^3.9.7"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@netacea/kinesisingest": "^1.5.
|
|
31
|
+
"@netacea/kinesisingest": "^1.5.10"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "c91d765642dff891223a5df2f53629c4e32df25d"
|
|
34
34
|
}
|