@genesislcap/foundation-zero 10.3.1-alpha-08364b6.0 → 10.3.1

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.
@@ -43103,12 +43103,12 @@ class ExpressionBuilder {
43103
43103
  }
43104
43104
  }
43105
43105
 
43106
- const getHTTPSEndpointUrl = endpoint => {
43106
+ const getHTTPSEndpointUrl = (endpoint, postfix = '/gwf/') => {
43107
43107
  let endpointUrl;
43108
43108
  if (API_HOST) {
43109
43109
  endpointUrl = API_HOST.replace(/wss?:\/\//, 'https://').concat(endpoint);
43110
43110
  } else {
43111
- endpointUrl = 'https://' + location.hostname + endpoint;
43111
+ endpointUrl = 'https://' + location.hostname + postfix + endpoint;
43112
43112
  }
43113
43113
  return endpointUrl;
43114
43114
  };