@netacea/netaceaintegrationbase 2.0.17 → 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 +8 -0
- package/dist/NetaceaBase.types.d.ts +4 -12
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
|
|
6
14
|
## 2.0.17 (2024-05-15)
|
|
7
15
|
|
|
8
16
|
**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
|
*/
|
|
@@ -239,9 +235,7 @@ export interface WebLog {
|
|
|
239
235
|
IntegrationType?: string;
|
|
240
236
|
IntegrationVersion?: string;
|
|
241
237
|
XForwardedFor?: string;
|
|
242
|
-
optional?:
|
|
243
|
-
[key: string]: unknown;
|
|
244
|
-
};
|
|
238
|
+
optional?: Record<string, unknown>;
|
|
245
239
|
}
|
|
246
240
|
export interface V2WebLog {
|
|
247
241
|
'@timestamp': string;
|
|
@@ -265,9 +259,7 @@ export interface V2WebLog {
|
|
|
265
259
|
user_agent: string;
|
|
266
260
|
user_id?: string;
|
|
267
261
|
x_forwarded_for?: string;
|
|
268
|
-
optional?:
|
|
269
|
-
[key: string]: unknown;
|
|
270
|
-
};
|
|
262
|
+
optional?: Record<string, unknown>;
|
|
271
263
|
}
|
|
272
264
|
export interface NetaceaResponseBase {
|
|
273
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
|
}
|