valtech-components 2.0.805 → 2.0.806

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.
@@ -42,6 +42,13 @@ export interface RefreshableStreamOptions<T> {
42
42
  * suscripción. Útil para streams que no leen Firestore. Default: `true`.
43
43
  */
44
44
  gateOnFirebaseAuth?: boolean;
45
+ /**
46
+ * Timeout (ms) del gate de Firebase Auth. Si la sesión de Firebase Auth no
47
+ * se establece en este tiempo, el stream procede igual (la factory correrá
48
+ * y, si no hay permiso, terminará en estado `error` — NUNCA en skeleton
49
+ * infinito). Muy por encima de cualquier handshake real. Default: 20000.
50
+ */
51
+ authGateTimeoutMs?: number;
45
52
  /**
46
53
  * Injector explícito. Solo necesario si `createRefreshableStream` se llama
47
54
  * fuera de un injection context (raro). Por defecto usa `inject(Injector)`.
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "2.0.805";
5
+ export declare const VERSION = "2.0.806";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.805",
3
+ "version": "2.0.806",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"