termbridge 0.3.7 → 0.3.9
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/bin.js +2 -2
- package/dist/bin.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4020,8 +4020,8 @@ var startCommand = async (options, deps = {}) => {
|
|
|
4020
4020
|
const cookieSameSite = cookieSameSiteRaw === "none" ? "None" : cookieSameSiteRaw === "strict" ? "Strict" : cookieSameSiteRaw === "lax" ? "Lax" : sandboxDirect && !insecureCookie ? "None" : "Lax";
|
|
4021
4021
|
const auth = (deps.createAuth ?? (() => createAuth({
|
|
4022
4022
|
tokenTtlMs: 9e4,
|
|
4023
|
-
sessionIdleMs:
|
|
4024
|
-
sessionMaxMs:
|
|
4023
|
+
sessionIdleMs: Infinity,
|
|
4024
|
+
sessionMaxMs: Infinity,
|
|
4025
4025
|
cookieSecure: !insecureCookie,
|
|
4026
4026
|
cookieSameSite
|
|
4027
4027
|
})))();
|