@netacea/captchafeedback 5.2.34 → 5.2.36

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,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
+ ## 5.2.36 (2024-05-15)
7
+
8
+ **Note:** Version bump only for package @netacea/captchafeedback
9
+
10
+
11
+
12
+
13
+
14
+ ## 5.2.35 (2024-05-15)
15
+
16
+ **Note:** Version bump only for package @netacea/captchafeedback
17
+
18
+
19
+
20
+
21
+
6
22
  ## 5.2.34 (2024-05-15)
7
23
 
8
24
  **Note:** Version bump only for package @netacea/captchafeedback
@@ -113,9 +113,7 @@ export interface MakeRequestArgs {
113
113
  * Key, value of header values.
114
114
  * These all need to be sent with the request.
115
115
  */
116
- headers: {
117
- [key: string]: string;
118
- };
116
+ headers: Record<string, string>;
119
117
  /**
120
118
  * Request body to send with the request
121
119
  */
@@ -126,9 +124,7 @@ export interface MakeRequestArgs {
126
124
  }
127
125
  export interface MakeRequestResponse {
128
126
  status: number;
129
- headers: {
130
- [key: string]: string;
131
- };
127
+ headers: Record<string, string>;
132
128
  }
133
129
  export default class CaptchaFeedback {
134
130
  private readonly apiKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netacea/captchafeedback",
3
- "version": "5.2.34",
3
+ "version": "5.2.36",
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",
@@ -39,8 +39,8 @@
39
39
  "axios": "^0.21.1"
40
40
  },
41
41
  "dependencies": {
42
- "@netacea/netaceaintegrationbase": "^2.0.16",
42
+ "@netacea/netaceaintegrationbase": "^2.0.18",
43
43
  "jose": "^4.11.2"
44
44
  },
45
- "gitHead": "0d2ab7431a9654dcb557e9a6e472fe9b8c19a68e"
45
+ "gitHead": "976f738c0dc1fe98925753d05e425cd8a60b1692"
46
46
  }