valtech-components 2.0.954 → 2.0.955

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.
@@ -531,6 +531,10 @@ export interface SwitchOrgResponse {
531
531
  operationId: string;
532
532
  firebaseToken: string;
533
533
  activeOrg: string;
534
+ /** Nuevo JWT con activeOrg actualizado. El FE lo almacena para que el
535
+ * bootstrap post-refresh use la org correcta en vez del JWT cacheado. */
536
+ accessToken?: string;
537
+ expiresIn?: number;
534
538
  }
535
539
  /** Tipos de eventos de sincronización entre pestañas */
536
540
  export type AuthSyncEventType = 'LOGIN' | 'LOGOUT' | 'TOKEN_REFRESH' | 'PERMISSIONS_UPDATE' | 'ORG_SWITCH';
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.954";
5
+ export declare const VERSION = "2.0.955";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.954",
3
+ "version": "2.0.955",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"