@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.
@@ -2129,7 +2129,9 @@ function isCloudWorkstation(host) {
2129
2129
  return host.endsWith('.cloudworkstations.dev');
2130
2130
  }
2131
2131
  async function testConnectionAlive(endpoint) {
2132
- const result = await fetch(endpoint);
2132
+ const result = await fetch(endpoint, {
2133
+ credentials: 'include'
2134
+ });
2133
2135
  return result.ok;
2134
2136
  }
2135
2137