@team-internet/apiconnector 10.0.5 → 10.0.6

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
@@ -1,3 +1,10 @@
1
+ ## [10.0.6](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v10.0.5...v10.0.6) (2025-03-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** bump idna-uts46-hx from 6.0.6 to 6.0.7 ([20f5290](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/commit/20f52902ac48d1968e02e1b99c3e263326844c0f))
7
+
1
8
  ## [10.0.5](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v10.0.4...v10.0.5) (2025-01-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@team-internet/apiconnector",
3
3
  "description": "Node.js SDK for the insanely fast CentralNic Reseller (fka RRPProxy) API",
4
- "version": "10.0.5",
4
+ "version": "10.0.6",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -16,9 +16,6 @@
16
16
  "types": "./dist/index.d.ts",
17
17
  "//": "...",
18
18
  "license": "MIT",
19
- "engines": {
20
- "node": ">=20.6.1"
21
- },
22
19
  "homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk",
23
20
  "repository": "github:centralnicgroup-opensource/rtldev-middleware-node-sdk",
24
21
  "bugs": "https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/issues",
@@ -68,14 +65,14 @@
68
65
  "chai": "^5.1.2",
69
66
  "chai-as-promised": "^8.0.0",
70
67
  "cross-env": "^7.0.3",
71
- "mocha": "^10.8.2",
72
- "nock": "^13.5.6",
68
+ "mocha": "^11.0.1",
69
+ "nock": "^14.0.0",
73
70
  "prettier": "^3.0.0",
74
71
  "semantic-release": "^24.2.0",
75
72
  "semantic-release-replace-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-replace-plugin",
76
73
  "semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
77
74
  "tsx": "^4.19.2",
78
- "typedoc": "^0.27.0",
75
+ "typedoc": "^0.28.0",
79
76
  "typescript": "^5.6.3"
80
77
  },
81
78
  "dependencies": {
package/src/apiclient.ts CHANGED
@@ -5,7 +5,7 @@ import { ResponseTemplateManager } from "./responsetemplatemanager.js";
5
5
  import { fixedURLEnc, SocketConfig } from "./socketconfig.js";
6
6
  import { toAscii } from "idna-uts46-hx";
7
7
 
8
- export const CNR_CONNECTION_URL_PROXY = "http://10.0.5.1/api/call.cgi";
8
+ export const CNR_CONNECTION_URL_PROXY = "http://10.0.6.1/api/call.cgi";
9
9
  export const CNR_CONNECTION_URL_LIVE = "https://api.rrpproxy.net/api/call.cgi";
10
10
  export const CNR_CONNECTION_URL_OTE =
11
11
  "https://api-ote.rrpproxy.net/api/call.cgi";
@@ -189,7 +189,7 @@ export class APIClient {
189
189
  * @returns module version
190
190
  */
191
191
  public getVersion(): string {
192
- return "10.0.5";
192
+ return "10.0.6";
193
193
  }
194
194
 
195
195
  /**