@buynomics-lib/bn-shared 1.17.69 → 1.17.70-feature-care-51.1
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/build/constants/activeOptimizationsLimit.d.ts +2 -0
- package/build/constants/activeOptimizationsLimit.js +6 -0
- package/build/constants/activeOptimizationsLimit.js.map +1 -0
- package/build/index.d.ts +9 -8
- package/build/index.js +21 -18
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT = exports.MAX_ACTIVE_OPTIMIZATIONS_LIMIT = void 0;
|
|
4
|
+
exports.MAX_ACTIVE_OPTIMIZATIONS_LIMIT = 10;
|
|
5
|
+
exports.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT = 1;
|
|
6
|
+
//# sourceMappingURL=activeOptimizationsLimit.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activeOptimizationsLimit.js","sourceRoot":"","sources":["../../src/constants/activeOptimizationsLimit.ts"],"names":[],"mappings":";;;AAAa,QAAA,8BAA8B,GAAG,EAAE,CAAA;AACnC,QAAA,kCAAkC,GAAG,CAAC,CAAA"}
|
package/build/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT, MAX_ACTIVE_OPTIMIZATIONS_LIMIT } from './constants/activeOptimizationsLimit';
|
|
1
2
|
import { FittingStatuses } from './domains/fitting/enums/fitting-statuses';
|
|
2
3
|
import { IFitting } from './domains/fitting/interfaces/fitting';
|
|
3
4
|
import { IFittingLog } from './domains/fitting/interfaces/fitting-logs';
|
|
@@ -10,6 +11,7 @@ import { CentralSteeringVersion } from './enums/central-steering';
|
|
|
10
11
|
import { BuynomicsAppVersion } from './enums/client/client-app-version';
|
|
11
12
|
import { ClientCLVPeriods } from './enums/client/client-clv-periods';
|
|
12
13
|
import { ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels } from './enums/client/client-clv-price-types';
|
|
14
|
+
import { ClientDateSettings, DateGranularity, DateWeekStart, DefaultClientDateSettings } from './enums/client/client-date';
|
|
13
15
|
import { ClientDecimalSettings, DefaultClientDecimalSettings } from './enums/client/client-decimal-settings';
|
|
14
16
|
import { Dimension, DimensionValue } from './enums/client/client-dimensions';
|
|
15
17
|
import { ClientDuplicationParts } from './enums/client/client-duplication-parts';
|
|
@@ -24,9 +26,13 @@ import { ClientViewSettingsPages } from './enums/client/client-view-settings';
|
|
|
24
26
|
import { ChangeCostBases } from './enums/cost-change/change-cost-bases';
|
|
25
27
|
import { CostChangeTypes } from './enums/cost-change/cost-change-types';
|
|
26
28
|
import { DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes } from './enums/deeperion';
|
|
29
|
+
import { KpiConfigType } from './enums/kpis/kpi-config-type.enum';
|
|
30
|
+
import { KpiDisplayStyle } from './enums/kpis/kpi-display-style.enum';
|
|
31
|
+
import { KpiSystemVariables } from './enums/kpis/kpi-system-variables';
|
|
32
|
+
import { KpiAggregation, KpiVariableFormat } from './enums/kpis/kpi-variable-format.enum';
|
|
33
|
+
import { SystemKpis } from './enums/kpis/system-kpis';
|
|
27
34
|
import { KpiConstraintType, KpiConstraintMode, OptimizationStatus, OptimizationKpis, OptimizationSolutionBucket } from './enums/optimization';
|
|
28
35
|
import { BnPermissions } from './enums/permissions';
|
|
29
|
-
import { ClientDateSettings, DateGranularity, DateWeekStart, DefaultClientDateSettings } from './enums/client/client-date';
|
|
30
36
|
import { ChangePriceBases } from './enums/price-change/change-price-bases';
|
|
31
37
|
import { PriceChangeTypes } from './enums/price-change/price-change-types';
|
|
32
38
|
import { PriceLevelTypes } from './enums/price-level/price-level-types';
|
|
@@ -42,8 +48,8 @@ import { CustomCostFormulaParams, getCustomFormulaParamsLabel } from './enums/sc
|
|
|
42
48
|
import { PromotionOffersCalendarGroupByOptions } from './enums/scenario/promotion-offers-calendar-group-by-options';
|
|
43
49
|
import { ScenarioStatus } from './enums/scenario/scenario-status';
|
|
44
50
|
import { ValueDriverType } from './enums/segment/value-driver/value-driver-type';
|
|
45
|
-
import { WebsocketEvents } from './enums/websocket/websocket-events';
|
|
46
51
|
import { ScenarioEventSource } from './enums/websocket/websocket-event-source';
|
|
52
|
+
import { WebsocketEvents } from './enums/websocket/websocket-events';
|
|
47
53
|
import { calculateRange } from './helpers/calculate-range';
|
|
48
54
|
import { getLatestDeeperionVersionValue } from './helpers/deeperion/get-latest-deeperion-version';
|
|
49
55
|
import { DefaultClientFeaturesSettings } from './helpers/default-client-feature-settings';
|
|
@@ -56,9 +62,4 @@ import PriceDecisionNullificationHelper from './helpers/price-decision/price-dec
|
|
|
56
62
|
import { IClientViewSettings } from './interfaces/client-view-settings';
|
|
57
63
|
import { IFileUpload } from './interfaces/file-upload';
|
|
58
64
|
import { ISimulationInputChangeEvents } from './interfaces/simulation/simulation-input-change-events';
|
|
59
|
-
|
|
60
|
-
import { KpiDisplayStyle } from './enums/kpis/kpi-display-style.enum';
|
|
61
|
-
import { KpiConfigType } from './enums/kpis/kpi-config-type.enum';
|
|
62
|
-
import { KpiSystemVariables } from './enums/kpis/kpi-system-variables';
|
|
63
|
-
import { SystemKpis } from './enums/kpis/system-kpis';
|
|
64
|
-
export { BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, StaticLevelReferenceIds, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, ClientNumberFormattingSettingsGlobalFormat, ClientNumberFormattingSettingsStyle, ClientNumberFormattingSettingsNotation, ClientNumberFormattingSettingsMetric, ClientNumberFormattingSettingsCurrency, ClientNumberFormattingSettings, NumberFormat, NumberFormatSettings, ClientProductPortfolioVersion, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, KpiConstraintType, KpiConstraintMode, MechanicParamTypes, MechanicParamReferenceIds, MechanicTypeRelations, PromotionOfferStatus, PromotionOffersCalendarGroupByOptions, OptimizationStatus, OptimizationKpis, OptimizationSolutionBucket, ScenarioStatus, DateGranularity, DateWeekStart, ClientDateSettings, DefaultClientDateSettings, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, formatNumberToIndianCompactInCrores, isCompactIndianFormatInDecimals, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, DefaultClientFeaturesSettings, DefaultClientFeatures, DefaultClientNumberFormattingSettings, WebsocketEvents, ScenarioEventSource, KpiVariableFormat, KpiAggregation, KpiDisplayStyle, KpiConfigType, KpiSystemVariables, SystemKpis, };
|
|
65
|
+
export { BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, StaticLevelReferenceIds, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, ClientNumberFormattingSettingsGlobalFormat, ClientNumberFormattingSettingsStyle, ClientNumberFormattingSettingsNotation, ClientNumberFormattingSettingsMetric, ClientNumberFormattingSettingsCurrency, ClientNumberFormattingSettings, NumberFormat, NumberFormatSettings, ClientProductPortfolioVersion, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, KpiConstraintType, KpiConstraintMode, MechanicParamTypes, MechanicParamReferenceIds, MechanicTypeRelations, PromotionOfferStatus, PromotionOffersCalendarGroupByOptions, OptimizationStatus, OptimizationKpis, OptimizationSolutionBucket, ScenarioStatus, DateGranularity, DateWeekStart, ClientDateSettings, DefaultClientDateSettings, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, formatNumberToIndianCompactInCrores, isCompactIndianFormatInDecimals, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, DefaultClientFeaturesSettings, DefaultClientFeatures, DefaultClientNumberFormattingSettings, WebsocketEvents, ScenarioEventSource, KpiVariableFormat, KpiAggregation, KpiDisplayStyle, KpiConfigType, KpiSystemVariables, SystemKpis, DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT, MAX_ACTIVE_OPTIMIZATIONS_LIMIT, };
|
package/build/index.js
CHANGED
|
@@ -4,7 +4,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.OptimizationStatus = exports.PromotionOffersCalendarGroupByOptions = exports.PromotionOfferStatus = exports.MechanicTypeRelations = exports.MechanicParamReferenceIds = exports.MechanicParamTypes = exports.KpiConstraintMode = exports.KpiConstraintType = exports.ValueDriverType = exports.ClientIndustry = exports.ClientStatus = exports.AvailabilityChangeTypes = exports.CostChangeTypes = exports.ChangeCostBases = exports.ClientFeatureScope = exports.ClientFeatureState = exports.ClientFeature = exports.ChangeProductPriceBases = exports.ChangePriceBases = exports.PriceChangeTypes = exports.ClientProductPortfolioVersion = exports.ClientNumberFormattingSettingsCurrency = exports.ClientNumberFormattingSettingsMetric = exports.ClientNumberFormattingSettingsNotation = exports.ClientNumberFormattingSettingsStyle = exports.ClientNumberFormattingSettingsGlobalFormat = exports.ClientDuplicationParts = exports.BuynomicsAppVersion = exports.CentralSteeringVersion = exports.FittingStatuses = exports.IntermediaryGroupRangeFormats = exports.IntermediaryGroupTypes = exports.ClientTypes = exports.DefaultClientDecimalSettings = exports.ClientDecimalSettings = exports.DefaultClientCLVPriceTypeLabels = exports.ClientCLVPriceTypes = exports.ClientCLVPeriods = exports.DefaultClientTermLabels = exports.ClientTerms = exports.CustomCostFormulaParams = exports.DeeperionModelTypes = exports.DeeperionRequestTypes = exports.DeeperionAppSwitchValues = exports.DeeperionVersions = exports.StaticLevelReferenceIds = exports.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = void 0;
|
|
7
|
-
exports.SystemKpis = exports.KpiSystemVariables = exports.KpiConfigType = exports.KpiDisplayStyle = exports.KpiAggregation = exports.KpiVariableFormat = exports.ScenarioEventSource = exports.WebsocketEvents = exports.DefaultClientNumberFormattingSettings = exports.DefaultClientFeatures = exports.DefaultClientFeaturesSettings = exports.ClientViewSettingsPages = exports.getPromotionPeriods = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.isCompactIndianFormatInDecimals = exports.formatNumberToIndianCompactInCrores = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.calculateRange = exports.DefaultClientDateSettings = exports.DateWeekStart = exports.DateGranularity = exports.ScenarioStatus = exports.OptimizationSolutionBucket = exports.OptimizationKpis = void 0;
|
|
7
|
+
exports.MAX_ACTIVE_OPTIMIZATIONS_LIMIT = exports.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT = exports.SystemKpis = exports.KpiSystemVariables = exports.KpiConfigType = exports.KpiDisplayStyle = exports.KpiAggregation = exports.KpiVariableFormat = exports.ScenarioEventSource = exports.WebsocketEvents = exports.DefaultClientNumberFormattingSettings = exports.DefaultClientFeatures = exports.DefaultClientFeaturesSettings = exports.ClientViewSettingsPages = exports.getPromotionPeriods = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.isCompactIndianFormatInDecimals = exports.formatNumberToIndianCompactInCrores = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.calculateRange = exports.DefaultClientDateSettings = exports.DateWeekStart = exports.DateGranularity = exports.ScenarioStatus = exports.OptimizationSolutionBucket = exports.OptimizationKpis = void 0;
|
|
8
|
+
var activeOptimizationsLimit_1 = require("./constants/activeOptimizationsLimit");
|
|
9
|
+
Object.defineProperty(exports, "DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT", { enumerable: true, get: function () { return activeOptimizationsLimit_1.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT; } });
|
|
10
|
+
Object.defineProperty(exports, "MAX_ACTIVE_OPTIMIZATIONS_LIMIT", { enumerable: true, get: function () { return activeOptimizationsLimit_1.MAX_ACTIVE_OPTIMIZATIONS_LIMIT; } });
|
|
8
11
|
var fitting_statuses_1 = require("./domains/fitting/enums/fitting-statuses");
|
|
9
12
|
Object.defineProperty(exports, "FittingStatuses", { enumerable: true, get: function () { return fitting_statuses_1.FittingStatuses; } });
|
|
10
13
|
var intermediary_group_range_formats_1 = require("./domains/pricing/intermediaries/enums/intermediary-group-range-formats");
|
|
@@ -24,6 +27,10 @@ Object.defineProperty(exports, "ClientCLVPeriods", { enumerable: true, get: func
|
|
|
24
27
|
var client_clv_price_types_1 = require("./enums/client/client-clv-price-types");
|
|
25
28
|
Object.defineProperty(exports, "ClientCLVPriceTypes", { enumerable: true, get: function () { return client_clv_price_types_1.ClientCLVPriceTypes; } });
|
|
26
29
|
Object.defineProperty(exports, "DefaultClientCLVPriceTypeLabels", { enumerable: true, get: function () { return client_clv_price_types_1.DefaultClientCLVPriceTypeLabels; } });
|
|
30
|
+
var client_date_1 = require("./enums/client/client-date");
|
|
31
|
+
Object.defineProperty(exports, "DateGranularity", { enumerable: true, get: function () { return client_date_1.DateGranularity; } });
|
|
32
|
+
Object.defineProperty(exports, "DateWeekStart", { enumerable: true, get: function () { return client_date_1.DateWeekStart; } });
|
|
33
|
+
Object.defineProperty(exports, "DefaultClientDateSettings", { enumerable: true, get: function () { return client_date_1.DefaultClientDateSettings; } });
|
|
27
34
|
var client_decimal_settings_1 = require("./enums/client/client-decimal-settings");
|
|
28
35
|
Object.defineProperty(exports, "ClientDecimalSettings", { enumerable: true, get: function () { return client_decimal_settings_1.ClientDecimalSettings; } });
|
|
29
36
|
Object.defineProperty(exports, "DefaultClientDecimalSettings", { enumerable: true, get: function () { return client_decimal_settings_1.DefaultClientDecimalSettings; } });
|
|
@@ -61,6 +68,17 @@ Object.defineProperty(exports, "DeeperionVersions", { enumerable: true, get: fun
|
|
|
61
68
|
Object.defineProperty(exports, "DeeperionAppSwitchValues", { enumerable: true, get: function () { return deeperion_1.DeeperionAppSwitchValues; } });
|
|
62
69
|
Object.defineProperty(exports, "DeeperionRequestTypes", { enumerable: true, get: function () { return deeperion_1.DeeperionRequestTypes; } });
|
|
63
70
|
Object.defineProperty(exports, "DeeperionModelTypes", { enumerable: true, get: function () { return deeperion_1.DeeperionModelTypes; } });
|
|
71
|
+
var kpi_config_type_enum_1 = require("./enums/kpis/kpi-config-type.enum");
|
|
72
|
+
Object.defineProperty(exports, "KpiConfigType", { enumerable: true, get: function () { return kpi_config_type_enum_1.KpiConfigType; } });
|
|
73
|
+
var kpi_display_style_enum_1 = require("./enums/kpis/kpi-display-style.enum");
|
|
74
|
+
Object.defineProperty(exports, "KpiDisplayStyle", { enumerable: true, get: function () { return kpi_display_style_enum_1.KpiDisplayStyle; } });
|
|
75
|
+
var kpi_system_variables_1 = require("./enums/kpis/kpi-system-variables");
|
|
76
|
+
Object.defineProperty(exports, "KpiSystemVariables", { enumerable: true, get: function () { return kpi_system_variables_1.KpiSystemVariables; } });
|
|
77
|
+
var kpi_variable_format_enum_1 = require("./enums/kpis/kpi-variable-format.enum");
|
|
78
|
+
Object.defineProperty(exports, "KpiAggregation", { enumerable: true, get: function () { return kpi_variable_format_enum_1.KpiAggregation; } });
|
|
79
|
+
Object.defineProperty(exports, "KpiVariableFormat", { enumerable: true, get: function () { return kpi_variable_format_enum_1.KpiVariableFormat; } });
|
|
80
|
+
var system_kpis_1 = require("./enums/kpis/system-kpis");
|
|
81
|
+
Object.defineProperty(exports, "SystemKpis", { enumerable: true, get: function () { return system_kpis_1.SystemKpis; } });
|
|
64
82
|
var optimization_1 = require("./enums/optimization");
|
|
65
83
|
Object.defineProperty(exports, "KpiConstraintType", { enumerable: true, get: function () { return optimization_1.KpiConstraintType; } });
|
|
66
84
|
Object.defineProperty(exports, "KpiConstraintMode", { enumerable: true, get: function () { return optimization_1.KpiConstraintMode; } });
|
|
@@ -69,10 +87,6 @@ Object.defineProperty(exports, "OptimizationKpis", { enumerable: true, get: func
|
|
|
69
87
|
Object.defineProperty(exports, "OptimizationSolutionBucket", { enumerable: true, get: function () { return optimization_1.OptimizationSolutionBucket; } });
|
|
70
88
|
var permissions_1 = require("./enums/permissions");
|
|
71
89
|
Object.defineProperty(exports, "BnPermissions", { enumerable: true, get: function () { return permissions_1.BnPermissions; } });
|
|
72
|
-
var client_date_1 = require("./enums/client/client-date");
|
|
73
|
-
Object.defineProperty(exports, "DateGranularity", { enumerable: true, get: function () { return client_date_1.DateGranularity; } });
|
|
74
|
-
Object.defineProperty(exports, "DateWeekStart", { enumerable: true, get: function () { return client_date_1.DateWeekStart; } });
|
|
75
|
-
Object.defineProperty(exports, "DefaultClientDateSettings", { enumerable: true, get: function () { return client_date_1.DefaultClientDateSettings; } });
|
|
76
90
|
var change_price_bases_1 = require("./enums/price-change/change-price-bases");
|
|
77
91
|
Object.defineProperty(exports, "ChangePriceBases", { enumerable: true, get: function () { return change_price_bases_1.ChangePriceBases; } });
|
|
78
92
|
var price_change_types_1 = require("./enums/price-change/price-change-types");
|
|
@@ -104,10 +118,10 @@ var scenario_status_1 = require("./enums/scenario/scenario-status");
|
|
|
104
118
|
Object.defineProperty(exports, "ScenarioStatus", { enumerable: true, get: function () { return scenario_status_1.ScenarioStatus; } });
|
|
105
119
|
var value_driver_type_1 = require("./enums/segment/value-driver/value-driver-type");
|
|
106
120
|
Object.defineProperty(exports, "ValueDriverType", { enumerable: true, get: function () { return value_driver_type_1.ValueDriverType; } });
|
|
107
|
-
var websocket_events_1 = require("./enums/websocket/websocket-events");
|
|
108
|
-
Object.defineProperty(exports, "WebsocketEvents", { enumerable: true, get: function () { return websocket_events_1.WebsocketEvents; } });
|
|
109
121
|
var websocket_event_source_1 = require("./enums/websocket/websocket-event-source");
|
|
110
122
|
Object.defineProperty(exports, "ScenarioEventSource", { enumerable: true, get: function () { return websocket_event_source_1.ScenarioEventSource; } });
|
|
123
|
+
var websocket_events_1 = require("./enums/websocket/websocket-events");
|
|
124
|
+
Object.defineProperty(exports, "WebsocketEvents", { enumerable: true, get: function () { return websocket_events_1.WebsocketEvents; } });
|
|
111
125
|
var calculate_range_1 = require("./helpers/calculate-range");
|
|
112
126
|
Object.defineProperty(exports, "calculateRange", { enumerable: true, get: function () { return calculate_range_1.calculateRange; } });
|
|
113
127
|
var get_latest_deeperion_version_1 = require("./helpers/deeperion/get-latest-deeperion-version");
|
|
@@ -127,15 +141,4 @@ var get_property_name_1 = require("./helpers/get-property-name");
|
|
|
127
141
|
Object.defineProperty(exports, "getPropertyName", { enumerable: true, get: function () { return get_property_name_1.getPropertyName; } });
|
|
128
142
|
var price_decision_helper_1 = __importDefault(require("./helpers/price-decision/price-decision-helper"));
|
|
129
143
|
exports.PriceDecisionNullificationHelper = price_decision_helper_1.default;
|
|
130
|
-
var kpi_variable_format_enum_1 = require("./enums/kpis/kpi-variable-format.enum");
|
|
131
|
-
Object.defineProperty(exports, "KpiAggregation", { enumerable: true, get: function () { return kpi_variable_format_enum_1.KpiAggregation; } });
|
|
132
|
-
Object.defineProperty(exports, "KpiVariableFormat", { enumerable: true, get: function () { return kpi_variable_format_enum_1.KpiVariableFormat; } });
|
|
133
|
-
var kpi_display_style_enum_1 = require("./enums/kpis/kpi-display-style.enum");
|
|
134
|
-
Object.defineProperty(exports, "KpiDisplayStyle", { enumerable: true, get: function () { return kpi_display_style_enum_1.KpiDisplayStyle; } });
|
|
135
|
-
var kpi_config_type_enum_1 = require("./enums/kpis/kpi-config-type.enum");
|
|
136
|
-
Object.defineProperty(exports, "KpiConfigType", { enumerable: true, get: function () { return kpi_config_type_enum_1.KpiConfigType; } });
|
|
137
|
-
var kpi_system_variables_1 = require("./enums/kpis/kpi-system-variables");
|
|
138
|
-
Object.defineProperty(exports, "KpiSystemVariables", { enumerable: true, get: function () { return kpi_system_variables_1.KpiSystemVariables; } });
|
|
139
|
-
var system_kpis_1 = require("./enums/kpis/system-kpis");
|
|
140
|
-
Object.defineProperty(exports, "SystemKpis", { enumerable: true, get: function () { return system_kpis_1.SystemKpis; } });
|
|
141
144
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;AAAA,6EAA0E;AAsIxE,gGAtIO,kCAAe,OAsIP;AAnIjB,4HAAuH;AAkIrH,8GAlIO,gEAA6B,OAkIP;AAjI/B,4GAAwG;AAgItG,uGAhIO,iDAAsB,OAgIP;AA/HxB,oFAAoF;AA4LlF,oGA5LO,uCAAmB,OA4LP;AA1LrB,mGAA+F;AAwJ7F,wGAxJO,mDAAuB,OAwJP;AAvJzB,6DAAiE;AA+H/D,uGA/HO,yCAAsB,OA+HP;AA9HxB,wEAAuE;AAiIrE,oGAjIO,wCAAmB,OAiIP;AAhIrB,wEAAoE;AAoHlE,iGApHO,qCAAgB,OAoHP;AAnHlB,gFAG8C;AAiH5C,oGAnHA,4CAAmB,OAmHA;AACnB,gHAnHA,wDAA+B,OAmHA;AAjHjC,kFAG+C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|