@netacea/netaceaintegrationbase 2.0.23 → 2.0.25
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 +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -366,8 +366,8 @@ interface InjectResponse<T = any> extends MitigateResponse<T> {
|
|
|
366
366
|
}
|
|
367
367
|
type NetaceaMitigationResponse<T> = MitigateResponse<T> | InjectResponse<T> | undefined;
|
|
368
368
|
interface NetaceaWorker<RequestArgs, Response> {
|
|
369
|
-
runMitigation(args: RequestArgs)
|
|
370
|
-
ingest(...args: any[])
|
|
369
|
+
runMitigation: (args: RequestArgs) => Promise<NetaceaMitigationResponse<Response>>;
|
|
370
|
+
ingest: (...args: any[]) => Promise<any>;
|
|
371
371
|
}
|
|
372
372
|
interface CookiesAttributes {
|
|
373
373
|
cookieAttributes: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netacea/netaceaintegrationbase",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.25",
|
|
4
4
|
"description": "Base package for Netacea CDN integrations.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"typescript": "^5.4.2"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@netacea/kinesisingest": "^1.5.
|
|
42
|
+
"@netacea/kinesisingest": "^1.5.43"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c8404a662a1b81770098c4ca7cb00abc8e2a3c17"
|
|
45
45
|
}
|