@firebase/data-connect 0.7.0 → 0.7.1-20260526192810
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 +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.node.cjs.js +2 -2
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +2 -2
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4,7 +4,7 @@ import { FirebaseError, generateSHA256Hash, isCloudWorkstation, pingServer } fro
|
|
|
4
4
|
import { Logger } from '@firebase/logger';
|
|
5
5
|
|
|
6
6
|
const name = "@firebase/data-connect";
|
|
7
|
-
const version = "0.7.
|
|
7
|
+
const version = "0.7.1-20260526192810";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @license
|
|
@@ -1663,7 +1663,7 @@ class RESTTransport extends AbstractDataConnectTransport {
|
|
|
1663
1663
|
/** The Request ID of the first request over the stream */
|
|
1664
1664
|
const FIRST_REQUEST_ID = 1;
|
|
1665
1665
|
/** Time to wait before closing an idle connection (no active subscriptions). */
|
|
1666
|
-
const IDLE_CONNECTION_TIMEOUT_MS =
|
|
1666
|
+
const IDLE_CONNECTION_TIMEOUT_MS = 0; // immediate close
|
|
1667
1667
|
/** Initial reconnect delay in ms */
|
|
1668
1668
|
const INITIAL_RECONNECT_DELAY_MS = 1000;
|
|
1669
1669
|
/** Max reconnect delay in ms */
|