@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.
@@ -269,7 +269,12 @@
269
269
  color: 'primary',
270
270
  };
271
271
  this.primaryNavBarConfig = null;
272
+ this.updateOrgReadData = new rxjs.BehaviorSubject('');
273
+ this.updateOrgReadDataObservable = this.updateOrgReadData.asObservable();
272
274
  }
275
+ ConfigurationsService.prototype.updateOrgData = function (id) {
276
+ this.updateOrgReadData.next(id);
277
+ };
273
278
  ConfigurationsService.decorators = [
274
279
  { type: core.Injectable, args: [{
275
280
  providedIn: 'root',
@@ -302,6 +307,7 @@
302
307
  ConfigurationsService.prototype.userProfile;
303
308
  ConfigurationsService.prototype.userProfileV2;
304
309
  ConfigurationsService.prototype.unMappedUser;
310
+ ConfigurationsService.prototype.orgReadData;
305
311
  ConfigurationsService.prototype.isAuthenticated;
306
312
  ConfigurationsService.prototype.isNewUser;
307
313
  ConfigurationsService.prototype.isActive;
@@ -322,6 +328,8 @@
322
328
  ConfigurationsService.prototype.primaryNavBar;
323
329
  ConfigurationsService.prototype.pageNavBar;
324
330
  ConfigurationsService.prototype.primaryNavBarConfig;
331
+ ConfigurationsService.prototype.updateOrgReadData;
332
+ ConfigurationsService.prototype.updateOrgReadDataObservable;
325
333
  }
326
334
 
327
335
  var ValueService = (function () {