private updateGlobalContext()

in src/client/src/analytics_client/context_service.ts [79:88]


  private updateGlobalContext() {
    this.context$.next(
      [...this.contextProvidersRegistry.values()].reduce((acc: Partial<EventContext>, context) => {
        return {
          ...acc,
          ...this.removeEmptyValues(context),
        };
      }, {} as Partial<EventContext>)
    );
  }