@dereekb/dbx-core 14.0.0 → 14.1.0

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.
@@ -4756,7 +4756,9 @@ class DbxAppAuthImpersonationEffects {
4756
4756
  /**
4757
4757
  * Dispatches the started/stopped impersonation action for each lifecycle event emitted by the service.
4758
4758
  */
4759
- syncImpersonationState = createEffect(() => this.dbxAuthImpersonationService.events$.pipe(map((event) => (event.type === 'start' ? startedImpersonating({ userId: authUserIdentifier(event.impersonatedUserId), previousUserId: event.previousImpersonatedUserId }) : stoppedImpersonating({ previousUserId: event.previousImpersonatedUserId })))));
4759
+ syncImpersonationState = createEffect(() => this.dbxAuthImpersonationService.events$.pipe(map((event) => event.type === 'start'
4760
+ ? startedImpersonating({ userId: authUserIdentifier(event.impersonatedUserId), previousUserId: event.previousImpersonatedUserId })
4761
+ : stoppedImpersonating({ previousUserId: event.previousImpersonatedUserId }))));
4760
4762
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: DbxAppAuthImpersonationEffects, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4761
4763
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.1.4", ngImport: i0, type: DbxAppAuthImpersonationEffects });
4762
4764
  }