@veloceapps/sdk 6.0.0-5 → 6.0.0-6
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/veloceapps-sdk-core.umd.js +18 -0
- package/bundles/veloceapps-sdk-core.umd.js.map +1 -1
- package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +3 -1
- package/esm2015/core/modules/configuration/services/configuration.service.js +1 -1
- package/esm2015/core/modules/flow-configuration/services/flow-configuration.service.js +8 -1
- package/fesm2015/veloceapps-sdk-core.js +7 -0
- package/fesm2015/veloceapps-sdk-core.js.map +1 -1
- package/package.json +1 -1
@@ -1614,6 +1614,16 @@
|
|
1614
1614
|
enumerable: false,
|
1615
1615
|
configurable: true
|
1616
1616
|
});
|
1617
|
+
Object.defineProperty(FlowConfigurationService.prototype, "activeMetrics$", {
|
1618
|
+
get: function () {
|
1619
|
+
return this.quoteDraftService.quoteDraft$.pipe(rxjs.map(function (_c) {
|
1620
|
+
var activeMetrics = _c.activeMetrics;
|
1621
|
+
return activeMetrics;
|
1622
|
+
}));
|
1623
|
+
},
|
1624
|
+
enumerable: false,
|
1625
|
+
configurable: true
|
1626
|
+
});
|
1617
1627
|
Object.defineProperty(FlowConfigurationService.prototype, "chargesSnapshot", {
|
1618
1628
|
get: function () {
|
1619
1629
|
var _a, _b;
|
@@ -1630,6 +1640,14 @@
|
|
1630
1640
|
enumerable: false,
|
1631
1641
|
configurable: true
|
1632
1642
|
});
|
1643
|
+
Object.defineProperty(FlowConfigurationService.prototype, "activeMetricsSnapshot", {
|
1644
|
+
get: function () {
|
1645
|
+
var _a, _b;
|
1646
|
+
return (_b = (_a = this.quoteDraftService.quoteDraft) === null || _a === void 0 ? void 0 : _a.activeMetrics) !== null && _b !== void 0 ? _b : [];
|
1647
|
+
},
|
1648
|
+
enumerable: false,
|
1649
|
+
configurable: true
|
1650
|
+
});
|
1633
1651
|
Object.defineProperty(FlowConfigurationService.prototype, "contextSnapshot", {
|
1634
1652
|
get: function () {
|
1635
1653
|
return this.contextService.resolve();
|