@rws-framework/client 2.23.3 → 2.23.4

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.4",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
@@ -103,6 +103,10 @@ 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(){
108
+ return backend.getBackendUrl.bind(this);
109
+ }
106
110
  }
107
111
 
108
112
  export default ApiService.getSingleton();