@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.
- package/dist/1.0.0.remoteEntry.js +1 -1
- package/dist/{6419.6419.3214c2aca09cbb81b96c.js → 6419.6419.75be2538826fd624c2e6.js} +2 -2
- package/dist/6419.9404948d9919b4fa33afc1568d411837.js.map +1 -0
- package/dist/foundation-zero.iife.min.js +1 -1
- package/dist/foundation-zero.js +2 -2
- package/dist/foundation-zero.min.js +1 -1
- package/dist/{foundationZero.320353b5f924443ee6941f485d8f5ac9.js.map → foundationZero.9a0555daf7835a5a70c191e1722820f4.js.map} +1 -1
- package/dist/{main.cf0dc562c4040ef4a14f51697b9e5a92.js.map → main.c2fef793d1777f2db96d3a2237d3fb30.js.map} +1 -1
- package/dist/{main.1f2e437ca3f4fe8d1bca.js → main.c4608158d4d4b8a1441a.js} +2 -2
- package/dist/remoteEntry.js +2 -2
- package/package.json +5 -5
- package/dist/6419.e96aa8cdd495fe296a842d6fdadd0341.js.map +0 -1
package/dist/foundation-zero.js
CHANGED
|
@@ -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
|
};
|