@rws-framework/client 2.23.3 → 2.23.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.23.3",
4
+ "version": "2.23.5",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
@@ -103,6 +103,8 @@ class ApiService extends TheService {
103
103
  {
104
104
  return calls.get.bind(this)(`${this.config.get('backendUrl')}${this.config.get('apiPrefix') || ''}/api/rws/resource/${resourceName}`) as Promise<ITypesResponse>
105
105
  }
106
+
107
+ getBackendUrl = backend.getBackendUrl.bind(this);
106
108
  }
107
109
 
108
110
  export default ApiService.getSingleton();