@veloceapps/sdk 2.0.22 → 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.
- package/bundles/veloce-sdk-cms.umd.js +14 -0
- package/bundles/veloce-sdk-cms.umd.js.map +1 -1
- package/cms/modules/configuration/services/configuration.service.d.ts +3 -1
- package/esm2015/cms/modules/configuration/services/configuration.service.js +7 -1
- package/fesm2015/veloce-sdk-cms.js +6 -0
- package/fesm2015/veloce-sdk-cms.js.map +1 -1
- package/package.json +3 -3
|
@@ -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();
|