@veloceapps/sdk 3.0.10 → 3.0.11

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.
@@ -1240,6 +1240,20 @@
1240
1240
  ConfigurationService.prototype.getRuntimeContext = function () {
1241
1241
  return this.runtimeService.runtimeContext;
1242
1242
  };
1243
+ Object.defineProperty(ConfigurationService.prototype, "contextSnapshot", {
1244
+ get: function () {
1245
+ return this.contextService.resolve();
1246
+ },
1247
+ enumerable: false,
1248
+ configurable: true
1249
+ });
1250
+ Object.defineProperty(ConfigurationService.prototype, "context$", {
1251
+ get: function () {
1252
+ return this.contextService.resolve$();
1253
+ },
1254
+ enumerable: false,
1255
+ configurable: true
1256
+ });
1243
1257
  Object.defineProperty(ConfigurationService.prototype, "charges$", {
1244
1258
  get: function () {
1245
1259
  return this.charges.asObservable();