@netacea/netaceaintegrationbase 2.0.16 → 2.0.18
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 -6
- 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.18 (2024-05-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 2.0.17 (2024-05-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 2.0.16 (2024-05-15)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @netacea/netaceaintegrationbase
|
|
@@ -12,9 +12,7 @@ export interface MakeRequestArgs {
|
|
|
12
12
|
/**
|
|
13
13
|
* Key value collection of the request headers
|
|
14
14
|
*/
|
|
15
|
-
headers:
|
|
16
|
-
[key: string]: string;
|
|
17
|
-
};
|
|
15
|
+
headers: Record<string, string>;
|
|
18
16
|
/**
|
|
19
17
|
* HTTP Method
|
|
20
18
|
*/
|
|
@@ -36,9 +34,7 @@ export interface MakeRequestResponse {
|
|
|
36
34
|
/**
|
|
37
35
|
* Key value collection of the response headers
|
|
38
36
|
*/
|
|
39
|
-
headers:
|
|
40
|
-
[key: string]: string;
|
|
41
|
-
};
|
|
37
|
+
headers: Record<string, string>;
|
|
42
38
|
/**
|
|
43
39
|
* Response body value
|
|
44
40
|
*/
|
|
@@ -222,6 +218,8 @@ export interface IngestArgs {
|
|
|
222
218
|
* IP values set by a CDN under "x-fowarded-for" header
|
|
223
219
|
*/
|
|
224
220
|
xForwardedFor?: string;
|
|
221
|
+
headerFingerprint?: string;
|
|
222
|
+
cookieFingerprint?: string;
|
|
225
223
|
}
|
|
226
224
|
export interface WebLog {
|
|
227
225
|
Request: string;
|
|
@@ -237,6 +235,7 @@ export interface WebLog {
|
|
|
237
235
|
IntegrationType?: string;
|
|
238
236
|
IntegrationVersion?: string;
|
|
239
237
|
XForwardedFor?: string;
|
|
238
|
+
optional?: Record<string, unknown>;
|
|
240
239
|
}
|
|
241
240
|
export interface V2WebLog {
|
|
242
241
|
'@timestamp': string;
|
|
@@ -260,6 +259,7 @@ export interface V2WebLog {
|
|
|
260
259
|
user_agent: string;
|
|
261
260
|
user_id?: string;
|
|
262
261
|
x_forwarded_for?: string;
|
|
262
|
+
optional?: Record<string, unknown>;
|
|
263
263
|
}
|
|
264
264
|
export interface NetaceaResponseBase {
|
|
265
265
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.18",
|
|
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.36"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "976f738c0dc1fe98925753d05e425cd8a60b1692"
|
|
33
33
|
}
|