@sunbird-cb/utils 1.0.17 → 1.0.18

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.
@@ -62,7 +62,12 @@ var ConfigurationsService = (function () {
62
62
  color: 'primary',
63
63
  };
64
64
  this.primaryNavBarConfig = null;
65
+ this.updateOrgReadData = new BehaviorSubject('');
66
+ this.updateOrgReadDataObservable = this.updateOrgReadData.asObservable();
65
67
  }
68
+ ConfigurationsService.prototype.updateOrgData = function (id) {
69
+ this.updateOrgReadData.next(id);
70
+ };
66
71
  ConfigurationsService.decorators = [
67
72
  { type: Injectable, args: [{
68
73
  providedIn: 'root',
@@ -95,6 +100,7 @@ if (false) {
95
100
  ConfigurationsService.prototype.userProfile;
96
101
  ConfigurationsService.prototype.userProfileV2;
97
102
  ConfigurationsService.prototype.unMappedUser;
103
+ ConfigurationsService.prototype.orgReadData;
98
104
  ConfigurationsService.prototype.isAuthenticated;
99
105
  ConfigurationsService.prototype.isNewUser;
100
106
  ConfigurationsService.prototype.isActive;
@@ -115,6 +121,8 @@ if (false) {
115
121
  ConfigurationsService.prototype.primaryNavBar;
116
122
  ConfigurationsService.prototype.pageNavBar;
117
123
  ConfigurationsService.prototype.primaryNavBarConfig;
124
+ ConfigurationsService.prototype.updateOrgReadData;
125
+ ConfigurationsService.prototype.updateOrgReadDataObservable;
118
126
  }
119
127
 
120
128
  var ValueService = (function () {