@veloceapps/sdk 2.0.23 → 2.0.24

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.
@@ -1226,6 +1226,20 @@
1226
1226
  ConfigurationService.prototype.getRuntimeContext = function () {
1227
1227
  return this.runtimeService.runtimeContext;
1228
1228
  };
1229
+ Object.defineProperty(ConfigurationService.prototype, "contextSnapshot", {
1230
+ get: function () {
1231
+ return this.contextService.resolve();
1232
+ },
1233
+ enumerable: false,
1234
+ configurable: true
1235
+ });
1236
+ Object.defineProperty(ConfigurationService.prototype, "context$", {
1237
+ get: function () {
1238
+ return this.contextService.resolve$();
1239
+ },
1240
+ enumerable: false,
1241
+ configurable: true
1242
+ });
1229
1243
  Object.defineProperty(ConfigurationService.prototype, "charges$", {
1230
1244
  get: function () {
1231
1245
  return this.charges.asObservable();