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.
- package/esm2022/lib/services/auth/auth.service.mjs +8 -1
- package/esm2022/lib/services/auth/types.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +8 -1
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/services/auth/types.d.ts +4 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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