@firebase/util 1.11.0-firebase-studio-sdk-integration.1adc0ae1f → 1.11.0-firebase-studio-sdk-integration.226be0bb1

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/index.cjs.js CHANGED
@@ -2133,7 +2133,9 @@ function isCloudWorkstation(host) {
2133
2133
  return host.endsWith('.cloudworkstations.dev');
2134
2134
  }
2135
2135
  async function testConnectionAlive(endpoint) {
2136
- const result = await fetch(endpoint);
2136
+ const result = await fetch(endpoint, {
2137
+ credentials: 'include'
2138
+ });
2137
2139
  return result.ok;
2138
2140
  }
2139
2141