@netacea/captchafeedback 5.5.7 → 5.6.1

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 CHANGED
@@ -3,6 +3,25 @@
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
+ ## 5.6.1 (2026-04-14)
7
+
8
+ **Note:** Version bump only for package @netacea/captchafeedback
9
+
10
+
11
+
12
+
13
+
14
+ # 5.6.0 (2026-04-13)
15
+
16
+
17
+ ### Features
18
+
19
+ * **f5:** add monetisation redirect support (mitigate=5) ([#789](https://github.com/Netacea/JavascriptATAIntegration/issues/789)) ([49ec3f2](https://github.com/Netacea/JavascriptATAIntegration/commit/49ec3f2729b012fbeca63ec29596f6fcab974d37))
20
+
21
+
22
+
23
+
24
+
6
25
  ## 5.5.7 (2026-04-13)
7
26
 
8
27
  **Note:** Version bump only for package @netacea/captchafeedback
package/README.md CHANGED
@@ -2,10 +2,13 @@
2
2
 
3
3
  ![Netacea Header](https://assets.ntcacdn.net/header.jpg)
4
4
 
5
- [![npm](https://img.shields.io/npm/v/@netacea/captchafeedback.svg)](https://www.npmjs.com/package/@netacea/captchafeedback)  
5
+ [![npm](https://img.shields.io/npm/v/@netacea/captchafeedback.svg)](https://www.npmjs.com/package/@netacea/captchafeedback)
6
+  
6
7
  [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
7
8
 
8
- `@netacea/captchafeedback` is a package designed to add [Netacea](https://netacea.com) CAPTCHA feedback functionality to your NodeJS based origin server.
9
+ `@netacea/captchafeedback` is a package designed to add
10
+ [Netacea](https://netacea.com) CAPTCHA feedback functionality to your NodeJS
11
+ based origin server.
9
12
 
10
13
  ## Installation
11
14
 
@@ -31,11 +34,11 @@ const netacea = new Netacea({
31
34
  })
32
35
 
33
36
  const { cookies } = await netacea.updateCaptcha({
34
- clientIp: 'client-ip', // Client's real IP address
35
- cookieHeader: 'cookie-header', // Incoming cookie header value
37
+ clientIp: 'client-ip', // Client's real IP address
38
+ cookieHeader: 'cookie-header', // Incoming cookie header value
36
39
  eventId: 'captcha-page-event-id', // X-Netacea-Event-ID received when captcha was served
37
- result: true, // Result from captcha
38
- userAgent: 'client-user-agent' // Client's user-agent
40
+ result: true, // Result from captcha
41
+ userAgent: 'client-user-agent' // Client's user-agent
39
42
  })
40
43
  // TODO: Add the returned cookies to the set-cookie header of the response, for example:
41
44
  response.header('set-cookie', cookies)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netacea/captchafeedback",
3
- "version": "5.5.7",
3
+ "version": "5.6.1",
4
4
  "description": "CAPTCHA feedback module to send CAPTCHA results back to Netacea.",
5
5
  "main": "dist/captchafeedback/src/index.js",
6
6
  "types": "dist/captchafeedback/src/index.d.ts",
@@ -21,9 +21,9 @@
21
21
  "axios": "^0.21.1"
22
22
  },
23
23
  "dependencies": {
24
- "@netacea/kinesisingest": "^1.8.7",
25
- "@netacea/netaceaintegrationbase": "^2.3.7",
24
+ "@netacea/kinesisingest": "^1.9.1",
25
+ "@netacea/netaceaintegrationbase": "^2.4.1",
26
26
  "jose": "^4.15.9"
27
27
  },
28
- "gitHead": "55130dcc13dbff893f593bc3f66c12c61e73ed1d"
28
+ "gitHead": "fff9c8a6c79d131f3740c4e54230e4ce8ee54140"
29
29
  }