@team-internet/apiconnector 10.0.6 → 10.0.7
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 +7 -0
- package/package.json +1 -1
- package/src/apiclient.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [10.0.7](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v10.0.6...v10.0.7) (2025-04-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump idna-uts46-hx from 6.0.7 to 6.0.8 ([df9c6c0](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/commit/df9c6c00d64e670b0adfd9c847b3a7e4d284a0ee))
|
|
7
|
+
|
|
1
8
|
## [10.0.6](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v10.0.5...v10.0.6) (2025-03-17)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
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.
|
|
8
|
+
export const CNR_CONNECTION_URL_PROXY = "http://10.0.7.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.
|
|
192
|
+
return "10.0.7";
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
/**
|