@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
|
@@ -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();
|